From 5d1e0ec2f5795dc27b4a73279ffd7a3029473e24 Mon Sep 17 00:00:00 2001 From: Marc Date: Thu, 14 Nov 2024 04:16:00 +0100 Subject: [PATCH 01/10] Added new point-to-polygon-distance package (#2735) Added turf-point-to-polygon-distance package to complement point-to-line functionality. Resolves #1743 --------- Co-authored-by: James Beard --- documentation.yml | 1 + .../turf-point-to-polygon-distance/LICENSE | 20 +++ .../turf-point-to-polygon-distance/README.md | 61 ++++++++ .../turf-point-to-polygon-distance/bench.ts | 65 ++++++++ .../turf-point-to-polygon-distance/index.ts | 90 +++++++++++ .../package.json | 79 ++++++++++ .../turf-point-to-polygon-distance/test.ts | 62 ++++++++ .../test_fixtures/long-lines-poly.geojson | 56 +++++++ .../test_fixtures/multi-polygon.geojson | 143 ++++++++++++++++++ .../test_fixtures/simple-polygon.geojson | 45 ++++++ .../tsconfig.json | 3 + packages/turf/index.ts | 1 + packages/turf/package.json | 1 + pnpm-lock.yaml | 65 +++++++- 14 files changed, 690 insertions(+), 2 deletions(-) create mode 100644 packages/turf-point-to-polygon-distance/LICENSE create mode 100644 packages/turf-point-to-polygon-distance/README.md create mode 100644 packages/turf-point-to-polygon-distance/bench.ts create mode 100644 packages/turf-point-to-polygon-distance/index.ts create mode 100644 packages/turf-point-to-polygon-distance/package.json create mode 100644 packages/turf-point-to-polygon-distance/test.ts create mode 100644 packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson create mode 100644 packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson create mode 100644 packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson create mode 100644 packages/turf-point-to-polygon-distance/tsconfig.json diff --git a/documentation.yml b/documentation.yml index 5fa9bcfab9..0f5445a780 100644 --- a/documentation.yml +++ b/documentation.yml @@ -16,6 +16,7 @@ toc: - pointOnFeature - polygonTangents - pointToLineDistance + - pointToPolygonDistance - rhumbBearing - rhumbDestination - rhumbDistance diff --git a/packages/turf-point-to-polygon-distance/LICENSE b/packages/turf-point-to-polygon-distance/LICENSE new file mode 100644 index 0000000000..96ce51b76f --- /dev/null +++ b/packages/turf-point-to-polygon-distance/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2017 TurfJS + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/packages/turf-point-to-polygon-distance/README.md b/packages/turf-point-to-polygon-distance/README.md new file mode 100644 index 0000000000..e2d9584cd9 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/README.md @@ -0,0 +1,61 @@ +# @turf/point-to-polygon-distance + + + +## pointToPolygonDistance + +Calculates the distance from a point to the edges of a polygon or multi-polygon. +Returns negative values for points inside the polygon. +Handles polygons with holes and multi-polygons. +A hole is treated as the exterior of the polygon. + +### Parameters + +* `point` **([Feature][1]<[Point][2]> | [Point][2] | [Position][3])** Input point +* `polygonOrMultiPolygon` **([Feature][1]<([Polygon][4] | [MultiPolygon][5])> | [Polygon][4] | [MultiPolygon][5])** Input polygon or multipolygon +* `options` **[Object][6]** Optional parameters (optional, default `{}`) + + * `options.units` **Units** Units of the result e.g. "kilometers", "miles", "meters" + * `options.method` **(`"geodesic"` | `"planar"`)** Method of the result + + + +* Throws **[Error][7]** If input geometries are invalid + +Returns **[number][8]** Distance in meters (negative values for points inside the polygon) + +[1]: https://tools.ietf.org/html/rfc7946#section-3.2 + +[2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 + +[3]: https://developer.mozilla.org/docs/Web/API/Position + +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 + +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.7 + +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object + +[7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error + +[8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number + + + +--- + +This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. + +### Installation + +Install this single module individually: + +```sh +$ npm install @turf/point-to-polygon-distance +``` + +Or install the all-encompassing @turf/turf module that includes all modules as functions: + +```sh +$ npm install @turf/turf +``` diff --git a/packages/turf-point-to-polygon-distance/bench.ts b/packages/turf-point-to-polygon-distance/bench.ts new file mode 100644 index 0000000000..585a73bb15 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/bench.ts @@ -0,0 +1,65 @@ +import fs from "fs"; +import path from "path"; +import { fileURLToPath } from "url"; +import { loadJsonFileSync } from "load-json-file"; +import Benchmark from "benchmark"; +import { pointToPolygonDistance } from "./index.js"; +import { featureCollection } from "@turf/helpers"; +import { + Feature, + GeoJsonProperties, + MultiPolygon, + Point, + Polygon, +} from "geojson"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; + +const fixtures = fs.readdirSync(fixturesPath).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(fixturesPath + filename), + }; +}); + +/** + * Benchmark Results + * + * long-lines-poly - pointA x 154,135 ops/sec ±0.36% (96 runs sampled) + * long-lines-poly - pointB x 167,645 ops/sec ±0.30% (98 runs sampled) + * long-lines-poly - pointC x 164,454 ops/sec ±0.25% (100 runs sampled) + * multi-polygon - outer x 16,604 ops/sec ±0.22% (97 runs sampled) + * multi-polygon - inner1 x 16,428 ops/sec ±0.20% (99 runs sampled) + * multi-polygon - inner2 x 16,329 ops/sec ±0.19% (100 runs sampled) + * multi-polygon - inner3-close-to-hole x 16,409 ops/sec ±0.26% (99 runs sampled) + * multi-polygon - in-hole-close-to-poly-in-hole x 16,589 ops/sec ±0.27% (101 runs sampled) + * multi-polygon - in-hole-close-to-hole-border x 16,251 ops/sec ±0.26% (98 runs sampled) + * multi-polygon - in-poly-in-hole x 16,763 ops/sec ±0.50% (98 runs sampled) + * simple-polygon - outer x 118,008 ops/sec ±0.17% (101 runs sampled) + * simple-polygon - inner x 121,173 ops/sec ±0.17% (99 runs sampled) + **/ +const suite = new Benchmark.Suite("turf-point-to-polygon-distance"); + +for (const { name, geojson } of fixtures) { + // @ts-expect-error geojson + const fc = featureCollection(geojson?.features || []); + const points = fc.features.filter( + (f): f is Feature => f.geometry.type === "Point" + ); + const polygon = fc.features.find((f) => + ["Polygon", "MultiPolygon"].includes(f.geometry.type) + ) as Feature; + if (!polygon) { + throw new Error(`No polygon found in the feature collection in ${name}`); + } + for (const point of points) { + const caseName = `${name} - ${point.properties?.name || "unnamed point"}`; + suite.add(caseName, () => { + pointToPolygonDistance(point, polygon); + }); + } +} +// @ts-expect-error benchmark +suite.on("cycle", (e) => console.log(String(e.target))).run(); diff --git a/packages/turf-point-to-polygon-distance/index.ts b/packages/turf-point-to-polygon-distance/index.ts new file mode 100644 index 0000000000..1a674d5b77 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/index.ts @@ -0,0 +1,90 @@ +import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; +import { + Feature, + Point, + Polygon, + MultiPolygon, + LineString, + Position, +} from "geojson"; +import { pointToLineDistance } from "@turf/point-to-line-distance"; +import { polygonToLine } from "@turf/polygon-to-line"; +import { getGeom } from "@turf/invariant"; +import { flattenEach } from "@turf/meta"; +import { polygon, Units } from "@turf/helpers"; + +/** + * Calculates the distance from a point to the edges of a polygon or multi-polygon. + * Returns negative values for points inside the polygon. + * Handles polygons with holes and multi-polygons. + * A hole is treated as the exterior of the polygon. + * + * @param {Feature | Point | Position} point Input point + * @param {Feature | Polygon | MultiPolygon} polygonOrMultiPolygon Input polygon or multipolygon + * @param {Object} options Optional parameters + * @param {Units} options.units Units of the result e.g. "kilometers", "miles", "meters" + * @param {"geodesic" | "planar"} options.method Method of the result + * @returns {number} Distance in meters (negative values for points inside the polygon) + * @throws {Error} If input geometries are invalid + */ +export function pointToPolygonDistance( + point: Feature | Point | Position, + polygonOrMultiPolygon: + | Feature + | Polygon + | MultiPolygon, + options: { + units?: Units; + method?: "geodesic" | "planar"; + } = {} +): number { + const method = options.method ?? "geodesic"; + const units = options.units ?? "kilometers"; + // Input validation + if (!point) throw new Error("point is required"); + if (!polygonOrMultiPolygon) + throw new Error("polygon or multi-polygon is required"); + + const geom = getGeom(polygonOrMultiPolygon); + + if (geom.type === "MultiPolygon") { + const distances = geom.coordinates.map((coords) => + pointToPolygonDistance(point, polygon(coords), { method, units }) + ); + return ( + Math.min(...distances.map(Math.abs)) * + (booleanPointInPolygon(point, polygonOrMultiPolygon) ? -1 : 1) + ); + } + + if (geom.coordinates.length > 1) { + // Has holes + const [exteriorDistance, ...interiorDistances] = geom.coordinates.map( + (coords) => + pointToPolygonDistance(point, polygon([coords]), { method, units }) + ); + if (exteriorDistance >= 0) return exteriorDistance; + // point is inside the exterior polygon shape + const smallestInteriorDistance = Math.min(...interiorDistances); + // point is inside one of the holes? + if (smallestInteriorDistance < 0) return Math.abs(smallestInteriorDistance); + // find which is closer, the distance to the hole or the distance to the edge of the exterior + return Math.min(smallestInteriorDistance, Math.abs(exteriorDistance)); + } + // The actual distance operation - on a normal, hole-less polygon in meters + const lines = polygonToLine(geom); + let minDistance = Infinity; + flattenEach(lines, (feature) => { + minDistance = Math.min( + minDistance, + pointToLineDistance(point, feature as Feature, { + method, + units, + }) + ); + }); + + return booleanPointInPolygon(point, geom) ? -minDistance : minDistance; +} + +export default pointToPolygonDistance; diff --git a/packages/turf-point-to-polygon-distance/package.json b/packages/turf-point-to-polygon-distance/package.json new file mode 100644 index 0000000000..689618f362 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/package.json @@ -0,0 +1,79 @@ +{ + "name": "@turf/point-to-polygon-distance", + "version": "7.1.0", + "description": "turf point-to-polygon-distance module", + "author": "Turf Authors", + "contributors": [ + "Marc <@pachacamac>" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf/issues" + }, + "homepage": "https://github.com/Turfjs/turf", + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf.git" + }, + "funding": "https://opencollective.com/turf", + "publishConfig": { + "access": "public" + }, + "keywords": [ + "turf", + "gis", + "point", + "polygon", + "distance" + ], + "type": "module", + "main": "dist/cjs/index.cjs", + "module": "dist/esm/index.js", + "types": "dist/esm/index.d.ts", + "exports": { + "./package.json": "./package.json", + ".": { + "import": { + "types": "./dist/esm/index.d.ts", + "default": "./dist/esm/index.js" + }, + "require": { + "types": "./dist/cjs/index.d.cts", + "default": "./dist/cjs/index.cjs" + } + } + }, + "sideEffects": false, + "files": [ + "dist" + ], + "scripts": { + "bench": "tsx bench.ts", + "build": "tsup --config ../../tsup.config.ts", + "docs": "tsx ../../scripts/generate-readmes.ts", + "test": "npm-run-all --npm-path npm test:*", + "test:tape": "tsx test.ts" + }, + "devDependencies": { + "@types/benchmark": "^2.1.5", + "@types/tape": "^4.2.32", + "benchmark": "^2.1.4", + "load-json-file": "^7.0.1", + "npm-run-all": "^4.1.5", + "tape": "^5.7.2", + "tsup": "^8.0.1", + "tsx": "^4.6.2", + "typescript": "^5.5.4", + "write-json-file": "^5.0.0" + }, + "dependencies": { + "@turf/boolean-point-in-polygon": "workspace:^", + "@turf/helpers": "workspace:^", + "@turf/invariant": "workspace:^", + "@turf/meta": "workspace:^", + "@turf/point-to-line-distance": "workspace:^", + "@turf/polygon-to-line": "workspace:^", + "@types/geojson": "^7946.0.10", + "tslib": "^2.6.2" + } +} diff --git a/packages/turf-point-to-polygon-distance/test.ts b/packages/turf-point-to-polygon-distance/test.ts new file mode 100644 index 0000000000..19d56a9081 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test.ts @@ -0,0 +1,62 @@ +import fs from "fs"; +import test from "tape"; +import path from "path"; +import { fileURLToPath } from "url"; +import { loadJsonFileSync } from "load-json-file"; +import { point } from "@turf/helpers"; +import { polygon } from "@turf/helpers"; +import { pointToPolygonDistance } from "./index.js"; +import { featureCollection } from "@turf/helpers"; +import { + Feature, + GeoJsonProperties, + MultiPolygon, + Point, + Polygon, +} from "geojson"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; + +const fixtures = fs.readdirSync(fixturesPath).map((filename) => { + return { + filename, + name: path.parse(filename).name, + geojson: loadJsonFileSync(fixturesPath + filename), + }; +}); + +test("turf-point-to-polygon-distance", (t) => { + for (const { name, geojson } of fixtures) { + // @ts-expect-error geojson + const fc = featureCollection(geojson?.features || []); + const points: Feature[] = fc.features.filter( + (f): f is Feature => f.geometry.type === "Point" + ); + const polygon = fc.features.find((f) => + ["Polygon", "MultiPolygon"].includes(f.geometry.type) + ) as Feature; + if (!polygon) + throw new Error(`No polygon found in the feature collection in ${name}`); + for (const point of points) { + const expectedDistance = point.properties?.expected_distance; + const units = point.properties?.units; + const distance = pointToPolygonDistance(point, polygon, { units }); + t.equal(distance, expectedDistance, name, { + message: `${name} - ${point.properties?.name}`, + }); + } + } + // Handle Errors + t.throws( + // @ts-expect-error invalid geometry + () => pointToPolygonDistance(polygon([]), polygon([])), + "throws - invalid geometry" + ); + t.throws( + () => pointToPolygonDistance(point([0, 0]), polygon([])), + "throws - empty coordinates" + ); + t.end(); +}); diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson new file mode 100644 index 0000000000..4268549b9e --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson @@ -0,0 +1,56 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [3.3657268318160334, 25.76155695292222], + [46.65471569612228, -18.814141655384176], + [28.889827996699864, 25.16583746201097], + [3.3657268318160334, 25.76155695292222] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointA", + "expected_distance": 720.8195022016121, + "units": "miles" + }, + "geometry": { + "coordinates": [-3.848091969075085, 17.75559032718766], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointB", + "expected_distance": 174.26575299684424, + "units": "miles" + }, + "geometry": { + "coordinates": [20.161990331199632, 5.93692849667535], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "pointC", + "expected_distance": 1422.4933025064167, + "units": "miles" + }, + "geometry": { + "coordinates": [15.761757321831652, -16.46137822158427], + "type": "Point" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson new file mode 100644 index 0000000000..27704bfd3a --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson @@ -0,0 +1,143 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "outer", + "expected_distance": 22.10311139107688, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403019116525968, 52.4749917692433], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner1", + "expected_distance": -0.18712846397492156, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.399915241855979, 52.472957280225245], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner2", + "expected_distance": -0.2539006541753242, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.396946319940724, 52.47723165382479], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner3-close-to-hole", + "expected_distance": -16.135385380792886, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403283336358811, 52.47790995176382], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-hole-close-to-poly-in-hole", + "expected_distance": 16.36078019912375, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403043879952975, 52.47832947539942], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-hole-close-to-hole-border", + "expected_distance": 6.627508849855802, + "units": "meters" + }, + "geometry": { + "coordinates": [13.40253783003243, 52.47852394247576], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "in-poly-in-hole", + "expected_distance": -5.519191580154778, + "units": "meters" + }, + "geometry": { + "coordinates": [13.403378284487616, 52.47824096630322], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [ + [13.391148572399459, 52.47422924057807], + [13.39059601479363, 52.473247558678], + [13.392253687611202, 52.47097558229518], + [13.416658315199754, 52.47162072331574], + [13.415415060587122, 52.475379182951684], + [13.391148572399459, 52.47422924057807] + ] + ], + [ + [ + [13.391747176472563, 52.47470604959969], + [13.415276921185495, 52.475771839318895], + [13.415230874718247, 52.476444956368084], + [13.410948553273812, 52.477258292397494], + [13.406574138894086, 52.479333633450835], + [13.3941415927641, 52.47961407743651], + [13.392161594676793, 52.47734242974954], + [13.392576012880966, 52.475743792551725], + [13.391747176472563, 52.47470604959969] + ], + [ + [13.402432150152691, 52.478581408896446], + [13.402365252169176, 52.4782640275981], + [13.402520173815134, 52.47815680366921], + [13.402967334020701, 52.478034568071365], + [13.403537727352841, 52.47807316882296], + [13.403643355748358, 52.47818468191565], + [13.403882780109853, 52.47820827118747], + [13.403777151715332, 52.478392695967955], + [13.403474350316174, 52.47848061913734], + [13.403372242867533, 52.478600709036584], + [13.402432150152691, 52.478581408896446] + ] + ], + [ + [ + [13.403245369174186, 52.478248303401074], + [13.403353680211723, 52.478162544659085], + [13.403550445261601, 52.47824170658075], + [13.40335909576305, 52.47830327686577], + [13.403245369174186, 52.478248303401074] + ] + ] + ], + "type": "MultiPolygon" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson b/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson new file mode 100644 index 0000000000..0884016568 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson @@ -0,0 +1,45 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "outer", + "expected_distance": 0.0020673867731590976, + "units": "kilometers" + }, + "geometry": { + "coordinates": [13.40811681056141, 52.52027359015821], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": { + "name": "inner", + "expected_distance": -7.980019325365333, + "units": "meters" + }, + "geometry": { + "coordinates": [13.408017009112001, 52.52035996357455], + "type": "Point" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [13.407833971095158, 52.52015934998451], + [13.40823074294758, 52.52035304587994], + [13.40819208895536, 52.52053359735595], + [13.407789632692584, 52.520343361105404], + [13.407833971095158, 52.52015934998451] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-point-to-polygon-distance/tsconfig.json b/packages/turf-point-to-polygon-distance/tsconfig.json new file mode 100644 index 0000000000..563bf86442 --- /dev/null +++ b/packages/turf-point-to-polygon-distance/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../../tsconfig.shared.json" +} diff --git a/packages/turf/index.ts b/packages/turf/index.ts index 2b604e2188..651b6601dc 100644 --- a/packages/turf/index.ts +++ b/packages/turf/index.ts @@ -91,6 +91,7 @@ export { pointGrid } from "@turf/point-grid"; export { pointOnFeature } from "@turf/point-on-feature"; export { pointsWithinPolygon } from "@turf/points-within-polygon"; export { pointToLineDistance } from "@turf/point-to-line-distance"; +export { pointToPolygonDistance } from "@turf/point-to-polygon-distance"; export { polygonize } from "@turf/polygonize"; export { polygonSmooth } from "@turf/polygon-smooth"; export { polygonTangents } from "@turf/polygon-tangents"; diff --git a/packages/turf/package.json b/packages/turf/package.json index 9a432b75b7..644fa5261a 100644 --- a/packages/turf/package.json +++ b/packages/turf/package.json @@ -173,6 +173,7 @@ "@turf/point-grid": "workspace:^", "@turf/point-on-feature": "workspace:^", "@turf/point-to-line-distance": "workspace:^", + "@turf/point-to-polygon-distance": "workspace:^", "@turf/points-within-polygon": "workspace:^", "@turf/polygon-smooth": "workspace:^", "@turf/polygon-tangents": "workspace:^", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e4053095ba..7d1b8fba22 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -353,6 +353,9 @@ importers: '@turf/point-to-line-distance': specifier: workspace:^ version: link:../turf-point-to-line-distance + '@turf/point-to-polygon-distance': + specifier: workspace:^ + version: link:../turf-point-to-polygon-distance '@turf/points-within-polygon': specifier: workspace:^ version: link:../turf-points-within-polygon @@ -4871,6 +4874,64 @@ importers: specifier: ^5.0.0 version: 5.0.0 + packages/turf-point-to-polygon-distance: + dependencies: + '@turf/boolean-point-in-polygon': + specifier: workspace:^ + version: link:../turf-boolean-point-in-polygon + '@turf/helpers': + specifier: workspace:^ + version: link:../turf-helpers + '@turf/invariant': + specifier: workspace:^ + version: link:../turf-invariant + '@turf/meta': + specifier: workspace:^ + version: link:../turf-meta + '@turf/point-to-line-distance': + specifier: workspace:^ + version: link:../turf-point-to-line-distance + '@turf/polygon-to-line': + specifier: workspace:^ + version: link:../turf-polygon-to-line + '@types/geojson': + specifier: ^7946.0.10 + version: 7946.0.14 + tslib: + specifier: ^2.6.2 + version: 2.6.2 + devDependencies: + '@types/benchmark': + specifier: ^2.1.5 + version: 2.1.5 + '@types/tape': + specifier: ^4.2.32 + version: 4.13.4 + benchmark: + specifier: ^2.1.4 + version: 2.1.4 + load-json-file: + specifier: ^7.0.1 + version: 7.0.1 + npm-run-all: + specifier: ^4.1.5 + version: 4.1.5 + tape: + specifier: ^5.7.2 + version: 5.7.2 + tsup: + specifier: ^8.0.1 + version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + tsx: + specifier: ^4.6.2 + version: 4.6.2 + typescript: + specifier: ^5.5.4 + version: 5.5.4 + write-json-file: + specifier: ^5.0.0 + version: 5.0.0 + packages/turf-points-within-polygon: dependencies: '@turf/boolean-point-in-polygon': @@ -9530,7 +9591,7 @@ packages: dependencies: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.4 + debug: 4.3.6 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 @@ -16262,7 +16323,7 @@ packages: bundle-require: 4.0.2(esbuild@0.19.11) cac: 6.7.14 chokidar: 3.5.3 - debug: 4.3.4 + debug: 4.3.6 esbuild: 0.19.11 execa: 5.1.1 globby: 11.1.0 From 5377c1c5ff9326beca29711707eec41c4331ce75 Mon Sep 17 00:00:00 2001 From: James Beard Date: Tue, 19 Nov 2024 14:32:38 +1100 Subject: [PATCH 02/10] Addied a cautionary message to Units about measuring length in radians or degrees. Results differ based on latitude. (#2748) --- packages/turf-helpers/README.md | 289 ++++++++++++++++---------------- packages/turf-helpers/index.ts | 29 ++-- 2 files changed, 165 insertions(+), 153 deletions(-) diff --git a/packages/turf-helpers/README.md b/packages/turf-helpers/README.md index 0401551530..03ac976184 100644 --- a/packages/turf-helpers/README.md +++ b/packages/turf-helpers/README.md @@ -8,13 +8,20 @@ Linear measurement units. +⚠️ Warning. Be aware of the implications of using radian or degree units to +measure distance. The distance represented by a degree of longitude *varies* +depending on latitude. + +See [https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616][1] +for an illustration of this behaviour. + Type: (`"meters"` | `"metres"` | `"millimeters"` | `"millimetres"` | `"centimeters"` | `"centimetres"` | `"kilometers"` | `"kilometres"` | `"miles"` | `"nauticalmiles"` | `"inches"` | `"yards"` | `"feet"` | `"radians"` | `"degrees"`) ## AreaUnits Area measurement units. -Type: (Exclude<[Units][1], (`"radians"` | `"degrees"`)> | `"acres"` | `"hectares"`) +Type: (Exclude<[Units][2], (`"radians"` | `"degrees"`)> | `"acres"` | `"hectares"`) ## Grid @@ -32,19 +39,19 @@ Type: (`"sw"` | `"se"` | `"nw"` | `"ne"` | `"center"` | `"centroid"`) Geometries made up of lines i.e. lines and polygons. -Type: ([LineString][2] | [MultiLineString][3] | [Polygon][4] | [MultiPolygon][5]) +Type: ([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6]) ## AllGeoJSON Convenience type for all possible GeoJSON. -Type: ([Feature][6] | [FeatureCollection][7] | [Geometry][8] | [GeometryCollection][9]) +Type: ([Feature][7] | [FeatureCollection][8] | [Geometry][9] | [GeometryCollection][10]) ## earthRadius -The Earth radius in kilometers. Used by Turf modules that model the Earth as a sphere. The [mean radius][10] was selected because it is [recommended ][11] by the Haversine formula (used by turf/distance) to reduce error. +The Earth radius in kilometers. Used by Turf modules that model the Earth as a sphere. The [mean radius][11] was selected because it is [recommended ][12] by the Haversine formula (used by turf/distance) to reduce error. -Type: [number][12] +Type: [number][13] ## factors @@ -52,27 +59,27 @@ Unit of measurement factors based on earthRadius. Keys are the name of the unit, values are the number of that unit in a single radian -Type: Record<[Units][1], [number][12]> +Type: Record<[Units][2], [number][13]> ## areaFactors Area of measurement factors based on 1 square meter. -Type: Record<[AreaUnits][13], [number][12]> +Type: Record<[AreaUnits][14], [number][13]> ## feature -Wraps a GeoJSON [Geometry][8] in a GeoJSON [Feature][6]. +Wraps a GeoJSON [Geometry][9] in a GeoJSON [Feature][7]. ### Parameters * `geom` **(G | null)** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature -* `geometry` **[GeometryObject][8]** input geometry +* `geometry` **[GeometryObject][9]** input geometry ### Examples @@ -87,19 +94,19 @@ var feature = turf.feature(geometry); //=feature ``` -Returns **[Feature][6]<[GeometryObject][8], [GeoJsonProperties][6]>** a GeoJSON Feature +Returns **[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>** a GeoJSON Feature ## geometry -Creates a GeoJSON [Geometry][8] from a Geometry string type & coordinates. +Creates a GeoJSON [Geometry][9] from a Geometry string type & coordinates. For GeometryCollection type use `helpers.geometryCollection` ### Parameters * `type` **(`"Point"` | `"LineString"` | `"Polygon"` | `"MultiPoint"` | `"MultiLineString"` | `"MultiPolygon"`)** Geometry Type -* `coordinates` **[Array][16]\** Coordinates -* `_options` **Record<[string][17], never>** (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]\** Coordinates +* `_options` **Record<[string][18], never>** (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) ### Examples @@ -110,19 +117,19 @@ var geometry = turf.geometry(type, coordinates); // => geometry ``` -Returns **[Geometry][8]** a GeoJSON Geometry +Returns **[Geometry][9]** a GeoJSON Geometry ## point -Creates a [Point][18] [Feature][6] from a Position. +Creates a [Point][19] [Feature][7] from a Position. ### Parameters -* `coordinates` **[Position][19]** longitude, latitude position (each in decimal degrees) -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Position][20]** longitude, latitude position (each in decimal degrees) +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -133,19 +140,19 @@ var point = turf.point([-75.343, 39.984]); //=point ``` -Returns **[Feature][6]<[Point][18], [GeoJsonProperties][6]>** a Point feature +Returns **[Feature][7]<[Point][19], [GeoJsonProperties][7]>** a Point feature ## points -Creates a [Point][18] [FeatureCollection][7] from an Array of Point coordinates. +Creates a [Point][19] [FeatureCollection][8] from an Array of Point coordinates. ### Parameters -* `coordinates` **[Array][16]<[Position][19]>** an array of Points -* `properties` **[GeoJsonProperties][6]** Translate these properties to each Feature (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Points +* `properties` **[GeoJsonProperties][7]** Translate these properties to each Feature (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection * `options.id` **Id?** Identifier associated with the FeatureCollection @@ -161,19 +168,19 @@ var points = turf.points([ //=points ``` -Returns **[FeatureCollection][7]<[Point][18]>** Point Feature +Returns **[FeatureCollection][8]<[Point][19]>** Point Feature ## polygon -Creates a [Polygon][4] [Feature][6] from an Array of LinearRings. +Creates a [Polygon][5] [Feature][7] from an Array of LinearRings. ### Parameters -* `coordinates` **[Array][16]<[Array][16]<[Position][19]>>** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -184,19 +191,19 @@ var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], //=polygon ``` -Returns **[Feature][6]<[Polygon][4], [GeoJsonProperties][6]>** Polygon Feature +Returns **[Feature][7]<[Polygon][5], [GeoJsonProperties][7]>** Polygon Feature ## polygons -Creates a [Polygon][4] [FeatureCollection][7] from an Array of Polygon coordinates. +Creates a [Polygon][5] [FeatureCollection][8] from an Array of Polygon coordinates. ### Parameters -* `coordinates` **[Array][16]<[Array][16]<[Array][16]<[Position][19]>>>** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples @@ -210,19 +217,19 @@ var polygons = turf.polygons([ //=polygons ``` -Returns **[FeatureCollection][7]<[Polygon][4], [GeoJsonProperties][6]>** Polygon FeatureCollection +Returns **[FeatureCollection][8]<[Polygon][5], [GeoJsonProperties][7]>** Polygon FeatureCollection ## lineString -Creates a [LineString][2] [Feature][6] from an Array of Positions. +Creates a [LineString][3] [Feature][7] from an Array of Positions. ### Parameters -* `coordinates` **[Array][16]<[Position][19]>** an array of Positions -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Positions +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -235,19 +242,19 @@ var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], //=linestring2 ``` -Returns **[Feature][6]<[LineString][2], [GeoJsonProperties][6]>** LineString Feature +Returns **[Feature][7]<[LineString][3], [GeoJsonProperties][7]>** LineString Feature ## lineStrings -Creates a [LineString][2] [FeatureCollection][7] from an Array of LineString coordinates. +Creates a [LineString][3] [FeatureCollection][8] from an Array of LineString coordinates. ### Parameters -* `coordinates` **[Array][16]<[Array][16]<[Position][19]>>** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection * `options.id` **Id?** Identifier associated with the FeatureCollection @@ -262,18 +269,18 @@ var linestrings = turf.lineStrings([ //=linestrings ``` -Returns **[FeatureCollection][7]<[LineString][2], [GeoJsonProperties][6]>** LineString FeatureCollection +Returns **[FeatureCollection][8]<[LineString][3], [GeoJsonProperties][7]>** LineString FeatureCollection ## featureCollection -Takes one or more [Features][6] and creates a [FeatureCollection][7]. +Takes one or more [Features][7] and creates a [FeatureCollection][8]. ### Parameters -* `features` **[Array][16]<[Feature][6]<[GeometryObject][8], [GeoJsonProperties][6]>>** input features -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `features` **[Array][17]<[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>>** input features +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -292,20 +299,20 @@ var collection = turf.featureCollection([ //=collection ``` -Returns **[FeatureCollection][7]<[GeometryObject][8], [GeoJsonProperties][6]>** FeatureCollection of Features +Returns **[FeatureCollection][8]<[GeometryObject][9], [GeoJsonProperties][7]>** FeatureCollection of Features ## multiLineString -Creates a [Feature][6]<[MultiLineString][3]> based on a +Creates a [Feature][7]<[MultiLineString][4]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][16]<[Array][16]<[Position][19]>>** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -316,22 +323,22 @@ var multiLine = turf.multiLineString([[[0,0],[10,10]]]); //=multiLine ``` -* Throws **[Error][20]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][6]<[MultiLineString][3], [GeoJsonProperties][6]>** a MultiLineString feature +Returns **[Feature][7]<[MultiLineString][4], [GeoJsonProperties][7]>** a MultiLineString feature ## multiPoint -Creates a [Feature][6]<[MultiPoint][21]> based on a +Creates a [Feature][7]<[MultiPoint][22]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][16]<[Position][19]>** an array of Positions -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Position][20]>** an array of Positions +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -342,22 +349,22 @@ var multiPt = turf.multiPoint([[0,0],[10,10]]); //=multiPt ``` -* Throws **[Error][20]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][6]<[MultiPoint][21], [GeoJsonProperties][6]>** a MultiPoint feature +Returns **[Feature][7]<[MultiPoint][22], [GeoJsonProperties][7]>** a MultiPoint feature ## multiPolygon -Creates a [Feature][6]<[MultiPolygon][5]> based on a +Creates a [Feature][7]<[MultiPolygon][6]> based on a coordinate array. Properties can be added optionally. ### Parameters -* `coordinates` **[Array][16]<[Array][16]<[Array][16]<[Position][19]>>>** -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -368,9 +375,9 @@ var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); //=multiPoly ``` -* Throws **[Error][20]** if no coordinates are passed +* Throws **[Error][21]** if no coordinates are passed -Returns **[Feature][6]<[MultiPolygon][5], [GeoJsonProperties][6]>** a multipolygon feature +Returns **[Feature][7]<[MultiPolygon][6], [GeoJsonProperties][7]>** a multipolygon feature ## geometryCollection @@ -379,11 +386,11 @@ coordinate array. Properties can be added optionally. ### Parameters -* `geometries` **[Array][16]<([Point][18] | [LineString][2] | [Polygon][4] | [MultiPoint][21] | [MultiLineString][3] | [MultiPolygon][5])>** an array of GeoJSON Geometries -* `properties` **[GeoJsonProperties][6]** an Object of key-value pairs to add as properties (optional, default `{}`) -* `options` **[Object][14]** Optional Parameters (optional, default `{}`) +* `geometries` **[Array][17]<([Point][19] | [LineString][3] | [Polygon][5] | [MultiPoint][22] | [MultiLineString][4] | [MultiPolygon][6])>** an array of GeoJSON Geometries +* `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) +* `options` **[Object][15]** Optional Parameters (optional, default `{}`) - * `options.bbox` **[BBox][15]?** Bounding Box Array \[west, south, east, north] associated with the Feature + * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples @@ -396,7 +403,7 @@ var collection = turf.geometryCollection([pt, line]); // => collection ``` -Returns **[Feature][6]<[GeometryCollection][9], [GeoJsonProperties][6]>** a GeoJSON GeometryCollection Feature +Returns **[Feature][7]<[GeometryCollection][10], [GeoJsonProperties][7]>** a GeoJSON GeometryCollection Feature ## round @@ -404,8 +411,8 @@ Round number to precision ### Parameters -* `num` **[number][12]** Number -* `precision` **[number][12]** Precision (optional, default `0`) +* `num` **[number][13]** Number +* `precision` **[number][13]** Precision (optional, default `0`) ### Examples @@ -417,7 +424,7 @@ turf.round(120.4321, 2) //=120.43 ``` -Returns **[number][12]** rounded number +Returns **[number][13]** rounded number ## radiansToLength @@ -426,11 +433,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce ### Parameters -* `radians` **[number][12]** in radians across the sphere -* `units` **[Units][1]** can be degrees, radians, miles, inches, yards, metres, +* `radians` **[number][13]** in radians across the sphere +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][12]** distance +Returns **[number][13]** distance ## lengthToRadians @@ -439,11 +446,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, ce ### Parameters -* `distance` **[number][12]** in real units -* `units` **[Units][1]** can be degrees, radians, miles, inches, yards, metres, +* `distance` **[number][13]** in real units +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][12]** radians +Returns **[number][13]** radians ## lengthToDegrees @@ -452,11 +459,11 @@ Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, k ### Parameters -* `distance` **[number][12]** in real units -* `units` **[Units][1]** can be degrees, radians, miles, inches, yards, metres, +* `distance` **[number][13]** in real units +* `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) -Returns **[number][12]** degrees +Returns **[number][13]** degrees ## bearingToAzimuth @@ -465,9 +472,9 @@ and returns an angle between 0-360 degrees (positive clockwise), 0 being the nor ### Parameters -* `bearing` **[number][12]** angle, between -180 and +180 degrees +* `bearing` **[number][13]** angle, between -180 and +180 degrees -Returns **[number][12]** angle between 0 and 360 degrees +Returns **[number][13]** angle between 0 and 360 degrees ## azimuthToBearing @@ -476,9 +483,9 @@ and returns an angle between -180 and +180 degrees (positive clockwise), 0 being ### Parameters -* `angle` **[number][12]** between 0 and 360 degrees +* `angle` **[number][13]** between 0 and 360 degrees -Returns **[number][12]** bearing between -180 and +180 degrees +Returns **[number][13]** bearing between -180 and +180 degrees ## radiansToDegrees @@ -486,9 +493,9 @@ Converts an angle in radians to degrees ### Parameters -* `radians` **[number][12]** angle in radians +* `radians` **[number][13]** angle in radians -Returns **[number][12]** degrees between 0 and 360 degrees +Returns **[number][13]** degrees between 0 and 360 degrees ## degreesToRadians @@ -496,35 +503,33 @@ Converts an angle in degrees to radians ### Parameters -* `degrees` **[number][12]** angle between 0 and 360 degrees +* `degrees` **[number][13]** angle between 0 and 360 degrees -Returns **[number][12]** angle in radians +Returns **[number][13]** angle in radians ## convertLength -Converts a length to the requested unit. -Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet +Converts a length from one unit to another. ### Parameters -* `length` **[number][12]** to be converted -* `originalUnit` **[Units][1]** of the length (optional, default `"kilometers"`) -* `finalUnit` **[Units][1]** returned unit (optional, default `"kilometers"`) +* `length` **[number][13]** Length to be converted +* `originalUnit` **[Units][2]** Input length unit (optional, default `"kilometers"`) +* `finalUnit` **[Units][2]** Returned length unit (optional, default `"kilometers"`) -Returns **[number][12]** the converted length +Returns **[number][13]** The converted length ## convertArea -Converts a area to the requested unit. -Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares +Converts an area from one unit to another. ### Parameters -* `area` **[number][12]** to be converted -* `originalUnit` **[AreaUnits][13]** of the distance (optional, default `"meters"`) -* `finalUnit` **[AreaUnits][13]** returned unit (optional, default `"kilometers"`) +* `area` **[number][13]** Area to be converted +* `originalUnit` **[AreaUnits][14]** Input area unit (optional, default `"meters"`) +* `finalUnit` **[AreaUnits][14]** Returned area unit (optional, default `"kilometers"`) -Returns **[number][12]** the converted area +Returns **[number][13]** The converted length ## isNumber @@ -543,7 +548,7 @@ turf.isNumber('foo') //=false ``` -Returns **[boolean][22]** true/false +Returns **[boolean][23]** true/false ## isObject @@ -562,51 +567,53 @@ turf.isObject('foo') //=false ``` -Returns **[boolean][22]** true/false, including false for Arrays and Functions +Returns **[boolean][23]** true/false, including false for Arrays and Functions + +[1]: https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 -[1]: #units +[2]: #units -[2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 +[3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 -[3]: https://tools.ietf.org/html/rfc7946#section-3.1.5 +[4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 -[4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 -[5]: https://tools.ietf.org/html/rfc7946#section-3.1.7 +[6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 -[6]: https://tools.ietf.org/html/rfc7946#section-3.2 +[7]: https://tools.ietf.org/html/rfc7946#section-3.2 -[7]: https://tools.ietf.org/html/rfc7946#section-3.3 +[8]: https://tools.ietf.org/html/rfc7946#section-3.3 -[8]: https://tools.ietf.org/html/rfc7946#section-3.1 +[9]: https://tools.ietf.org/html/rfc7946#section-3.1 -[9]: https://tools.ietf.org/html/rfc7946#section-3.1.8 +[10]: https://tools.ietf.org/html/rfc7946#section-3.1.8 -[10]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius +[11]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius -[11]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended +[12]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended -[12]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number +[13]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number -[13]: #areaunits +[14]: #areaunits -[14]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object +[15]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object -[15]: https://tools.ietf.org/html/rfc7946#section-5 +[16]: https://tools.ietf.org/html/rfc7946#section-5 -[16]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array +[17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array -[17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String +[18]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[18]: https://tools.ietf.org/html/rfc7946#section-3.1.2 +[19]: https://tools.ietf.org/html/rfc7946#section-3.1.2 -[19]: https://developer.mozilla.org/docs/Web/API/Position +[20]: https://developer.mozilla.org/docs/Web/API/Position -[20]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error +[21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error -[21]: https://tools.ietf.org/html/rfc7946#section-3.1.3 +[22]: https://tools.ietf.org/html/rfc7946#section-3.1.3 -[22]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean +[23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean diff --git a/packages/turf-helpers/index.ts b/packages/turf-helpers/index.ts index f59c4c408e..1348911fd1 100644 --- a/packages/turf-helpers/index.ts +++ b/packages/turf-helpers/index.ts @@ -28,6 +28,13 @@ export type Coord = Feature | Point | Position; /** * Linear measurement units. * + * ⚠️ Warning. Be aware of the implications of using radian or degree units to + * measure distance. The distance represented by a degree of longitude *varies* + * depending on latitude. + * + * See https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 + * for an illustration of this behaviour. + * * @typedef */ export type Units = @@ -748,14 +755,13 @@ export function degreesToRadians(degrees: number): number { } /** - * Converts a length to the requested unit. - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet + * Converts a length from one unit to another. * * @function - * @param {number} length to be converted - * @param {Units} [originalUnit="kilometers"] of the length - * @param {Units} [finalUnit="kilometers"] returned unit - * @returns {number} the converted length + * @param {number} length Length to be converted + * @param {Units} [originalUnit="kilometers"] Input length unit + * @param {Units} [finalUnit="kilometers"] Returned length unit + * @returns {number} The converted length */ export function convertLength( length: number, @@ -769,14 +775,13 @@ export function convertLength( } /** - * Converts a area to the requested unit. - * Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches, hectares + * Converts an area from one unit to another. * * @function - * @param {number} area to be converted - * @param {AreaUnits} [originalUnit="meters"] of the distance - * @param {AreaUnits} [finalUnit="kilometers"] returned unit - * @returns {number} the converted area + * @param {number} area Area to be converted + * @param {AreaUnits} [originalUnit="meters"] Input area unit + * @param {AreaUnits} [finalUnit="kilometers"] Returned area unit + * @returns {number} The converted length */ export function convertArea( area: number, From 0da7ada5a9d54744b83bd947d7fbfe90e8f3e1cc Mon Sep 17 00:00:00 2001 From: James Beard Date: Wed, 20 Nov 2024 10:55:33 +1100 Subject: [PATCH 03/10] Added a regression test for clone() bug that was probably fixed a while ago. (#2749) --- packages/turf-clone/test.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages/turf-clone/test.ts b/packages/turf-clone/test.ts index 7e47d9ca04..4564e794d4 100644 --- a/packages/turf-clone/test.ts +++ b/packages/turf-clone/test.ts @@ -3,6 +3,7 @@ import { point, lineString, polygon, + feature, featureCollection, geometryCollection, } from "@turf/helpers"; @@ -319,3 +320,29 @@ test("turf-clone -- Feature with null geometry", (t) => { t.deepEqual(fc, cloned); t.end(); }); + +test("turf-clone -- Feature with property called 'length', issue #1621", (t) => { + const f = feature( + { type: "Point", coordinates: [0, 0] }, + { + processed: { + length: { + orig: 123.456, + opti: 100.0, + }, + }, + } + ); + + // Clone + const cloned = clone(f); + + t.deepEqual(f, cloned, "cloned feature should be deeply equal"); + t.equal( + cloned.properties.processed.length.orig, + 123.456, + "'orig' property should be preserved on 'processed.length' element" + ); + + t.end(); +}); From 7ae02b93336c69adb4d3e1c96536b133fdbf3de7 Mon Sep 17 00:00:00 2001 From: James Beard Date: Thu, 5 Dec 2024 11:32:26 +1100 Subject: [PATCH 04/10] Drop node 16 from CI (end of life was a year ago). Add node 22 instead. (#2761) --- .github/workflows/turf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/turf.yml b/.github/workflows/turf.yml index ba4be27474..ff07ad9e8f 100644 --- a/.github/workflows/turf.yml +++ b/.github/workflows/turf.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x, 22.x] steps: - name: Checkout From 42ad7b8fb0d08db693fe21a7be3ff03b690905b7 Mon Sep 17 00:00:00 2001 From: James Beard Date: Thu, 5 Dec 2024 20:08:29 +1100 Subject: [PATCH 05/10] Build housekeeping for December (#2760) * Updated tape, tsup, tsx, and tslib dependencies in monorepo packages. * Updated other build dependencies such as monorepolint, babel, rollup, and lerna. Removed MRL rule for rollup version as we only use it in one package. * Upgraded eslint dependencies and config file. --- .eslintignore | 4 - .eslintrc.js | 62 - .monorepolint.config.mjs | 18 +- eslint.config.mjs | 89 + package.json | 27 +- packages/turf-along/package.json | 10 +- packages/turf-angle/package.json | 10 +- packages/turf-area/package.json | 10 +- packages/turf-bbox-clip/package.json | 10 +- packages/turf-bbox-polygon/package.json | 10 +- packages/turf-bbox/package.json | 10 +- packages/turf-bearing/package.json | 10 +- packages/turf-bezier-spline/package.json | 10 +- packages/turf-boolean-clockwise/package.json | 10 +- packages/turf-boolean-concave/package.json | 10 +- packages/turf-boolean-contains/package.json | 10 +- packages/turf-boolean-crosses/package.json | 10 +- packages/turf-boolean-disjoint/package.json | 10 +- packages/turf-boolean-equal/package.json | 10 +- packages/turf-boolean-intersects/package.json | 10 +- packages/turf-boolean-overlap/package.json | 10 +- packages/turf-boolean-parallel/package.json | 10 +- .../package.json | 10 +- .../turf-boolean-point-on-line/package.json | 10 +- packages/turf-boolean-touches/package.json | 10 +- packages/turf-boolean-valid/package.json | 10 +- packages/turf-boolean-within/package.json | 10 +- packages/turf-buffer/package.json | 8 +- packages/turf-center-mean/package.json | 10 +- packages/turf-center-median/package.json | 10 +- packages/turf-center-of-mass/package.json | 10 +- packages/turf-center/package.json | 10 +- packages/turf-centroid/package.json | 10 +- packages/turf-circle/package.json | 10 +- packages/turf-clean-coords/package.json | 10 +- packages/turf-clone/package.json | 10 +- packages/turf-clusters-dbscan/package.json | 10 +- packages/turf-clusters-kmeans/package.json | 10 +- packages/turf-clusters/package.json | 10 +- packages/turf-collect/package.json | 10 +- packages/turf-combine/package.json | 10 +- packages/turf-concave/package.json | 10 +- packages/turf-convex/package.json | 10 +- packages/turf-destination/package.json | 10 +- packages/turf-difference/package.json | 10 +- packages/turf-directional-mean/package.json | 10 +- packages/turf-dissolve/package.json | 10 +- packages/turf-distance-weight/package.json | 10 +- packages/turf-distance/package.json | 10 +- packages/turf-ellipse/package.json | 10 +- packages/turf-envelope/package.json | 10 +- packages/turf-explode/package.json | 10 +- packages/turf-flatten/package.json | 10 +- packages/turf-flip/package.json | 10 +- packages/turf-geojson-rbush/package.json | 8 +- packages/turf-great-circle/package.json | 8 +- packages/turf-helpers/package.json | 10 +- packages/turf-hex-grid/package.json | 10 +- packages/turf-interpolate/package.json | 8 +- packages/turf-intersect/package.json | 10 +- packages/turf-invariant/package.json | 10 +- packages/turf-isobands/package.json | 10 +- packages/turf-isolines/package.json | 10 +- packages/turf-kinks/package.json | 10 +- packages/turf-length/package.json | 10 +- packages/turf-line-arc/package.json | 10 +- packages/turf-line-chunk/package.json | 8 +- packages/turf-line-intersect/package.json | 10 +- packages/turf-line-offset/package.json | 8 +- packages/turf-line-overlap/package.json | 10 +- packages/turf-line-segment/package.json | 10 +- packages/turf-line-slice-along/package.json | 8 +- packages/turf-line-slice/package.json | 8 +- packages/turf-line-split/package.json | 8 +- packages/turf-line-to-polygon/package.json | 10 +- packages/turf-mask/package.json | 10 +- packages/turf-meta/package.json | 6 +- packages/turf-midpoint/package.json | 10 +- packages/turf-moran-index/package.json | 10 +- .../package.json | 10 +- .../turf-nearest-point-on-line/package.json | 10 +- .../turf-nearest-point-to-line/package.json | 10 +- packages/turf-nearest-point/package.json | 10 +- packages/turf-planepoint/package.json | 10 +- packages/turf-point-grid/package.json | 10 +- packages/turf-point-on-feature/package.json | 10 +- .../turf-point-to-line-distance/package.json | 10 +- .../package.json | 10 +- .../turf-points-within-polygon/package.json | 10 +- packages/turf-polygon-smooth/package.json | 10 +- packages/turf-polygon-tangents/package.json | 10 +- packages/turf-polygon-to-line/package.json | 10 +- packages/turf-polygonize/package.json | 10 +- packages/turf-projection/package.json | 10 +- packages/turf-quadrat-analysis/package.json | 10 +- packages/turf-random/package.json | 10 +- packages/turf-rectangle-grid/package.json | 10 +- packages/turf-rewind/package.json | 10 +- packages/turf-rhumb-bearing/package.json | 10 +- packages/turf-rhumb-destination/package.json | 10 +- packages/turf-rhumb-distance/package.json | 10 +- packages/turf-sample/package.json | 10 +- packages/turf-sector/package.json | 10 +- packages/turf-shortest-path/package.json | 10 +- packages/turf-simplify/package.json | 10 +- packages/turf-square-grid/package.json | 10 +- packages/turf-square/package.json | 10 +- .../package.json | 10 +- packages/turf-tag/package.json | 10 +- packages/turf-tesselate/package.json | 10 +- packages/turf-tin/package.json | 10 +- packages/turf-transform-rotate/package.json | 10 +- packages/turf-transform-scale/package.json | 10 +- .../turf-transform-translate/package.json | 10 +- packages/turf-triangle-grid/package.json | 10 +- packages/turf-truncate/package.json | 10 +- packages/turf-union/package.json | 10 +- packages/turf-unkink-polygon/package.json | 10 +- packages/turf-voronoi/package.json | 10 +- packages/turf/package.json | 20 +- pnpm-lock.yaml | 5983 +++++++++-------- 121 files changed, 4040 insertions(+), 3281 deletions(-) delete mode 100644 .eslintignore delete mode 100644 .eslintrc.js create mode 100644 eslint.config.mjs diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 050fdcd338..0000000000 --- a/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -packages/turf/turf.js -packages/turf/turf.min.js -packages/turf/test.example.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 6c853c6c1a..0000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,62 +0,0 @@ -const rules = { - "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], - - "@typescript-eslint/explicit-module-boundary-types": "off", - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-var-requires": "off", - "no-constant-condition": "off", - "no-redeclare": "off", - "no-var": "off", - "prefer-const": "off", -}; - -module.exports = { - root: true, - ignorePatterns: ["**/dist/**"], - parser: "@typescript-eslint/parser", - plugins: ["@typescript-eslint"], - extends: [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended", - ], - parserOptions: { - ecmaVersion: 6, - sourceType: "module", - }, - env: { es6: true, node: true }, - rules, - - overrides: [ - { - files: ["packages/*/types.ts"], - rules: { - // these are meant to test the typescript typings, unused variables are expected - "@typescript-eslint/no-unused-vars": "off", - }, - }, - { - files: [ - ".eslintrc.js", - "packages/*/bench.js", - "packages/*/test.js", - "packages/turf/rollup.config.js", - "scripts/check-dependencies.js", - ], - env: { - node: true, - }, - }, - { - files: [ - // a few files use browser global variables - "packages/turf-isobands/lib/marchingsquares-isobands.js", - "packages/turf-isolines/lib/marchingsquares-isocontours.js", - ], - env: { - browser: true, - }, - }, - ], -}; diff --git a/.monorepolint.config.mjs b/.monorepolint.config.mjs index d815e4f409..dba15d73c9 100644 --- a/.monorepolint.config.mjs +++ b/.monorepolint.config.mjs @@ -221,8 +221,9 @@ export default { devDependencies: { benchmark: "^2.1.4", "npm-run-all": "^4.1.5", - tape: "^5.7.2", - tsx: "^4.6.2", + tape: "^5.9.0", + tsup: "^8.3.5", + tsx: "^4.19.2", }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], @@ -231,26 +232,17 @@ export default { requireDependency({ options: { dependencies: { - tslib: "^2.6.2", + tslib: "^2.8.1", }, devDependencies: { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", typescript: "^5.5.4", }, }, includePackages: TS_PACKAGES, }), - requireDependency({ - options: { - devDependencies: { - rollup: "^3.29.5", - }, - }, - includePackages: [MAIN_PACKAGE], - }), - requireDependency({ options: { dependencies: { diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000000..65716418d7 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,89 @@ +import typescriptEslint from "@typescript-eslint/eslint-plugin"; +import globals from "globals"; +import tsParser from "@typescript-eslint/parser"; +import js from "@eslint/js"; +import tsEslint from "typescript-eslint"; +import prettierRecommended from "eslint-plugin-prettier/recommended"; + +export default tsEslint.config( + js.configs.recommended, + tsEslint.configs.recommended, + { + ignores: [ + "**/dist/**/*", + "**/node_modules", + "packages/turf/turf.js", + "packages/turf/turf.min.js", + "packages/turf/test.example.js", + ], + }, + { + plugins: { + "@typescript-eslint": typescriptEslint, + }, + + languageOptions: { + globals: { + ...globals.node, + }, + + parser: tsParser, + ecmaVersion: 6, + sourceType: "module", + }, + + rules: { + "@typescript-eslint/no-unused-vars": [ + "error", + { + argsIgnorePattern: "^_", + }, + ], + + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/no-var-requires": "off", + "no-constant-condition": "off", + "no-redeclare": "off", + "no-var": "off", + "prefer-const": "off", + }, + }, + { + files: ["packages/*/types.ts", "packages/*/test.ts"], + + rules: { + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-unused-expressions": "off", + }, + }, + { + files: [ + "**/.eslintrc.js", + "packages/*/bench.js", + "packages/*/test.js", + "packages/turf/rollup.config.js", + "scripts/check-dependencies.js", + ], + + languageOptions: { + globals: { + ...globals.node, + }, + }, + }, + { + files: [ + "packages/turf-isobands/lib/marchingsquares-isobands.js", + "packages/turf-isolines/lib/marchingsquares-isocontours.js", + ], + + languageOptions: { + globals: { + ...globals.browser, + }, + }, + }, + prettierRecommended +); diff --git a/package.json b/package.json index 0dffa5ad36..82e98d3e3b 100644 --- a/package.json +++ b/package.json @@ -29,13 +29,13 @@ }, "packageManager": "pnpm@8.15.8+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392", "devDependencies": { - "@monorepolint/cli": "0.5.0-alpha.132", - "@monorepolint/config": "0.5.0-alpha.132", - "@monorepolint/core": "0.5.0-alpha.132", - "@monorepolint/rules": "0.5.0-alpha.132", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "^9.16.0", + "@monorepolint/cli": "0.5.0", + "@monorepolint/config": "0.5.0", + "@monorepolint/core": "0.5.0", + "@monorepolint/rules": "0.5.0", "@types/node": "18.11.9", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", "acorn": "^7.4.1", "camelcase": "^8.0.0", "d3-queue": "*", @@ -43,24 +43,25 @@ "dependency-tree": "^11.0.0", "documentation": "^14.0.3", "es-check": "^7.1.1", - "eslint": "^8.53.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-prettier": "^5.0.1", + "eslint": "^9.16.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.2.1", "esm": "^3.2.25", "fs-extra": "^11.1.1", "glob": "^10.3.10", + "globals": "^15.13.0", "husky": "^9.0.0", - "lerna": "^8.1.7", + "lerna": "^8.1.9", "lint-staged": "^15.2.8", "load-json-file": "^7.0.1", "meow": "^12.1.1", "npm-run-all": "^4.1.5", "prettier": "^3.3.3", "progress": "^2.0.3", - "ts-node": "^9.0.0", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", + "typescript-eslint": "^8.17.0", "yamljs": "^0.3.0" } } diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json index ac5ab3b40b..f642dedbad 100644 --- a/packages/turf-along/package.json +++ b/packages/turf-along/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -69,6 +69,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-angle/package.json b/packages/turf-angle/package.json index 02a97d006c..3d928d778f 100644 --- a/packages/turf-angle/package.json +++ b/packages/turf-angle/package.json @@ -56,14 +56,14 @@ "@turf/sector": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/invariant": "workspace:^", "@turf/rhumb-bearing": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json index c25b824e8f..99754d751e 100644 --- a/packages/turf-area/package.json +++ b/packages/turf-area/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-clip/package.json b/packages/turf-bbox-clip/package.json index 11cbc4aebc..0e633797fb 100644 --- a/packages/turf-bbox-clip/package.json +++ b/packages/turf-bbox-clip/package.json @@ -59,13 +59,13 @@ "devDependencies": { "@turf/bbox": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json index 53b5d35ea1..cbc6dabd44 100644 --- a/packages/turf-bbox-polygon/package.json +++ b/packages/turf-bbox-polygon/package.json @@ -53,17 +53,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json index 35783b046b..90af155cc8 100644 --- a/packages/turf-bbox/package.json +++ b/packages/turf-bbox/package.json @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json index 2c2ca13c8a..36dd940361 100644 --- a/packages/turf-bearing/package.json +++ b/packages/turf-bearing/package.json @@ -51,12 +51,12 @@ "devDependencies": { "@turf/destination": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -64,6 +64,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bezier-spline/package.json b/packages/turf-bezier-spline/package.json index 53c7e89a96..8062351814 100644 --- a/packages/turf-bezier-spline/package.json +++ b/packages/turf-bezier-spline/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-clockwise/package.json b/packages/turf-boolean-clockwise/package.json index 54c09215b0..381d67db2f 100755 --- a/packages/turf-boolean-clockwise/package.json +++ b/packages/turf-boolean-clockwise/package.json @@ -57,20 +57,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-concave/package.json b/packages/turf-boolean-concave/package.json index 57bc447c88..2e4b5109b2 100644 --- a/packages/turf-boolean-concave/package.json +++ b/packages/turf-boolean-concave/package.json @@ -56,20 +56,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-contains/package.json b/packages/turf-boolean-contains/package.json index 26f07f01ba..5154aded16 100644 --- a/packages/turf-boolean-contains/package.json +++ b/packages/turf-boolean-contains/package.json @@ -56,16 +56,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-crosses/package.json b/packages/turf-boolean-crosses/package.json index 4efabdfe89..269c93f9f7 100644 --- a/packages/turf-boolean-crosses/package.json +++ b/packages/turf-boolean-crosses/package.json @@ -56,15 +56,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -74,6 +74,6 @@ "@turf/line-intersect": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-disjoint/package.json b/packages/turf-boolean-disjoint/package.json index 58602d5cc3..aff58a995c 100644 --- a/packages/turf-boolean-disjoint/package.json +++ b/packages/turf-boolean-disjoint/package.json @@ -56,14 +56,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -73,6 +73,6 @@ "@turf/meta": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-equal/package.json b/packages/turf-boolean-equal/package.json index 240f075fbf..fdd1e5c084 100644 --- a/packages/turf-boolean-equal/package.json +++ b/packages/turf-boolean-equal/package.json @@ -59,15 +59,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-intersects/package.json b/packages/turf-boolean-intersects/package.json index a58594378f..efe3e08397 100644 --- a/packages/turf-boolean-intersects/package.json +++ b/packages/turf-boolean-intersects/package.json @@ -57,14 +57,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-overlap/package.json b/packages/turf-boolean-overlap/package.json index d5f9c1465d..4171e3ca1c 100755 --- a/packages/turf-boolean-overlap/package.json +++ b/packages/turf-boolean-overlap/package.json @@ -58,15 +58,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -77,6 +77,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-parallel/package.json b/packages/turf-boolean-parallel/package.json index 36e629ff19..31ed0d9a1d 100644 --- a/packages/turf-boolean-parallel/package.json +++ b/packages/turf-boolean-parallel/package.json @@ -55,13 +55,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/line-segment": "workspace:^", "@turf/rhumb-bearing": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-in-polygon/package.json b/packages/turf-boolean-point-in-polygon/package.json index 8e90e8bcdc..7097dac65f 100644 --- a/packages/turf-boolean-point-in-polygon/package.json +++ b/packages/turf-boolean-point-in-polygon/package.json @@ -54,12 +54,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", "point-in-polygon-hao": "^1.1.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-on-line/package.json b/packages/turf-boolean-point-on-line/package.json index 74c354e8fb..dbedc07bb3 100644 --- a/packages/turf-boolean-point-on-line/package.json +++ b/packages/turf-boolean-point-on-line/package.json @@ -53,14 +53,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-touches/package.json b/packages/turf-boolean-touches/package.json index 1c7c696857..8b5d186ce5 100644 --- a/packages/turf-boolean-touches/package.json +++ b/packages/turf-boolean-touches/package.json @@ -58,16 +58,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -76,6 +76,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-valid/package.json b/packages/turf-boolean-valid/package.json index f98b989128..01356d7f77 100644 --- a/packages/turf-boolean-valid/package.json +++ b/packages/turf-boolean-valid/package.json @@ -56,16 +56,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -80,6 +80,6 @@ "@turf/line-intersect": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-polygon-self-intersections": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-within/package.json b/packages/turf-boolean-within/package.json index 65f7b9d2fb..2f4a80efb1 100644 --- a/packages/turf-boolean-within/package.json +++ b/packages/turf-boolean-within/package.json @@ -58,16 +58,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json index f2b0c0a80f..20fc8953be 100644 --- a/packages/turf-buffer/package.json +++ b/packages/turf-buffer/package.json @@ -62,13 +62,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-center-mean/package.json b/packages/turf-center-mean/package.json index 6fe4b8ac7d..14b2b5a4a8 100644 --- a/packages/turf-center-mean/package.json +++ b/packages/turf-center-mean/package.json @@ -61,14 +61,14 @@ "@turf/center": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-median/package.json b/packages/turf-center-median/package.json index 4b92db29b2..98865caf02 100644 --- a/packages/turf-center-median/package.json +++ b/packages/turf-center-median/package.json @@ -57,13 +57,13 @@ "@turf/random": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-of-mass/package.json b/packages/turf-center-of-mass/package.json index 58548a0298..bf0819ed32 100644 --- a/packages/turf-center-of-mass/package.json +++ b/packages/turf-center-of-mass/package.json @@ -51,14 +51,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json index c21303a23b..68b0c2ab43 100644 --- a/packages/turf-center/package.json +++ b/packages/turf-center/package.json @@ -57,14 +57,14 @@ "@turf/bbox-polygon": "workspace:^", "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/bbox": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json index 5ad62aa884..21c81c6d7e 100644 --- a/packages/turf-centroid/package.json +++ b/packages/turf-centroid/package.json @@ -53,14 +53,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-circle/package.json b/packages/turf-circle/package.json index 86305350fc..a1ffaac54e 100644 --- a/packages/turf-circle/package.json +++ b/packages/turf-circle/package.json @@ -57,13 +57,13 @@ "@placemarkio/check-geojson": "^0.1.12", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/destination": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clean-coords/package.json b/packages/turf-clean-coords/package.json index 4a95525a38..718bee991a 100644 --- a/packages/turf-clean-coords/package.json +++ b/packages/turf-clean-coords/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clone/package.json b/packages/turf-clone/package.json index efc345f81e..3c9d4b989a 100644 --- a/packages/turf-clone/package.json +++ b/packages/turf-clone/package.json @@ -55,17 +55,17 @@ "devDependencies": { "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters-dbscan/package.json b/packages/turf-clusters-dbscan/package.json index 3bc8defc98..3eea20ea9c 100644 --- a/packages/turf-clusters-dbscan/package.json +++ b/packages/turf-clusters-dbscan/package.json @@ -64,15 +64,15 @@ "@turf/clusters": "workspace:^", "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters-kmeans/package.json b/packages/turf-clusters-kmeans/package.json index e3f2b1791c..ffd75ec784 100644 --- a/packages/turf-clusters-kmeans/package.json +++ b/packages/turf-clusters-kmeans/package.json @@ -64,15 +64,15 @@ "@turf/random": "workspace:^", "@types/benchmark": "^2.1.5", "@types/skmeans": "^0.11.7", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "skmeans": "0.9.7", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters/package.json b/packages/turf-clusters/package.json index 0f461bdb79..e4da1c1aa6 100644 --- a/packages/turf-clusters/package.json +++ b/packages/turf-clusters/package.json @@ -57,18 +57,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json index 54d08bc197..c602017233 100644 --- a/packages/turf-collect/package.json +++ b/packages/turf-collect/package.json @@ -58,12 +58,12 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json index 605276e2dd..db7cd0d720 100644 --- a/packages/turf-combine/package.json +++ b/packages/turf-combine/package.json @@ -53,18 +53,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json index 9583824c3c..1036883e5e 100644 --- a/packages/turf-concave/package.json +++ b/packages/turf-concave/package.json @@ -63,15 +63,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "@types/topojson-client": "3.1.3", "@types/topojson-server": "3.0.3", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -85,6 +85,6 @@ "@types/geojson": "^7946.0.10", "topojson-client": "3.x", "topojson-server": "3.x", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json index 2905b33f29..808b695fc8 100644 --- a/packages/turf-convex/package.json +++ b/packages/turf-convex/package.json @@ -51,14 +51,14 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/concaveman": "^1.1.6", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "concaveman": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json index 155ecc5ce6..cc7ae74431 100644 --- a/packages/turf-destination/package.json +++ b/packages/turf-destination/package.json @@ -55,14 +55,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json index 321ee633f2..110832ef30 100644 --- a/packages/turf-difference/package.json +++ b/packages/turf-difference/package.json @@ -50,14 +50,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json index 36e5552c58..fbaf429631 100644 --- a/packages/turf-directional-mean/package.json +++ b/packages/turf-directional-mean/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/length": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json index 48e4c90c7e..85089bdaaa 100644 --- a/packages/turf-dissolve/package.json +++ b/packages/turf-dissolve/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json index 7563e7854b..21f27c70e1 100644 --- a/packages/turf-distance-weight/package.json +++ b/packages/turf-distance-weight/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json index fb15447ae1..4d5a654e5a 100644 --- a/packages/turf-distance/package.json +++ b/packages/turf-distance/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json index eea2117419..6dd86f050e 100644 --- a/packages/turf-ellipse/package.json +++ b/packages/turf-ellipse/package.json @@ -58,14 +58,14 @@ "@turf/destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/transform-rotate": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json index a886e7b910..e0f19e1981 100644 --- a/packages/turf-envelope/package.json +++ b/packages/turf-envelope/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/bbox-polygon": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json index aaa87b435f..284863052b 100644 --- a/packages/turf-explode/package.json +++ b/packages/turf-explode/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json index bca313efa5..cfa1890b10 100644 --- a/packages/turf-flatten/package.json +++ b/packages/turf-flatten/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json index e87727629a..e21e7d4c9e 100644 --- a/packages/turf-flip/package.json +++ b/packages/turf-flip/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json index 5d19ba7cdb..f1e6c9d3f9 100644 --- a/packages/turf-geojson-rbush/package.json +++ b/packages/turf-geojson-rbush/package.json @@ -61,13 +61,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/random": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.2.2", "write-json-file": "^5.0.0" }, diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json index d55d5e64ac..6df5f1f746 100644 --- a/packages/turf-great-circle/package.json +++ b/packages/turf-great-circle/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json index 87a45f63cb..a67c831b29 100644 --- a/packages/turf-helpers/package.json +++ b/packages/turf-helpers/package.json @@ -59,16 +59,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json index 97345508e5..eab1c8c326 100644 --- a/packages/turf-hex-grid/package.json +++ b/packages/turf-hex-grid/package.json @@ -65,13 +65,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -81,6 +81,6 @@ "@turf/intersect": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-interpolate/package.json b/packages/turf-interpolate/package.json index ecbaa390d7..fc553f9d50 100644 --- a/packages/turf-interpolate/package.json +++ b/packages/turf-interpolate/package.json @@ -56,14 +56,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json index 6c2a042fde..20b174425a 100644 --- a/packages/turf-intersect/package.json +++ b/packages/turf-intersect/package.json @@ -52,14 +52,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json index 642eacd2b5..bc90fba646 100644 --- a/packages/turf-invariant/package.json +++ b/packages/turf-invariant/package.json @@ -56,17 +56,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json index 948eec4dec..9dbf1e1308 100644 --- a/packages/turf-isobands/package.json +++ b/packages/turf-isobands/package.json @@ -63,13 +63,13 @@ "@turf/rhumb-destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json index 84d88940d4..f3a959600f 100644 --- a/packages/turf-isolines/package.json +++ b/packages/turf-isolines/package.json @@ -63,13 +63,13 @@ "@turf/rhumb-destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -80,6 +80,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json index 575c8a33b5..01eaf7a1d0 100644 --- a/packages/turf-kinks/package.json +++ b/packages/turf-kinks/package.json @@ -53,19 +53,19 @@ "devDependencies": { "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json index 954b5186cc..89b848eb5b 100644 --- a/packages/turf-length/package.json +++ b/packages/turf-length/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json index cb86fa3ef7..8586adcf75 100644 --- a/packages/turf-line-arc/package.json +++ b/packages/turf-line-arc/package.json @@ -52,13 +52,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/destination": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json index 983a4d0875..145cb2164a 100644 --- a/packages/turf-line-chunk/package.json +++ b/packages/turf-line-chunk/package.json @@ -61,13 +61,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json index a7f3e1482b..7f2e7fb3c2 100644 --- a/packages/turf-line-intersect/package.json +++ b/packages/turf-line-intersect/package.json @@ -58,13 +58,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "sweepline-intersections": "^1.5.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json index 34c28e4aa5..29afb825aa 100644 --- a/packages/turf-line-offset/package.json +++ b/packages/turf-line-offset/package.json @@ -59,13 +59,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json index ace935b7c8..c3a4d9f923 100644 --- a/packages/turf-line-overlap/package.json +++ b/packages/turf-line-overlap/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/nearest-point-on-line": "workspace:^", "@types/geojson": "^7946.0.10", "fast-deep-equal": "^3.1.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json index be0b3bb813..3a0a6bf66c 100644 --- a/packages/turf-line-segment/package.json +++ b/packages/turf-line-segment/package.json @@ -51,13 +51,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json index 3a7489e82d..5c7c16cd24 100644 --- a/packages/turf-line-slice-along/package.json +++ b/packages/turf-line-slice-along/package.json @@ -53,13 +53,13 @@ "@turf/along": "workspace:^", "@turf/length": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2" }, "dependencies": { "@turf/bearing": "workspace:^", diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json index f2c94cc197..eafcd47914 100644 --- a/packages/turf-line-slice/package.json +++ b/packages/turf-line-slice/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json index f3b77ef585..c4d26d038a 100644 --- a/packages/turf-line-split/package.json +++ b/packages/turf-line-split/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json index 581256021d..e1dfcf99e2 100644 --- a/packages/turf-line-to-polygon/package.json +++ b/packages/turf-line-to-polygon/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json index 43f37ab543..108947cd72 100644 --- a/packages/turf-mask/package.json +++ b/packages/turf-mask/package.json @@ -52,14 +52,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "mkdirp": "^3.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json index dc149df718..1e2b475cda 100644 --- a/packages/turf-meta/package.json +++ b/packages/turf-meta/package.json @@ -77,9 +77,9 @@ "@types/benchmark": "^2.1.5", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2" }, "dependencies": { "@turf/helpers": "workspace:^", diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json index 22e74d989c..c0b77674b1 100644 --- a/packages/turf-midpoint/package.json +++ b/packages/turf-midpoint/package.json @@ -53,12 +53,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json index 23b34f5263..c7f89f31d1 100644 --- a/packages/turf-moran-index/package.json +++ b/packages/turf-moran-index/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-neighbor-analysis/package.json b/packages/turf-nearest-neighbor-analysis/package.json index 938990c4c9..16d8e606dc 100644 --- a/packages/turf-nearest-neighbor-analysis/package.json +++ b/packages/turf-nearest-neighbor-analysis/package.json @@ -54,13 +54,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/meta": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-on-line/package.json b/packages/turf-nearest-point-on-line/package.json index 325a758ade..895ad269d4 100644 --- a/packages/turf-nearest-point-on-line/package.json +++ b/packages/turf-nearest-point-on-line/package.json @@ -50,13 +50,13 @@ "@turf/length": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-to-line/package.json b/packages/turf-nearest-point-to-line/package.json index 95efad55b0..15859b5987 100644 --- a/packages/turf-nearest-point-to-line/package.json +++ b/packages/turf-nearest-point-to-line/package.json @@ -60,13 +60,13 @@ "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", "@types/object-assign": "^4.0.33", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/meta": "workspace:^", "@turf/point-to-line-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point/package.json b/packages/turf-nearest-point/package.json index 99964c06c5..c13213e6a1 100644 --- a/packages/turf-nearest-point/package.json +++ b/packages/turf-nearest-point/package.json @@ -55,13 +55,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json index 56240f17cc..33be1bb7ae 100644 --- a/packages/turf-planepoint/package.json +++ b/packages/turf-planepoint/package.json @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index eacb2443e2..83c8d80908 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -59,13 +59,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-on-feature/package.json b/packages/turf-point-on-feature/package.json index 36f7db65cd..1b8da78c4d 100644 --- a/packages/turf-point-on-feature/package.json +++ b/packages/turf-point-on-feature/package.json @@ -56,12 +56,12 @@ "@turf/meta": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-line-distance/package.json b/packages/turf-point-to-line-distance/package.json index 8d1feff848..b997b90f56 100644 --- a/packages/turf-point-to-line-distance/package.json +++ b/packages/turf-point-to-line-distance/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/circle": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/rhumb-bearing": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-polygon-distance/package.json b/packages/turf-point-to-polygon-distance/package.json index 689618f362..5c46b6aeb3 100644 --- a/packages/turf-point-to-polygon-distance/package.json +++ b/packages/turf-point-to-polygon-distance/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/point-to-line-distance": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-points-within-polygon/package.json b/packages/turf-points-within-polygon/package.json index fd0828e0d1..939a1b6ff5 100644 --- a/packages/turf-points-within-polygon/package.json +++ b/packages/turf-points-within-polygon/package.json @@ -54,12 +54,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-smooth/package.json b/packages/turf-polygon-smooth/package.json index e035c4c884..2afc18e336 100644 --- a/packages/turf-polygon-smooth/package.json +++ b/packages/turf-polygon-smooth/package.json @@ -55,14 +55,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-tangents/package.json b/packages/turf-polygon-tangents/package.json index eede9b5ee0..984b265b51 100644 --- a/packages/turf-polygon-tangents/package.json +++ b/packages/turf-polygon-tangents/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-to-line/package.json b/packages/turf-polygon-to-line/package.json index 54315bbb6b..ee3cc4a889 100644 --- a/packages/turf-polygon-to-line/package.json +++ b/packages/turf-polygon-to-line/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygonize/package.json b/packages/turf-polygonize/package.json index 8e0fcf805c..301fcd6f70 100644 --- a/packages/turf-polygonize/package.json +++ b/packages/turf-polygonize/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-projection/package.json b/packages/turf-projection/package.json index 431910abc0..bb4d8a1fb4 100644 --- a/packages/turf-projection/package.json +++ b/packages/turf-projection/package.json @@ -66,14 +66,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", "proj4": "^2.9.2", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -82,6 +82,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-quadrat-analysis/package.json b/packages/turf-quadrat-analysis/package.json index 9093cf8613..29974fcdb2 100644 --- a/packages/turf-quadrat-analysis/package.json +++ b/packages/turf-quadrat-analysis/package.json @@ -54,13 +54,13 @@ "devDependencies": { "@turf/nearest-neighbor-analysis": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/random": "workspace:^", "@turf/square-grid": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json index 38b2c44688..283bc98ea3 100644 --- a/packages/turf-random/package.json +++ b/packages/turf-random/package.json @@ -50,18 +50,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json index 14f0d617cb..04ed435f32 100644 --- a/packages/turf-rectangle-grid/package.json +++ b/packages/turf-rectangle-grid/package.json @@ -58,13 +58,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rewind/package.json b/packages/turf-rewind/package.json index 9e04a4f630..7c0734680c 100644 --- a/packages/turf-rewind/package.json +++ b/packages/turf-rewind/package.json @@ -59,13 +59,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-bearing/package.json b/packages/turf-rhumb-bearing/package.json index 6410eb40d3..1e9ddf7876 100644 --- a/packages/turf-rhumb-bearing/package.json +++ b/packages/turf-rhumb-bearing/package.json @@ -59,12 +59,12 @@ "devDependencies": { "@turf/destination": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-destination/package.json b/packages/turf-rhumb-destination/package.json index 79e08a3e16..d11d507c35 100644 --- a/packages/turf-rhumb-destination/package.json +++ b/packages/turf-rhumb-destination/package.json @@ -63,13 +63,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-distance/package.json b/packages/turf-rhumb-distance/package.json index 06d996034f..9dfd38a9b2 100644 --- a/packages/turf-rhumb-distance/package.json +++ b/packages/turf-rhumb-distance/package.json @@ -61,13 +61,13 @@ "devDependencies": { "@turf/distance": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json index e27419b91a..889c0b4936 100644 --- a/packages/turf-sample/package.json +++ b/packages/turf-sample/package.json @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sector/package.json b/packages/turf-sector/package.json index 5c25792698..8ed23177ad 100644 --- a/packages/turf-sector/package.json +++ b/packages/turf-sector/package.json @@ -52,13 +52,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/line-arc": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-shortest-path/package.json b/packages/turf-shortest-path/package.json index a08a1326d0..2e290d45da 100644 --- a/packages/turf-shortest-path/package.json +++ b/packages/turf-shortest-path/package.json @@ -57,13 +57,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -78,6 +78,6 @@ "@turf/meta": "workspace:^", "@turf/transform-scale": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json index cb1edd5e07..e3e62f71e6 100644 --- a/packages/turf-simplify/package.json +++ b/packages/turf-simplify/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json index 4b00386036..b641701b61 100644 --- a/packages/turf-square-grid/package.json +++ b/packages/turf-square-grid/package.json @@ -55,12 +55,12 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/rectangle-grid": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json index 91807bf787..02cee4853c 100644 --- a/packages/turf-square/package.json +++ b/packages/turf-square/package.json @@ -52,18 +52,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-standard-deviational-ellipse/package.json b/packages/turf-standard-deviational-ellipse/package.json index 69e3fe5dc4..ab71fcf85a 100644 --- a/packages/turf-standard-deviational-ellipse/package.json +++ b/packages/turf-standard-deviational-ellipse/package.json @@ -58,13 +58,13 @@ "@turf/random": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/meta": "workspace:^", "@turf/points-within-polygon": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json index 692c483a1f..a8e693ad1c 100644 --- a/packages/turf-tag/package.json +++ b/packages/turf-tag/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -71,6 +71,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json index 048cfee32d..a0733c6d65 100644 --- a/packages/turf-tesselate/package.json +++ b/packages/turf-tesselate/package.json @@ -60,18 +60,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "earcut": "^2.2.4", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json index 2dd2f78174..08a00c43a2 100644 --- a/packages/turf-tin/package.json +++ b/packages/turf-tin/package.json @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-rotate/package.json b/packages/turf-transform-rotate/package.json index 9bcb716513..f245a05469 100644 --- a/packages/turf-transform-rotate/package.json +++ b/packages/turf-transform-rotate/package.json @@ -58,13 +58,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -78,6 +78,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-scale/package.json b/packages/turf-transform-scale/package.json index 61acb936bf..2efe0c054f 100644 --- a/packages/turf-transform-scale/package.json +++ b/packages/turf-transform-scale/package.json @@ -64,13 +64,13 @@ "@turf/hex-grid": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -86,6 +86,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-translate/package.json b/packages/turf-transform-translate/package.json index e129b04297..56a069ca37 100644 --- a/packages/turf-transform-translate/package.json +++ b/packages/turf-transform-translate/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/meta": "workspace:^", "@turf/rhumb-destination": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json index fc953dffdc..d8b517bc3c 100644 --- a/packages/turf-triangle-grid/package.json +++ b/packages/turf-triangle-grid/package.json @@ -57,13 +57,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/intersect": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-truncate/package.json b/packages/turf-truncate/package.json index 40edff7cf9..f81eb98c28 100644 --- a/packages/turf-truncate/package.json +++ b/packages/turf-truncate/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json index 790c6a6fb0..a39b688603 100644 --- a/packages/turf-union/package.json +++ b/packages/turf-union/package.json @@ -51,14 +51,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-unkink-polygon/package.json b/packages/turf-unkink-polygon/package.json index d0d0846227..2f40ecdec7 100644 --- a/packages/turf-unkink-polygon/package.json +++ b/packages/turf-unkink-polygon/package.json @@ -55,13 +55,13 @@ "devDependencies": { "@turf/kinks": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-voronoi/package.json b/packages/turf-voronoi/package.json index 9e4c290c98..e7c0aadf5b 100644 --- a/packages/turf-voronoi/package.json +++ b/packages/turf-voronoi/package.json @@ -59,14 +59,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@types/d3-voronoi": "^1.1.12", "@types/geojson": "^7946.0.10", "d3-voronoi": "1.1.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf/package.json b/packages/turf/package.json index 644fa5261a..0b39f24aed 100644 --- a/packages/turf/package.json +++ b/packages/turf/package.json @@ -74,21 +74,21 @@ "test": "echo '@turf/turf tests run in the last-checks step'" }, "devDependencies": { - "@babel/core": "^7.23.2", - "@babel/preset-env": "^7.23.2", + "@babel/core": "^7.26.0", + "@babel/preset-env": "^7.26.0", "@rollup/plugin-babel": "^6.0.4", - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-commonjs": "^28.0.1", + "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "camelcase": "^8.0.0", "documentation": "^14.0.3", "glob": "^10.3.10", - "rollup": "^3.29.5", + "rollup": "^4.28.0", "rollup-plugin-polyfill-node": "^0.13.0", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -206,6 +206,6 @@ "@turf/unkink-polygon": "workspace:^", "@turf/voronoi": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d1b8fba22..3ab4e90963 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,27 +8,27 @@ importers: .: devDependencies: + '@eslint/eslintrc': + specifier: ^3.2.0 + version: 3.2.0 + '@eslint/js': + specifier: ^9.16.0 + version: 9.16.0 '@monorepolint/cli': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/config': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/core': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/rules': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@types/node': specifier: 18.11.9 version: 18.11.9 - '@typescript-eslint/eslint-plugin': - specifier: ^6.10.0 - version: 6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/parser': - specifier: ^6.10.0 - version: 6.13.2(eslint@8.55.0)(typescript@5.5.4) acorn: specifier: ^7.4.1 version: 7.4.1 @@ -51,14 +51,14 @@ importers: specifier: ^7.1.1 version: 7.1.1 eslint: - specifier: ^8.53.0 - version: 8.55.0 + specifier: ^9.16.0 + version: 9.16.0 eslint-config-prettier: - specifier: ^9.0.0 - version: 9.1.0(eslint@8.55.0) + specifier: ^9.1.0 + version: 9.1.0(eslint@9.16.0) eslint-plugin-prettier: - specifier: ^5.0.1 - version: 5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3) + specifier: ^5.2.1 + version: 5.2.1(eslint-config-prettier@9.1.0)(eslint@9.16.0)(prettier@3.3.3) esm: specifier: ^3.2.25 version: 3.2.25 @@ -68,12 +68,15 @@ importers: glob: specifier: ^10.3.10 version: 10.3.10 + globals: + specifier: ^15.13.0 + version: 15.13.0 husky: specifier: ^9.0.0 version: 9.1.4 lerna: - specifier: ^8.1.7 - version: 8.1.7 + specifier: ^8.1.9 + version: 8.1.9 lint-staged: specifier: ^15.2.8 version: 15.2.8 @@ -92,18 +95,18 @@ importers: progress: specifier: ^2.0.3 version: 2.0.3 - ts-node: - specifier: ^9.0.0 - version: 9.1.1(typescript@5.5.4) tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 + typescript-eslint: + specifier: ^8.17.0 + version: 8.17.0(eslint@9.16.0)(typescript@5.5.4) yamljs: specifier: ^0.3.0 version: 0.3.0 @@ -453,29 +456,29 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@babel/core': - specifier: ^7.23.2 - version: 7.23.5 + specifier: ^7.26.0 + version: 7.26.0 '@babel/preset-env': - specifier: ^7.23.2 - version: 7.23.5(@babel/core@7.23.5) + specifier: ^7.26.0 + version: 7.26.0(@babel/core@7.26.0) '@rollup/plugin-babel': specifier: ^6.0.4 - version: 6.0.4(@babel/core@7.23.5)(rollup@3.29.5) + version: 6.0.4(@babel/core@7.26.0)(rollup@4.28.0) '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.7(rollup@3.29.5) + specifier: ^28.0.1 + version: 28.0.1(rollup@4.28.0) '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@3.29.5) + specifier: ^15.3.0 + version: 15.3.0(rollup@4.28.0) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@3.29.5) + version: 0.4.4(rollup@4.28.0) '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 camelcase: specifier: ^8.0.0 @@ -487,20 +490,20 @@ importers: specifier: ^10.3.10 version: 10.3.10 rollup: - specifier: ^3.29.5 - version: 3.29.5 + specifier: ^4.28.0 + version: 4.28.0 rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@3.29.5) + version: 0.13.0(rollup@4.28.0) tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -526,14 +529,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -545,14 +548,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -575,8 +578,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:^ @@ -591,7 +594,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -606,14 +609,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -633,14 +636,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -652,14 +655,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -679,14 +682,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -695,14 +698,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -719,8 +722,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox': specifier: workspace:^ @@ -729,7 +732,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -741,14 +744,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -765,14 +768,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -781,14 +784,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -805,8 +808,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:^ @@ -815,7 +818,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -824,14 +827,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -851,14 +854,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -870,14 +873,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -897,14 +900,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -919,14 +922,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -943,14 +946,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -965,14 +968,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -998,14 +1001,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1026,14 +1029,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1059,14 +1062,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1084,14 +1087,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1117,14 +1120,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1139,14 +1142,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1169,14 +1172,14 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1194,14 +1197,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1221,14 +1224,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1243,14 +1246,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1279,14 +1282,14 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1304,14 +1307,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1334,14 +1337,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1353,14 +1356,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1383,14 +1386,14 @@ importers: specifier: ^1.1.0 version: 1.1.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1399,14 +1402,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1423,14 +1426,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1445,14 +1448,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1478,14 +1481,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1506,14 +1509,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1554,14 +1557,14 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1582,14 +1585,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1615,14 +1618,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1643,14 +1646,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1689,7 +1692,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1701,14 +1704,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -1725,8 +1728,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -1738,7 +1741,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1753,14 +1756,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1783,8 +1786,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:^ @@ -1796,7 +1799,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1811,14 +1814,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1847,8 +1850,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:^ @@ -1866,7 +1869,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1878,14 +1881,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1914,14 +1917,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1936,14 +1939,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1963,14 +1966,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1985,14 +1988,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2012,8 +2015,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -2025,7 +2028,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2037,14 +2040,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2064,8 +2067,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -2074,7 +2077,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2086,14 +2089,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2110,8 +2113,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -2120,7 +2123,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2129,14 +2132,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2153,14 +2156,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2169,14 +2172,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2202,8 +2205,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:^ @@ -2218,7 +2221,7 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2236,14 +2239,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2272,8 +2275,8 @@ importers: specifier: 0.9.7 version: 0.9.7 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:^ @@ -2291,7 +2294,7 @@ importers: specifier: ^0.11.7 version: 0.11.7 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2309,14 +2312,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2342,8 +2345,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2352,7 +2355,7 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2361,14 +2364,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2385,14 +2388,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2401,14 +2404,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2443,14 +2446,14 @@ importers: specifier: 3.x version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 '@types/topojson-client': specifier: 3.1.3 @@ -2468,14 +2471,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2498,8 +2501,8 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2508,7 +2511,7 @@ importers: specifier: ^1.1.6 version: 1.1.6 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2523,14 +2526,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2550,8 +2553,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -2560,7 +2563,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2575,14 +2578,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2605,14 +2608,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2627,14 +2630,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2669,14 +2672,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2688,14 +2691,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2724,14 +2727,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2743,14 +2746,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2770,14 +2773,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2789,14 +2792,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2822,14 +2825,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2841,14 +2844,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2874,8 +2877,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -2896,7 +2899,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2911,14 +2914,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2941,14 +2944,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2960,14 +2963,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2984,14 +2987,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3003,14 +3006,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3030,14 +3033,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3049,14 +3052,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3079,14 +3082,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3098,14 +3101,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3141,7 +3144,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3153,14 +3156,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.3.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.2.2 version: 5.3.3 @@ -3187,7 +3190,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3199,14 +3202,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3217,14 +3220,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3233,14 +3236,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3263,8 +3266,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -3276,7 +3279,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3288,14 +3291,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3349,7 +3352,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3364,14 +3367,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3391,14 +3394,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3413,14 +3416,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3437,14 +3440,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3453,14 +3456,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3495,8 +3498,8 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:^ @@ -3517,7 +3520,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3529,14 +3532,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3565,8 +3568,8 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:^ @@ -3587,7 +3590,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3599,14 +3602,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3623,8 +3626,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -3633,7 +3636,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3645,14 +3648,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3675,14 +3678,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3694,14 +3697,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3724,8 +3727,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -3734,7 +3737,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3746,14 +3749,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3786,7 +3789,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3798,14 +3801,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3822,8 +3825,8 @@ importers: specifier: ^1.5.0 version: 1.5.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -3832,7 +3835,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3844,14 +3847,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3881,7 +3884,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3893,14 +3896,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3935,14 +3938,14 @@ importers: specifier: ^3.1.3 version: 3.1.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3954,14 +3957,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3984,14 +3987,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4003,14 +4006,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4040,7 +4043,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4052,14 +4055,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -4092,7 +4095,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4104,14 +4107,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 packages/turf-line-split: dependencies: @@ -4153,7 +4156,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4165,14 +4168,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -4195,14 +4198,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4214,14 +4217,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4244,14 +4247,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4266,14 +4269,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4303,14 +4306,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 packages/turf-midpoint: dependencies: @@ -4330,14 +4333,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4346,14 +4349,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4373,14 +4376,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4392,14 +4395,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4437,8 +4440,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -4447,7 +4450,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4459,14 +4462,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4492,14 +4495,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4511,14 +4514,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4544,8 +4547,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/along': specifier: workspace:^ @@ -4560,7 +4563,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4572,14 +4575,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4605,8 +4608,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:^ @@ -4621,7 +4624,7 @@ importers: specifier: ^4.0.33 version: 4.0.33 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4633,14 +4636,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4660,14 +4663,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4676,14 +4679,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4706,8 +4709,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -4719,7 +4722,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4731,14 +4734,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4767,8 +4770,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -4780,7 +4783,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4789,14 +4792,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4837,8 +4840,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:^ @@ -4847,7 +4850,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4859,14 +4862,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4898,14 +4901,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4917,14 +4920,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4947,14 +4950,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4963,14 +4966,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4987,14 +4990,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5009,14 +5012,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5048,14 +5051,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5067,14 +5070,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5094,14 +5097,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5113,14 +5116,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5149,14 +5152,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5168,14 +5171,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5198,8 +5201,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5208,7 +5211,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5223,14 +5226,14 @@ importers: specifier: ^2.9.2 version: 2.9.2 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5271,8 +5274,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/nearest-neighbor-analysis': specifier: workspace:^ @@ -5281,7 +5284,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5293,14 +5296,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5317,14 +5320,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5336,14 +5339,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5363,8 +5366,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -5376,7 +5379,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5388,14 +5391,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5424,14 +5427,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5443,14 +5446,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5470,8 +5473,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:^ @@ -5480,7 +5483,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5489,14 +5492,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5516,8 +5519,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5526,7 +5529,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5538,14 +5541,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5565,8 +5568,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:^ @@ -5575,7 +5578,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5587,14 +5590,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5611,14 +5614,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5627,14 +5630,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5660,8 +5663,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5670,7 +5673,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5682,14 +5685,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5730,8 +5733,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5740,7 +5743,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5752,14 +5755,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5785,8 +5788,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5795,7 +5798,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5807,14 +5810,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5834,14 +5837,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5850,14 +5853,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5874,8 +5877,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -5887,7 +5890,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5896,14 +5899,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5935,8 +5938,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/random': specifier: workspace:^ @@ -5948,7 +5951,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5960,14 +5963,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5993,14 +5996,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6012,14 +6015,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6036,14 +6039,14 @@ importers: specifier: ^2.2.4 version: 2.2.4 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6052,14 +6055,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6073,14 +6076,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6089,14 +6092,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6131,8 +6134,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -6141,7 +6144,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6153,14 +6156,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6204,8 +6207,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -6220,7 +6223,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6232,14 +6235,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6268,8 +6271,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -6278,7 +6281,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6290,14 +6293,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6320,8 +6323,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -6333,7 +6336,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6345,14 +6348,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6372,14 +6375,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6391,14 +6394,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6421,14 +6424,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6443,14 +6446,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6479,8 +6482,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/kinks': specifier: workspace:^ @@ -6489,7 +6492,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6501,14 +6504,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6537,14 +6540,14 @@ importers: specifier: 1.1.2 version: 1.1.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6559,14 +6562,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6576,17 +6579,12 @@ importers: packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + /@ampproject/remapping@2.3.0: + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 dev: true /@babel/code-frame@7.23.5: @@ -6597,27 +6595,36 @@ packages: chalk: 2.4.2 dev: true - /@babel/compat-data@7.23.5: - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + /@babel/code-frame@7.26.2: + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + dev: true + + /@babel/compat-data@7.26.2: + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.23.5: - resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==} + /@babel/core@7.26.0: + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6635,70 +6642,84 @@ packages: jsesc: 2.5.2 dev: true - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + /@babel/generator@7.26.2: + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + /@babel/helper-annotate-as-pure@7.25.9: + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.26.0 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor@7.25.9: + resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + /@babel/helper-compilation-targets@7.25.9: + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 + '@babel/compat-data': 7.26.2 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.2 lru-cache: 5.1.1 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==} + /@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/traverse': 7.25.9 semver: 6.3.1 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.5): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + /@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + regexpu-core: 6.2.0 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} + /@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0): + resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -6725,11 +6746,14 @@ packages: '@babel/types': 7.23.5 dev: true - /@babel/helper-member-expression-to-functions@7.23.0: - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} + /@babel/helper-member-expression-to-functions@7.25.9: + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/helper-module-imports@7.22.15: @@ -6739,68 +6763,88 @@ packages: '@babel/types': 7.23.5 dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + /@babel/helper-module-imports@7.25.9: + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + /@babel/helper-optimise-call-expression@7.25.9: + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.26.0 dev: true - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + /@babel/helper-plugin-utils@7.25.9: + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + /@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-wrap-function': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + /@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + /@babel/helper-simple-access@7.25.9: + resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + /@babel/helper-skip-transparent-expression-wrappers@7.25.9: + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/helper-split-export-declaration@7.22.6: @@ -6815,10 +6859,9 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-string-parser@7.24.8: - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + /@babel/helper-string-parser@7.25.9: + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - requiresBuild: true dev: true /@babel/helper-validator-identifier@7.22.20: @@ -6826,35 +6869,33 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier@7.24.7: - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + /@babel/helper-validator-identifier@7.25.9: + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - requiresBuild: true dev: true - /@babel/helper-validator-option@7.23.5: - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + /@babel/helper-validator-option@7.25.9: + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} + /@babel/helper-wrap-function@7.25.9: + resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.25.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helpers@7.23.5: - resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==} + /@babel/helpers@7.26.0: + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - transitivePeerDependencies: - - supports-color + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 dev: true /@babel/highlight@7.23.4: @@ -6879,863 +6920,786 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.26.0 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + /@babel/parser@7.26.2: + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + engines: {node: '>=6.0.0'} + hasBin: true dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.26.0 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} + /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} + /@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - dev: true - - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + /@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + /@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} + /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} + /@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} + /@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} + /@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} + /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} + /@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} + /@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} + /@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 globals: 11.12.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} + /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 dev: true - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} + /@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} + /@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + dev: true + + /@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} + /@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} + /@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} + /@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} + /@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} + /@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + /@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} + /@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + /@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} + /@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + /@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-simple-access': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} + /@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} + /@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + /@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} + /@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} + /@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} + /@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) dev: true - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} + /@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} + /@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} + /@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} + /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} + /@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} + /@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} + /@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} + /@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} + /@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + dev: true + + /@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} + /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} + /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} + /@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} + /@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} + /@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} + /@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} + /@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} + /@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} + /@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/preset-env@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==} + /@babel/preset-env@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.5) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/compat-data': 7.26.2 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-option': 7.25.9 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0) + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0) + babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0) + babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0) + core-js-compat: 3.39.0 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.5): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/types': 7.26.0 esutils: 2.0.3 dev: true - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - dev: true - - /@babel/runtime@7.23.5: - resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==} + /@babel/runtime@7.26.0: + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.14.0 + regenerator-runtime: 0.14.1 dev: true /@babel/template@7.22.15: @@ -7747,6 +7711,15 @@ packages: '@babel/types': 7.23.5 dev: true + /@babel/template@7.25.9: + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + dev: true + /@babel/traverse@7.23.5: resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==} engines: {node: '>=6.9.0'} @@ -7759,7 +7732,22 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/traverse@7.25.9: + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -7774,13 +7762,12 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types@7.25.2: - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} + /@babel/types@7.26.0: + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 dev: true /@colors/colors@1.6.0: @@ -7804,435 +7791,478 @@ packages: node-source-walk: 7.0.0 dev: true - /@esbuild/aix-ppc64@0.19.11: - resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} - engines: {node: '>=12'} + /@esbuild/aix-ppc64@0.23.1: + resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} + /@esbuild/aix-ppc64@0.24.0: + resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.23.1: + resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} + engines: {node: '>=18'} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64@0.19.11: - resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} - engines: {node: '>=12'} + /@esbuild/android-arm64@0.24.0: + resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} + engines: {node: '>=18'} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} + /@esbuild/android-arm@0.23.1: + resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm@0.19.11: - resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} - engines: {node: '>=12'} + /@esbuild/android-arm@0.24.0: + resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} + engines: {node: '>=18'} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} + /@esbuild/android-x64@0.23.1: + resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} + engines: {node: '>=18'} cpu: [x64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64@0.19.11: - resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} - engines: {node: '>=12'} + /@esbuild/android-x64@0.24.0: + resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} + engines: {node: '>=18'} cpu: [x64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} + /@esbuild/darwin-arm64@0.23.1: + resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-arm64@0.19.11: - resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} - engines: {node: '>=12'} + /@esbuild/darwin-arm64@0.24.0: + resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} + /@esbuild/darwin-x64@0.23.1: + resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-x64@0.19.11: - resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} - engines: {node: '>=12'} + /@esbuild/darwin-x64@0.24.0: + resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} + /@esbuild/freebsd-arm64@0.23.1: + resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-arm64@0.19.11: - resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} - engines: {node: '>=12'} + /@esbuild/freebsd-arm64@0.24.0: + resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} + /@esbuild/freebsd-x64@0.23.1: + resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-x64@0.19.11: - resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} - engines: {node: '>=12'} + /@esbuild/freebsd-x64@0.24.0: + resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} + /@esbuild/linux-arm64@0.23.1: + resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64@0.19.11: - resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} - engines: {node: '>=12'} + /@esbuild/linux-arm64@0.24.0: + resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} + /@esbuild/linux-arm@0.23.1: + resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} + engines: {node: '>=18'} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm@0.19.11: - resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} - engines: {node: '>=12'} + /@esbuild/linux-arm@0.24.0: + resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} + engines: {node: '>=18'} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} + /@esbuild/linux-ia32@0.23.1: + resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32@0.19.11: - resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} - engines: {node: '>=12'} + /@esbuild/linux-ia32@0.24.0: + resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} + /@esbuild/linux-loong64@0.23.1: + resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.19.11: - resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} - engines: {node: '>=12'} + /@esbuild/linux-loong64@0.24.0: + resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} + /@esbuild/linux-mips64el@0.23.1: + resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.19.11: - resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} - engines: {node: '>=12'} + /@esbuild/linux-mips64el@0.24.0: + resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} + /@esbuild/linux-ppc64@0.23.1: + resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.19.11: - resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} - engines: {node: '>=12'} + /@esbuild/linux-ppc64@0.24.0: + resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} + /@esbuild/linux-riscv64@0.23.1: + resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.19.11: - resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} - engines: {node: '>=12'} + /@esbuild/linux-riscv64@0.24.0: + resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} + /@esbuild/linux-s390x@0.23.1: + resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.19.11: - resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} - engines: {node: '>=12'} + /@esbuild/linux-s390x@0.24.0: + resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} + /@esbuild/linux-x64@0.23.1: + resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} + engines: {node: '>=18'} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.19.11: - resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} - engines: {node: '>=12'} + /@esbuild/linux-x64@0.24.0: + resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} + /@esbuild/netbsd-x64@0.23.1: + resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.19.11: - resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} - engines: {node: '>=12'} + /@esbuild/netbsd-x64@0.24.0: + resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} + /@esbuild/openbsd-arm64@0.23.1: + resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-arm64@0.24.0: + resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.23.1: + resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.19.11: - resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} - engines: {node: '>=12'} + /@esbuild/openbsd-x64@0.24.0: + resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} + /@esbuild/sunos-x64@0.23.1: + resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] requiresBuild: true dev: true optional: true - /@esbuild/sunos-x64@0.19.11: - resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} - engines: {node: '>=12'} + /@esbuild/sunos-x64@0.24.0: + resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] requiresBuild: true dev: true optional: true - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} + /@esbuild/win32-arm64@0.23.1: + resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-arm64@0.19.11: - resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} - engines: {node: '>=12'} + /@esbuild/win32-arm64@0.24.0: + resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} + /@esbuild/win32-ia32@0.23.1: + resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-ia32@0.19.11: - resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} - engines: {node: '>=12'} + /@esbuild/win32-ia32@0.24.0: + resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} + /@esbuild/win32-x64@0.23.1: + resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} + engines: {node: '>=18'} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-x64@0.19.11: - resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} - engines: {node: '>=12'} + /@esbuild/win32-x64@0.24.0: + resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} + engines: {node: '>=18'} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + /@eslint-community/eslint-utils@4.4.1(eslint@9.16.0): + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.55.0 + eslint: 9.16.0 eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.10.0: - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + /@eslint-community/regexpp@4.12.1: + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@2.1.4: - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@eslint/config-array@0.19.0: + resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + '@eslint/object-schema': 2.1.4 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/core@0.9.0: + resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/eslintrc@3.2.0: + resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: ajv: 6.12.6 - debug: 4.3.4 - espree: 9.6.1 - globals: 13.23.0 - ignore: 5.3.0 + debug: 4.3.7 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -8241,9 +8271,21 @@ packages: - supports-color dev: true - /@eslint/js@8.55.0: - resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@eslint/js@9.16.0: + resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/object-schema@2.1.4: + resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/plugin-kit@0.2.3: + resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + levn: 0.4.1 dev: true /@gwhitney/detect-indent@7.0.1: @@ -8251,15 +8293,17 @@ packages: engines: {node: '>=12.20'} dev: true - /@humanwhocodes/config-array@0.11.13: - resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} - engines: {node: '>=10.10.0'} + /@humanfs/core@0.19.1: + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + dev: true + + /@humanfs/node@0.16.6: + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} dependencies: - '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 dev: true /@humanwhocodes/module-importer@1.0.1: @@ -8267,8 +8311,14 @@ packages: engines: {node: '>=12.22'} dev: true - /@humanwhocodes/object-schema@2.0.1: - resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + /@humanwhocodes/retry@0.3.1: + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + dev: true + + /@humanwhocodes/retry@0.4.1: + resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + engines: {node: '>=18.18'} dev: true /@hutson/parse-repository-url@3.0.2: @@ -8308,16 +8358,35 @@ packages: '@jridgewell/trace-mapping': 0.3.20 dev: true + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + dev: true + /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} dev: true + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + dev: true + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} dev: true + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + dev: true + /@jridgewell/source-map@0.3.5: resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: @@ -8341,11 +8410,18 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@lerna/create@8.1.7(typescript@5.5.4): - resolution: {integrity: sha512-ch81CgU5pBNOiUCQx44F/ZtN4DxxJjUQtuytYRBFWJSHAJ+XPJtiC/yQ9zjr1I1yaUlmNYYblkopoOyziOdJ1w==} + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + dev: true + + /@lerna/create@8.1.9(typescript@5.5.4): + resolution: {integrity: sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==} engines: {node: '>=18.0.0'} dependencies: - '@npmcli/arborist': 7.5.3 + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) @@ -8361,7 +8437,7 @@ packages: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.5.4) dedent: 1.5.3 execa: 5.0.0 fs-extra: 11.2.0 @@ -8427,77 +8503,78 @@ packages: - typescript dev: true - /@ljharb/resumer@0.0.1: - resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} + /@ljharb/resumer@0.1.3: + resolution: {integrity: sha512-d+tsDgfkj9X5QTriqM4lKesCkMMJC3IrbPKHvayP00ELx2axdXvDfWkqjxrLXIzGcQzmj7VAUT1wopqARTvafw==} engines: {node: '>= 0.4'} dependencies: - '@ljharb/through': 2.3.11 + '@ljharb/through': 2.3.13 + call-bind: 1.0.7 dev: true - /@ljharb/through@2.3.11: - resolution: {integrity: sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==} + /@ljharb/through@2.3.13: + resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true - /@monorepolint/cli@0.5.0-alpha.132: - resolution: {integrity: sha512-6R7qK2SLpKENaby2GKXUUUhhwEnYjIEHfwNB4A6PtTh3qdlNG2DQjFeyZb4N/gU7ehiHQHZIM6AgYdU1VP+XoA==} + /@monorepolint/cli@0.5.0: + resolution: {integrity: sha512-8yLqmxe2tLDOF5+36gYf6/1EhNe3Wfk64dGnak/3xuR9OhCFg+JzRA3YmL0ZtyZNxUOv1D5TGJlTeRmoRlo8ug==} engines: {node: '>=18'} hasBin: true dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 dev: true - /@monorepolint/config@0.5.0-alpha.132: - resolution: {integrity: sha512-pSxzhB2jTEjO3jDDjeopNDhV+cJ7ILHIYNuUeAEJD4+HOLLZZRhkU3yr+ucKTAEmi+RrrBWcUa8TFFRJdHvoWQ==} + /@monorepolint/config@0.5.0: + resolution: {integrity: sha512-y3dMd1iGWPERZTVHUt4Ahmup/Z+qbGqXr+lLe2mGRnGlxZZudvjpEEKpRkgy6/DAKRSdIB8sg/ilL/pvAOjbEQ==} engines: {node: '>=18'} dependencies: - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true - /@monorepolint/core@0.5.0-alpha.132: - resolution: {integrity: sha512-ZjTTTU/xEz3cLyY3MSPffYKfs2/WSpHpOqgANGAxXRHSre/Xzp7dORlZYbVfwqLERO0St1t/Hxl6l45/BvOEYg==} + /@monorepolint/core@0.5.0: + resolution: {integrity: sha512-rKkfIIUEVofoS5AVHOM6VlYR8O5nUJC7OgbO2uQK0gTrUp9gg/046YLgC5M5TufWWGoFU2idnBjyqcXbobbk0w==} engines: {node: '>=18'} dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/config': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true - /@monorepolint/rules@0.5.0-alpha.132: - resolution: {integrity: sha512-HxsQUYTeQBKcTQ0WNgASXfwBYGnfht356nxApfCVG26k0iaFgkLb6VN7uxV56y/cS5eNMiGKRIQY1RLhoLn9Hg==} + /@monorepolint/rules@0.5.0: + resolution: {integrity: sha512-/Jrm46TUG2VGV+xcE9VjSssvFRoCV8Dtzn5Okay+fDzj7C6rQ7Xzz92LO/XSxW7GYgEi3p5j3+fhvkqGA4zitg==} engines: {node: '>=18'} dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 - globby: 14.0.0 + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 + globby: 14.0.2 jest-diff: 29.7.0 resolve-package-path: 4.0.3 runtypes: 6.7.0 - semver: 7.5.4 - tslib: 2.6.2 + semver: 7.6.3 + tslib: 2.8.1 dev: true - /@monorepolint/utils@0.5.0-alpha.132: - resolution: {integrity: sha512-zLtWpQPFwIfjBZbhkHvyPCREEM8wo+Vr7iUhG2se8JECju/MlodRAhaOllUFlQ5la0gtEfYGqFKpIinYeYq6Cw==} + /@monorepolint/utils@0.5.0: + resolution: {integrity: sha512-KOLkGNLJ4oQSBUOIRvlCGi+lZfkEXS5kRt+8meR9jqxIgo0knTbBKAA9bCRPUSpx5UFZ7Z3JXKBArE05zSQpwA==} engines: {node: '>=18'} dependencies: find-packages: 10.0.4 find-up: 7.0.0 - glob: 10.3.10 - micromatch: 4.0.5 + glob: 10.4.5 + micromatch: 4.0.8 read-yaml-file: 2.1.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true /@nodelib/fs.scandir@2.1.5: @@ -8534,8 +8611,8 @@ packages: - supports-color dev: true - /@npmcli/arborist@7.5.3: - resolution: {integrity: sha512-7gbMdDNSYUzi0j2mpb6FoXRg3BxXWplMQZH1MZlvNjSdWFObaUz2Ssvo0Nlh2xmWks1OPo+gpsE6qxpT/5M7lQ==} + /@npmcli/arborist@7.5.4: + resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==} engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: @@ -8551,24 +8628,24 @@ packages: '@npmcli/redact': 2.0.1 '@npmcli/run-script': 8.1.0 bin-links: 4.0.4 - cacache: 18.0.3 + cacache: 18.0.4 common-ancestor-path: 1.0.1 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 json-stringify-nice: 1.1.4 lru-cache: 10.4.3 - minimatch: 9.0.4 + minimatch: 9.0.5 nopt: 7.2.1 npm-install-checks: 6.3.0 npm-package-arg: 11.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 pacote: 18.0.6 parse-conflict-json: 3.0.1 proc-log: 4.2.0 proggy: 2.0.0 promise-all-reject-late: 1.0.1 - promise-call-limit: 3.0.1 + promise-call-limit: 3.0.2 read-package-json-fast: 3.0.2 semver: 7.6.3 ssri: 10.0.6 @@ -8623,7 +8700,7 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - npm-bundled: 3.0.0 + npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 dev: true @@ -8633,7 +8710,7 @@ packages: dependencies: '@npmcli/name-from-folder': 2.0.0 glob: 10.3.10 - minimatch: 9.0.4 + minimatch: 9.0.5 read-package-json-fast: 3.0.2 dev: true @@ -8641,7 +8718,7 @@ packages: resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - cacache: 18.0.3 + cacache: 18.0.4 json-parse-even-better-errors: 3.0.2 pacote: 18.0.6 proc-log: 4.2.0 @@ -8687,7 +8764,7 @@ packages: resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 dev: true /@npmcli/redact@2.0.1: @@ -8723,7 +8800,7 @@ packages: hasBin: true dependencies: nx: 19.1.1 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -8743,7 +8820,7 @@ packages: nx: 19.1.1 semver: 7.6.3 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.8.1 yargs-parser: 21.1.1 dev: true @@ -8972,16 +9049,9 @@ packages: dev: true optional: true - /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} + /@pkgr/core@0.1.1: + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.0.0 - tslib: 2.6.2 dev: true /@placemarkio/check-geojson@0.1.12: @@ -9055,7 +9125,7 @@ packages: write-yaml-file: 4.2.0 dev: true - /@rollup/plugin-babel@6.0.4(@babel/core@7.23.5)(rollup@3.29.5): + /@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(rollup@4.28.0): resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9068,31 +9138,32 @@ packages: rollup: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.22.15 - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) - rollup: 3.29.5 + '@rollup/pluginutils': 5.1.0(rollup@4.28.0) + rollup: 4.28.0 dev: true - /@rollup/plugin-commonjs@25.0.7(rollup@3.29.5): - resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} - engines: {node: '>=14.0.0'} + /@rollup/plugin-commonjs@28.0.1(rollup@4.28.0): + resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.3(rollup@4.28.0) commondir: 1.0.1 estree-walker: 2.0.2 - glob: 8.1.0 + fdir: 6.4.2(picomatch@4.0.2) is-reference: 1.2.1 - magic-string: 0.30.5 - rollup: 3.29.5 + magic-string: 0.30.14 + picomatch: 4.0.2 + rollup: 4.28.0 dev: true - /@rollup/plugin-inject@5.0.5(rollup@3.29.5): + /@rollup/plugin-inject@5.0.5(rollup@4.28.0): resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9101,14 +9172,14 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.0(rollup@4.28.0) estree-walker: 2.0.2 magic-string: 0.30.5 - rollup: 3.29.5 + rollup: 4.28.0 dev: true - /@rollup/plugin-node-resolve@15.2.3(rollup@3.29.5): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + /@rollup/plugin-node-resolve@15.3.0(rollup@4.28.0): + resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -9116,16 +9187,15 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.3(rollup@4.28.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 - rollup: 3.29.5 + rollup: 4.28.0 dev: true - /@rollup/plugin-terser@0.4.4(rollup@3.29.5): + /@rollup/plugin-terser@0.4.4(rollup@4.28.0): resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9134,13 +9204,13 @@ packages: rollup: optional: true dependencies: - rollup: 3.29.5 + rollup: 4.28.0 serialize-javascript: 6.0.1 smob: 1.4.1 terser: 5.26.0 dev: true - /@rollup/pluginutils@5.1.0(rollup@3.29.5): + /@rollup/pluginutils@5.1.0(rollup@4.28.0): resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9152,107 +9222,162 @@ packages: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.29.5 + rollup: 4.28.0 + dev: true + + /@rollup/pluginutils@5.1.3(rollup@4.28.0): + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + rollup: 4.28.0 dev: true - /@rollup/rollup-android-arm-eabi@4.9.0: - resolution: {integrity: sha512-+1ge/xmaJpm1KVBuIH38Z94zj9fBD+hp+/5WLaHgyY8XLq1ibxk/zj6dTXaqM2cAbYKq8jYlhHd6k05If1W5xA==} + /@rollup/rollup-android-arm-eabi@4.28.0: + resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-android-arm64@4.9.0: - resolution: {integrity: sha512-im6hUEyQ7ZfoZdNvtwgEJvBWZYauC9KVKq1w58LG2Zfz6zMd8gRrbN+xCVoqA2hv/v6fm9lp5LFGJ3za8EQH3A==} + /@rollup/rollup-android-arm64@4.28.0: + resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-arm64@4.9.0: - resolution: {integrity: sha512-u7aTMskN6Dmg1lCT0QJ+tINRt+ntUrvVkhbPfFz4bCwRZvjItx2nJtwJnJRlKMMaQCHRjrNqHRDYvE4mBm3DlQ==} + /@rollup/rollup-darwin-arm64@4.28.0: + resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-x64@4.9.0: - resolution: {integrity: sha512-8FvEl3w2ExmpcOmX5RJD0yqXcVSOqAJJUJ29Lca29Ik+3zPS1yFimr2fr5JSZ4Z5gt8/d7WqycpgkX9nocijSw==} + /@rollup/rollup-darwin-x64@4.28.0: + resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.9.0: - resolution: {integrity: sha512-lHoKYaRwd4gge+IpqJHCY+8Vc3hhdJfU6ukFnnrJasEBUvVlydP8PuwndbWfGkdgSvZhHfSEw6urrlBj0TSSfg==} + /@rollup/rollup-freebsd-arm64@4.28.0: + resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-freebsd-x64@4.28.0: + resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.28.0: + resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.9.0: - resolution: {integrity: sha512-JbEPfhndYeWHfOSeh4DOFvNXrj7ls9S/2omijVsao+LBPTPayT1uKcK3dHW3MwDJ7KO11t9m2cVTqXnTKpeaiw==} + /@rollup/rollup-linux-arm-musleabihf@4.28.0: + resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.28.0: + resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-musl@4.9.0: - resolution: {integrity: sha512-ahqcSXLlcV2XUBM3/f/C6cRoh7NxYA/W7Yzuv4bDU1YscTFw7ay4LmD7l6OS8EMhTNvcrWGkEettL1Bhjf+B+w==} + /@rollup/rollup-linux-arm64-musl@4.28.0: + resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-riscv64-gnu@4.9.0: - resolution: {integrity: sha512-uwvOYNtLw8gVtrExKhdFsYHA/kotURUmZYlinH2VcQxNCQJeJXnkmWgw2hI9Xgzhgu7J9QvWiq9TtTVwWMDa+w==} + /@rollup/rollup-linux-powerpc64le-gnu@4.28.0: + resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.28.0: + resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-gnu@4.9.0: - resolution: {integrity: sha512-m6pkSwcZZD2LCFHZX/zW2aLIISyzWLU3hrLLzQKMI12+OLEzgruTovAxY5sCZJkipklaZqPy/2bEEBNjp+Y7xg==} + /@rollup/rollup-linux-s390x-gnu@4.28.0: + resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.28.0: + resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-musl@4.9.0: - resolution: {integrity: sha512-VFAC1RDRSbU3iOF98X42KaVicAfKf0m0OvIu8dbnqhTe26Kh6Ym9JrDulz7Hbk7/9zGc41JkV02g+p3BivOdAg==} + /@rollup/rollup-linux-x64-musl@4.28.0: + resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.9.0: - resolution: {integrity: sha512-9jPgMvTKXARz4inw6jezMLA2ihDBvgIU9Ml01hjdVpOcMKyxFBJrn83KVQINnbeqDv0+HdO1c09hgZ8N0s820Q==} + /@rollup/rollup-win32-arm64-msvc@4.28.0: + resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.9.0: - resolution: {integrity: sha512-WE4pT2kTXQN2bAv40Uog0AsV7/s9nT9HBWXAou8+++MBCnY51QS02KYtm6dQxxosKi1VIz/wZIrTQO5UP2EW+Q==} + /@rollup/rollup-win32-ia32-msvc@4.28.0: + resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-x64-msvc@4.9.0: - resolution: {integrity: sha512-aPP5Q5AqNGuT0tnuEkK/g4mnt3ZhheiXrDIiSVIHN9mcN21OyXDVbEMqmXPE7e2OplNLDkcvV+ZoGJa2ZImFgw==} + /@rollup/rollup-win32-x64-msvc@4.28.0: + resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==} cpu: [x64] os: [win32] requiresBuild: true @@ -9313,8 +9438,8 @@ packages: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} dev: true - /@sindresorhus/merge-streams@1.0.0: - resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==} + /@sindresorhus/merge-streams@2.3.0: + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} dev: true @@ -9328,7 +9453,7 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} dependencies: '@tufjs/canonical-json': 2.0.0 - minimatch: 9.0.4 + minimatch: 9.0.5 dev: true /@turf/jsts@2.7.1: @@ -9359,6 +9484,10 @@ packages: resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} dev: true + /@types/estree@1.0.6: + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + dev: true + /@types/extend@3.0.4: resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} dev: true @@ -9418,10 +9547,6 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/semver@7.5.6: - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - dev: true - /@types/skmeans@0.11.7: resolution: {integrity: sha512-3fT48uRSRppOdQIlNCQKNNJRVaqzxkdCSTZM+NeHNxEpw6JejLLH78OHP54BxUHYEsa7pVsGn6uON552jwv9ZQ==} dev: true @@ -9471,130 +9596,129 @@ packages: resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} dev: true - /@typescript-eslint/eslint-plugin@6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha - eslint: ^7.0.0 || ^8.0.0 + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/type-utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.17.0 + eslint: 9.16.0 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/parser@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.17.0 + debug: 4.3.7 + eslint: 9.16.0 typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@6.13.2: - resolution: {integrity: sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/scope-manager@8.17.0: + resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/visitor-keys': 8.17.0 dev: true - /@typescript-eslint/type-utils@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/type-utils@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - debug: 4.3.4 - eslint: 8.55.0 - ts-api-utils: 1.0.3(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + debug: 4.3.7 + eslint: 9.16.0 + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@6.13.2: - resolution: {integrity: sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==} - engines: {node: ^16.0.0 || >=18.0.0} - dev: true - /@typescript-eslint/types@7.18.0: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@6.13.2(typescript@5.5.4): - resolution: {integrity: sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/types@8.17.0: + resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4): + resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.5.4) + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4): - resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} - engines: {node: ^18.18.0 || >=20.0.0} + /@typescript-eslint/typescript-estree@8.17.0(typescript@5.5.4): + resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.6 - globby: 11.1.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/visitor-keys': 8.17.0 + debug: 4.3.7 + fast-glob: 3.3.2 is-glob: 4.0.3 - minimatch: 9.0.4 + minimatch: 9.0.5 semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 @@ -9602,31 +9726,24 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/utils@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - eslint: 8.55.0 - semver: 7.5.4 + '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + eslint: 9.16.0 + typescript: 5.5.4 transitivePeerDependencies: - supports-color - - typescript - dev: true - - /@typescript-eslint/visitor-keys@6.13.2: - resolution: {integrity: sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.13.2 - eslint-visitor-keys: 3.4.3 dev: true /@typescript-eslint/visitor-keys@7.18.0: @@ -9637,8 +9754,12 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@ungap/structured-clone@1.2.0: - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + /@typescript-eslint/visitor-keys@8.17.0: + resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + '@typescript-eslint/types': 8.17.0 + eslint-visitor-keys: 4.2.0 dev: true /@vue/compiler-core@3.4.35: @@ -9652,6 +9773,18 @@ packages: source-map-js: 1.2.0 dev: true + /@vue/compiler-core@3.5.13: + resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} + requiresBuild: true + dependencies: + '@babel/parser': 7.25.3 + '@vue/shared': 3.5.13 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + dev: true + optional: true + /@vue/compiler-dom@3.4.35: resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} requiresBuild: true @@ -9660,6 +9793,15 @@ packages: '@vue/shared': 3.4.35 dev: true + /@vue/compiler-dom@3.5.13: + resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} + requiresBuild: true + dependencies: + '@vue/compiler-core': 3.5.13 + '@vue/shared': 3.5.13 + dev: true + optional: true + /@vue/compiler-sfc@3.4.35: resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} dependencies: @@ -9669,11 +9811,27 @@ packages: '@vue/compiler-ssr': 3.4.35 '@vue/shared': 3.4.35 estree-walker: 2.0.2 - magic-string: 0.30.11 + magic-string: 0.30.14 postcss: 8.4.40 source-map-js: 1.2.0 dev: true + /@vue/compiler-sfc@3.5.13: + resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} + requiresBuild: true + dependencies: + '@babel/parser': 7.25.3 + '@vue/compiler-core': 3.5.13 + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-ssr': 3.5.13 + '@vue/shared': 3.5.13 + estree-walker: 2.0.2 + magic-string: 0.30.14 + postcss: 8.4.49 + source-map-js: 1.2.0 + dev: true + optional: true + /@vue/compiler-ssr@3.4.35: resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} requiresBuild: true @@ -9682,11 +9840,26 @@ packages: '@vue/shared': 3.4.35 dev: true + /@vue/compiler-ssr@3.5.13: + resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} + requiresBuild: true + dependencies: + '@vue/compiler-dom': 3.5.13 + '@vue/shared': 3.5.13 + dev: true + optional: true + /@vue/shared@3.4.35: resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} requiresBuild: true dev: true + /@vue/shared@3.5.13: + resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} + requiresBuild: true + dev: true + optional: true + /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} dev: true @@ -9696,7 +9869,7 @@ packages: engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 - tslib: 2.6.2 + tslib: 2.8.1 dev: true /@zkochan/js-yaml@0.0.7: @@ -9719,12 +9892,12 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /acorn-jsx@5.3.2(acorn@8.11.2): + /acorn-jsx@5.3.2(acorn@8.14.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.11.2 + acorn: 8.14.0 dev: true /acorn@7.4.1: @@ -9739,6 +9912,12 @@ packages: hasBin: true dev: true + /acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} @@ -9753,7 +9932,7 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -9848,10 +10027,6 @@ packages: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: @@ -9869,6 +10044,14 @@ packages: is-array-buffer: 3.0.2 dev: true + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + is-array-buffer: 3.0.4 + dev: true + /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} @@ -9883,14 +10066,15 @@ packages: engines: {node: '>=8'} dev: true - /array.prototype.every@1.1.5: - resolution: {integrity: sha512-FfMQJ+/joFGXpRCltbzV3znaP5QxIhLFySo0fEPn3GuoYlud9LhknMCIxdYKC2qsM/6VHoSp6YGwe3EZXrEcwQ==} + /array.prototype.every@1.1.6: + resolution: {integrity: sha512-gNEqZD97w6bfQRNmHkFv7rNnGM+VWyHZT+h/rf9C+22owcXuENr66Lfo0phItpU5KoXW6Owb34q2+8MnSIZ57w==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - is-string: 1.0.7 + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 + is-string: 1.1.0 dev: true /arraybuffer.prototype.slice@1.0.2: @@ -9906,6 +10090,20 @@ packages: is-shared-array-buffer: 1.0.2 dev: true + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 + dev: true + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} @@ -9934,6 +10132,13 @@ packages: engines: {node: '>= 0.4'} dev: true + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + dependencies: + possible-typed-array-names: 1.0.0 + dev: true + /axios@1.6.2: resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==} dependencies: @@ -9944,38 +10149,38 @@ packages: - debug dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.5): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} + /babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): + resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/compat-data': 7.26.2 + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.5): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} + /babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0): + resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.5): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} + /babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): + resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color dev: true @@ -10003,11 +10208,6 @@ packages: platform: 1.3.6 dev: true - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - dev: true - /bin-links@4.0.4: resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -10043,13 +10243,6 @@ packages: python-shell: 0.4.0 dev: true - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - dependencies: - big-integer: 1.6.52 - dev: true - /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -10070,15 +10263,15 @@ packages: fill-range: 7.1.1 dev: true - /browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + /browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001566 - electron-to-chromium: 1.4.609 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) + caniuse-lite: 1.0.30001686 + electron-to-chromium: 1.5.68 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) dev: true /buffer-from@1.1.2: @@ -10092,25 +10285,13 @@ packages: ieee754: 1.2.1 dev: true - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - dev: true - - /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} - dependencies: - run-applescript: 5.0.0 - dev: true - - /bundle-require@4.0.2(esbuild@0.19.11): - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + /bundle-require@5.0.0(esbuild@0.24.0): + resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: '>=0.17' + esbuild: '>=0.18' dependencies: - esbuild: 0.19.11 + esbuild: 0.24.0 load-tsconfig: 0.2.5 dev: true @@ -10142,6 +10323,24 @@ packages: unique-filename: 3.0.0 dev: true + /cacache@18.0.4: + resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + '@npmcli/fs': 3.1.1 + fs-minipass: 3.0.3 + glob: 10.3.10 + lru-cache: 10.4.3 + minipass: 7.1.2 + minipass-collect: 2.0.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 4.0.0 + ssri: 10.0.6 + tar: 6.2.1 + unique-filename: 3.0.0 + dev: true + /call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: @@ -10150,6 +10349,17 @@ packages: set-function-length: 1.1.1 dev: true + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + dev: true + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -10174,8 +10384,8 @@ packages: engines: {node: '>=16'} dev: true - /caniuse-lite@1.0.30001566: - resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==} + /caniuse-lite@1.0.30001686: + resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==} dev: true /ccount@2.0.1: @@ -10243,6 +10453,13 @@ packages: fsevents: 2.3.3 dev: true + /chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} + dependencies: + readdirp: 4.0.2 + dev: true + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} @@ -10465,6 +10682,11 @@ packages: robust-predicates: 2.0.4 tinyqueue: 2.0.3 + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true + /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true @@ -10549,18 +10771,18 @@ packages: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true - /core-js-compat@3.34.0: - resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==} + /core-js-compat@3.39.0: + resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} dependencies: - browserslist: 4.22.2 + browserslist: 4.24.2 dev: true /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig@8.3.6(typescript@5.5.4): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + /cosmiconfig@9.0.0(typescript@5.5.4): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -10568,17 +10790,13 @@ packages: typescript: optional: true dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 typescript: 5.5.4 dev: true - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - /cross-spawn@6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} @@ -10599,6 +10817,15 @@ packages: which: 2.0.2 dev: true + /cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -10628,6 +10855,33 @@ packages: engines: {node: '>=8'} dev: true + /data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true @@ -10638,8 +10892,8 @@ packages: dev: true optional: true - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + /debug@4.3.6: + resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -10650,8 +10904,8 @@ packages: ms: 2.1.2 dev: true - /debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} + /debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -10659,7 +10913,7 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.2 + ms: 2.1.3 dev: true /decamelize-keys@1.1.1: @@ -10700,7 +10954,7 @@ packages: engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + call-bind: 1.0.7 es-get-iterator: 1.1.3 get-intrinsic: 1.2.2 is-arguments: 1.1.1 @@ -10709,7 +10963,7 @@ packages: is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 isarray: 2.0.5 - object-is: 1.1.5 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 @@ -10728,24 +10982,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 - dev: true - - /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} - dependencies: - bundle-name: 3.0.0 - default-browser-id: 3.0.0 - execa: 7.2.0 - titleize: 3.0.0 - dev: true - /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: @@ -10756,21 +10992,25 @@ packages: resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 gopd: 1.0.1 has-property-descriptors: 1.0.1 dev: true + /define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.1.0 + dev: true + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} dev: true - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - dev: true - /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -10915,11 +11155,6 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true - /diff@5.2.0: resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} engines: {node: '>=0.3.1'} @@ -10939,19 +11174,12 @@ packages: esutils: 2.0.3 dev: true - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - dependencies: - esutils: 2.0.3 - dev: true - /documentation@14.0.3: resolution: {integrity: sha512-B7cAviVKN9Rw7Ofd+9grhVuxiHwly6Ieh+d/ceMw8UdBOv/irkuwnDEJP8tq0wgdLJDUVuIkovV+AX9mTrZFxg==} engines: {node: '>=14'} hasBin: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.26.0 '@babel/generator': 7.23.5 '@babel/parser': 7.23.5 '@babel/traverse': 7.23.5 @@ -10989,7 +11217,7 @@ packages: vfile-sort: 3.0.1 yargs: 17.7.2 optionalDependencies: - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.5.13 vue-template-compiler: 2.7.16 transitivePeerDependencies: - supports-color @@ -11039,8 +11267,8 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.609: - resolution: {integrity: sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==} + /electron-to-chromium@1.5.68: + resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==} dev: true /emoji-regex@10.3.0: @@ -11138,7 +11366,7 @@ packages: has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.2 internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 @@ -11148,13 +11376,13 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.3 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.8 + string.prototype.trim: 1.2.9 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 @@ -11162,7 +11390,59 @@ packages: typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 + which-typed-array: 1.1.13 + dev: true + + /es-abstract@1.23.5: + resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 + is-callable: 1.2.7 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.3 + is-string: 1.1.0 + is-typed-array: 1.1.13 + is-weakref: 1.0.2 + object-inspect: 1.13.3 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.3 + typed-array-length: 1.0.7 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.16 dev: true /es-check@7.1.1: @@ -11177,27 +11457,55 @@ packages: winston: 3.11.0 dev: true + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + dev: true + /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 is-set: 2.0.2 - is-string: 1.0.7 + is-string: 1.1.0 isarray: 2.0.5 stop-iteration-iterator: 1.0.0 dev: true + /es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + dev: true + /es-set-tostringtag@2.0.2: resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 dev: true /es-to-primitive@1.2.1: @@ -11209,65 +11517,77 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} + /es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.1.0 + dev: true + + /esbuild@0.23.1: + resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} + engines: {node: '>=18'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 - dev: true - - /esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} + '@esbuild/aix-ppc64': 0.23.1 + '@esbuild/android-arm': 0.23.1 + '@esbuild/android-arm64': 0.23.1 + '@esbuild/android-x64': 0.23.1 + '@esbuild/darwin-arm64': 0.23.1 + '@esbuild/darwin-x64': 0.23.1 + '@esbuild/freebsd-arm64': 0.23.1 + '@esbuild/freebsd-x64': 0.23.1 + '@esbuild/linux-arm': 0.23.1 + '@esbuild/linux-arm64': 0.23.1 + '@esbuild/linux-ia32': 0.23.1 + '@esbuild/linux-loong64': 0.23.1 + '@esbuild/linux-mips64el': 0.23.1 + '@esbuild/linux-ppc64': 0.23.1 + '@esbuild/linux-riscv64': 0.23.1 + '@esbuild/linux-s390x': 0.23.1 + '@esbuild/linux-x64': 0.23.1 + '@esbuild/netbsd-x64': 0.23.1 + '@esbuild/openbsd-arm64': 0.23.1 + '@esbuild/openbsd-x64': 0.23.1 + '@esbuild/sunos-x64': 0.23.1 + '@esbuild/win32-arm64': 0.23.1 + '@esbuild/win32-ia32': 0.23.1 + '@esbuild/win32-x64': 0.23.1 + dev: true + + /esbuild@0.24.0: + resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} + engines: {node: '>=18'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/aix-ppc64': 0.19.11 - '@esbuild/android-arm': 0.19.11 - '@esbuild/android-arm64': 0.19.11 - '@esbuild/android-x64': 0.19.11 - '@esbuild/darwin-arm64': 0.19.11 - '@esbuild/darwin-x64': 0.19.11 - '@esbuild/freebsd-arm64': 0.19.11 - '@esbuild/freebsd-x64': 0.19.11 - '@esbuild/linux-arm': 0.19.11 - '@esbuild/linux-arm64': 0.19.11 - '@esbuild/linux-ia32': 0.19.11 - '@esbuild/linux-loong64': 0.19.11 - '@esbuild/linux-mips64el': 0.19.11 - '@esbuild/linux-ppc64': 0.19.11 - '@esbuild/linux-riscv64': 0.19.11 - '@esbuild/linux-s390x': 0.19.11 - '@esbuild/linux-x64': 0.19.11 - '@esbuild/netbsd-x64': 0.19.11 - '@esbuild/openbsd-x64': 0.19.11 - '@esbuild/sunos-x64': 0.19.11 - '@esbuild/win32-arm64': 0.19.11 - '@esbuild/win32-ia32': 0.19.11 - '@esbuild/win32-x64': 0.19.11 + '@esbuild/aix-ppc64': 0.24.0 + '@esbuild/android-arm': 0.24.0 + '@esbuild/android-arm64': 0.24.0 + '@esbuild/android-x64': 0.24.0 + '@esbuild/darwin-arm64': 0.24.0 + '@esbuild/darwin-x64': 0.24.0 + '@esbuild/freebsd-arm64': 0.24.0 + '@esbuild/freebsd-x64': 0.24.0 + '@esbuild/linux-arm': 0.24.0 + '@esbuild/linux-arm64': 0.24.0 + '@esbuild/linux-ia32': 0.24.0 + '@esbuild/linux-loong64': 0.24.0 + '@esbuild/linux-mips64el': 0.24.0 + '@esbuild/linux-ppc64': 0.24.0 + '@esbuild/linux-riscv64': 0.24.0 + '@esbuild/linux-s390x': 0.24.0 + '@esbuild/linux-x64': 0.24.0 + '@esbuild/netbsd-x64': 0.24.0 + '@esbuild/openbsd-arm64': 0.24.0 + '@esbuild/openbsd-x64': 0.24.0 + '@esbuild/sunos-x64': 0.24.0 + '@esbuild/win32-arm64': 0.24.0 + '@esbuild/win32-ia32': 0.24.0 + '@esbuild/win32-x64': 0.24.0 dev: true /escalade@3.1.1: @@ -11275,6 +11595,11 @@ packages: engines: {node: '>=6'} dev: true + /escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + dev: true + /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -11302,17 +11627,17 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier@9.1.0(eslint@8.55.0): + /eslint-config-prettier@9.1.0(eslint@9.16.0): resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.55.0 + eslint: 9.16.0 dev: true - /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3): - resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} + /eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0)(eslint@9.16.0)(prettier@3.3.3): + resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' @@ -11325,16 +11650,16 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.55.0 - eslint-config-prettier: 9.1.0(eslint@8.55.0) + eslint: 9.16.0 + eslint-config-prettier: 9.1.0(eslint@9.16.0) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 - synckit: 0.8.6 + synckit: 0.9.2 dev: true - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-scope@8.2.0: + resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 @@ -11345,49 +11670,55 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.55.0: - resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /eslint@9.16.0: + resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.55.0 - '@humanwhocodes/config-array': 0.11.13 + '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.19.0 + '@eslint/core': 0.9.0 + '@eslint/eslintrc': 3.2.0 + '@eslint/js': 9.16.0 + '@eslint/plugin-kit': 0.2.3 + '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 + '@humanwhocodes/retry': 0.4.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 + cross-spawn: 7.0.6 + debug: 4.3.7 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.23.0 - graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 + optionator: 0.9.4 transitivePeerDependencies: - supports-color dev: true @@ -11397,13 +11728,13 @@ packages: engines: {node: '>=6'} dev: true - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: - acorn: 8.11.2 - acorn-jsx: 5.3.2(acorn@8.11.2) - eslint-visitor-keys: 3.4.3 + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 4.2.0 dev: true /esprima@4.0.1: @@ -11412,8 +11743,8 @@ packages: hasBin: true dev: true - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + /esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 @@ -11463,36 +11794,6 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - dev: true - - /execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - dev: true - /execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} @@ -11557,6 +11858,17 @@ packages: reusify: 1.0.4 dev: true + /fdir@6.4.2(picomatch@4.0.2): + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + dependencies: + picomatch: 4.0.2 + dev: true + /fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} dev: true @@ -11568,11 +11880,11 @@ packages: escape-string-regexp: 1.0.5 dev: true - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + /file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.1 dev: true /filelist@1.0.4: @@ -11657,13 +11969,12 @@ packages: unicorn-magic: 0.1.0 dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + /flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} dependencies: - flatted: 3.2.9 + flatted: 3.3.2 keyv: 4.5.4 - rimraf: 3.0.2 dev: true /flat@5.0.2: @@ -11671,8 +11982,8 @@ packages: hasBin: true dev: true - /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + /flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} dev: true /fn.name@1.1.0: @@ -11703,6 +12014,14 @@ packages: signal-exit: 4.1.0 dev: true + /foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + dev: true + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -11759,9 +12078,9 @@ packages: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.5 functions-have-names: 1.2.3 dev: true @@ -11810,7 +12129,18 @@ packages: function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 dev: true /get-own-enumerable-property-symbols@3.0.2: @@ -11861,8 +12191,17 @@ packages: get-intrinsic: 1.2.2 dev: true - /get-tsconfig@4.7.2: - resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} + /get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + dev: true + + /get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} dependencies: resolve-pkg-maps: 1.0.0 dev: true @@ -11953,15 +12292,16 @@ packages: path-scurry: 1.10.1 dev: true - /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + /glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 dev: true /glob@7.2.3: @@ -12006,11 +12346,14 @@ packages: engines: {node: '>=4'} dev: true - /globals@13.23.0: - resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 + /globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + dev: true + + /globals@15.13.0: + resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==} + engines: {node: '>=18'} dev: true /globalthis@1.0.3: @@ -12020,6 +12363,14 @@ packages: define-properties: 1.2.1 dev: true + /globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + gopd: 1.1.0 + dev: true + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -12032,13 +12383,13 @@ packages: slash: 3.0.0 dev: true - /globby@14.0.0: - resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==} + /globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} dependencies: - '@sindresorhus/merge-streams': 1.0.0 + '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -12058,6 +12409,13 @@ packages: get-intrinsic: 1.2.2 dev: true + /gopd@1.1.0: + resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + dev: true + /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} dev: true @@ -12076,7 +12434,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.19.1 + uglify-js: 3.19.3 dev: true /hard-rejection@2.1.0: @@ -12088,11 +12446,12 @@ packages: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true - /has-dynamic-import@2.0.1: - resolution: {integrity: sha512-X3fbtsZmwb6W7fJGR9o7x65fZoodygCrZ3TVycvghP62yYQfS0t4RS0Qcz+j5tQYUKeSWS09tHkWW6WhFV3XhQ==} + /has-dynamic-import@2.1.0: + resolution: {integrity: sha512-su0anMkNEnJKZ/rB99jn3y6lV/J8Ro96hBJ28YAeVzj5rWxH+YL/AdCyiYYA1HDLV9YhmvqpWSJJj2KLo1MX6g==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 dev: true /has-flag@3.0.0: @@ -12108,7 +12467,13 @@ packages: /has-property-descriptors@1.0.1: resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 + dev: true + + /has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + dependencies: + es-define-property: 1.0.0 dev: true /has-proto@1.0.1: @@ -12116,11 +12481,23 @@ packages: engines: {node: '>= 0.4'} dev: true + /has-proto@1.1.0: + resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} dev: true + /has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + dev: true + /has-tostringtag@1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} @@ -12128,12 +12505,19 @@ packages: has-symbols: 1.0.3 dev: true + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + /has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + /hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 @@ -12263,7 +12647,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12273,7 +12657,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12283,11 +12667,6 @@ packages: engines: {node: '>=10.17.0'} dev: true - /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} - dev: true - /human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -12331,6 +12710,11 @@ packages: engines: {node: '>= 4'} dev: true + /ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + dev: true + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -12419,10 +12803,19 @@ packages: engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 - hasown: 2.0.0 + hasown: 2.0.2 side-channel: 1.0.4 dev: true + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 + dev: true + /ip@2.0.1: resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} dev: true @@ -12439,18 +12832,26 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + dev: true + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true @@ -12459,12 +12860,26 @@ packages: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: true + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true + /is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + dependencies: + has-bigints: 1.0.2 + dev: true + /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} @@ -12476,22 +12891,23 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true + /is-boolean-object@1.2.0: + resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-buffer@2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} dev: true - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - dependencies: - builtin-modules: 3.3.0 - dev: true - /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -12507,7 +12923,14 @@ packages: /is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + dependencies: + is-typed-array: 1.1.13 dev: true /is-date-object@1.0.5: @@ -12523,17 +12946,18 @@ packages: hasBin: true dev: true - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - dev: true - /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} dev: true + /is-finalizationregistry@1.1.0: + resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -12551,6 +12975,13 @@ packages: get-east-asian-width: 1.2.0 dev: true + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -12558,14 +12989,6 @@ packages: is-extglob: 2.1.1 dev: true - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true - dependencies: - is-docker: 3.0.0 - dev: true - /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -12579,6 +13002,11 @@ packages: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true + /is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + dev: true + /is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} dev: true @@ -12588,6 +13016,11 @@ packages: engines: {node: '>= 0.4'} dev: true + /is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + dev: true + /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} @@ -12595,6 +13028,14 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-number-object@1.1.0: + resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -12610,11 +13051,6 @@ packages: engines: {node: '>=8'} dev: true - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true - /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} @@ -12645,14 +13081,14 @@ packages: /is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 dev: true /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true @@ -12672,12 +13108,24 @@ packages: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true + /is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + dev: true + /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.5 dev: true + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /is-ssh@1.4.0: resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} dependencies: @@ -12706,11 +13154,28 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-string@1.1.0: + resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.0.3 + has-symbols: 1.1.0 + dev: true + + /is-symbol@1.1.0: + resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-symbols: 1.1.0 + safe-regex-test: 1.0.3 dev: true /is-text-path@1.0.1: @@ -12727,6 +13192,13 @@ packages: which-typed-array: 1.1.13 dev: true + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.16 + dev: true + /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: true @@ -12756,19 +13228,32 @@ packages: resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} dev: true + /is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + dev: true + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 dev: true + /is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + dev: true + /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} @@ -12812,13 +13297,21 @@ packages: '@pkgjs/parseargs': 0.11.0 dev: true + /jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + /jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} engines: {node: '>=10'} hasBin: true dependencies: async: 3.2.5 - chalk: 4.1.2 + chalk: 4.1.0 filelist: 1.0.4 minimatch: 3.1.2 dev: true @@ -12862,17 +13355,18 @@ packages: argparse: 2.0.1 dev: true - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - dev: true - /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + dev: true + /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} dev: true @@ -12981,13 +13475,13 @@ packages: resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} dev: true - /lerna@8.1.7: - resolution: {integrity: sha512-v2kkBn8Vqtroo30Pr5/JQ9MygRhnCsoI1jSOf3DxWmcTbkpC5U7c6rGr+7NPK6QrxKbC0/Cj4kuIBMb/7f79sQ==} + /lerna@8.1.9: + resolution: {integrity: sha512-ZRFlRUBB2obm+GkbTR7EbgTMuAdni6iwtTQTMy7LIrQ4UInG44LyfRepljtgUxh4HA0ltzsvWfPkd5J1DKGCeQ==} engines: {node: '>=18.0.0'} hasBin: true dependencies: - '@lerna/create': 8.1.7(typescript@5.5.4) - '@npmcli/arborist': 7.5.3 + '@lerna/create': 8.1.9(typescript@5.5.4) + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) @@ -13004,7 +13498,7 @@ packages: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.5.4) dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 @@ -13111,16 +13605,16 @@ packages: - supports-color dev: true - /lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} - dev: true - /lilconfig@3.1.2: resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} engines: {node: '>=14'} dev: true + /lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + dev: true + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true @@ -13297,9 +13791,8 @@ packages: yallist: 4.0.0 dev: true - /magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - requiresBuild: true + /magic-string@0.30.14: + resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} dependencies: '@jridgewell/sourcemap-codec': 1.5.0 dev: true @@ -13327,10 +13820,6 @@ packages: semver: 7.6.3 dev: true - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - /make-fetch-happen@13.0.1: resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -13794,7 +14283,7 @@ packages: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -13830,6 +14319,14 @@ packages: picomatch: 2.3.1 dev: true + /micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + dev: true + /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} @@ -13902,6 +14399,13 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -13976,6 +14480,11 @@ packages: engines: {node: '>=16 || 14 >=14.17'} dev: true + /minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + dev: true + /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} @@ -13996,16 +14505,17 @@ packages: hasBin: true dev: true - /mock-property@1.0.3: - resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} + /mock-property@1.1.0: + resolution: {integrity: sha512-1/JjbLoGwv87xVsutkX0XJc0M0W4kb40cZl/K41xtTViBOD9JuFPKfyMNTrLJ/ivYAd0aPqu/vduamXO0emTFQ==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - hasown: 2.0.0 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + hasown: 2.0.2 isarray: 2.0.5 + object-inspect: 1.13.3 dev: true /modify-values@1.0.1: @@ -14081,6 +14591,14 @@ packages: requiresBuild: true dev: true + /nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + requiresBuild: true + dev: true + optional: true + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -14133,8 +14651,8 @@ packages: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + /node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} dev: true /node-source-walk@7.0.0: @@ -14193,6 +14711,13 @@ packages: npm-normalize-package-bin: 3.0.1 dev: true + /npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-normalize-package-bin: 3.0.1 + dev: true + /npm-install-checks@6.3.0: resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -14232,6 +14757,16 @@ packages: semver: 7.6.3 dev: true + /npm-pick-manifest@9.1.0: + resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + npm-install-checks: 6.3.0 + npm-normalize-package-bin: 3.0.1 + npm-package-arg: 11.0.2 + semver: 7.6.3 + dev: true + /npm-registry-fetch@17.1.0: resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -14321,7 +14856,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.2.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: @@ -14344,15 +14879,16 @@ packages: engines: {node: '>=0.10.0'} dev: true - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + /object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} dev: true - /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + /object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 dev: true @@ -14365,7 +14901,7 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -14413,26 +14949,16 @@ packages: is-wsl: 2.2.0 dev: true - /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} - dependencies: - default-browser: 4.0.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 2.2.0 - dev: true - - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 dev: true /ora@5.3.0: @@ -14596,6 +15122,10 @@ packages: p-reduce: 2.1.0 dev: true + /package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + dev: true + /pacote@18.0.6: resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==} engines: {node: ^16.14.0 || >=18.0.0} @@ -14660,7 +15190,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -14741,6 +15271,14 @@ packages: minipass: 7.0.4 dev: true + /path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + dev: true + /path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} @@ -14758,20 +15296,26 @@ packages: engines: {node: '>=12'} dev: true - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true - /picocolors@1.0.1: resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} requiresBuild: true dev: true + /picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + requiresBuild: true + dev: true + /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} dev: true + /picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + dev: true + /pidtree@0.3.1: resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} engines: {node: '>=0.10'} @@ -14838,26 +15382,36 @@ packages: splaytree: 3.1.2 dev: false - /postcss-load-config@4.0.2(postcss@8.4.40)(ts-node@9.1.1): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + dev: true + + /postcss-load-config@6.0.1(postcss@8.4.40)(tsx@4.19.2): + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} + engines: {node: '>= 18'} peerDependencies: + jiti: '>=1.21.0' postcss: '>=8.0.9' - ts-node: '>=9.0.0' + tsx: ^4.8.1 + yaml: ^2.4.2 peerDependenciesMeta: + jiti: + optional: true postcss: optional: true - ts-node: + tsx: + optional: true + yaml: optional: true dependencies: - lilconfig: 3.0.0 + lilconfig: 3.1.3 postcss: 8.4.40 - ts-node: 9.1.1(typescript@5.5.4) - yaml: 2.3.4 + tsx: 4.19.2 dev: true - /postcss-selector-parser@6.1.1: - resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} + /postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 @@ -14885,6 +15439,17 @@ packages: source-map-js: 1.2.0 dev: true + /postcss@8.4.49: + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + engines: {node: ^10 || ^12 || >=14} + requiresBuild: true + dependencies: + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 + dev: true + optional: true + /precinct@12.1.2: resolution: {integrity: sha512-x2qVN3oSOp3D05ihCd8XdkIPuEQsyte7PSxzLqiRgktu79S5Dr1I75/S+zAup8/0cwjoiJTQztE9h0/sWp9bJQ==} engines: {node: '>=18'} @@ -14971,8 +15536,8 @@ packages: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} dev: true - /promise-call-limit@3.0.1: - resolution: {integrity: sha512-utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==} + /promise-call-limit@3.0.2: + resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==} dev: true /promise-inflight@1.0.1: @@ -15180,6 +15745,11 @@ packages: picomatch: 2.3.1 dev: true + /readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} + dev: true + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -15188,8 +15758,21 @@ packages: strip-indent: 3.0.0 dev: true - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + /reflect.getprototypeof@1.0.7: + resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + which-builtin-type: 1.2.0 + dev: true + + /regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -15199,14 +15782,14 @@ packages: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true - /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} dev: true /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.26.0 dev: true /regexp.prototype.flags@1.5.1: @@ -15218,23 +15801,37 @@ packages: set-function-name: 2.0.1 dev: true - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + /regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + dev: true + + /regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} engines: {node: '>=4'} dependencies: - '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + unicode-match-property-value-ecmascript: 2.2.0 + dev: true + + /regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} dev: true - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + /regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} hasBin: true dependencies: - jsesc: 0.5.0 + jsesc: 3.0.2 dev: true /remark-gfm@3.0.1: @@ -15421,51 +16018,43 @@ packages: /robust-predicates@2.0.4: resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==} - /rollup-plugin-polyfill-node@0.13.0(rollup@3.29.5): + /rollup-plugin-polyfill-node@0.13.0(rollup@4.28.0): resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@3.29.5) - rollup: 3.29.5 - dev: true - - /rollup@3.29.5: - resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.3 + '@rollup/plugin-inject': 5.0.5(rollup@4.28.0) + rollup: 4.28.0 dev: true - /rollup@4.9.0: - resolution: {integrity: sha512-bUHW/9N21z64gw8s6tP4c88P382Bq/L5uZDowHlHx6s/QWpjJXivIAbEw6LZthgSvlEizZBfLC4OAvWe7aoF7A==} + /rollup@4.28.0: + resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + dependencies: + '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.9.0 - '@rollup/rollup-android-arm64': 4.9.0 - '@rollup/rollup-darwin-arm64': 4.9.0 - '@rollup/rollup-darwin-x64': 4.9.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.9.0 - '@rollup/rollup-linux-arm64-gnu': 4.9.0 - '@rollup/rollup-linux-arm64-musl': 4.9.0 - '@rollup/rollup-linux-riscv64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-musl': 4.9.0 - '@rollup/rollup-win32-arm64-msvc': 4.9.0 - '@rollup/rollup-win32-ia32-msvc': 4.9.0 - '@rollup/rollup-win32-x64-msvc': 4.9.0 + '@rollup/rollup-android-arm-eabi': 4.28.0 + '@rollup/rollup-android-arm64': 4.28.0 + '@rollup/rollup-darwin-arm64': 4.28.0 + '@rollup/rollup-darwin-x64': 4.28.0 + '@rollup/rollup-freebsd-arm64': 4.28.0 + '@rollup/rollup-freebsd-x64': 4.28.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.28.0 + '@rollup/rollup-linux-arm-musleabihf': 4.28.0 + '@rollup/rollup-linux-arm64-gnu': 4.28.0 + '@rollup/rollup-linux-arm64-musl': 4.28.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0 + '@rollup/rollup-linux-riscv64-gnu': 4.28.0 + '@rollup/rollup-linux-s390x-gnu': 4.28.0 + '@rollup/rollup-linux-x64-gnu': 4.28.0 + '@rollup/rollup-linux-x64-musl': 4.28.0 + '@rollup/rollup-win32-arm64-msvc': 4.28.0 + '@rollup/rollup-win32-ia32-msvc': 4.28.0 + '@rollup/rollup-win32-x64-msvc': 4.28.0 fsevents: 2.3.3 dev: true - /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} - dependencies: - execa: 5.1.1 - dev: true - /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -15484,7 +16073,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.2 + tslib: 2.8.1 dev: true /sade@1.8.1: @@ -15504,6 +16093,16 @@ packages: isarray: 2.0.5 dev: true + /safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.1.0 + isarray: 2.0.5 + dev: true + /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} dev: true @@ -15520,6 +16119,15 @@ packages: is-regex: 1.1.4 dev: true + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-regex: 1.1.4 + dev: true + /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} @@ -15547,14 +16155,6 @@ packages: hasBin: true dev: true - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} @@ -15575,21 +16175,43 @@ packages: resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + dev: true + + /set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 dev: true /set-function-name@2.0.1: resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 has-property-descriptors: 1.0.1 dev: true + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + dev: true + /shallow-clone@3.0.1: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} engines: {node: '>=8'} @@ -15628,9 +16250,19 @@ packages: /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 - object-inspect: 1.13.1 + object-inspect: 1.13.3 + dev: true + + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.3 dev: true /signal-exit@3.0.7: @@ -15706,7 +16338,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -15747,6 +16379,13 @@ packages: requiresBuild: true dev: true + /source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: true + optional: true + /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: @@ -15871,13 +16510,14 @@ packages: es-abstract: 1.22.3 dev: true - /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + /string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 dev: true /string.prototype.trimend@1.0.7: @@ -15888,6 +16528,14 @@ packages: es-abstract: 1.22.3 dev: true + /string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + dev: true + /string.prototype.trimstart@1.0.7: resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: @@ -15896,6 +16544,15 @@ packages: es-abstract: 1.22.3 dev: true + /string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + dev: true + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: @@ -15997,14 +16654,14 @@ packages: commander: 12.1.0 dev: true - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} + /sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: - '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 7.1.6 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -16048,12 +16705,12 @@ packages: tinyqueue: 2.0.3 dev: false - /synckit@0.8.6: - resolution: {integrity: sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==} + /synckit@0.9.2: + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: - '@pkgr/utils': 2.4.2 - tslib: 2.6.2 + '@pkgr/core': 0.1.1 + tslib: 2.8.1 dev: true /tapable@2.2.1: @@ -16061,32 +16718,32 @@ packages: engines: {node: '>=6'} dev: true - /tape@5.7.2: - resolution: {integrity: sha512-cvSyprYahyOYXbtBwV/B7nrx7kINeZ3VZ9fKoSywoPwZN3oQ1WVLvt+Vl0XCz/gi37CDrY3dlW790nzviIzoPw==} + /tape@5.9.0: + resolution: {integrity: sha512-czbGgxSVwRlbB3Ly/aqQrNwrDAzKHDW/kVXegp4hSFmR2c8qqm3hCgZbUy1+3QAQFGhPDG7J56UsV1uNilBFCA==} hasBin: true dependencies: - '@ljharb/resumer': 0.0.1 - '@ljharb/through': 2.3.11 - array.prototype.every: 1.1.5 - call-bind: 1.0.5 + '@ljharb/resumer': 0.1.3 + '@ljharb/through': 2.3.13 + array.prototype.every: 1.1.6 + call-bind: 1.0.7 deep-equal: 2.2.3 defined: 1.0.1 dotignore: 0.1.2 for-each: 0.3.3 get-package-type: 0.1.0 glob: 7.2.3 - has-dynamic-import: 2.0.1 - hasown: 2.0.0 + has-dynamic-import: 2.1.0 + hasown: 2.0.2 inherits: 2.0.4 is-regex: 1.1.4 minimist: 1.2.8 - mock-property: 1.0.3 - object-inspect: 1.13.1 - object-is: 1.1.5 + mock-property: 1.1.0 + object-inspect: 1.13.3 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 resolve: 2.0.0-next.5 - string.prototype.trim: 1.2.8 + string.prototype.trim: 1.2.9 dev: true /tar-stream@2.2.0: @@ -16137,10 +16794,6 @@ packages: resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} dev: true - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - dev: true - /thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} @@ -16165,14 +16818,21 @@ packages: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true - /tinyqueue@2.0.3: - resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + /tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + dev: true - /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} + /tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 dev: true + /tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -16251,15 +16911,6 @@ packages: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} dev: true - /ts-api-utils@1.0.3(typescript@5.5.4): - resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: '>=16.13.0'} - peerDependencies: - typescript: '>=4.2.0' - dependencies: - typescript: 5.5.4 - dev: true - /ts-api-utils@1.3.0(typescript@5.5.4): resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -16273,22 +16924,6 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-node@9.1.1(typescript@5.5.4): - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 5.5.4 - yn: 3.1.1 - dev: true - /tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} @@ -16298,11 +16933,11 @@ packages: strip-bom: 3.0.0 dev: true - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + /tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - /tsup@8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + /tsup@8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.3.3): + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -16320,29 +16955,33 @@ packages: typescript: optional: true dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.6 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 + chokidar: 4.0.1 + consola: 3.2.3 + debug: 4.3.7 + esbuild: 0.24.0 joycon: 3.1.1 + picocolors: 1.1.1 postcss: 8.4.40 - postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@9.1.1) + postcss-load-config: 6.0.1(postcss@8.4.40)(tsx@4.19.2) resolve-from: 5.0.0 - rollup: 4.9.0 + rollup: 4.28.0 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 typescript: 5.3.3 transitivePeerDependencies: + - jiti - supports-color - - ts-node + - tsx + - yaml dev: true - /tsup@8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + /tsup@8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4): + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -16360,34 +16999,38 @@ packages: typescript: optional: true dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 + chokidar: 4.0.1 + consola: 3.2.3 + debug: 4.3.7 + esbuild: 0.24.0 joycon: 3.1.1 + picocolors: 1.1.1 postcss: 8.4.40 - postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@9.1.1) + postcss-load-config: 6.0.1(postcss@8.4.40)(tsx@4.19.2) resolve-from: 5.0.0 - rollup: 4.9.0 + rollup: 4.28.0 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 typescript: 5.5.4 transitivePeerDependencies: + - jiti - supports-color - - ts-node + - tsx + - yaml dev: true - /tsx@4.6.2: - resolution: {integrity: sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==} + /tsx@4.19.2: + resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==} engines: {node: '>=18.0.0'} hasBin: true dependencies: - esbuild: 0.18.20 - get-tsconfig: 4.7.2 + esbuild: 0.23.1 + get-tsconfig: 4.8.1 optionalDependencies: fsevents: 2.3.3 dev: true @@ -16397,7 +17040,7 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} dependencies: '@tufjs/models': 2.0.1 - debug: 4.3.4 + debug: 4.3.7 make-fetch-happen: 13.0.1 transitivePeerDependencies: - supports-color @@ -16415,11 +17058,6 @@ packages: engines: {node: '>=10'} dev: true - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - dev: true - /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} @@ -16454,6 +17092,15 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 + dev: true + /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} @@ -16464,6 +17111,17 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 + dev: true + /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} @@ -16475,6 +17133,19 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-byte-offset@1.0.3: + resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 + reflect.getprototypeof: 1.0.7 + dev: true + /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: @@ -16483,6 +17154,18 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.7 + dev: true + /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: @@ -16493,6 +17176,25 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true + /typescript-eslint@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + eslint: 9.16.0 + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + dev: true + /typescript@5.3.3: resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} engines: {node: '>=14.17'} @@ -16505,8 +17207,8 @@ packages: hasBin: true dev: true - /uglify-js@3.19.1: - resolution: {integrity: sha512-y/2wiW+ceTYR2TSSptAhfnEtpLaQ4Ups5zrjB2d3kuVxHj16j/QJwPl5PvuGy9uARb39J0+iKxcRPvtpsx4A4A==} + /uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -16527,8 +17229,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + /unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} dev: true @@ -16536,12 +17238,12 @@ packages: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 dev: true - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + /unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} engines: {node: '>=4'} dev: true @@ -16633,25 +17335,20 @@ packages: engines: {node: '>= 10.0.0'} dev: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true - /upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.13(browserslist@4.22.2): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + /update-browserslist-db@1.1.1(browserslist@4.24.2): + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.24.2 + escalade: 3.2.0 + picocolors: 1.1.1 dev: true /uri-js@4.4.1: @@ -16798,6 +17495,36 @@ packages: is-symbol: 1.0.4 dev: true + /which-boxed-primitive@1.1.0: + resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==} + engines: {node: '>= 0.4'} + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.0 + is-number-object: 1.1.0 + is-string: 1.1.0 + is-symbol: 1.1.0 + dev: true + + /which-builtin-type@1.2.0: + resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.1.0 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.1.0 + which-collection: 1.0.2 + which-typed-array: 1.1.16 + dev: true + /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: @@ -16807,17 +17534,38 @@ packages: is-weakset: 2.0.2 dev: true + /which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + dev: true + /which-typed-array@1.1.13: resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 dev: true + /which-typed-array@1.1.16: + resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-tostringtag: 1.0.2 + dev: true + /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true @@ -16877,6 +17625,11 @@ packages: resolution: {integrity: sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw==} dev: true + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true @@ -17003,11 +17756,6 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} - dev: true - /yaml@2.5.0: resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} engines: {node: '>= 14'} @@ -17058,11 +17806,6 @@ packages: yargs-parser: 21.1.1 dev: true - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true - /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} From e7a28da5142533a1e1ec5510006562d1883d4666 Mon Sep 17 00:00:00 2001 From: Paul Mourer Date: Sat, 14 Dec 2024 04:02:31 -0700 Subject: [PATCH 06/10] Revert self intersection behavior: `line-intersect` (#2742) Changed ignoreSelfIntersections to default to true, reverting to previous v6.5.0 behaviour. This unannounced breaking change was unintentionally released in v7.0.0. --------- Co-authored-by: James Beard --- packages/turf-line-intersect/README.md | 2 +- packages/turf-line-intersect/index.ts | 4 +- packages/turf-line-intersect/test.ts | 65 ++++++++++++++++--- .../test/in/self-intersecting-line.geojson | 30 +++++++++ .../in/self-intersecting-multiline.geojson | 36 ++++++++++ .../in/self-intersecting-multipoly.geojson | 52 +++++++++++++++ .../test/in/self-intersecting-poly.geojson | 44 +++++++++++++ .../test/out/self-intersecting-line.geojson | 30 +++++++++ .../out/self-intersecting-multiline.geojson | 36 ++++++++++ .../out/self-intersecting-multipoly.geojson | 52 +++++++++++++++ .../test/out/self-intersecting-poly.geojson | 44 +++++++++++++ 11 files changed, 384 insertions(+), 11 deletions(-) create mode 100644 packages/turf-line-intersect/test/in/self-intersecting-line.geojson create mode 100644 packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson create mode 100644 packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson create mode 100644 packages/turf-line-intersect/test/in/self-intersecting-poly.geojson create mode 100644 packages/turf-line-intersect/test/out/self-intersecting-line.geojson create mode 100644 packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson create mode 100644 packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson create mode 100644 packages/turf-line-intersect/test/out/self-intersecting-poly.geojson diff --git a/packages/turf-line-intersect/README.md b/packages/turf-line-intersect/README.md index 2c9881046f..6e389836c5 100644 --- a/packages/turf-line-intersect/README.md +++ b/packages/turf-line-intersect/README.md @@ -13,7 +13,7 @@ Takes any LineString or Polygon GeoJSON and returns the intersecting point(s). * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`) - * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `false`) + * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `true`) ### Examples diff --git a/packages/turf-line-intersect/index.ts b/packages/turf-line-intersect/index.ts index 3723bdba2f..7e29778961 100644 --- a/packages/turf-line-intersect/index.ts +++ b/packages/turf-line-intersect/index.ts @@ -19,7 +19,7 @@ import { sweeplineIntersections as findIntersections } from "./lib/sweepline-int * @param {GeoJSON} line2 any LineString or Polygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.removeDuplicates=true] remove duplicate intersections - * @param {boolean} [options.ignoreSelfIntersections=false] ignores self-intersections on input features + * @param {boolean} [options.ignoreSelfIntersections=true] ignores self-intersections on input features * @returns {FeatureCollection} point(s) that intersect both * @example * var line1 = turf.lineString([[126, -11], [129, -21]]); @@ -40,7 +40,7 @@ function lineIntersect< ignoreSelfIntersections?: boolean; } = {} ): FeatureCollection { - const { removeDuplicates = true, ignoreSelfIntersections = false } = options; + const { removeDuplicates = true, ignoreSelfIntersections = true } = options; let features: Feature[] = []; if (line1.type === "FeatureCollection") features = features.concat(line1.features); diff --git a/packages/turf-line-intersect/test.ts b/packages/turf-line-intersect/test.ts index 40d45e91db..c610925726 100644 --- a/packages/turf-line-intersect/test.ts +++ b/packages/turf-line-intersect/test.ts @@ -4,13 +4,9 @@ import path from "path"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; -import { - featureCollection, - // geometryCollection, - lineString, - polygon, -} from "@turf/helpers"; +import { featureCollection, lineString, polygon } from "@turf/helpers"; import { lineIntersect } from "./index.js"; +import { Feature, LineString, Point } from "geojson"; const directories = { in: path.join("test", "in") + path.sep, @@ -21,14 +17,18 @@ const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, - geojson: loadJsonFileSync(directories.in + filename), + geojson: loadJsonFileSync( + directories.in + filename + ) as GeoJSON.FeatureCollection, }; }); test("turf-line-intersect", (t) => { for (const { filename, name, geojson } of fixtures) { const [line1, line2] = geojson.features; - const results = truncate(lineIntersect(line1, line2)); + const results: GeoJSON.FeatureCollection = truncate( + lineIntersect(line1, line2) + ); results.features.push(line1); results.features.push(line2); @@ -132,3 +132,52 @@ test("turf-line-intersect - polygon support #586", (t) => { t.equal(results.features.length, 1, "should return single point"); t.end(); }); + +/** + * ensures that the self intersection param behaves as expected - + * since it cannot be verified in the fixture format. + */ +test("turf-line-intersect - self intersection behavior", (t) => { + const line1: Feature = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1], + ], + }, + }; + const line2: Feature = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [3, 3], + [4, 4], + [5, 5], + ], + }, + }; + + const ignored = lineIntersect(line1, line2); + t.equal( + ignored.features.length, + 0, + "self intersections should be ignored by default" + ); + + const included = lineIntersect(line1, line2, { + ignoreSelfIntersections: false, + }); + t.equal( + included.features.length, + 1, + "self intersections should be included when ignoreSelfIntersections set to false" + ); + t.end(); +}); diff --git a/packages/turf-line-intersect/test/in/self-intersecting-line.geojson b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson new file mode 100644 index 0000000000..ec5b6ebf7c --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-line.geojson @@ -0,0 +1,30 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson new file mode 100644 index 0000000000..9f08036d83 --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson @@ -0,0 +1,36 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0, 0], + [1, 2], + [0, 4] + ], + [ + [1, 0], + [0, 2], + [1, 4] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson new file mode 100644 index 0000000000..f907df2dc7 --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "fill": "#ed333b", + "fill-opacity": 0.5 + }, + "geometry": { + "coordinates": [ + [ + [ + [2.8208987964653716, 5.206515064293427], + [2.8208987964653716, -4.530167455797994], + [6.383916833323553, -4.530167455797994], + [6.383916833323553, 5.206515064293427], + [2.8208987964653716, 5.206515064293427] + ] + ], + [ + [ + [-0.33343506038161763, 3.67541603033537], + [-0.33343506038161763, 2.1793088174136273], + [8.775841349855597, 2.1793088174136273], + [8.775841349855597, 3.67541603033537], + [-0.33343506038161763, 3.67541603033537] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 0 + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.951422534380413, 5.231149187754099], + [-7.951422534380413, -4.552832252613101], + [-5.701165954657256, -4.552832252613101], + [-5.701165954657256, 5.231149187754099], + [-7.951422534380413, 5.231149187754099] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson new file mode 100644 index 0000000000..241a878a9e --- /dev/null +++ b/packages/turf-line-intersect/test/in/self-intersecting-poly.geojson @@ -0,0 +1,44 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-0.8680870854922205, 3.0368343508535673], + [-1.321147431010786, 5.333329344976903], + [1.0099462525165848, 5.611566335081363], + [0.47439299724965167, -1.9282285399474688], + [3.2162894164922875, -1.8166964568157766], + [2.707220996335252, 7.192842763774053], + [-3.8645185945755713, 6.519248925309753], + [-3.8571038955967083, 0.3483632770754781], + [-0.5093053180867742, 0.39824548653076874], + [4.4119165583018685, 0.21046777461485533], + [3.9804563423212755, 3.7937082620644844], + [-0.8680870854922205, 3.0368343508535673] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.4564971746842446, 6.278543929857676], + [-13.631981273628753, 6.323585458965155], + [-12.43687692686214, -2.589094309688946], + [-6.376915352576532, -3.0767722870515115], + [-7.4564971746842446, 6.278543929857676] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-line.geojson b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson new file mode 100644 index 0000000000..ec5b6ebf7c --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-line.geojson @@ -0,0 +1,30 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [0, 0], + [0, 2], + [2, 1], + [-1, 1] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson new file mode 100644 index 0000000000..9f08036d83 --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson @@ -0,0 +1,36 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [0, 0], + [1, 2], + [0, 4] + ], + [ + [1, 0], + [0, 2], + [1, 4] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [3, 3], + [4, 4], + [5, 5] + ] + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson new file mode 100644 index 0000000000..f907df2dc7 --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "fill": "#ed333b", + "fill-opacity": 0.5 + }, + "geometry": { + "coordinates": [ + [ + [ + [2.8208987964653716, 5.206515064293427], + [2.8208987964653716, -4.530167455797994], + [6.383916833323553, -4.530167455797994], + [6.383916833323553, 5.206515064293427], + [2.8208987964653716, 5.206515064293427] + ] + ], + [ + [ + [-0.33343506038161763, 3.67541603033537], + [-0.33343506038161763, 2.1793088174136273], + [8.775841349855597, 2.1793088174136273], + [8.775841349855597, 3.67541603033537], + [-0.33343506038161763, 3.67541603033537] + ] + ] + ], + "type": "MultiPolygon" + }, + "id": 0 + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.951422534380413, 5.231149187754099], + [-7.951422534380413, -4.552832252613101], + [-5.701165954657256, -4.552832252613101], + [-5.701165954657256, 5.231149187754099], + [-7.951422534380413, 5.231149187754099] + ] + ], + "type": "Polygon" + } + } + ] +} diff --git a/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson new file mode 100644 index 0000000000..241a878a9e --- /dev/null +++ b/packages/turf-line-intersect/test/out/self-intersecting-poly.geojson @@ -0,0 +1,44 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-0.8680870854922205, 3.0368343508535673], + [-1.321147431010786, 5.333329344976903], + [1.0099462525165848, 5.611566335081363], + [0.47439299724965167, -1.9282285399474688], + [3.2162894164922875, -1.8166964568157766], + [2.707220996335252, 7.192842763774053], + [-3.8645185945755713, 6.519248925309753], + [-3.8571038955967083, 0.3483632770754781], + [-0.5093053180867742, 0.39824548653076874], + [4.4119165583018685, 0.21046777461485533], + [3.9804563423212755, 3.7937082620644844], + [-0.8680870854922205, 3.0368343508535673] + ] + ], + "type": "Polygon" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "coordinates": [ + [ + [-7.4564971746842446, 6.278543929857676], + [-13.631981273628753, 6.323585458965155], + [-12.43687692686214, -2.589094309688946], + [-6.376915352576532, -3.0767722870515115], + [-7.4564971746842446, 6.278543929857676] + ] + ], + "type": "Polygon" + } + } + ] +} From 304b76b018e98807e79ba879c6dbb2fe0e0e9dbf Mon Sep 17 00:00:00 2001 From: James Beard Date: Sun, 15 Dec 2024 09:33:09 +1100 Subject: [PATCH 07/10] Updated README.md to clarify GeoJSON types need to be installed separately Resolves #2769 --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 330bcfa651..c13f7fb62c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,13 @@ You can also include it directly from a CDN: ### TypeScript -TypeScript definitions are packaged with each module. No DefinitelyTyped packages required. +Turf modules ship with type definitions packaged in each module. No DefinitelyTyped packages required. + +The types defined in the GeoJSON specification are maintained separately (Geometry, Polygon, etc). To refer to these in your own code, install `@types/geojson` and import from there: + +```typescript +import { type Polygon } from "@types/geojson"; +``` ### Other languages From 9dc7a501ba7a8e9b54fbf0a78f8799c8f2fbf896 Mon Sep 17 00:00:00 2001 From: James Beard Date: Sun, 15 Dec 2024 09:35:45 +1100 Subject: [PATCH 08/10] Updated README.md correcting typo in previous commit Incorrect import statement in previous edit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c13f7fb62c..b9015da164 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Turf modules ship with type definitions packaged in each module. No DefinitelyTy The types defined in the GeoJSON specification are maintained separately (Geometry, Polygon, etc). To refer to these in your own code, install `@types/geojson` and import from there: ```typescript -import { type Polygon } from "@types/geojson"; +import { type Polygon } from "geojson"; ``` ### Other languages From bf588ddebcd76f021f52d867fa3defe624888523 Mon Sep 17 00:00:00 2001 From: James Beard Date: Mon, 16 Dec 2024 20:37:46 +1100 Subject: [PATCH 09/10] Added special cases to booleanPointOnLine for zero length lines booleanPointOnLine was returning false positives for points on the same longitude as zero length lines. --- packages/turf-boolean-point-on-line/index.ts | 19 +++++++++++ packages/turf-boolean-point-on-line/test.ts | 35 +++++++++++++++++++- 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/packages/turf-boolean-point-on-line/index.ts b/packages/turf-boolean-point-on-line/index.ts index 9bfb98e430..df9c625225 100644 --- a/packages/turf-boolean-point-on-line/index.ts +++ b/packages/turf-boolean-point-on-line/index.ts @@ -97,6 +97,25 @@ function isPointOnLineSegment( } else if (cross !== 0) { return false; } + + // Special cases for zero length lines + // https://github.com/Turfjs/turf/issues/2750 + if (Math.abs(dxl) === Math.abs(dyl) && Math.abs(dxl) === 0) { + // Zero length line. + if (excludeBoundary) { + // To be on a zero length line pt has to be on the start (and end), BUT we + // are excluding start and end from possible matches. + return false; + } + if (pt[0] === lineSegmentStart[0] && pt[1] === lineSegmentStart[1]) { + // If point is same as start (and end) it's on the line segment + return true; + } else { + // Otherwise point is somewhere else + return false; + } + } + if (!excludeBoundary) { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 <= x && x <= x2 : x2 <= x && x <= x1; diff --git a/packages/turf-boolean-point-on-line/test.ts b/packages/turf-boolean-point-on-line/test.ts index bbf9d39faf..dbcccb2589 100644 --- a/packages/turf-boolean-point-on-line/test.ts +++ b/packages/turf-boolean-point-on-line/test.ts @@ -3,7 +3,10 @@ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; -import { booleanPointOnLine as pointOnLine } from "./index.js"; +import { point, lineString } from "@turf/helpers"; +import booleanPointOnLine, { + booleanPointOnLine as pointOnLine, +} from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); @@ -36,3 +39,33 @@ test("turf-boolean-point-on-line", (t) => { }); t.end(); }); + +test("turf-boolean-point-on-line - issue 2750", (t) => { + // Issue 2750 was that in the first test below where point is on a different + // longitude to a zero length line booleanPointOnLine gave the correct result, + // while the second test where a point on the SAME longitude, but nowhere + // near, that zero length line incorrectly returned true. + t.false( + booleanPointOnLine( + point([2, 13]), + lineString([ + [1, 1], + [1, 1], + ]) + ), + "#2750 different longitude point not on zero length line" + ); + + t.false( + booleanPointOnLine( + point([1, 13]), + lineString([ + [1, 1], + [1, 1], + ]) + ), + "#2750 same longitude point not on zero length line" + ); + + t.end(); +}); From 8f5c40736d108a1540d9641de95fc06da5ae3808 Mon Sep 17 00:00:00 2001 From: fine <105350842+lemonig@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:36:29 +0800 Subject: [PATCH 10/10] Added bbox parameter to @turf/interpolate (#2768) Expands the interpolation field beyond the default bbox of the input data points. --- packages/turf-interpolate/README.md | 7 +- packages/turf-interpolate/index.d.ts | 4 +- packages/turf-interpolate/index.js | 7 +- .../test/in/data-1km-bbox.geojson | 62 + .../test/in/data-500m-bbox.geojson | 63 + .../test/in/hex-zValue-bbox.geojson | 52 + .../test/out/data-1km-bbox.geojson | 29111 ++++ .../test/out/data-500m-bbox.geojson | 117815 +++++++++++++++ .../test/out/hex-zValue-bbox.geojson | 1040 + 9 files changed, 148156 insertions(+), 5 deletions(-) create mode 100644 packages/turf-interpolate/test/in/data-1km-bbox.geojson create mode 100644 packages/turf-interpolate/test/in/data-500m-bbox.geojson create mode 100644 packages/turf-interpolate/test/in/hex-zValue-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/data-1km-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/data-500m-bbox.geojson create mode 100644 packages/turf-interpolate/test/out/hex-zValue-bbox.geojson diff --git a/packages/turf-interpolate/README.md b/packages/turf-interpolate/README.md index 6959ec9fe4..e369e302cd 100644 --- a/packages/turf-interpolate/README.md +++ b/packages/turf-interpolate/README.md @@ -16,6 +16,7 @@ Takes a set of points and estimates their 'property' values on a grid using the * `options.property` **[string][6]** the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. (optional, default `'elevation'`) * `options.units` **[string][6]** used in calculating cellSize, can be degrees, radians, miles, or kilometers (optional, default `'kilometers'`) * `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`) + * `options.bbox` **[BBox][7]** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection. (optional, default `bbox(points)`) ### Examples @@ -33,7 +34,7 @@ var grid = turf.interpolate(points, 100, options); var addToMap = [grid]; ``` -Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points or polygons with interpolated 'property' +Returns **[FeatureCollection][2]<([Point][3] | [Polygon][8])>** grid of points or polygons with interpolated 'property' [1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting @@ -47,7 +48,9 @@ Returns **[FeatureCollection][2]<([Point][3] | [Polygon][7])>** grid of points o [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String -[7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 +[7]: https://tools.ietf.org/html/rfc7946#section-5 + +[8]: https://tools.ietf.org/html/rfc7946#section-3.1.6 diff --git a/packages/turf-interpolate/index.d.ts b/packages/turf-interpolate/index.d.ts index 6e5639a85a..4705963adb 100644 --- a/packages/turf-interpolate/index.d.ts +++ b/packages/turf-interpolate/index.d.ts @@ -1,4 +1,4 @@ -import { Point, Polygon, FeatureCollection } from "geojson"; +import { Point, Polygon, FeatureCollection, BBox } from "geojson"; import { Units, Grid } from "@turf/helpers"; /** @@ -12,6 +12,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; declare function interpolate( @@ -22,6 +23,7 @@ declare function interpolate( property?: string; units?: Units; weight?: number; + bbox?: BBox; } ): FeatureCollection; diff --git a/packages/turf-interpolate/index.js b/packages/turf-interpolate/index.js index e79290a4e8..426ee7ca96 100644 --- a/packages/turf-interpolate/index.js +++ b/packages/turf-interpolate/index.js @@ -6,7 +6,7 @@ import { centroid } from "@turf/centroid"; import { squareGrid } from "@turf/square-grid"; import { triangleGrid } from "@turf/triangle-grid"; import { clone } from "@turf/clone"; -import { featureCollection } from "@turf/helpers"; +import { featureCollection, validateBBox } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { collectionOf } from "@turf/invariant"; @@ -21,6 +21,7 @@ import { collectionOf } from "@turf/invariant"; * @param {string} [options.property='elevation'] the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. * @param {string} [options.units='kilometers'] used in calculating cellSize, can be degrees, radians, miles, or kilometers * @param {number} [options.weight=1] exponent regulating the distance-decay weighting + * @param {BBox} [options.bbox=bbox(points)] Bounding Box Array [west, south, east, north] associated with the FeatureCollection. * @returns {FeatureCollection} grid of points or polygons with interpolated 'property' * @example * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); @@ -42,6 +43,7 @@ function interpolate(points, cellSize, options) { var gridType = options.gridType; var property = options.property; var weight = options.weight; + var box = options.bbox; // validation if (!points) throw new Error("points is required"); @@ -55,7 +57,8 @@ function interpolate(points, cellSize, options) { gridType = gridType || "square"; weight = weight || 1; - var box = bbox(points); + box = box ?? bbox(points); + validateBBox(box); var grid; switch (gridType) { case "point": diff --git a/packages/turf-interpolate/test/in/data-1km-bbox.geojson b/packages/turf-interpolate/test/in/data-1km-bbox.geojson new file mode 100644 index 0000000000..8c287fbee7 --- /dev/null +++ b/packages/turf-interpolate/test/in/data-1km-bbox.geojson @@ -0,0 +1,62 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "gridType": "square", + "weight": 0.5, + "cellSize": 1, + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/data-500m-bbox.geojson b/packages/turf-interpolate/test/in/data-500m-bbox.geojson new file mode 100644 index 0000000000..10c0fabdc7 --- /dev/null +++ b/packages/turf-interpolate/test/in/data-500m-bbox.geojson @@ -0,0 +1,63 @@ +{ + "type": "FeatureCollection", + "properties": { + "property": "value", + "weight": 0.5, + "gridType": "square", + "cellSize": 0.5, + "units": "kilometers", + "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] + }, + "features": [ + { + "type": "Feature", + "properties": { + "value": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [9.155731201171875, 45.47216977418841] + } + }, + { + "type": "Feature", + "properties": { + "value": 99 + }, + "geometry": { + "type": "Point", + "coordinates": [9.195213317871094, 45.53689620055365] + } + }, + { + "type": "Feature", + "properties": { + "value": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [9.175300598144531, 45.49912810913339] + } + }, + { + "type": "Feature", + "properties": { + "value": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [9.231605529785156, 45.49190839157102] + } + }, + { + "type": "Feature", + "properties": { + "value": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [9.116249084472656, 45.4391764115696] + } + } + ] +} diff --git a/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson new file mode 100644 index 0000000000..05e6020ffe --- /dev/null +++ b/packages/turf-interpolate/test/in/hex-zValue-bbox.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "properties": { + "weight": 2, + "gridType": "hex", + "cellSize": 0.5, + "units": "miles", + "bbox": [-6.357258206107161, 53.39023949422162, -6.186614219650437, 53.31219701461626] + }, + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.3288116455078125, 53.355879304922276, 2] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2615203857421875, 53.38087096356977, 5] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.248474121093749, 53.31979992850456, 14] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2697601318359375, 53.352190769802725, 9] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-6.2505340576171875, 53.3648943803576, 11] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-1km-bbox.geojson b/packages/turf-interpolate/test/out/data-1km-bbox.geojson new file mode 100644 index 0000000000..6a5161f0af --- /dev/null +++ b/packages/turf-interpolate/test/out/data-1km-bbox.geojson @@ -0,0 +1,29111 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.339648], + [9.03507, 45.348642], + [9.044063, 45.348642], + [9.044063, 45.339648], + [9.03507, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.348642], + [9.03507, 45.357635], + [9.044063, 45.357635], + [9.044063, 45.348642], + [9.03507, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.357635], + [9.03507, 45.366628], + [9.044063, 45.366628], + [9.044063, 45.357635], + [9.03507, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.366628], + [9.03507, 45.375621], + [9.044063, 45.375621], + [9.044063, 45.366628], + [9.03507, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.375621], + [9.03507, 45.384614], + [9.044063, 45.384614], + [9.044063, 45.375621], + [9.03507, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.384614], + [9.03507, 45.393608], + [9.044063, 45.393608], + [9.044063, 45.384614], + [9.03507, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.393608], + [9.03507, 45.402601], + [9.044063, 45.402601], + [9.044063, 45.393608], + [9.03507, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.402601], + [9.03507, 45.411594], + [9.044063, 45.411594], + [9.044063, 45.402601], + [9.03507, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.411594], + [9.03507, 45.420587], + [9.044063, 45.420587], + [9.044063, 45.411594], + [9.03507, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.420587], + [9.03507, 45.42958], + [9.044063, 45.42958], + [9.044063, 45.420587], + [9.03507, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.42958], + [9.03507, 45.438574], + [9.044063, 45.438574], + [9.044063, 45.42958], + [9.03507, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.438574], + [9.03507, 45.447567], + [9.044063, 45.447567], + [9.044063, 45.438574], + [9.03507, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.447567], + [9.03507, 45.45656], + [9.044063, 45.45656], + [9.044063, 45.447567], + [9.03507, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.45656], + [9.03507, 45.465553], + [9.044063, 45.465553], + [9.044063, 45.45656], + [9.03507, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.465553], + [9.03507, 45.474547], + [9.044063, 45.474547], + [9.044063, 45.465553], + [9.03507, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.474547], + [9.03507, 45.48354], + [9.044063, 45.48354], + [9.044063, 45.474547], + [9.03507, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.48354], + [9.03507, 45.492533], + [9.044063, 45.492533], + [9.044063, 45.48354], + [9.03507, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.492533], + [9.03507, 45.501526], + [9.044063, 45.501526], + [9.044063, 45.492533], + [9.03507, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.501526], + [9.03507, 45.510519], + [9.044063, 45.510519], + [9.044063, 45.501526], + [9.03507, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.510519], + [9.03507, 45.519513], + [9.044063, 45.519513], + [9.044063, 45.510519], + [9.03507, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.519513], + [9.03507, 45.528506], + [9.044063, 45.528506], + [9.044063, 45.519513], + [9.03507, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.528506], + [9.03507, 45.537499], + [9.044063, 45.537499], + [9.044063, 45.528506], + [9.03507, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.537499], + [9.03507, 45.546492], + [9.044063, 45.546492], + [9.044063, 45.537499], + [9.03507, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.546492], + [9.03507, 45.555485], + [9.044063, 45.555485], + [9.044063, 45.546492], + [9.03507, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.555485], + [9.03507, 45.564479], + [9.044063, 45.564479], + [9.044063, 45.555485], + [9.03507, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.564479], + [9.03507, 45.573472], + [9.044063, 45.573472], + [9.044063, 45.564479], + [9.03507, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.573472], + [9.03507, 45.582465], + [9.044063, 45.582465], + [9.044063, 45.573472], + [9.03507, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.582465], + [9.03507, 45.591458], + [9.044063, 45.591458], + [9.044063, 45.582465], + [9.03507, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.591458], + [9.03507, 45.600451], + [9.044063, 45.600451], + [9.044063, 45.591458], + [9.03507, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.600451], + [9.03507, 45.609445], + [9.044063, 45.609445], + [9.044063, 45.600451], + [9.03507, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.609445], + [9.03507, 45.618438], + [9.044063, 45.618438], + [9.044063, 45.609445], + [9.03507, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.618438], + [9.03507, 45.627431], + [9.044063, 45.627431], + [9.044063, 45.618438], + [9.03507, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.03507, 45.627431], + [9.03507, 45.636424], + [9.044063, 45.636424], + [9.044063, 45.627431], + [9.03507, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.339648], + [9.044063, 45.348642], + [9.053056, 45.348642], + [9.053056, 45.339648], + [9.044063, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.348642], + [9.044063, 45.357635], + [9.053056, 45.357635], + [9.053056, 45.348642], + [9.044063, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.357635], + [9.044063, 45.366628], + [9.053056, 45.366628], + [9.053056, 45.357635], + [9.044063, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.366628], + [9.044063, 45.375621], + [9.053056, 45.375621], + [9.053056, 45.366628], + [9.044063, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.375621], + [9.044063, 45.384614], + [9.053056, 45.384614], + [9.053056, 45.375621], + [9.044063, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.384614], + [9.044063, 45.393608], + [9.053056, 45.393608], + [9.053056, 45.384614], + [9.044063, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.393608], + [9.044063, 45.402601], + [9.053056, 45.402601], + [9.053056, 45.393608], + [9.044063, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.402601], + [9.044063, 45.411594], + [9.053056, 45.411594], + [9.053056, 45.402601], + [9.044063, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.411594], + [9.044063, 45.420587], + [9.053056, 45.420587], + [9.053056, 45.411594], + [9.044063, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.420587], + [9.044063, 45.42958], + [9.053056, 45.42958], + [9.053056, 45.420587], + [9.044063, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.42958], + [9.044063, 45.438574], + [9.053056, 45.438574], + [9.053056, 45.42958], + [9.044063, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.438574], + [9.044063, 45.447567], + [9.053056, 45.447567], + [9.053056, 45.438574], + [9.044063, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.447567], + [9.044063, 45.45656], + [9.053056, 45.45656], + [9.053056, 45.447567], + [9.044063, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.45656], + [9.044063, 45.465553], + [9.053056, 45.465553], + [9.053056, 45.45656], + [9.044063, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.465553], + [9.044063, 45.474547], + [9.053056, 45.474547], + [9.053056, 45.465553], + [9.044063, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.474547], + [9.044063, 45.48354], + [9.053056, 45.48354], + [9.053056, 45.474547], + [9.044063, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.48354], + [9.044063, 45.492533], + [9.053056, 45.492533], + [9.053056, 45.48354], + [9.044063, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.492533], + [9.044063, 45.501526], + [9.053056, 45.501526], + [9.053056, 45.492533], + [9.044063, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.501526], + [9.044063, 45.510519], + [9.053056, 45.510519], + [9.053056, 45.501526], + [9.044063, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.510519], + [9.044063, 45.519513], + [9.053056, 45.519513], + [9.053056, 45.510519], + [9.044063, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.519513], + [9.044063, 45.528506], + [9.053056, 45.528506], + [9.053056, 45.519513], + [9.044063, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.528506], + [9.044063, 45.537499], + [9.053056, 45.537499], + [9.053056, 45.528506], + [9.044063, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.537499], + [9.044063, 45.546492], + [9.053056, 45.546492], + [9.053056, 45.537499], + [9.044063, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.546492], + [9.044063, 45.555485], + [9.053056, 45.555485], + [9.053056, 45.546492], + [9.044063, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.555485], + [9.044063, 45.564479], + [9.053056, 45.564479], + [9.053056, 45.555485], + [9.044063, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.564479], + [9.044063, 45.573472], + [9.053056, 45.573472], + [9.053056, 45.564479], + [9.044063, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.573472], + [9.044063, 45.582465], + [9.053056, 45.582465], + [9.053056, 45.573472], + [9.044063, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.582465], + [9.044063, 45.591458], + [9.053056, 45.591458], + [9.053056, 45.582465], + [9.044063, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.591458], + [9.044063, 45.600451], + [9.053056, 45.600451], + [9.053056, 45.591458], + [9.044063, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.600451], + [9.044063, 45.609445], + [9.053056, 45.609445], + [9.053056, 45.600451], + [9.044063, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.609445], + [9.044063, 45.618438], + [9.053056, 45.618438], + [9.053056, 45.609445], + [9.044063, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.618438], + [9.044063, 45.627431], + [9.053056, 45.627431], + [9.053056, 45.618438], + [9.044063, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.044063, 45.627431], + [9.044063, 45.636424], + [9.053056, 45.636424], + [9.053056, 45.627431], + [9.044063, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.339648], + [9.053056, 45.348642], + [9.06205, 45.348642], + [9.06205, 45.339648], + [9.053056, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.348642], + [9.053056, 45.357635], + [9.06205, 45.357635], + [9.06205, 45.348642], + [9.053056, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.357635], + [9.053056, 45.366628], + [9.06205, 45.366628], + [9.06205, 45.357635], + [9.053056, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.366628], + [9.053056, 45.375621], + [9.06205, 45.375621], + [9.06205, 45.366628], + [9.053056, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.375621], + [9.053056, 45.384614], + [9.06205, 45.384614], + [9.06205, 45.375621], + [9.053056, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.384614], + [9.053056, 45.393608], + [9.06205, 45.393608], + [9.06205, 45.384614], + [9.053056, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.393608], + [9.053056, 45.402601], + [9.06205, 45.402601], + [9.06205, 45.393608], + [9.053056, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.402601], + [9.053056, 45.411594], + [9.06205, 45.411594], + [9.06205, 45.402601], + [9.053056, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.411594], + [9.053056, 45.420587], + [9.06205, 45.420587], + [9.06205, 45.411594], + [9.053056, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.420587], + [9.053056, 45.42958], + [9.06205, 45.42958], + [9.06205, 45.420587], + [9.053056, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.42958], + [9.053056, 45.438574], + [9.06205, 45.438574], + [9.06205, 45.42958], + [9.053056, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.438574], + [9.053056, 45.447567], + [9.06205, 45.447567], + [9.06205, 45.438574], + [9.053056, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.447567], + [9.053056, 45.45656], + [9.06205, 45.45656], + [9.06205, 45.447567], + [9.053056, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.45656], + [9.053056, 45.465553], + [9.06205, 45.465553], + [9.06205, 45.45656], + [9.053056, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.465553], + [9.053056, 45.474547], + [9.06205, 45.474547], + [9.06205, 45.465553], + [9.053056, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.474547], + [9.053056, 45.48354], + [9.06205, 45.48354], + [9.06205, 45.474547], + [9.053056, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.48354], + [9.053056, 45.492533], + [9.06205, 45.492533], + [9.06205, 45.48354], + [9.053056, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.492533], + [9.053056, 45.501526], + [9.06205, 45.501526], + [9.06205, 45.492533], + [9.053056, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.501526], + [9.053056, 45.510519], + [9.06205, 45.510519], + [9.06205, 45.501526], + [9.053056, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.510519], + [9.053056, 45.519513], + [9.06205, 45.519513], + [9.06205, 45.510519], + [9.053056, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.519513], + [9.053056, 45.528506], + [9.06205, 45.528506], + [9.06205, 45.519513], + [9.053056, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.528506], + [9.053056, 45.537499], + [9.06205, 45.537499], + [9.06205, 45.528506], + [9.053056, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.537499], + [9.053056, 45.546492], + [9.06205, 45.546492], + [9.06205, 45.537499], + [9.053056, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.546492], + [9.053056, 45.555485], + [9.06205, 45.555485], + [9.06205, 45.546492], + [9.053056, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.555485], + [9.053056, 45.564479], + [9.06205, 45.564479], + [9.06205, 45.555485], + [9.053056, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.564479], + [9.053056, 45.573472], + [9.06205, 45.573472], + [9.06205, 45.564479], + [9.053056, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.573472], + [9.053056, 45.582465], + [9.06205, 45.582465], + [9.06205, 45.573472], + [9.053056, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.582465], + [9.053056, 45.591458], + [9.06205, 45.591458], + [9.06205, 45.582465], + [9.053056, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.591458], + [9.053056, 45.600451], + [9.06205, 45.600451], + [9.06205, 45.591458], + [9.053056, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.600451], + [9.053056, 45.609445], + [9.06205, 45.609445], + [9.06205, 45.600451], + [9.053056, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.609445], + [9.053056, 45.618438], + [9.06205, 45.618438], + [9.06205, 45.609445], + [9.053056, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.618438], + [9.053056, 45.627431], + [9.06205, 45.627431], + [9.06205, 45.618438], + [9.053056, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.053056, 45.627431], + [9.053056, 45.636424], + [9.06205, 45.636424], + [9.06205, 45.627431], + [9.053056, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.339648], + [9.06205, 45.348642], + [9.071043, 45.348642], + [9.071043, 45.339648], + [9.06205, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.348642], + [9.06205, 45.357635], + [9.071043, 45.357635], + [9.071043, 45.348642], + [9.06205, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.357635], + [9.06205, 45.366628], + [9.071043, 45.366628], + [9.071043, 45.357635], + [9.06205, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.366628], + [9.06205, 45.375621], + [9.071043, 45.375621], + [9.071043, 45.366628], + [9.06205, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.375621], + [9.06205, 45.384614], + [9.071043, 45.384614], + [9.071043, 45.375621], + [9.06205, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.384614], + [9.06205, 45.393608], + [9.071043, 45.393608], + [9.071043, 45.384614], + [9.06205, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.393608], + [9.06205, 45.402601], + [9.071043, 45.402601], + [9.071043, 45.393608], + [9.06205, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.402601], + [9.06205, 45.411594], + [9.071043, 45.411594], + [9.071043, 45.402601], + [9.06205, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.411594], + [9.06205, 45.420587], + [9.071043, 45.420587], + [9.071043, 45.411594], + [9.06205, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.420587], + [9.06205, 45.42958], + [9.071043, 45.42958], + [9.071043, 45.420587], + [9.06205, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.42958], + [9.06205, 45.438574], + [9.071043, 45.438574], + [9.071043, 45.42958], + [9.06205, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.438574], + [9.06205, 45.447567], + [9.071043, 45.447567], + [9.071043, 45.438574], + [9.06205, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.447567], + [9.06205, 45.45656], + [9.071043, 45.45656], + [9.071043, 45.447567], + [9.06205, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.45656], + [9.06205, 45.465553], + [9.071043, 45.465553], + [9.071043, 45.45656], + [9.06205, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.465553], + [9.06205, 45.474547], + [9.071043, 45.474547], + [9.071043, 45.465553], + [9.06205, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.474547], + [9.06205, 45.48354], + [9.071043, 45.48354], + [9.071043, 45.474547], + [9.06205, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.48354], + [9.06205, 45.492533], + [9.071043, 45.492533], + [9.071043, 45.48354], + [9.06205, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.492533], + [9.06205, 45.501526], + [9.071043, 45.501526], + [9.071043, 45.492533], + [9.06205, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.501526], + [9.06205, 45.510519], + [9.071043, 45.510519], + [9.071043, 45.501526], + [9.06205, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.510519], + [9.06205, 45.519513], + [9.071043, 45.519513], + [9.071043, 45.510519], + [9.06205, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.519513], + [9.06205, 45.528506], + [9.071043, 45.528506], + [9.071043, 45.519513], + [9.06205, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.528506], + [9.06205, 45.537499], + [9.071043, 45.537499], + [9.071043, 45.528506], + [9.06205, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.537499], + [9.06205, 45.546492], + [9.071043, 45.546492], + [9.071043, 45.537499], + [9.06205, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.546492], + [9.06205, 45.555485], + [9.071043, 45.555485], + [9.071043, 45.546492], + [9.06205, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.555485], + [9.06205, 45.564479], + [9.071043, 45.564479], + [9.071043, 45.555485], + [9.06205, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.564479], + [9.06205, 45.573472], + [9.071043, 45.573472], + [9.071043, 45.564479], + [9.06205, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.573472], + [9.06205, 45.582465], + [9.071043, 45.582465], + [9.071043, 45.573472], + [9.06205, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.582465], + [9.06205, 45.591458], + [9.071043, 45.591458], + [9.071043, 45.582465], + [9.06205, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.591458], + [9.06205, 45.600451], + [9.071043, 45.600451], + [9.071043, 45.591458], + [9.06205, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.600451], + [9.06205, 45.609445], + [9.071043, 45.609445], + [9.071043, 45.600451], + [9.06205, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.609445], + [9.06205, 45.618438], + [9.071043, 45.618438], + [9.071043, 45.609445], + [9.06205, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.618438], + [9.06205, 45.627431], + [9.071043, 45.627431], + [9.071043, 45.618438], + [9.06205, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.06205, 45.627431], + [9.06205, 45.636424], + [9.071043, 45.636424], + [9.071043, 45.627431], + [9.06205, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.339648], + [9.071043, 45.348642], + [9.080036, 45.348642], + [9.080036, 45.339648], + [9.071043, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.348642], + [9.071043, 45.357635], + [9.080036, 45.357635], + [9.080036, 45.348642], + [9.071043, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.357635], + [9.071043, 45.366628], + [9.080036, 45.366628], + [9.080036, 45.357635], + [9.071043, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.366628], + [9.071043, 45.375621], + [9.080036, 45.375621], + [9.080036, 45.366628], + [9.071043, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.375621], + [9.071043, 45.384614], + [9.080036, 45.384614], + [9.080036, 45.375621], + [9.071043, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.384614], + [9.071043, 45.393608], + [9.080036, 45.393608], + [9.080036, 45.384614], + [9.071043, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.393608], + [9.071043, 45.402601], + [9.080036, 45.402601], + [9.080036, 45.393608], + [9.071043, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.402601], + [9.071043, 45.411594], + [9.080036, 45.411594], + [9.080036, 45.402601], + [9.071043, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.411594], + [9.071043, 45.420587], + [9.080036, 45.420587], + [9.080036, 45.411594], + [9.071043, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.420587], + [9.071043, 45.42958], + [9.080036, 45.42958], + [9.080036, 45.420587], + [9.071043, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.42958], + [9.071043, 45.438574], + [9.080036, 45.438574], + [9.080036, 45.42958], + [9.071043, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.438574], + [9.071043, 45.447567], + [9.080036, 45.447567], + [9.080036, 45.438574], + [9.071043, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.447567], + [9.071043, 45.45656], + [9.080036, 45.45656], + [9.080036, 45.447567], + [9.071043, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.45656], + [9.071043, 45.465553], + [9.080036, 45.465553], + [9.080036, 45.45656], + [9.071043, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.465553], + [9.071043, 45.474547], + [9.080036, 45.474547], + [9.080036, 45.465553], + [9.071043, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.474547], + [9.071043, 45.48354], + [9.080036, 45.48354], + [9.080036, 45.474547], + [9.071043, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.48354], + [9.071043, 45.492533], + [9.080036, 45.492533], + [9.080036, 45.48354], + [9.071043, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.492533], + [9.071043, 45.501526], + [9.080036, 45.501526], + [9.080036, 45.492533], + [9.071043, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.501526], + [9.071043, 45.510519], + [9.080036, 45.510519], + [9.080036, 45.501526], + [9.071043, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.510519], + [9.071043, 45.519513], + [9.080036, 45.519513], + [9.080036, 45.510519], + [9.071043, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.519513], + [9.071043, 45.528506], + [9.080036, 45.528506], + [9.080036, 45.519513], + [9.071043, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.528506], + [9.071043, 45.537499], + [9.080036, 45.537499], + [9.080036, 45.528506], + [9.071043, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.537499], + [9.071043, 45.546492], + [9.080036, 45.546492], + [9.080036, 45.537499], + [9.071043, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.546492], + [9.071043, 45.555485], + [9.080036, 45.555485], + [9.080036, 45.546492], + [9.071043, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.555485], + [9.071043, 45.564479], + [9.080036, 45.564479], + [9.080036, 45.555485], + [9.071043, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.564479], + [9.071043, 45.573472], + [9.080036, 45.573472], + [9.080036, 45.564479], + [9.071043, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.573472], + [9.071043, 45.582465], + [9.080036, 45.582465], + [9.080036, 45.573472], + [9.071043, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.582465], + [9.071043, 45.591458], + [9.080036, 45.591458], + [9.080036, 45.582465], + [9.071043, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.591458], + [9.071043, 45.600451], + [9.080036, 45.600451], + [9.080036, 45.591458], + [9.071043, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.600451], + [9.071043, 45.609445], + [9.080036, 45.609445], + [9.080036, 45.600451], + [9.071043, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.609445], + [9.071043, 45.618438], + [9.080036, 45.618438], + [9.080036, 45.609445], + [9.071043, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.618438], + [9.071043, 45.627431], + [9.080036, 45.627431], + [9.080036, 45.618438], + [9.071043, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.071043, 45.627431], + [9.071043, 45.636424], + [9.080036, 45.636424], + [9.080036, 45.627431], + [9.071043, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.339648], + [9.080036, 45.348642], + [9.089029, 45.348642], + [9.089029, 45.339648], + [9.080036, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.348642], + [9.080036, 45.357635], + [9.089029, 45.357635], + [9.089029, 45.348642], + [9.080036, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.357635], + [9.080036, 45.366628], + [9.089029, 45.366628], + [9.089029, 45.357635], + [9.080036, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.366628], + [9.080036, 45.375621], + [9.089029, 45.375621], + [9.089029, 45.366628], + [9.080036, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.375621], + [9.080036, 45.384614], + [9.089029, 45.384614], + [9.089029, 45.375621], + [9.080036, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.384614], + [9.080036, 45.393608], + [9.089029, 45.393608], + [9.089029, 45.384614], + [9.080036, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.393608], + [9.080036, 45.402601], + [9.089029, 45.402601], + [9.089029, 45.393608], + [9.080036, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.402601], + [9.080036, 45.411594], + [9.089029, 45.411594], + [9.089029, 45.402601], + [9.080036, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.411594], + [9.080036, 45.420587], + [9.089029, 45.420587], + [9.089029, 45.411594], + [9.080036, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.420587], + [9.080036, 45.42958], + [9.089029, 45.42958], + [9.089029, 45.420587], + [9.080036, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.42958], + [9.080036, 45.438574], + [9.089029, 45.438574], + [9.089029, 45.42958], + [9.080036, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.438574], + [9.080036, 45.447567], + [9.089029, 45.447567], + [9.089029, 45.438574], + [9.080036, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.447567], + [9.080036, 45.45656], + [9.089029, 45.45656], + [9.089029, 45.447567], + [9.080036, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.45656], + [9.080036, 45.465553], + [9.089029, 45.465553], + [9.089029, 45.45656], + [9.080036, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.465553], + [9.080036, 45.474547], + [9.089029, 45.474547], + [9.089029, 45.465553], + [9.080036, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.474547], + [9.080036, 45.48354], + [9.089029, 45.48354], + [9.089029, 45.474547], + [9.080036, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.48354], + [9.080036, 45.492533], + [9.089029, 45.492533], + [9.089029, 45.48354], + [9.080036, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.492533], + [9.080036, 45.501526], + [9.089029, 45.501526], + [9.089029, 45.492533], + [9.080036, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.501526], + [9.080036, 45.510519], + [9.089029, 45.510519], + [9.089029, 45.501526], + [9.080036, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.510519], + [9.080036, 45.519513], + [9.089029, 45.519513], + [9.089029, 45.510519], + [9.080036, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.519513], + [9.080036, 45.528506], + [9.089029, 45.528506], + [9.089029, 45.519513], + [9.080036, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.528506], + [9.080036, 45.537499], + [9.089029, 45.537499], + [9.089029, 45.528506], + [9.080036, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.537499], + [9.080036, 45.546492], + [9.089029, 45.546492], + [9.089029, 45.537499], + [9.080036, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.546492], + [9.080036, 45.555485], + [9.089029, 45.555485], + [9.089029, 45.546492], + [9.080036, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.555485], + [9.080036, 45.564479], + [9.089029, 45.564479], + [9.089029, 45.555485], + [9.080036, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.564479], + [9.080036, 45.573472], + [9.089029, 45.573472], + [9.089029, 45.564479], + [9.080036, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.573472], + [9.080036, 45.582465], + [9.089029, 45.582465], + [9.089029, 45.573472], + [9.080036, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.582465], + [9.080036, 45.591458], + [9.089029, 45.591458], + [9.089029, 45.582465], + [9.080036, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.591458], + [9.080036, 45.600451], + [9.089029, 45.600451], + [9.089029, 45.591458], + [9.080036, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.600451], + [9.080036, 45.609445], + [9.089029, 45.609445], + [9.089029, 45.600451], + [9.080036, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.609445], + [9.080036, 45.618438], + [9.089029, 45.618438], + [9.089029, 45.609445], + [9.080036, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.618438], + [9.080036, 45.627431], + [9.089029, 45.627431], + [9.089029, 45.618438], + [9.080036, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.080036, 45.627431], + [9.080036, 45.636424], + [9.089029, 45.636424], + [9.089029, 45.627431], + [9.080036, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.339648], + [9.089029, 45.348642], + [9.098022, 45.348642], + [9.098022, 45.339648], + [9.089029, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.348642], + [9.089029, 45.357635], + [9.098022, 45.357635], + [9.098022, 45.348642], + [9.089029, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.357635], + [9.089029, 45.366628], + [9.098022, 45.366628], + [9.098022, 45.357635], + [9.089029, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.366628], + [9.089029, 45.375621], + [9.098022, 45.375621], + [9.098022, 45.366628], + [9.089029, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.375621], + [9.089029, 45.384614], + [9.098022, 45.384614], + [9.098022, 45.375621], + [9.089029, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.384614], + [9.089029, 45.393608], + [9.098022, 45.393608], + [9.098022, 45.384614], + [9.089029, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.393608], + [9.089029, 45.402601], + [9.098022, 45.402601], + [9.098022, 45.393608], + [9.089029, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.402601], + [9.089029, 45.411594], + [9.098022, 45.411594], + [9.098022, 45.402601], + [9.089029, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.411594], + [9.089029, 45.420587], + [9.098022, 45.420587], + [9.098022, 45.411594], + [9.089029, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.420587], + [9.089029, 45.42958], + [9.098022, 45.42958], + [9.098022, 45.420587], + [9.089029, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.42958], + [9.089029, 45.438574], + [9.098022, 45.438574], + [9.098022, 45.42958], + [9.089029, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.438574], + [9.089029, 45.447567], + [9.098022, 45.447567], + [9.098022, 45.438574], + [9.089029, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.447567], + [9.089029, 45.45656], + [9.098022, 45.45656], + [9.098022, 45.447567], + [9.089029, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.45656], + [9.089029, 45.465553], + [9.098022, 45.465553], + [9.098022, 45.45656], + [9.089029, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.465553], + [9.089029, 45.474547], + [9.098022, 45.474547], + [9.098022, 45.465553], + [9.089029, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.474547], + [9.089029, 45.48354], + [9.098022, 45.48354], + [9.098022, 45.474547], + [9.089029, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.48354], + [9.089029, 45.492533], + [9.098022, 45.492533], + [9.098022, 45.48354], + [9.089029, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.492533], + [9.089029, 45.501526], + [9.098022, 45.501526], + [9.098022, 45.492533], + [9.089029, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.501526], + [9.089029, 45.510519], + [9.098022, 45.510519], + [9.098022, 45.501526], + [9.089029, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.510519], + [9.089029, 45.519513], + [9.098022, 45.519513], + [9.098022, 45.510519], + [9.089029, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.519513], + [9.089029, 45.528506], + [9.098022, 45.528506], + [9.098022, 45.519513], + [9.089029, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.528506], + [9.089029, 45.537499], + [9.098022, 45.537499], + [9.098022, 45.528506], + [9.089029, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.537499], + [9.089029, 45.546492], + [9.098022, 45.546492], + [9.098022, 45.537499], + [9.089029, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.546492], + [9.089029, 45.555485], + [9.098022, 45.555485], + [9.098022, 45.546492], + [9.089029, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.555485], + [9.089029, 45.564479], + [9.098022, 45.564479], + [9.098022, 45.555485], + [9.089029, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.564479], + [9.089029, 45.573472], + [9.098022, 45.573472], + [9.098022, 45.564479], + [9.089029, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.573472], + [9.089029, 45.582465], + [9.098022, 45.582465], + [9.098022, 45.573472], + [9.089029, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.582465], + [9.089029, 45.591458], + [9.098022, 45.591458], + [9.098022, 45.582465], + [9.089029, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.591458], + [9.089029, 45.600451], + [9.098022, 45.600451], + [9.098022, 45.591458], + [9.089029, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.600451], + [9.089029, 45.609445], + [9.098022, 45.609445], + [9.098022, 45.600451], + [9.089029, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.609445], + [9.089029, 45.618438], + [9.098022, 45.618438], + [9.098022, 45.609445], + [9.089029, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.618438], + [9.089029, 45.627431], + [9.098022, 45.627431], + [9.098022, 45.618438], + [9.089029, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.089029, 45.627431], + [9.089029, 45.636424], + [9.098022, 45.636424], + [9.098022, 45.627431], + [9.089029, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.339648], + [9.098022, 45.348642], + [9.107016, 45.348642], + [9.107016, 45.339648], + [9.098022, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.348642], + [9.098022, 45.357635], + [9.107016, 45.357635], + [9.107016, 45.348642], + [9.098022, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.357635], + [9.098022, 45.366628], + [9.107016, 45.366628], + [9.107016, 45.357635], + [9.098022, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.366628], + [9.098022, 45.375621], + [9.107016, 45.375621], + [9.107016, 45.366628], + [9.098022, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.375621], + [9.098022, 45.384614], + [9.107016, 45.384614], + [9.107016, 45.375621], + [9.098022, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.384614], + [9.098022, 45.393608], + [9.107016, 45.393608], + [9.107016, 45.384614], + [9.098022, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.393608], + [9.098022, 45.402601], + [9.107016, 45.402601], + [9.107016, 45.393608], + [9.098022, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.402601], + [9.098022, 45.411594], + [9.107016, 45.411594], + [9.107016, 45.402601], + [9.098022, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.411594], + [9.098022, 45.420587], + [9.107016, 45.420587], + [9.107016, 45.411594], + [9.098022, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.420587], + [9.098022, 45.42958], + [9.107016, 45.42958], + [9.107016, 45.420587], + [9.098022, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.42958], + [9.098022, 45.438574], + [9.107016, 45.438574], + [9.107016, 45.42958], + [9.098022, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.438574], + [9.098022, 45.447567], + [9.107016, 45.447567], + [9.107016, 45.438574], + [9.098022, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.447567], + [9.098022, 45.45656], + [9.107016, 45.45656], + [9.107016, 45.447567], + [9.098022, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.45656], + [9.098022, 45.465553], + [9.107016, 45.465553], + [9.107016, 45.45656], + [9.098022, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.465553], + [9.098022, 45.474547], + [9.107016, 45.474547], + [9.107016, 45.465553], + [9.098022, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.474547], + [9.098022, 45.48354], + [9.107016, 45.48354], + [9.107016, 45.474547], + [9.098022, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.48354], + [9.098022, 45.492533], + [9.107016, 45.492533], + [9.107016, 45.48354], + [9.098022, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.492533], + [9.098022, 45.501526], + [9.107016, 45.501526], + [9.107016, 45.492533], + [9.098022, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.501526], + [9.098022, 45.510519], + [9.107016, 45.510519], + [9.107016, 45.501526], + [9.098022, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.510519], + [9.098022, 45.519513], + [9.107016, 45.519513], + [9.107016, 45.510519], + [9.098022, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.519513], + [9.098022, 45.528506], + [9.107016, 45.528506], + [9.107016, 45.519513], + [9.098022, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.528506], + [9.098022, 45.537499], + [9.107016, 45.537499], + [9.107016, 45.528506], + [9.098022, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.537499], + [9.098022, 45.546492], + [9.107016, 45.546492], + [9.107016, 45.537499], + [9.098022, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.546492], + [9.098022, 45.555485], + [9.107016, 45.555485], + [9.107016, 45.546492], + [9.098022, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.555485], + [9.098022, 45.564479], + [9.107016, 45.564479], + [9.107016, 45.555485], + [9.098022, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.564479], + [9.098022, 45.573472], + [9.107016, 45.573472], + [9.107016, 45.564479], + [9.098022, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.573472], + [9.098022, 45.582465], + [9.107016, 45.582465], + [9.107016, 45.573472], + [9.098022, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.582465], + [9.098022, 45.591458], + [9.107016, 45.591458], + [9.107016, 45.582465], + [9.098022, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.591458], + [9.098022, 45.600451], + [9.107016, 45.600451], + [9.107016, 45.591458], + [9.098022, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.600451], + [9.098022, 45.609445], + [9.107016, 45.609445], + [9.107016, 45.600451], + [9.098022, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.609445], + [9.098022, 45.618438], + [9.107016, 45.618438], + [9.107016, 45.609445], + [9.098022, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.618438], + [9.098022, 45.627431], + [9.107016, 45.627431], + [9.107016, 45.618438], + [9.098022, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.098022, 45.627431], + [9.098022, 45.636424], + [9.107016, 45.636424], + [9.107016, 45.627431], + [9.098022, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.339648], + [9.107016, 45.348642], + [9.116009, 45.348642], + [9.116009, 45.339648], + [9.107016, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.348642], + [9.107016, 45.357635], + [9.116009, 45.357635], + [9.116009, 45.348642], + [9.107016, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.357635], + [9.107016, 45.366628], + [9.116009, 45.366628], + [9.116009, 45.357635], + [9.107016, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.366628], + [9.107016, 45.375621], + [9.116009, 45.375621], + [9.116009, 45.366628], + [9.107016, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.375621], + [9.107016, 45.384614], + [9.116009, 45.384614], + [9.116009, 45.375621], + [9.107016, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.384614], + [9.107016, 45.393608], + [9.116009, 45.393608], + [9.116009, 45.384614], + [9.107016, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.393608], + [9.107016, 45.402601], + [9.116009, 45.402601], + [9.116009, 45.393608], + [9.107016, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.402601], + [9.107016, 45.411594], + [9.116009, 45.411594], + [9.116009, 45.402601], + [9.107016, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.411594], + [9.107016, 45.420587], + [9.116009, 45.420587], + [9.116009, 45.411594], + [9.107016, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.420587], + [9.107016, 45.42958], + [9.116009, 45.42958], + [9.116009, 45.420587], + [9.107016, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.42958], + [9.107016, 45.438574], + [9.116009, 45.438574], + [9.116009, 45.42958], + [9.107016, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.438574], + [9.107016, 45.447567], + [9.116009, 45.447567], + [9.116009, 45.438574], + [9.107016, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.447567], + [9.107016, 45.45656], + [9.116009, 45.45656], + [9.116009, 45.447567], + [9.107016, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.45656], + [9.107016, 45.465553], + [9.116009, 45.465553], + [9.116009, 45.45656], + [9.107016, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.465553], + [9.107016, 45.474547], + [9.116009, 45.474547], + [9.116009, 45.465553], + [9.107016, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.474547], + [9.107016, 45.48354], + [9.116009, 45.48354], + [9.116009, 45.474547], + [9.107016, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.48354], + [9.107016, 45.492533], + [9.116009, 45.492533], + [9.116009, 45.48354], + [9.107016, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.492533], + [9.107016, 45.501526], + [9.116009, 45.501526], + [9.116009, 45.492533], + [9.107016, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.501526], + [9.107016, 45.510519], + [9.116009, 45.510519], + [9.116009, 45.501526], + [9.107016, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.510519], + [9.107016, 45.519513], + [9.116009, 45.519513], + [9.116009, 45.510519], + [9.107016, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.519513], + [9.107016, 45.528506], + [9.116009, 45.528506], + [9.116009, 45.519513], + [9.107016, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.528506], + [9.107016, 45.537499], + [9.116009, 45.537499], + [9.116009, 45.528506], + [9.107016, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.537499], + [9.107016, 45.546492], + [9.116009, 45.546492], + [9.116009, 45.537499], + [9.107016, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.546492], + [9.107016, 45.555485], + [9.116009, 45.555485], + [9.116009, 45.546492], + [9.107016, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.555485], + [9.107016, 45.564479], + [9.116009, 45.564479], + [9.116009, 45.555485], + [9.107016, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.564479], + [9.107016, 45.573472], + [9.116009, 45.573472], + [9.116009, 45.564479], + [9.107016, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.573472], + [9.107016, 45.582465], + [9.116009, 45.582465], + [9.116009, 45.573472], + [9.107016, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.582465], + [9.107016, 45.591458], + [9.116009, 45.591458], + [9.116009, 45.582465], + [9.107016, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.591458], + [9.107016, 45.600451], + [9.116009, 45.600451], + [9.116009, 45.591458], + [9.107016, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.600451], + [9.107016, 45.609445], + [9.116009, 45.609445], + [9.116009, 45.600451], + [9.107016, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.609445], + [9.107016, 45.618438], + [9.116009, 45.618438], + [9.116009, 45.609445], + [9.107016, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.618438], + [9.107016, 45.627431], + [9.116009, 45.627431], + [9.116009, 45.618438], + [9.107016, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.107016, 45.627431], + [9.107016, 45.636424], + [9.116009, 45.636424], + [9.116009, 45.627431], + [9.107016, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.339648], + [9.116009, 45.348642], + [9.125002, 45.348642], + [9.125002, 45.339648], + [9.116009, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.348642], + [9.116009, 45.357635], + [9.125002, 45.357635], + [9.125002, 45.348642], + [9.116009, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.357635], + [9.116009, 45.366628], + [9.125002, 45.366628], + [9.125002, 45.357635], + [9.116009, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.366628], + [9.116009, 45.375621], + [9.125002, 45.375621], + [9.125002, 45.366628], + [9.116009, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.375621], + [9.116009, 45.384614], + [9.125002, 45.384614], + [9.125002, 45.375621], + [9.116009, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.384614], + [9.116009, 45.393608], + [9.125002, 45.393608], + [9.125002, 45.384614], + [9.116009, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.393608], + [9.116009, 45.402601], + [9.125002, 45.402601], + [9.125002, 45.393608], + [9.116009, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.402601], + [9.116009, 45.411594], + [9.125002, 45.411594], + [9.125002, 45.402601], + [9.116009, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.411594], + [9.116009, 45.420587], + [9.125002, 45.420587], + [9.125002, 45.411594], + [9.116009, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.420587], + [9.116009, 45.42958], + [9.125002, 45.42958], + [9.125002, 45.420587], + [9.116009, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.42958], + [9.116009, 45.438574], + [9.125002, 45.438574], + [9.125002, 45.42958], + [9.116009, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#e5f3ff", + "fill": "#e5f3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.438574], + [9.116009, 45.447567], + [9.125002, 45.447567], + [9.125002, 45.438574], + [9.116009, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.447567], + [9.116009, 45.45656], + [9.125002, 45.45656], + [9.125002, 45.447567], + [9.116009, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.45656], + [9.116009, 45.465553], + [9.125002, 45.465553], + [9.125002, 45.45656], + [9.116009, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.465553], + [9.116009, 45.474547], + [9.125002, 45.474547], + [9.125002, 45.465553], + [9.116009, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.474547], + [9.116009, 45.48354], + [9.125002, 45.48354], + [9.125002, 45.474547], + [9.116009, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.48354], + [9.116009, 45.492533], + [9.125002, 45.492533], + [9.125002, 45.48354], + [9.116009, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.492533], + [9.116009, 45.501526], + [9.125002, 45.501526], + [9.125002, 45.492533], + [9.116009, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.501526], + [9.116009, 45.510519], + [9.125002, 45.510519], + [9.125002, 45.501526], + [9.116009, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.510519], + [9.116009, 45.519513], + [9.125002, 45.519513], + [9.125002, 45.510519], + [9.116009, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.519513], + [9.116009, 45.528506], + [9.125002, 45.528506], + [9.125002, 45.519513], + [9.116009, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.528506], + [9.116009, 45.537499], + [9.125002, 45.537499], + [9.125002, 45.528506], + [9.116009, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.537499], + [9.116009, 45.546492], + [9.125002, 45.546492], + [9.125002, 45.537499], + [9.116009, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.546492], + [9.116009, 45.555485], + [9.125002, 45.555485], + [9.125002, 45.546492], + [9.116009, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.555485], + [9.116009, 45.564479], + [9.125002, 45.564479], + [9.125002, 45.555485], + [9.116009, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.564479], + [9.116009, 45.573472], + [9.125002, 45.573472], + [9.125002, 45.564479], + [9.116009, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.573472], + [9.116009, 45.582465], + [9.125002, 45.582465], + [9.125002, 45.573472], + [9.116009, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.582465], + [9.116009, 45.591458], + [9.125002, 45.591458], + [9.125002, 45.582465], + [9.116009, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.591458], + [9.116009, 45.600451], + [9.125002, 45.600451], + [9.125002, 45.591458], + [9.116009, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.600451], + [9.116009, 45.609445], + [9.125002, 45.609445], + [9.125002, 45.600451], + [9.116009, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.609445], + [9.116009, 45.618438], + [9.125002, 45.618438], + [9.125002, 45.609445], + [9.116009, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.618438], + [9.116009, 45.627431], + [9.125002, 45.627431], + [9.125002, 45.618438], + [9.116009, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.116009, 45.627431], + [9.116009, 45.636424], + [9.125002, 45.636424], + [9.125002, 45.627431], + [9.116009, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.339648], + [9.125002, 45.348642], + [9.133995, 45.348642], + [9.133995, 45.339648], + [9.125002, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.348642], + [9.125002, 45.357635], + [9.133995, 45.357635], + [9.133995, 45.348642], + [9.125002, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.357635], + [9.125002, 45.366628], + [9.133995, 45.366628], + [9.133995, 45.357635], + [9.125002, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.366628], + [9.125002, 45.375621], + [9.133995, 45.375621], + [9.133995, 45.366628], + [9.125002, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.375621], + [9.125002, 45.384614], + [9.133995, 45.384614], + [9.133995, 45.375621], + [9.125002, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.384614], + [9.125002, 45.393608], + [9.133995, 45.393608], + [9.133995, 45.384614], + [9.125002, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.393608], + [9.125002, 45.402601], + [9.133995, 45.402601], + [9.133995, 45.393608], + [9.125002, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.402601], + [9.125002, 45.411594], + [9.133995, 45.411594], + [9.133995, 45.402601], + [9.125002, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.411594], + [9.125002, 45.420587], + [9.133995, 45.420587], + [9.133995, 45.411594], + [9.125002, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.420587], + [9.125002, 45.42958], + [9.133995, 45.42958], + [9.133995, 45.420587], + [9.125002, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.42958], + [9.125002, 45.438574], + [9.133995, 45.438574], + [9.133995, 45.42958], + [9.125002, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.438574], + [9.125002, 45.447567], + [9.133995, 45.447567], + [9.133995, 45.438574], + [9.125002, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.447567], + [9.125002, 45.45656], + [9.133995, 45.45656], + [9.133995, 45.447567], + [9.125002, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.45656], + [9.125002, 45.465553], + [9.133995, 45.465553], + [9.133995, 45.45656], + [9.125002, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.465553], + [9.125002, 45.474547], + [9.133995, 45.474547], + [9.133995, 45.465553], + [9.125002, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.474547], + [9.125002, 45.48354], + [9.133995, 45.48354], + [9.133995, 45.474547], + [9.125002, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.48354], + [9.125002, 45.492533], + [9.133995, 45.492533], + [9.133995, 45.48354], + [9.125002, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.492533], + [9.125002, 45.501526], + [9.133995, 45.501526], + [9.133995, 45.492533], + [9.125002, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.501526], + [9.125002, 45.510519], + [9.133995, 45.510519], + [9.133995, 45.501526], + [9.125002, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.510519], + [9.125002, 45.519513], + [9.133995, 45.519513], + [9.133995, 45.510519], + [9.125002, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.519513], + [9.125002, 45.528506], + [9.133995, 45.528506], + [9.133995, 45.519513], + [9.125002, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.528506], + [9.125002, 45.537499], + [9.133995, 45.537499], + [9.133995, 45.528506], + [9.125002, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.537499], + [9.125002, 45.546492], + [9.133995, 45.546492], + [9.133995, 45.537499], + [9.125002, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.546492], + [9.125002, 45.555485], + [9.133995, 45.555485], + [9.133995, 45.546492], + [9.125002, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.555485], + [9.125002, 45.564479], + [9.133995, 45.564479], + [9.133995, 45.555485], + [9.125002, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.564479], + [9.125002, 45.573472], + [9.133995, 45.573472], + [9.133995, 45.564479], + [9.125002, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.573472], + [9.125002, 45.582465], + [9.133995, 45.582465], + [9.133995, 45.573472], + [9.125002, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.582465], + [9.125002, 45.591458], + [9.133995, 45.591458], + [9.133995, 45.582465], + [9.125002, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.591458], + [9.125002, 45.600451], + [9.133995, 45.600451], + [9.133995, 45.591458], + [9.125002, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.600451], + [9.125002, 45.609445], + [9.133995, 45.609445], + [9.133995, 45.600451], + [9.125002, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.609445], + [9.125002, 45.618438], + [9.133995, 45.618438], + [9.133995, 45.609445], + [9.125002, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.618438], + [9.125002, 45.627431], + [9.133995, 45.627431], + [9.133995, 45.618438], + [9.125002, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.125002, 45.627431], + [9.125002, 45.636424], + [9.133995, 45.636424], + [9.133995, 45.627431], + [9.125002, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.339648], + [9.133995, 45.348642], + [9.142988, 45.348642], + [9.142988, 45.339648], + [9.133995, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.348642], + [9.133995, 45.357635], + [9.142988, 45.357635], + [9.142988, 45.348642], + [9.133995, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.357635], + [9.133995, 45.366628], + [9.142988, 45.366628], + [9.142988, 45.357635], + [9.133995, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.366628], + [9.133995, 45.375621], + [9.142988, 45.375621], + [9.142988, 45.366628], + [9.133995, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.375621], + [9.133995, 45.384614], + [9.142988, 45.384614], + [9.142988, 45.375621], + [9.133995, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.384614], + [9.133995, 45.393608], + [9.142988, 45.393608], + [9.142988, 45.384614], + [9.133995, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.393608], + [9.133995, 45.402601], + [9.142988, 45.402601], + [9.142988, 45.393608], + [9.133995, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.402601], + [9.133995, 45.411594], + [9.142988, 45.411594], + [9.142988, 45.402601], + [9.133995, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.411594], + [9.133995, 45.420587], + [9.142988, 45.420587], + [9.142988, 45.411594], + [9.133995, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.420587], + [9.133995, 45.42958], + [9.142988, 45.42958], + [9.142988, 45.420587], + [9.133995, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.42958], + [9.133995, 45.438574], + [9.142988, 45.438574], + [9.142988, 45.42958], + [9.133995, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.438574], + [9.133995, 45.447567], + [9.142988, 45.447567], + [9.142988, 45.438574], + [9.133995, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.447567], + [9.133995, 45.45656], + [9.142988, 45.45656], + [9.142988, 45.447567], + [9.133995, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.45656], + [9.133995, 45.465553], + [9.142988, 45.465553], + [9.142988, 45.45656], + [9.133995, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.465553], + [9.133995, 45.474547], + [9.142988, 45.474547], + [9.142988, 45.465553], + [9.133995, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.474547], + [9.133995, 45.48354], + [9.142988, 45.48354], + [9.142988, 45.474547], + [9.133995, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.48354], + [9.133995, 45.492533], + [9.142988, 45.492533], + [9.142988, 45.48354], + [9.133995, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.492533], + [9.133995, 45.501526], + [9.142988, 45.501526], + [9.142988, 45.492533], + [9.133995, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.501526], + [9.133995, 45.510519], + [9.142988, 45.510519], + [9.142988, 45.501526], + [9.133995, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.510519], + [9.133995, 45.519513], + [9.142988, 45.519513], + [9.142988, 45.510519], + [9.133995, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.519513], + [9.133995, 45.528506], + [9.142988, 45.528506], + [9.142988, 45.519513], + [9.133995, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.528506], + [9.133995, 45.537499], + [9.142988, 45.537499], + [9.142988, 45.528506], + [9.133995, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.537499], + [9.133995, 45.546492], + [9.142988, 45.546492], + [9.142988, 45.537499], + [9.133995, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.546492], + [9.133995, 45.555485], + [9.142988, 45.555485], + [9.142988, 45.546492], + [9.133995, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.555485], + [9.133995, 45.564479], + [9.142988, 45.564479], + [9.142988, 45.555485], + [9.133995, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.564479], + [9.133995, 45.573472], + [9.142988, 45.573472], + [9.142988, 45.564479], + [9.133995, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.573472], + [9.133995, 45.582465], + [9.142988, 45.582465], + [9.142988, 45.573472], + [9.133995, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.582465], + [9.133995, 45.591458], + [9.142988, 45.591458], + [9.142988, 45.582465], + [9.133995, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.591458], + [9.133995, 45.600451], + [9.142988, 45.600451], + [9.142988, 45.591458], + [9.133995, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.600451], + [9.133995, 45.609445], + [9.142988, 45.609445], + [9.142988, 45.600451], + [9.133995, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.609445], + [9.133995, 45.618438], + [9.142988, 45.618438], + [9.142988, 45.609445], + [9.133995, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.618438], + [9.133995, 45.627431], + [9.142988, 45.627431], + [9.142988, 45.618438], + [9.133995, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.133995, 45.627431], + [9.133995, 45.636424], + [9.142988, 45.636424], + [9.142988, 45.627431], + [9.133995, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.339648], + [9.142988, 45.348642], + [9.151982, 45.348642], + [9.151982, 45.339648], + [9.142988, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.348642], + [9.142988, 45.357635], + [9.151982, 45.357635], + [9.151982, 45.348642], + [9.142988, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.357635], + [9.142988, 45.366628], + [9.151982, 45.366628], + [9.151982, 45.357635], + [9.142988, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.366628], + [9.142988, 45.375621], + [9.151982, 45.375621], + [9.151982, 45.366628], + [9.142988, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.375621], + [9.142988, 45.384614], + [9.151982, 45.384614], + [9.151982, 45.375621], + [9.142988, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.384614], + [9.142988, 45.393608], + [9.151982, 45.393608], + [9.151982, 45.384614], + [9.142988, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.393608], + [9.142988, 45.402601], + [9.151982, 45.402601], + [9.151982, 45.393608], + [9.142988, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.402601], + [9.142988, 45.411594], + [9.151982, 45.411594], + [9.151982, 45.402601], + [9.142988, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.411594], + [9.142988, 45.420587], + [9.151982, 45.420587], + [9.151982, 45.411594], + [9.142988, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.420587], + [9.142988, 45.42958], + [9.151982, 45.42958], + [9.151982, 45.420587], + [9.142988, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.42958], + [9.142988, 45.438574], + [9.151982, 45.438574], + [9.151982, 45.42958], + [9.142988, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.438574], + [9.142988, 45.447567], + [9.151982, 45.447567], + [9.151982, 45.438574], + [9.142988, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.447567], + [9.142988, 45.45656], + [9.151982, 45.45656], + [9.151982, 45.447567], + [9.142988, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.45656], + [9.142988, 45.465553], + [9.151982, 45.465553], + [9.151982, 45.45656], + [9.142988, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.465553], + [9.142988, 45.474547], + [9.151982, 45.474547], + [9.151982, 45.465553], + [9.142988, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.474547], + [9.142988, 45.48354], + [9.151982, 45.48354], + [9.151982, 45.474547], + [9.142988, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.48354], + [9.142988, 45.492533], + [9.151982, 45.492533], + [9.151982, 45.48354], + [9.142988, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.492533], + [9.142988, 45.501526], + [9.151982, 45.501526], + [9.151982, 45.492533], + [9.142988, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.501526], + [9.142988, 45.510519], + [9.151982, 45.510519], + [9.151982, 45.501526], + [9.142988, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.510519], + [9.142988, 45.519513], + [9.151982, 45.519513], + [9.151982, 45.510519], + [9.142988, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.519513], + [9.142988, 45.528506], + [9.151982, 45.528506], + [9.151982, 45.519513], + [9.142988, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.528506], + [9.142988, 45.537499], + [9.151982, 45.537499], + [9.151982, 45.528506], + [9.142988, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.537499], + [9.142988, 45.546492], + [9.151982, 45.546492], + [9.151982, 45.537499], + [9.142988, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.546492], + [9.142988, 45.555485], + [9.151982, 45.555485], + [9.151982, 45.546492], + [9.142988, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.555485], + [9.142988, 45.564479], + [9.151982, 45.564479], + [9.151982, 45.555485], + [9.142988, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.564479], + [9.142988, 45.573472], + [9.151982, 45.573472], + [9.151982, 45.564479], + [9.142988, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.573472], + [9.142988, 45.582465], + [9.151982, 45.582465], + [9.151982, 45.573472], + [9.142988, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.582465], + [9.142988, 45.591458], + [9.151982, 45.591458], + [9.151982, 45.582465], + [9.142988, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.591458], + [9.142988, 45.600451], + [9.151982, 45.600451], + [9.151982, 45.591458], + [9.142988, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.600451], + [9.142988, 45.609445], + [9.151982, 45.609445], + [9.151982, 45.600451], + [9.142988, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.609445], + [9.142988, 45.618438], + [9.151982, 45.618438], + [9.151982, 45.609445], + [9.142988, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.618438], + [9.142988, 45.627431], + [9.151982, 45.627431], + [9.151982, 45.618438], + [9.142988, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.142988, 45.627431], + [9.142988, 45.636424], + [9.151982, 45.636424], + [9.151982, 45.627431], + [9.142988, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.339648], + [9.151982, 45.348642], + [9.160975, 45.348642], + [9.160975, 45.339648], + [9.151982, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.348642], + [9.151982, 45.357635], + [9.160975, 45.357635], + [9.160975, 45.348642], + [9.151982, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.357635], + [9.151982, 45.366628], + [9.160975, 45.366628], + [9.160975, 45.357635], + [9.151982, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.366628], + [9.151982, 45.375621], + [9.160975, 45.375621], + [9.160975, 45.366628], + [9.151982, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.375621], + [9.151982, 45.384614], + [9.160975, 45.384614], + [9.160975, 45.375621], + [9.151982, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.384614], + [9.151982, 45.393608], + [9.160975, 45.393608], + [9.160975, 45.384614], + [9.151982, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.393608], + [9.151982, 45.402601], + [9.160975, 45.402601], + [9.160975, 45.393608], + [9.151982, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.402601], + [9.151982, 45.411594], + [9.160975, 45.411594], + [9.160975, 45.402601], + [9.151982, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.411594], + [9.151982, 45.420587], + [9.160975, 45.420587], + [9.160975, 45.411594], + [9.151982, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.420587], + [9.151982, 45.42958], + [9.160975, 45.42958], + [9.160975, 45.420587], + [9.151982, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.42958], + [9.151982, 45.438574], + [9.160975, 45.438574], + [9.160975, 45.42958], + [9.151982, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.438574], + [9.151982, 45.447567], + [9.160975, 45.447567], + [9.160975, 45.438574], + [9.151982, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.447567], + [9.151982, 45.45656], + [9.160975, 45.45656], + [9.160975, 45.447567], + [9.151982, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.45656], + [9.151982, 45.465553], + [9.160975, 45.465553], + [9.160975, 45.45656], + [9.151982, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.465553], + [9.151982, 45.474547], + [9.160975, 45.474547], + [9.160975, 45.465553], + [9.151982, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.474547], + [9.151982, 45.48354], + [9.160975, 45.48354], + [9.160975, 45.474547], + [9.151982, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.48354], + [9.151982, 45.492533], + [9.160975, 45.492533], + [9.160975, 45.48354], + [9.151982, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.492533], + [9.151982, 45.501526], + [9.160975, 45.501526], + [9.160975, 45.492533], + [9.151982, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.501526], + [9.151982, 45.510519], + [9.160975, 45.510519], + [9.160975, 45.501526], + [9.151982, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.510519], + [9.151982, 45.519513], + [9.160975, 45.519513], + [9.160975, 45.510519], + [9.151982, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.519513], + [9.151982, 45.528506], + [9.160975, 45.528506], + [9.160975, 45.519513], + [9.151982, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.528506], + [9.151982, 45.537499], + [9.160975, 45.537499], + [9.160975, 45.528506], + [9.151982, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.537499], + [9.151982, 45.546492], + [9.160975, 45.546492], + [9.160975, 45.537499], + [9.151982, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.546492], + [9.151982, 45.555485], + [9.160975, 45.555485], + [9.160975, 45.546492], + [9.151982, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.555485], + [9.151982, 45.564479], + [9.160975, 45.564479], + [9.160975, 45.555485], + [9.151982, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.564479], + [9.151982, 45.573472], + [9.160975, 45.573472], + [9.160975, 45.564479], + [9.151982, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.573472], + [9.151982, 45.582465], + [9.160975, 45.582465], + [9.160975, 45.573472], + [9.151982, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.582465], + [9.151982, 45.591458], + [9.160975, 45.591458], + [9.160975, 45.582465], + [9.151982, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.591458], + [9.151982, 45.600451], + [9.160975, 45.600451], + [9.160975, 45.591458], + [9.151982, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.600451], + [9.151982, 45.609445], + [9.160975, 45.609445], + [9.160975, 45.600451], + [9.151982, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.609445], + [9.151982, 45.618438], + [9.160975, 45.618438], + [9.160975, 45.609445], + [9.151982, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.618438], + [9.151982, 45.627431], + [9.160975, 45.627431], + [9.160975, 45.618438], + [9.151982, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.151982, 45.627431], + [9.151982, 45.636424], + [9.160975, 45.636424], + [9.160975, 45.627431], + [9.151982, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.339648], + [9.160975, 45.348642], + [9.169968, 45.348642], + [9.169968, 45.339648], + [9.160975, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.348642], + [9.160975, 45.357635], + [9.169968, 45.357635], + [9.169968, 45.348642], + [9.160975, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.357635], + [9.160975, 45.366628], + [9.169968, 45.366628], + [9.169968, 45.357635], + [9.160975, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.366628], + [9.160975, 45.375621], + [9.169968, 45.375621], + [9.169968, 45.366628], + [9.160975, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.375621], + [9.160975, 45.384614], + [9.169968, 45.384614], + [9.169968, 45.375621], + [9.160975, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.384614], + [9.160975, 45.393608], + [9.169968, 45.393608], + [9.169968, 45.384614], + [9.160975, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.393608], + [9.160975, 45.402601], + [9.169968, 45.402601], + [9.169968, 45.393608], + [9.160975, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.402601], + [9.160975, 45.411594], + [9.169968, 45.411594], + [9.169968, 45.402601], + [9.160975, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.411594], + [9.160975, 45.420587], + [9.169968, 45.420587], + [9.169968, 45.411594], + [9.160975, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.420587], + [9.160975, 45.42958], + [9.169968, 45.42958], + [9.169968, 45.420587], + [9.160975, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.42958], + [9.160975, 45.438574], + [9.169968, 45.438574], + [9.169968, 45.42958], + [9.160975, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.438574], + [9.160975, 45.447567], + [9.169968, 45.447567], + [9.169968, 45.438574], + [9.160975, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.447567], + [9.160975, 45.45656], + [9.169968, 45.45656], + [9.169968, 45.447567], + [9.160975, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.45656], + [9.160975, 45.465553], + [9.169968, 45.465553], + [9.169968, 45.45656], + [9.160975, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#c7e4ff", + "fill": "#c7e4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.465553], + [9.160975, 45.474547], + [9.169968, 45.474547], + [9.169968, 45.465553], + [9.160975, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.474547], + [9.160975, 45.48354], + [9.169968, 45.48354], + [9.169968, 45.474547], + [9.160975, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.48354], + [9.160975, 45.492533], + [9.169968, 45.492533], + [9.169968, 45.48354], + [9.160975, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.492533], + [9.160975, 45.501526], + [9.169968, 45.501526], + [9.169968, 45.492533], + [9.160975, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.501526], + [9.160975, 45.510519], + [9.169968, 45.510519], + [9.169968, 45.501526], + [9.160975, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.510519], + [9.160975, 45.519513], + [9.169968, 45.519513], + [9.169968, 45.510519], + [9.160975, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.519513], + [9.160975, 45.528506], + [9.169968, 45.528506], + [9.169968, 45.519513], + [9.160975, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.528506], + [9.160975, 45.537499], + [9.169968, 45.537499], + [9.169968, 45.528506], + [9.160975, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.537499], + [9.160975, 45.546492], + [9.169968, 45.546492], + [9.169968, 45.537499], + [9.160975, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.546492], + [9.160975, 45.555485], + [9.169968, 45.555485], + [9.169968, 45.546492], + [9.160975, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.555485], + [9.160975, 45.564479], + [9.169968, 45.564479], + [9.169968, 45.555485], + [9.160975, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.564479], + [9.160975, 45.573472], + [9.169968, 45.573472], + [9.169968, 45.564479], + [9.160975, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.573472], + [9.160975, 45.582465], + [9.169968, 45.582465], + [9.169968, 45.573472], + [9.160975, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.582465], + [9.160975, 45.591458], + [9.169968, 45.591458], + [9.169968, 45.582465], + [9.160975, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.591458], + [9.160975, 45.600451], + [9.169968, 45.600451], + [9.169968, 45.591458], + [9.160975, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.600451], + [9.160975, 45.609445], + [9.169968, 45.609445], + [9.169968, 45.600451], + [9.160975, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.609445], + [9.160975, 45.618438], + [9.169968, 45.618438], + [9.169968, 45.609445], + [9.160975, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.618438], + [9.160975, 45.627431], + [9.169968, 45.627431], + [9.169968, 45.618438], + [9.160975, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.160975, 45.627431], + [9.160975, 45.636424], + [9.169968, 45.636424], + [9.169968, 45.627431], + [9.160975, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.339648], + [9.169968, 45.348642], + [9.178961, 45.348642], + [9.178961, 45.339648], + [9.169968, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.348642], + [9.169968, 45.357635], + [9.178961, 45.357635], + [9.178961, 45.348642], + [9.169968, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.357635], + [9.169968, 45.366628], + [9.178961, 45.366628], + [9.178961, 45.357635], + [9.169968, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.366628], + [9.169968, 45.375621], + [9.178961, 45.375621], + [9.178961, 45.366628], + [9.169968, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.375621], + [9.169968, 45.384614], + [9.178961, 45.384614], + [9.178961, 45.375621], + [9.169968, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.384614], + [9.169968, 45.393608], + [9.178961, 45.393608], + [9.178961, 45.384614], + [9.169968, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.393608], + [9.169968, 45.402601], + [9.178961, 45.402601], + [9.178961, 45.393608], + [9.169968, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.402601], + [9.169968, 45.411594], + [9.178961, 45.411594], + [9.178961, 45.402601], + [9.169968, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.411594], + [9.169968, 45.420587], + [9.178961, 45.420587], + [9.178961, 45.411594], + [9.169968, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.420587], + [9.169968, 45.42958], + [9.178961, 45.42958], + [9.178961, 45.420587], + [9.169968, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.42958], + [9.169968, 45.438574], + [9.178961, 45.438574], + [9.178961, 45.42958], + [9.169968, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.438574], + [9.169968, 45.447567], + [9.178961, 45.447567], + [9.178961, 45.438574], + [9.169968, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.447567], + [9.169968, 45.45656], + [9.178961, 45.45656], + [9.178961, 45.447567], + [9.169968, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.45656], + [9.169968, 45.465553], + [9.178961, 45.465553], + [9.178961, 45.45656], + [9.169968, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.465553], + [9.169968, 45.474547], + [9.178961, 45.474547], + [9.178961, 45.465553], + [9.169968, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.474547], + [9.169968, 45.48354], + [9.178961, 45.48354], + [9.178961, 45.474547], + [9.169968, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.48354], + [9.169968, 45.492533], + [9.178961, 45.492533], + [9.178961, 45.48354], + [9.169968, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.492533], + [9.169968, 45.501526], + [9.178961, 45.501526], + [9.178961, 45.492533], + [9.169968, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.501526], + [9.169968, 45.510519], + [9.178961, 45.510519], + [9.178961, 45.501526], + [9.169968, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.510519], + [9.169968, 45.519513], + [9.178961, 45.519513], + [9.178961, 45.510519], + [9.169968, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.519513], + [9.169968, 45.528506], + [9.178961, 45.528506], + [9.178961, 45.519513], + [9.169968, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.528506], + [9.169968, 45.537499], + [9.178961, 45.537499], + [9.178961, 45.528506], + [9.169968, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.537499], + [9.169968, 45.546492], + [9.178961, 45.546492], + [9.178961, 45.537499], + [9.169968, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.546492], + [9.169968, 45.555485], + [9.178961, 45.555485], + [9.178961, 45.546492], + [9.169968, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.555485], + [9.169968, 45.564479], + [9.178961, 45.564479], + [9.178961, 45.555485], + [9.169968, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.564479], + [9.169968, 45.573472], + [9.178961, 45.573472], + [9.178961, 45.564479], + [9.169968, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.573472], + [9.169968, 45.582465], + [9.178961, 45.582465], + [9.178961, 45.573472], + [9.169968, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.582465], + [9.169968, 45.591458], + [9.178961, 45.591458], + [9.178961, 45.582465], + [9.169968, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.591458], + [9.169968, 45.600451], + [9.178961, 45.600451], + [9.178961, 45.591458], + [9.169968, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.600451], + [9.169968, 45.609445], + [9.178961, 45.609445], + [9.178961, 45.600451], + [9.169968, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.609445], + [9.169968, 45.618438], + [9.178961, 45.618438], + [9.178961, 45.609445], + [9.169968, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.618438], + [9.169968, 45.627431], + [9.178961, 45.627431], + [9.178961, 45.618438], + [9.169968, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.169968, 45.627431], + [9.169968, 45.636424], + [9.178961, 45.636424], + [9.178961, 45.627431], + [9.169968, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.339648], + [9.178961, 45.348642], + [9.187954, 45.348642], + [9.187954, 45.339648], + [9.178961, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.348642], + [9.178961, 45.357635], + [9.187954, 45.357635], + [9.187954, 45.348642], + [9.178961, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.357635], + [9.178961, 45.366628], + [9.187954, 45.366628], + [9.187954, 45.357635], + [9.178961, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.366628], + [9.178961, 45.375621], + [9.187954, 45.375621], + [9.187954, 45.366628], + [9.178961, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.375621], + [9.178961, 45.384614], + [9.187954, 45.384614], + [9.187954, 45.375621], + [9.178961, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.384614], + [9.178961, 45.393608], + [9.187954, 45.393608], + [9.187954, 45.384614], + [9.178961, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.393608], + [9.178961, 45.402601], + [9.187954, 45.402601], + [9.187954, 45.393608], + [9.178961, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.402601], + [9.178961, 45.411594], + [9.187954, 45.411594], + [9.187954, 45.402601], + [9.178961, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.411594], + [9.178961, 45.420587], + [9.187954, 45.420587], + [9.187954, 45.411594], + [9.178961, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.420587], + [9.178961, 45.42958], + [9.187954, 45.42958], + [9.187954, 45.420587], + [9.178961, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.42958], + [9.178961, 45.438574], + [9.187954, 45.438574], + [9.187954, 45.42958], + [9.178961, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.438574], + [9.178961, 45.447567], + [9.187954, 45.447567], + [9.187954, 45.438574], + [9.178961, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.447567], + [9.178961, 45.45656], + [9.187954, 45.45656], + [9.187954, 45.447567], + [9.178961, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.45656], + [9.178961, 45.465553], + [9.187954, 45.465553], + [9.187954, 45.45656], + [9.178961, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.465553], + [9.178961, 45.474547], + [9.187954, 45.474547], + [9.187954, 45.465553], + [9.178961, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.474547], + [9.178961, 45.48354], + [9.187954, 45.48354], + [9.187954, 45.474547], + [9.178961, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.48354], + [9.178961, 45.492533], + [9.187954, 45.492533], + [9.187954, 45.48354], + [9.178961, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.492533], + [9.178961, 45.501526], + [9.187954, 45.501526], + [9.187954, 45.492533], + [9.178961, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.501526], + [9.178961, 45.510519], + [9.187954, 45.510519], + [9.187954, 45.501526], + [9.178961, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.510519], + [9.178961, 45.519513], + [9.187954, 45.519513], + [9.187954, 45.510519], + [9.178961, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.519513], + [9.178961, 45.528506], + [9.187954, 45.528506], + [9.187954, 45.519513], + [9.178961, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.528506], + [9.178961, 45.537499], + [9.187954, 45.537499], + [9.187954, 45.528506], + [9.178961, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.537499], + [9.178961, 45.546492], + [9.187954, 45.546492], + [9.187954, 45.537499], + [9.178961, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.546492], + [9.178961, 45.555485], + [9.187954, 45.555485], + [9.187954, 45.546492], + [9.178961, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.555485], + [9.178961, 45.564479], + [9.187954, 45.564479], + [9.187954, 45.555485], + [9.178961, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.564479], + [9.178961, 45.573472], + [9.187954, 45.573472], + [9.187954, 45.564479], + [9.178961, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.573472], + [9.178961, 45.582465], + [9.187954, 45.582465], + [9.187954, 45.573472], + [9.178961, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.582465], + [9.178961, 45.591458], + [9.187954, 45.591458], + [9.187954, 45.582465], + [9.178961, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.591458], + [9.178961, 45.600451], + [9.187954, 45.600451], + [9.187954, 45.591458], + [9.178961, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.600451], + [9.178961, 45.609445], + [9.187954, 45.609445], + [9.187954, 45.600451], + [9.178961, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.609445], + [9.178961, 45.618438], + [9.187954, 45.618438], + [9.187954, 45.609445], + [9.178961, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.618438], + [9.178961, 45.627431], + [9.187954, 45.627431], + [9.187954, 45.618438], + [9.178961, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.178961, 45.627431], + [9.178961, 45.636424], + [9.187954, 45.636424], + [9.187954, 45.627431], + [9.178961, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.339648], + [9.187954, 45.348642], + [9.196948, 45.348642], + [9.196948, 45.339648], + [9.187954, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.348642], + [9.187954, 45.357635], + [9.196948, 45.357635], + [9.196948, 45.348642], + [9.187954, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.357635], + [9.187954, 45.366628], + [9.196948, 45.366628], + [9.196948, 45.357635], + [9.187954, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.366628], + [9.187954, 45.375621], + [9.196948, 45.375621], + [9.196948, 45.366628], + [9.187954, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.375621], + [9.187954, 45.384614], + [9.196948, 45.384614], + [9.196948, 45.375621], + [9.187954, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.384614], + [9.187954, 45.393608], + [9.196948, 45.393608], + [9.196948, 45.384614], + [9.187954, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.393608], + [9.187954, 45.402601], + [9.196948, 45.402601], + [9.196948, 45.393608], + [9.187954, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.402601], + [9.187954, 45.411594], + [9.196948, 45.411594], + [9.196948, 45.402601], + [9.187954, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.411594], + [9.187954, 45.420587], + [9.196948, 45.420587], + [9.196948, 45.411594], + [9.187954, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.420587], + [9.187954, 45.42958], + [9.196948, 45.42958], + [9.196948, 45.420587], + [9.187954, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.42958], + [9.187954, 45.438574], + [9.196948, 45.438574], + [9.196948, 45.42958], + [9.187954, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.438574], + [9.187954, 45.447567], + [9.196948, 45.447567], + [9.196948, 45.438574], + [9.187954, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.447567], + [9.187954, 45.45656], + [9.196948, 45.45656], + [9.196948, 45.447567], + [9.187954, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.45656], + [9.187954, 45.465553], + [9.196948, 45.465553], + [9.196948, 45.45656], + [9.187954, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.465553], + [9.187954, 45.474547], + [9.196948, 45.474547], + [9.196948, 45.465553], + [9.187954, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.474547], + [9.187954, 45.48354], + [9.196948, 45.48354], + [9.196948, 45.474547], + [9.187954, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.48354], + [9.187954, 45.492533], + [9.196948, 45.492533], + [9.196948, 45.48354], + [9.187954, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.492533], + [9.187954, 45.501526], + [9.196948, 45.501526], + [9.196948, 45.492533], + [9.187954, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.501526], + [9.187954, 45.510519], + [9.196948, 45.510519], + [9.196948, 45.501526], + [9.187954, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.510519], + [9.187954, 45.519513], + [9.196948, 45.519513], + [9.196948, 45.510519], + [9.187954, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.519513], + [9.187954, 45.528506], + [9.196948, 45.528506], + [9.196948, 45.519513], + [9.187954, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.528506], + [9.187954, 45.537499], + [9.196948, 45.537499], + [9.196948, 45.528506], + [9.187954, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#00080f", + "fill": "#00080f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.537499], + [9.187954, 45.546492], + [9.196948, 45.546492], + [9.196948, 45.537499], + [9.187954, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.546492], + [9.187954, 45.555485], + [9.196948, 45.555485], + [9.196948, 45.546492], + [9.187954, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.555485], + [9.187954, 45.564479], + [9.196948, 45.564479], + [9.196948, 45.555485], + [9.187954, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.564479], + [9.187954, 45.573472], + [9.196948, 45.573472], + [9.196948, 45.564479], + [9.187954, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.573472], + [9.187954, 45.582465], + [9.196948, 45.582465], + [9.196948, 45.573472], + [9.187954, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.582465], + [9.187954, 45.591458], + [9.196948, 45.591458], + [9.196948, 45.582465], + [9.187954, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.591458], + [9.187954, 45.600451], + [9.196948, 45.600451], + [9.196948, 45.591458], + [9.187954, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.600451], + [9.187954, 45.609445], + [9.196948, 45.609445], + [9.196948, 45.600451], + [9.187954, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.609445], + [9.187954, 45.618438], + [9.196948, 45.618438], + [9.196948, 45.609445], + [9.187954, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.618438], + [9.187954, 45.627431], + [9.196948, 45.627431], + [9.196948, 45.618438], + [9.187954, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.187954, 45.627431], + [9.187954, 45.636424], + [9.196948, 45.636424], + [9.196948, 45.627431], + [9.187954, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.339648], + [9.196948, 45.348642], + [9.205941, 45.348642], + [9.205941, 45.339648], + [9.196948, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.348642], + [9.196948, 45.357635], + [9.205941, 45.357635], + [9.205941, 45.348642], + [9.196948, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.357635], + [9.196948, 45.366628], + [9.205941, 45.366628], + [9.205941, 45.357635], + [9.196948, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.366628], + [9.196948, 45.375621], + [9.205941, 45.375621], + [9.205941, 45.366628], + [9.196948, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.375621], + [9.196948, 45.384614], + [9.205941, 45.384614], + [9.205941, 45.375621], + [9.196948, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.384614], + [9.196948, 45.393608], + [9.205941, 45.393608], + [9.205941, 45.384614], + [9.196948, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.393608], + [9.196948, 45.402601], + [9.205941, 45.402601], + [9.205941, 45.393608], + [9.196948, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.402601], + [9.196948, 45.411594], + [9.205941, 45.411594], + [9.205941, 45.402601], + [9.196948, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.411594], + [9.196948, 45.420587], + [9.205941, 45.420587], + [9.205941, 45.411594], + [9.196948, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.420587], + [9.196948, 45.42958], + [9.205941, 45.42958], + [9.205941, 45.420587], + [9.196948, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.42958], + [9.196948, 45.438574], + [9.205941, 45.438574], + [9.205941, 45.42958], + [9.196948, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.438574], + [9.196948, 45.447567], + [9.205941, 45.447567], + [9.205941, 45.438574], + [9.196948, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.447567], + [9.196948, 45.45656], + [9.205941, 45.45656], + [9.205941, 45.447567], + [9.196948, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.45656], + [9.196948, 45.465553], + [9.205941, 45.465553], + [9.205941, 45.45656], + [9.196948, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.465553], + [9.196948, 45.474547], + [9.205941, 45.474547], + [9.205941, 45.465553], + [9.196948, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.474547], + [9.196948, 45.48354], + [9.205941, 45.48354], + [9.205941, 45.474547], + [9.196948, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.48354], + [9.196948, 45.492533], + [9.205941, 45.492533], + [9.205941, 45.48354], + [9.196948, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.492533], + [9.196948, 45.501526], + [9.205941, 45.501526], + [9.205941, 45.492533], + [9.196948, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.501526], + [9.196948, 45.510519], + [9.205941, 45.510519], + [9.205941, 45.501526], + [9.196948, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.510519], + [9.196948, 45.519513], + [9.205941, 45.519513], + [9.205941, 45.510519], + [9.196948, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.519513], + [9.196948, 45.528506], + [9.205941, 45.528506], + [9.205941, 45.519513], + [9.196948, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.528506], + [9.196948, 45.537499], + [9.205941, 45.537499], + [9.205941, 45.528506], + [9.196948, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 48, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.537499], + [9.196948, 45.546492], + [9.205941, 45.546492], + [9.205941, 45.537499], + [9.196948, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.546492], + [9.196948, 45.555485], + [9.205941, 45.555485], + [9.205941, 45.546492], + [9.196948, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#0065c2", + "fill": "#0065c2", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.555485], + [9.196948, 45.564479], + [9.205941, 45.564479], + [9.205941, 45.555485], + [9.196948, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.564479], + [9.196948, 45.573472], + [9.205941, 45.573472], + [9.205941, 45.564479], + [9.196948, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.573472], + [9.196948, 45.582465], + [9.205941, 45.582465], + [9.205941, 45.573472], + [9.196948, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.582465], + [9.196948, 45.591458], + [9.205941, 45.591458], + [9.205941, 45.582465], + [9.196948, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.591458], + [9.196948, 45.600451], + [9.205941, 45.600451], + [9.205941, 45.591458], + [9.196948, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.600451], + [9.196948, 45.609445], + [9.205941, 45.609445], + [9.205941, 45.600451], + [9.196948, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.609445], + [9.196948, 45.618438], + [9.205941, 45.618438], + [9.205941, 45.609445], + [9.196948, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.618438], + [9.196948, 45.627431], + [9.205941, 45.627431], + [9.205941, 45.618438], + [9.196948, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.196948, 45.627431], + [9.196948, 45.636424], + [9.205941, 45.636424], + [9.205941, 45.627431], + [9.196948, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.339648], + [9.205941, 45.348642], + [9.214934, 45.348642], + [9.214934, 45.339648], + [9.205941, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.348642], + [9.205941, 45.357635], + [9.214934, 45.357635], + [9.214934, 45.348642], + [9.205941, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.357635], + [9.205941, 45.366628], + [9.214934, 45.366628], + [9.214934, 45.357635], + [9.205941, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.366628], + [9.205941, 45.375621], + [9.214934, 45.375621], + [9.214934, 45.366628], + [9.205941, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.375621], + [9.205941, 45.384614], + [9.214934, 45.384614], + [9.214934, 45.375621], + [9.205941, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.384614], + [9.205941, 45.393608], + [9.214934, 45.393608], + [9.214934, 45.384614], + [9.205941, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.393608], + [9.205941, 45.402601], + [9.214934, 45.402601], + [9.214934, 45.393608], + [9.205941, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.402601], + [9.205941, 45.411594], + [9.214934, 45.411594], + [9.214934, 45.402601], + [9.205941, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.411594], + [9.205941, 45.420587], + [9.214934, 45.420587], + [9.214934, 45.411594], + [9.205941, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.420587], + [9.205941, 45.42958], + [9.214934, 45.42958], + [9.214934, 45.420587], + [9.205941, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.42958], + [9.205941, 45.438574], + [9.214934, 45.438574], + [9.214934, 45.42958], + [9.205941, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.438574], + [9.205941, 45.447567], + [9.214934, 45.447567], + [9.214934, 45.438574], + [9.205941, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.447567], + [9.205941, 45.45656], + [9.214934, 45.45656], + [9.214934, 45.447567], + [9.205941, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.45656], + [9.205941, 45.465553], + [9.214934, 45.465553], + [9.214934, 45.45656], + [9.205941, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.465553], + [9.205941, 45.474547], + [9.214934, 45.474547], + [9.214934, 45.465553], + [9.205941, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.474547], + [9.205941, 45.48354], + [9.214934, 45.48354], + [9.214934, 45.474547], + [9.205941, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.48354], + [9.205941, 45.492533], + [9.214934, 45.492533], + [9.214934, 45.48354], + [9.205941, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.492533], + [9.205941, 45.501526], + [9.214934, 45.501526], + [9.214934, 45.492533], + [9.205941, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.501526], + [9.205941, 45.510519], + [9.214934, 45.510519], + [9.214934, 45.501526], + [9.205941, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.510519], + [9.205941, 45.519513], + [9.214934, 45.519513], + [9.214934, 45.510519], + [9.205941, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.519513], + [9.205941, 45.528506], + [9.214934, 45.528506], + [9.214934, 45.519513], + [9.205941, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#005099", + "fill": "#005099", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.528506], + [9.205941, 45.537499], + [9.214934, 45.537499], + [9.214934, 45.528506], + [9.205941, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#00407a", + "fill": "#00407a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.537499], + [9.205941, 45.546492], + [9.214934, 45.546492], + [9.214934, 45.537499], + [9.205941, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0055a3", + "fill": "#0055a3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.546492], + [9.205941, 45.555485], + [9.214934, 45.555485], + [9.214934, 45.546492], + [9.205941, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.555485], + [9.205941, 45.564479], + [9.214934, 45.564479], + [9.214934, 45.555485], + [9.205941, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.564479], + [9.205941, 45.573472], + [9.214934, 45.573472], + [9.214934, 45.564479], + [9.205941, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.573472], + [9.205941, 45.582465], + [9.214934, 45.582465], + [9.214934, 45.573472], + [9.205941, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.582465], + [9.205941, 45.591458], + [9.214934, 45.591458], + [9.214934, 45.582465], + [9.205941, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.591458], + [9.205941, 45.600451], + [9.214934, 45.600451], + [9.214934, 45.591458], + [9.205941, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.600451], + [9.205941, 45.609445], + [9.214934, 45.609445], + [9.214934, 45.600451], + [9.205941, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.609445], + [9.205941, 45.618438], + [9.214934, 45.618438], + [9.214934, 45.609445], + [9.205941, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.618438], + [9.205941, 45.627431], + [9.214934, 45.627431], + [9.214934, 45.618438], + [9.205941, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.205941, 45.627431], + [9.205941, 45.636424], + [9.214934, 45.636424], + [9.214934, 45.627431], + [9.205941, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.339648], + [9.214934, 45.348642], + [9.223927, 45.348642], + [9.223927, 45.339648], + [9.214934, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.348642], + [9.214934, 45.357635], + [9.223927, 45.357635], + [9.223927, 45.348642], + [9.214934, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.357635], + [9.214934, 45.366628], + [9.223927, 45.366628], + [9.223927, 45.357635], + [9.214934, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.366628], + [9.214934, 45.375621], + [9.223927, 45.375621], + [9.223927, 45.366628], + [9.214934, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.375621], + [9.214934, 45.384614], + [9.223927, 45.384614], + [9.223927, 45.375621], + [9.214934, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.384614], + [9.214934, 45.393608], + [9.223927, 45.393608], + [9.223927, 45.384614], + [9.214934, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.393608], + [9.214934, 45.402601], + [9.223927, 45.402601], + [9.223927, 45.393608], + [9.214934, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.402601], + [9.214934, 45.411594], + [9.223927, 45.411594], + [9.223927, 45.402601], + [9.214934, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.411594], + [9.214934, 45.420587], + [9.223927, 45.420587], + [9.223927, 45.411594], + [9.214934, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.420587], + [9.214934, 45.42958], + [9.223927, 45.42958], + [9.223927, 45.420587], + [9.214934, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.42958], + [9.214934, 45.438574], + [9.223927, 45.438574], + [9.223927, 45.42958], + [9.214934, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.438574], + [9.214934, 45.447567], + [9.223927, 45.447567], + [9.223927, 45.438574], + [9.214934, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.447567], + [9.214934, 45.45656], + [9.223927, 45.45656], + [9.223927, 45.447567], + [9.214934, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.45656], + [9.214934, 45.465553], + [9.223927, 45.465553], + [9.223927, 45.45656], + [9.214934, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.465553], + [9.214934, 45.474547], + [9.223927, 45.474547], + [9.223927, 45.465553], + [9.214934, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.474547], + [9.214934, 45.48354], + [9.223927, 45.48354], + [9.223927, 45.474547], + [9.214934, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.48354], + [9.214934, 45.492533], + [9.223927, 45.492533], + [9.223927, 45.48354], + [9.214934, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.492533], + [9.214934, 45.501526], + [9.223927, 45.501526], + [9.223927, 45.492533], + [9.214934, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.501526], + [9.214934, 45.510519], + [9.223927, 45.510519], + [9.223927, 45.501526], + [9.214934, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.510519], + [9.214934, 45.519513], + [9.223927, 45.519513], + [9.223927, 45.510519], + [9.214934, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.519513], + [9.214934, 45.528506], + [9.223927, 45.528506], + [9.223927, 45.519513], + [9.214934, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.528506], + [9.214934, 45.537499], + [9.223927, 45.537499], + [9.223927, 45.528506], + [9.214934, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.537499], + [9.214934, 45.546492], + [9.223927, 45.546492], + [9.223927, 45.537499], + [9.214934, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.546492], + [9.214934, 45.555485], + [9.223927, 45.555485], + [9.223927, 45.546492], + [9.214934, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.555485], + [9.214934, 45.564479], + [9.223927, 45.564479], + [9.223927, 45.555485], + [9.214934, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.564479], + [9.214934, 45.573472], + [9.223927, 45.573472], + [9.223927, 45.564479], + [9.214934, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.573472], + [9.214934, 45.582465], + [9.223927, 45.582465], + [9.223927, 45.573472], + [9.214934, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.582465], + [9.214934, 45.591458], + [9.223927, 45.591458], + [9.223927, 45.582465], + [9.214934, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.591458], + [9.214934, 45.600451], + [9.223927, 45.600451], + [9.223927, 45.591458], + [9.214934, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.600451], + [9.214934, 45.609445], + [9.223927, 45.609445], + [9.223927, 45.600451], + [9.214934, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.609445], + [9.214934, 45.618438], + [9.223927, 45.618438], + [9.223927, 45.609445], + [9.214934, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.618438], + [9.214934, 45.627431], + [9.223927, 45.627431], + [9.223927, 45.618438], + [9.214934, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.214934, 45.627431], + [9.214934, 45.636424], + [9.223927, 45.636424], + [9.223927, 45.627431], + [9.214934, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.339648], + [9.223927, 45.348642], + [9.232921, 45.348642], + [9.232921, 45.339648], + [9.223927, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.348642], + [9.223927, 45.357635], + [9.232921, 45.357635], + [9.232921, 45.348642], + [9.223927, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.357635], + [9.223927, 45.366628], + [9.232921, 45.366628], + [9.232921, 45.357635], + [9.223927, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.366628], + [9.223927, 45.375621], + [9.232921, 45.375621], + [9.232921, 45.366628], + [9.223927, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.375621], + [9.223927, 45.384614], + [9.232921, 45.384614], + [9.232921, 45.375621], + [9.223927, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.384614], + [9.223927, 45.393608], + [9.232921, 45.393608], + [9.232921, 45.384614], + [9.223927, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.393608], + [9.223927, 45.402601], + [9.232921, 45.402601], + [9.232921, 45.393608], + [9.223927, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.402601], + [9.223927, 45.411594], + [9.232921, 45.411594], + [9.232921, 45.402601], + [9.223927, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.411594], + [9.223927, 45.420587], + [9.232921, 45.420587], + [9.232921, 45.411594], + [9.223927, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.420587], + [9.223927, 45.42958], + [9.232921, 45.42958], + [9.232921, 45.420587], + [9.223927, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.42958], + [9.223927, 45.438574], + [9.232921, 45.438574], + [9.232921, 45.42958], + [9.223927, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.438574], + [9.223927, 45.447567], + [9.232921, 45.447567], + [9.232921, 45.438574], + [9.223927, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.447567], + [9.223927, 45.45656], + [9.232921, 45.45656], + [9.232921, 45.447567], + [9.223927, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.45656], + [9.223927, 45.465553], + [9.232921, 45.465553], + [9.232921, 45.45656], + [9.223927, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.465553], + [9.223927, 45.474547], + [9.232921, 45.474547], + [9.232921, 45.465553], + [9.223927, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.474547], + [9.223927, 45.48354], + [9.232921, 45.48354], + [9.232921, 45.474547], + [9.223927, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.48354], + [9.223927, 45.492533], + [9.232921, 45.492533], + [9.232921, 45.48354], + [9.223927, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.492533], + [9.223927, 45.501526], + [9.232921, 45.501526], + [9.232921, 45.492533], + [9.223927, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.501526], + [9.223927, 45.510519], + [9.232921, 45.510519], + [9.232921, 45.501526], + [9.223927, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.510519], + [9.223927, 45.519513], + [9.232921, 45.519513], + [9.232921, 45.510519], + [9.223927, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.519513], + [9.223927, 45.528506], + [9.232921, 45.528506], + [9.232921, 45.519513], + [9.223927, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.528506], + [9.223927, 45.537499], + [9.232921, 45.537499], + [9.232921, 45.528506], + [9.223927, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.537499], + [9.223927, 45.546492], + [9.232921, 45.546492], + [9.232921, 45.537499], + [9.223927, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.546492], + [9.223927, 45.555485], + [9.232921, 45.555485], + [9.232921, 45.546492], + [9.223927, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#007aeb", + "fill": "#007aeb", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.555485], + [9.223927, 45.564479], + [9.232921, 45.564479], + [9.232921, 45.555485], + [9.223927, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.564479], + [9.223927, 45.573472], + [9.232921, 45.573472], + [9.232921, 45.564479], + [9.223927, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.573472], + [9.223927, 45.582465], + [9.232921, 45.582465], + [9.232921, 45.573472], + [9.223927, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.582465], + [9.223927, 45.591458], + [9.232921, 45.591458], + [9.232921, 45.582465], + [9.223927, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.591458], + [9.223927, 45.600451], + [9.232921, 45.600451], + [9.232921, 45.591458], + [9.223927, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.600451], + [9.223927, 45.609445], + [9.232921, 45.609445], + [9.232921, 45.600451], + [9.223927, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.609445], + [9.223927, 45.618438], + [9.232921, 45.618438], + [9.232921, 45.609445], + [9.223927, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.618438], + [9.223927, 45.627431], + [9.232921, 45.627431], + [9.232921, 45.618438], + [9.223927, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.223927, 45.627431], + [9.223927, 45.636424], + [9.232921, 45.636424], + [9.232921, 45.627431], + [9.223927, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.339648], + [9.232921, 45.348642], + [9.241914, 45.348642], + [9.241914, 45.339648], + [9.232921, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.348642], + [9.232921, 45.357635], + [9.241914, 45.357635], + [9.241914, 45.348642], + [9.232921, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.357635], + [9.232921, 45.366628], + [9.241914, 45.366628], + [9.241914, 45.357635], + [9.232921, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.366628], + [9.232921, 45.375621], + [9.241914, 45.375621], + [9.241914, 45.366628], + [9.232921, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.375621], + [9.232921, 45.384614], + [9.241914, 45.384614], + [9.241914, 45.375621], + [9.232921, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.384614], + [9.232921, 45.393608], + [9.241914, 45.393608], + [9.241914, 45.384614], + [9.232921, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.393608], + [9.232921, 45.402601], + [9.241914, 45.402601], + [9.241914, 45.393608], + [9.232921, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.402601], + [9.232921, 45.411594], + [9.241914, 45.411594], + [9.241914, 45.402601], + [9.232921, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.411594], + [9.232921, 45.420587], + [9.241914, 45.420587], + [9.241914, 45.411594], + [9.232921, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.420587], + [9.232921, 45.42958], + [9.241914, 45.42958], + [9.241914, 45.420587], + [9.232921, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.42958], + [9.232921, 45.438574], + [9.241914, 45.438574], + [9.241914, 45.42958], + [9.232921, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.438574], + [9.232921, 45.447567], + [9.241914, 45.447567], + [9.241914, 45.438574], + [9.232921, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.447567], + [9.232921, 45.45656], + [9.241914, 45.45656], + [9.241914, 45.447567], + [9.232921, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.45656], + [9.232921, 45.465553], + [9.241914, 45.465553], + [9.241914, 45.45656], + [9.232921, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.465553], + [9.232921, 45.474547], + [9.241914, 45.474547], + [9.241914, 45.465553], + [9.232921, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.474547], + [9.232921, 45.48354], + [9.241914, 45.48354], + [9.241914, 45.474547], + [9.232921, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.48354], + [9.232921, 45.492533], + [9.241914, 45.492533], + [9.241914, 45.48354], + [9.232921, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#9ed1ff", + "fill": "#9ed1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.492533], + [9.232921, 45.501526], + [9.241914, 45.501526], + [9.241914, 45.492533], + [9.232921, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.501526], + [9.232921, 45.510519], + [9.241914, 45.510519], + [9.241914, 45.501526], + [9.232921, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.510519], + [9.232921, 45.519513], + [9.241914, 45.519513], + [9.241914, 45.510519], + [9.232921, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.519513], + [9.232921, 45.528506], + [9.241914, 45.528506], + [9.241914, 45.519513], + [9.232921, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.528506], + [9.232921, 45.537499], + [9.241914, 45.537499], + [9.241914, 45.528506], + [9.232921, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.537499], + [9.232921, 45.546492], + [9.241914, 45.546492], + [9.241914, 45.537499], + [9.232921, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.546492], + [9.232921, 45.555485], + [9.241914, 45.555485], + [9.241914, 45.546492], + [9.232921, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.555485], + [9.232921, 45.564479], + [9.241914, 45.564479], + [9.241914, 45.555485], + [9.232921, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.564479], + [9.232921, 45.573472], + [9.241914, 45.573472], + [9.241914, 45.564479], + [9.232921, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.573472], + [9.232921, 45.582465], + [9.241914, 45.582465], + [9.241914, 45.573472], + [9.232921, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.582465], + [9.232921, 45.591458], + [9.241914, 45.591458], + [9.241914, 45.582465], + [9.232921, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.591458], + [9.232921, 45.600451], + [9.241914, 45.600451], + [9.241914, 45.591458], + [9.232921, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.600451], + [9.232921, 45.609445], + [9.241914, 45.609445], + [9.241914, 45.600451], + [9.232921, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.609445], + [9.232921, 45.618438], + [9.241914, 45.618438], + [9.241914, 45.609445], + [9.232921, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.618438], + [9.232921, 45.627431], + [9.241914, 45.627431], + [9.241914, 45.618438], + [9.232921, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.232921, 45.627431], + [9.232921, 45.636424], + [9.241914, 45.636424], + [9.241914, 45.627431], + [9.232921, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.339648], + [9.241914, 45.348642], + [9.250907, 45.348642], + [9.250907, 45.339648], + [9.241914, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.348642], + [9.241914, 45.357635], + [9.250907, 45.357635], + [9.250907, 45.348642], + [9.241914, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.357635], + [9.241914, 45.366628], + [9.250907, 45.366628], + [9.250907, 45.357635], + [9.241914, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.366628], + [9.241914, 45.375621], + [9.250907, 45.375621], + [9.250907, 45.366628], + [9.241914, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.375621], + [9.241914, 45.384614], + [9.250907, 45.384614], + [9.250907, 45.375621], + [9.241914, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.384614], + [9.241914, 45.393608], + [9.250907, 45.393608], + [9.250907, 45.384614], + [9.241914, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.393608], + [9.241914, 45.402601], + [9.250907, 45.402601], + [9.250907, 45.393608], + [9.241914, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.402601], + [9.241914, 45.411594], + [9.250907, 45.411594], + [9.250907, 45.402601], + [9.241914, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.411594], + [9.241914, 45.420587], + [9.250907, 45.420587], + [9.250907, 45.411594], + [9.241914, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.420587], + [9.241914, 45.42958], + [9.250907, 45.42958], + [9.250907, 45.420587], + [9.241914, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.42958], + [9.241914, 45.438574], + [9.250907, 45.438574], + [9.250907, 45.42958], + [9.241914, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.438574], + [9.241914, 45.447567], + [9.250907, 45.447567], + [9.250907, 45.438574], + [9.241914, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.447567], + [9.241914, 45.45656], + [9.250907, 45.45656], + [9.250907, 45.447567], + [9.241914, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.45656], + [9.241914, 45.465553], + [9.250907, 45.465553], + [9.250907, 45.45656], + [9.241914, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.465553], + [9.241914, 45.474547], + [9.250907, 45.474547], + [9.250907, 45.465553], + [9.241914, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.474547], + [9.241914, 45.48354], + [9.250907, 45.48354], + [9.250907, 45.474547], + [9.241914, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.48354], + [9.241914, 45.492533], + [9.250907, 45.492533], + [9.250907, 45.48354], + [9.241914, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.492533], + [9.241914, 45.501526], + [9.250907, 45.501526], + [9.250907, 45.492533], + [9.241914, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.501526], + [9.241914, 45.510519], + [9.250907, 45.510519], + [9.250907, 45.501526], + [9.241914, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.510519], + [9.241914, 45.519513], + [9.250907, 45.519513], + [9.250907, 45.510519], + [9.241914, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.519513], + [9.241914, 45.528506], + [9.250907, 45.528506], + [9.250907, 45.519513], + [9.241914, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.528506], + [9.241914, 45.537499], + [9.250907, 45.537499], + [9.250907, 45.528506], + [9.241914, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.537499], + [9.241914, 45.546492], + [9.250907, 45.546492], + [9.250907, 45.537499], + [9.241914, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.546492], + [9.241914, 45.555485], + [9.250907, 45.555485], + [9.250907, 45.546492], + [9.241914, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.555485], + [9.241914, 45.564479], + [9.250907, 45.564479], + [9.250907, 45.555485], + [9.241914, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.564479], + [9.241914, 45.573472], + [9.250907, 45.573472], + [9.250907, 45.564479], + [9.241914, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.573472], + [9.241914, 45.582465], + [9.250907, 45.582465], + [9.250907, 45.573472], + [9.241914, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.582465], + [9.241914, 45.591458], + [9.250907, 45.591458], + [9.250907, 45.582465], + [9.241914, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.591458], + [9.241914, 45.600451], + [9.250907, 45.600451], + [9.250907, 45.591458], + [9.241914, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.600451], + [9.241914, 45.609445], + [9.250907, 45.609445], + [9.250907, 45.600451], + [9.241914, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.609445], + [9.241914, 45.618438], + [9.250907, 45.618438], + [9.250907, 45.609445], + [9.241914, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.618438], + [9.241914, 45.627431], + [9.250907, 45.627431], + [9.250907, 45.618438], + [9.241914, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.241914, 45.627431], + [9.241914, 45.636424], + [9.250907, 45.636424], + [9.250907, 45.627431], + [9.241914, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.339648], + [9.250907, 45.348642], + [9.2599, 45.348642], + [9.2599, 45.339648], + [9.250907, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.348642], + [9.250907, 45.357635], + [9.2599, 45.357635], + [9.2599, 45.348642], + [9.250907, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.357635], + [9.250907, 45.366628], + [9.2599, 45.366628], + [9.2599, 45.357635], + [9.250907, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.366628], + [9.250907, 45.375621], + [9.2599, 45.375621], + [9.2599, 45.366628], + [9.250907, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.375621], + [9.250907, 45.384614], + [9.2599, 45.384614], + [9.2599, 45.375621], + [9.250907, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.384614], + [9.250907, 45.393608], + [9.2599, 45.393608], + [9.2599, 45.384614], + [9.250907, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.393608], + [9.250907, 45.402601], + [9.2599, 45.402601], + [9.2599, 45.393608], + [9.250907, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.402601], + [9.250907, 45.411594], + [9.2599, 45.411594], + [9.2599, 45.402601], + [9.250907, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.411594], + [9.250907, 45.420587], + [9.2599, 45.420587], + [9.2599, 45.411594], + [9.250907, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.420587], + [9.250907, 45.42958], + [9.2599, 45.42958], + [9.2599, 45.420587], + [9.250907, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.42958], + [9.250907, 45.438574], + [9.2599, 45.438574], + [9.2599, 45.42958], + [9.250907, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.438574], + [9.250907, 45.447567], + [9.2599, 45.447567], + [9.2599, 45.438574], + [9.250907, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.447567], + [9.250907, 45.45656], + [9.2599, 45.45656], + [9.2599, 45.447567], + [9.250907, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.45656], + [9.250907, 45.465553], + [9.2599, 45.465553], + [9.2599, 45.45656], + [9.250907, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.465553], + [9.250907, 45.474547], + [9.2599, 45.474547], + [9.2599, 45.465553], + [9.250907, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.474547], + [9.250907, 45.48354], + [9.2599, 45.48354], + [9.2599, 45.474547], + [9.250907, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.48354], + [9.250907, 45.492533], + [9.2599, 45.492533], + [9.2599, 45.48354], + [9.250907, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.492533], + [9.250907, 45.501526], + [9.2599, 45.501526], + [9.2599, 45.492533], + [9.250907, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.501526], + [9.250907, 45.510519], + [9.2599, 45.510519], + [9.2599, 45.501526], + [9.250907, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.510519], + [9.250907, 45.519513], + [9.2599, 45.519513], + [9.2599, 45.510519], + [9.250907, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.519513], + [9.250907, 45.528506], + [9.2599, 45.528506], + [9.2599, 45.519513], + [9.250907, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.528506], + [9.250907, 45.537499], + [9.2599, 45.537499], + [9.2599, 45.528506], + [9.250907, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.537499], + [9.250907, 45.546492], + [9.2599, 45.546492], + [9.2599, 45.537499], + [9.250907, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.546492], + [9.250907, 45.555485], + [9.2599, 45.555485], + [9.2599, 45.546492], + [9.250907, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.555485], + [9.250907, 45.564479], + [9.2599, 45.564479], + [9.2599, 45.555485], + [9.250907, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.564479], + [9.250907, 45.573472], + [9.2599, 45.573472], + [9.2599, 45.564479], + [9.250907, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#148fff", + "fill": "#148fff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.573472], + [9.250907, 45.582465], + [9.2599, 45.582465], + [9.2599, 45.573472], + [9.250907, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.582465], + [9.250907, 45.591458], + [9.2599, 45.591458], + [9.2599, 45.582465], + [9.250907, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.591458], + [9.250907, 45.600451], + [9.2599, 45.600451], + [9.2599, 45.591458], + [9.250907, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.600451], + [9.250907, 45.609445], + [9.2599, 45.609445], + [9.2599, 45.600451], + [9.250907, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.609445], + [9.250907, 45.618438], + [9.2599, 45.618438], + [9.2599, 45.609445], + [9.250907, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.618438], + [9.250907, 45.627431], + [9.2599, 45.627431], + [9.2599, 45.618438], + [9.250907, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.250907, 45.627431], + [9.250907, 45.636424], + [9.2599, 45.636424], + [9.2599, 45.627431], + [9.250907, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.339648], + [9.2599, 45.348642], + [9.268893, 45.348642], + [9.268893, 45.339648], + [9.2599, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.348642], + [9.2599, 45.357635], + [9.268893, 45.357635], + [9.268893, 45.348642], + [9.2599, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.357635], + [9.2599, 45.366628], + [9.268893, 45.366628], + [9.268893, 45.357635], + [9.2599, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.366628], + [9.2599, 45.375621], + [9.268893, 45.375621], + [9.268893, 45.366628], + [9.2599, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.375621], + [9.2599, 45.384614], + [9.268893, 45.384614], + [9.268893, 45.375621], + [9.2599, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.384614], + [9.2599, 45.393608], + [9.268893, 45.393608], + [9.268893, 45.384614], + [9.2599, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.393608], + [9.2599, 45.402601], + [9.268893, 45.402601], + [9.268893, 45.393608], + [9.2599, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.402601], + [9.2599, 45.411594], + [9.268893, 45.411594], + [9.268893, 45.402601], + [9.2599, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.411594], + [9.2599, 45.420587], + [9.268893, 45.420587], + [9.268893, 45.411594], + [9.2599, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.420587], + [9.2599, 45.42958], + [9.268893, 45.42958], + [9.268893, 45.420587], + [9.2599, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.42958], + [9.2599, 45.438574], + [9.268893, 45.438574], + [9.268893, 45.42958], + [9.2599, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.438574], + [9.2599, 45.447567], + [9.268893, 45.447567], + [9.268893, 45.438574], + [9.2599, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.447567], + [9.2599, 45.45656], + [9.268893, 45.45656], + [9.268893, 45.447567], + [9.2599, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.45656], + [9.2599, 45.465553], + [9.268893, 45.465553], + [9.268893, 45.45656], + [9.2599, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.465553], + [9.2599, 45.474547], + [9.268893, 45.474547], + [9.268893, 45.465553], + [9.2599, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.474547], + [9.2599, 45.48354], + [9.268893, 45.48354], + [9.268893, 45.474547], + [9.2599, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.48354], + [9.2599, 45.492533], + [9.268893, 45.492533], + [9.268893, 45.48354], + [9.2599, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.492533], + [9.2599, 45.501526], + [9.268893, 45.501526], + [9.268893, 45.492533], + [9.2599, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.501526], + [9.2599, 45.510519], + [9.268893, 45.510519], + [9.268893, 45.501526], + [9.2599, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.510519], + [9.2599, 45.519513], + [9.268893, 45.519513], + [9.268893, 45.510519], + [9.2599, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.519513], + [9.2599, 45.528506], + [9.268893, 45.528506], + [9.268893, 45.519513], + [9.2599, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.528506], + [9.2599, 45.537499], + [9.268893, 45.537499], + [9.268893, 45.528506], + [9.2599, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.537499], + [9.2599, 45.546492], + [9.268893, 45.546492], + [9.268893, 45.537499], + [9.2599, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.546492], + [9.2599, 45.555485], + [9.268893, 45.555485], + [9.268893, 45.546492], + [9.2599, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.555485], + [9.2599, 45.564479], + [9.268893, 45.564479], + [9.268893, 45.555485], + [9.2599, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.564479], + [9.2599, 45.573472], + [9.268893, 45.573472], + [9.268893, 45.564479], + [9.2599, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.573472], + [9.2599, 45.582465], + [9.268893, 45.582465], + [9.268893, 45.573472], + [9.2599, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.582465], + [9.2599, 45.591458], + [9.268893, 45.591458], + [9.268893, 45.582465], + [9.2599, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.591458], + [9.2599, 45.600451], + [9.268893, 45.600451], + [9.268893, 45.591458], + [9.2599, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.600451], + [9.2599, 45.609445], + [9.268893, 45.609445], + [9.268893, 45.600451], + [9.2599, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.609445], + [9.2599, 45.618438], + [9.268893, 45.618438], + [9.268893, 45.609445], + [9.2599, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.618438], + [9.2599, 45.627431], + [9.268893, 45.627431], + [9.268893, 45.618438], + [9.2599, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.2599, 45.627431], + [9.2599, 45.636424], + [9.268893, 45.636424], + [9.268893, 45.627431], + [9.2599, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.339648], + [9.268893, 45.348642], + [9.277887, 45.348642], + [9.277887, 45.339648], + [9.268893, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.348642], + [9.268893, 45.357635], + [9.277887, 45.357635], + [9.277887, 45.348642], + [9.268893, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.357635], + [9.268893, 45.366628], + [9.277887, 45.366628], + [9.277887, 45.357635], + [9.268893, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.366628], + [9.268893, 45.375621], + [9.277887, 45.375621], + [9.277887, 45.366628], + [9.268893, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.375621], + [9.268893, 45.384614], + [9.277887, 45.384614], + [9.277887, 45.375621], + [9.268893, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.384614], + [9.268893, 45.393608], + [9.277887, 45.393608], + [9.277887, 45.384614], + [9.268893, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.393608], + [9.268893, 45.402601], + [9.277887, 45.402601], + [9.277887, 45.393608], + [9.268893, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.402601], + [9.268893, 45.411594], + [9.277887, 45.411594], + [9.277887, 45.402601], + [9.268893, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.411594], + [9.268893, 45.420587], + [9.277887, 45.420587], + [9.277887, 45.411594], + [9.268893, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.420587], + [9.268893, 45.42958], + [9.277887, 45.42958], + [9.277887, 45.420587], + [9.268893, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.42958], + [9.268893, 45.438574], + [9.277887, 45.438574], + [9.277887, 45.42958], + [9.268893, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.438574], + [9.268893, 45.447567], + [9.277887, 45.447567], + [9.277887, 45.438574], + [9.268893, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.447567], + [9.268893, 45.45656], + [9.277887, 45.45656], + [9.277887, 45.447567], + [9.268893, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.45656], + [9.268893, 45.465553], + [9.277887, 45.465553], + [9.277887, 45.45656], + [9.268893, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.465553], + [9.268893, 45.474547], + [9.277887, 45.474547], + [9.277887, 45.465553], + [9.268893, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.474547], + [9.268893, 45.48354], + [9.277887, 45.48354], + [9.277887, 45.474547], + [9.268893, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.48354], + [9.268893, 45.492533], + [9.277887, 45.492533], + [9.277887, 45.48354], + [9.268893, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.492533], + [9.268893, 45.501526], + [9.277887, 45.501526], + [9.277887, 45.492533], + [9.268893, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.501526], + [9.268893, 45.510519], + [9.277887, 45.510519], + [9.277887, 45.501526], + [9.268893, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.510519], + [9.268893, 45.519513], + [9.277887, 45.519513], + [9.277887, 45.510519], + [9.268893, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.519513], + [9.268893, 45.528506], + [9.277887, 45.528506], + [9.277887, 45.519513], + [9.268893, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.528506], + [9.268893, 45.537499], + [9.277887, 45.537499], + [9.277887, 45.528506], + [9.268893, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.537499], + [9.268893, 45.546492], + [9.277887, 45.546492], + [9.277887, 45.537499], + [9.268893, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.546492], + [9.268893, 45.555485], + [9.277887, 45.555485], + [9.277887, 45.546492], + [9.268893, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.555485], + [9.268893, 45.564479], + [9.277887, 45.564479], + [9.277887, 45.555485], + [9.268893, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.564479], + [9.268893, 45.573472], + [9.277887, 45.573472], + [9.277887, 45.564479], + [9.268893, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.573472], + [9.268893, 45.582465], + [9.277887, 45.582465], + [9.277887, 45.573472], + [9.268893, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.582465], + [9.268893, 45.591458], + [9.277887, 45.591458], + [9.277887, 45.582465], + [9.268893, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.591458], + [9.268893, 45.600451], + [9.277887, 45.600451], + [9.277887, 45.591458], + [9.268893, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.600451], + [9.268893, 45.609445], + [9.277887, 45.609445], + [9.277887, 45.600451], + [9.268893, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.609445], + [9.268893, 45.618438], + [9.277887, 45.618438], + [9.277887, 45.609445], + [9.268893, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.618438], + [9.268893, 45.627431], + [9.277887, 45.627431], + [9.277887, 45.618438], + [9.268893, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.268893, 45.627431], + [9.268893, 45.636424], + [9.277887, 45.636424], + [9.277887, 45.627431], + [9.268893, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.339648], + [9.277887, 45.348642], + [9.28688, 45.348642], + [9.28688, 45.339648], + [9.277887, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.348642], + [9.277887, 45.357635], + [9.28688, 45.357635], + [9.28688, 45.348642], + [9.277887, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.357635], + [9.277887, 45.366628], + [9.28688, 45.366628], + [9.28688, 45.357635], + [9.277887, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.366628], + [9.277887, 45.375621], + [9.28688, 45.375621], + [9.28688, 45.366628], + [9.277887, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.375621], + [9.277887, 45.384614], + [9.28688, 45.384614], + [9.28688, 45.375621], + [9.277887, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.384614], + [9.277887, 45.393608], + [9.28688, 45.393608], + [9.28688, 45.384614], + [9.277887, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.393608], + [9.277887, 45.402601], + [9.28688, 45.402601], + [9.28688, 45.393608], + [9.277887, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.402601], + [9.277887, 45.411594], + [9.28688, 45.411594], + [9.28688, 45.402601], + [9.277887, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.411594], + [9.277887, 45.420587], + [9.28688, 45.420587], + [9.28688, 45.411594], + [9.277887, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.420587], + [9.277887, 45.42958], + [9.28688, 45.42958], + [9.28688, 45.420587], + [9.277887, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.42958], + [9.277887, 45.438574], + [9.28688, 45.438574], + [9.28688, 45.42958], + [9.277887, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.438574], + [9.277887, 45.447567], + [9.28688, 45.447567], + [9.28688, 45.438574], + [9.277887, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.447567], + [9.277887, 45.45656], + [9.28688, 45.45656], + [9.28688, 45.447567], + [9.277887, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.45656], + [9.277887, 45.465553], + [9.28688, 45.465553], + [9.28688, 45.45656], + [9.277887, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.465553], + [9.277887, 45.474547], + [9.28688, 45.474547], + [9.28688, 45.465553], + [9.277887, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.474547], + [9.277887, 45.48354], + [9.28688, 45.48354], + [9.28688, 45.474547], + [9.277887, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.48354], + [9.277887, 45.492533], + [9.28688, 45.492533], + [9.28688, 45.48354], + [9.277887, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.492533], + [9.277887, 45.501526], + [9.28688, 45.501526], + [9.28688, 45.492533], + [9.277887, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.501526], + [9.277887, 45.510519], + [9.28688, 45.510519], + [9.28688, 45.501526], + [9.277887, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.510519], + [9.277887, 45.519513], + [9.28688, 45.519513], + [9.28688, 45.510519], + [9.277887, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.519513], + [9.277887, 45.528506], + [9.28688, 45.528506], + [9.28688, 45.519513], + [9.277887, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.528506], + [9.277887, 45.537499], + [9.28688, 45.537499], + [9.28688, 45.528506], + [9.277887, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.537499], + [9.277887, 45.546492], + [9.28688, 45.546492], + [9.28688, 45.537499], + [9.277887, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.546492], + [9.277887, 45.555485], + [9.28688, 45.555485], + [9.28688, 45.546492], + [9.277887, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.555485], + [9.277887, 45.564479], + [9.28688, 45.564479], + [9.28688, 45.555485], + [9.277887, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.564479], + [9.277887, 45.573472], + [9.28688, 45.573472], + [9.28688, 45.564479], + [9.277887, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.573472], + [9.277887, 45.582465], + [9.28688, 45.582465], + [9.28688, 45.573472], + [9.277887, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.582465], + [9.277887, 45.591458], + [9.28688, 45.591458], + [9.28688, 45.582465], + [9.277887, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.591458], + [9.277887, 45.600451], + [9.28688, 45.600451], + [9.28688, 45.591458], + [9.277887, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.600451], + [9.277887, 45.609445], + [9.28688, 45.609445], + [9.28688, 45.600451], + [9.277887, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.609445], + [9.277887, 45.618438], + [9.28688, 45.618438], + [9.28688, 45.609445], + [9.277887, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.618438], + [9.277887, 45.627431], + [9.28688, 45.627431], + [9.28688, 45.618438], + [9.277887, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.277887, 45.627431], + [9.277887, 45.636424], + [9.28688, 45.636424], + [9.28688, 45.627431], + [9.277887, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.339648], + [9.28688, 45.348642], + [9.295873, 45.348642], + [9.295873, 45.339648], + [9.28688, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.348642], + [9.28688, 45.357635], + [9.295873, 45.357635], + [9.295873, 45.348642], + [9.28688, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.357635], + [9.28688, 45.366628], + [9.295873, 45.366628], + [9.295873, 45.357635], + [9.28688, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.366628], + [9.28688, 45.375621], + [9.295873, 45.375621], + [9.295873, 45.366628], + [9.28688, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.375621], + [9.28688, 45.384614], + [9.295873, 45.384614], + [9.295873, 45.375621], + [9.28688, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.384614], + [9.28688, 45.393608], + [9.295873, 45.393608], + [9.295873, 45.384614], + [9.28688, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.393608], + [9.28688, 45.402601], + [9.295873, 45.402601], + [9.295873, 45.393608], + [9.28688, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.402601], + [9.28688, 45.411594], + [9.295873, 45.411594], + [9.295873, 45.402601], + [9.28688, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.411594], + [9.28688, 45.420587], + [9.295873, 45.420587], + [9.295873, 45.411594], + [9.28688, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.420587], + [9.28688, 45.42958], + [9.295873, 45.42958], + [9.295873, 45.420587], + [9.28688, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.42958], + [9.28688, 45.438574], + [9.295873, 45.438574], + [9.295873, 45.42958], + [9.28688, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.438574], + [9.28688, 45.447567], + [9.295873, 45.447567], + [9.295873, 45.438574], + [9.28688, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.447567], + [9.28688, 45.45656], + [9.295873, 45.45656], + [9.295873, 45.447567], + [9.28688, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.45656], + [9.28688, 45.465553], + [9.295873, 45.465553], + [9.295873, 45.45656], + [9.28688, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.465553], + [9.28688, 45.474547], + [9.295873, 45.474547], + [9.295873, 45.465553], + [9.28688, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.474547], + [9.28688, 45.48354], + [9.295873, 45.48354], + [9.295873, 45.474547], + [9.28688, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.48354], + [9.28688, 45.492533], + [9.295873, 45.492533], + [9.295873, 45.48354], + [9.28688, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.492533], + [9.28688, 45.501526], + [9.295873, 45.501526], + [9.295873, 45.492533], + [9.28688, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.501526], + [9.28688, 45.510519], + [9.295873, 45.510519], + [9.295873, 45.501526], + [9.28688, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.510519], + [9.28688, 45.519513], + [9.295873, 45.519513], + [9.295873, 45.510519], + [9.28688, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.519513], + [9.28688, 45.528506], + [9.295873, 45.528506], + [9.295873, 45.519513], + [9.28688, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.528506], + [9.28688, 45.537499], + [9.295873, 45.537499], + [9.295873, 45.528506], + [9.28688, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.537499], + [9.28688, 45.546492], + [9.295873, 45.546492], + [9.295873, 45.537499], + [9.28688, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.546492], + [9.28688, 45.555485], + [9.295873, 45.555485], + [9.295873, 45.546492], + [9.28688, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.555485], + [9.28688, 45.564479], + [9.295873, 45.564479], + [9.295873, 45.555485], + [9.28688, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.564479], + [9.28688, 45.573472], + [9.295873, 45.573472], + [9.295873, 45.564479], + [9.28688, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.573472], + [9.28688, 45.582465], + [9.295873, 45.582465], + [9.295873, 45.573472], + [9.28688, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.582465], + [9.28688, 45.591458], + [9.295873, 45.591458], + [9.295873, 45.582465], + [9.28688, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.591458], + [9.28688, 45.600451], + [9.295873, 45.600451], + [9.295873, 45.591458], + [9.28688, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.600451], + [9.28688, 45.609445], + [9.295873, 45.609445], + [9.295873, 45.600451], + [9.28688, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.609445], + [9.28688, 45.618438], + [9.295873, 45.618438], + [9.295873, 45.609445], + [9.28688, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.618438], + [9.28688, 45.627431], + [9.295873, 45.627431], + [9.295873, 45.618438], + [9.28688, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.28688, 45.627431], + [9.28688, 45.636424], + [9.295873, 45.636424], + [9.295873, 45.627431], + [9.28688, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.339648], + [9.295873, 45.348642], + [9.304866, 45.348642], + [9.304866, 45.339648], + [9.295873, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.348642], + [9.295873, 45.357635], + [9.304866, 45.357635], + [9.304866, 45.348642], + [9.295873, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.357635], + [9.295873, 45.366628], + [9.304866, 45.366628], + [9.304866, 45.357635], + [9.295873, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.366628], + [9.295873, 45.375621], + [9.304866, 45.375621], + [9.304866, 45.366628], + [9.295873, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.375621], + [9.295873, 45.384614], + [9.304866, 45.384614], + [9.304866, 45.375621], + [9.295873, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.384614], + [9.295873, 45.393608], + [9.304866, 45.393608], + [9.304866, 45.384614], + [9.295873, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.393608], + [9.295873, 45.402601], + [9.304866, 45.402601], + [9.304866, 45.393608], + [9.295873, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.402601], + [9.295873, 45.411594], + [9.304866, 45.411594], + [9.304866, 45.402601], + [9.295873, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.411594], + [9.295873, 45.420587], + [9.304866, 45.420587], + [9.304866, 45.411594], + [9.295873, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.420587], + [9.295873, 45.42958], + [9.304866, 45.42958], + [9.304866, 45.420587], + [9.295873, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.42958], + [9.295873, 45.438574], + [9.304866, 45.438574], + [9.304866, 45.42958], + [9.295873, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.438574], + [9.295873, 45.447567], + [9.304866, 45.447567], + [9.304866, 45.438574], + [9.295873, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.447567], + [9.295873, 45.45656], + [9.304866, 45.45656], + [9.304866, 45.447567], + [9.295873, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.45656], + [9.295873, 45.465553], + [9.304866, 45.465553], + [9.304866, 45.45656], + [9.295873, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.465553], + [9.295873, 45.474547], + [9.304866, 45.474547], + [9.304866, 45.465553], + [9.295873, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.474547], + [9.295873, 45.48354], + [9.304866, 45.48354], + [9.304866, 45.474547], + [9.295873, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.48354], + [9.295873, 45.492533], + [9.304866, 45.492533], + [9.304866, 45.48354], + [9.295873, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.492533], + [9.295873, 45.501526], + [9.304866, 45.501526], + [9.304866, 45.492533], + [9.295873, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.501526], + [9.295873, 45.510519], + [9.304866, 45.510519], + [9.304866, 45.501526], + [9.295873, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.510519], + [9.295873, 45.519513], + [9.304866, 45.519513], + [9.304866, 45.510519], + [9.295873, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.519513], + [9.295873, 45.528506], + [9.304866, 45.528506], + [9.304866, 45.519513], + [9.295873, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.528506], + [9.295873, 45.537499], + [9.304866, 45.537499], + [9.304866, 45.528506], + [9.295873, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.537499], + [9.295873, 45.546492], + [9.304866, 45.546492], + [9.304866, 45.537499], + [9.295873, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.546492], + [9.295873, 45.555485], + [9.304866, 45.555485], + [9.304866, 45.546492], + [9.295873, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.555485], + [9.295873, 45.564479], + [9.304866, 45.564479], + [9.304866, 45.555485], + [9.295873, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.564479], + [9.295873, 45.573472], + [9.304866, 45.573472], + [9.304866, 45.564479], + [9.295873, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.573472], + [9.295873, 45.582465], + [9.304866, 45.582465], + [9.304866, 45.573472], + [9.295873, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.582465], + [9.295873, 45.591458], + [9.304866, 45.591458], + [9.304866, 45.582465], + [9.295873, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.591458], + [9.295873, 45.600451], + [9.304866, 45.600451], + [9.304866, 45.591458], + [9.295873, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.600451], + [9.295873, 45.609445], + [9.304866, 45.609445], + [9.304866, 45.600451], + [9.295873, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.609445], + [9.295873, 45.618438], + [9.304866, 45.618438], + [9.304866, 45.609445], + [9.295873, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.618438], + [9.295873, 45.627431], + [9.304866, 45.627431], + [9.304866, 45.618438], + [9.295873, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.295873, 45.627431], + [9.295873, 45.636424], + [9.304866, 45.636424], + [9.304866, 45.627431], + [9.295873, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.339648], + [9.304866, 45.348642], + [9.313859, 45.348642], + [9.313859, 45.339648], + [9.304866, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.348642], + [9.304866, 45.357635], + [9.313859, 45.357635], + [9.313859, 45.348642], + [9.304866, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.357635], + [9.304866, 45.366628], + [9.313859, 45.366628], + [9.313859, 45.357635], + [9.304866, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.366628], + [9.304866, 45.375621], + [9.313859, 45.375621], + [9.313859, 45.366628], + [9.304866, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.375621], + [9.304866, 45.384614], + [9.313859, 45.384614], + [9.313859, 45.375621], + [9.304866, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.384614], + [9.304866, 45.393608], + [9.313859, 45.393608], + [9.313859, 45.384614], + [9.304866, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.393608], + [9.304866, 45.402601], + [9.313859, 45.402601], + [9.313859, 45.393608], + [9.304866, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.402601], + [9.304866, 45.411594], + [9.313859, 45.411594], + [9.313859, 45.402601], + [9.304866, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.411594], + [9.304866, 45.420587], + [9.313859, 45.420587], + [9.313859, 45.411594], + [9.304866, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.420587], + [9.304866, 45.42958], + [9.313859, 45.42958], + [9.313859, 45.420587], + [9.304866, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.42958], + [9.304866, 45.438574], + [9.313859, 45.438574], + [9.313859, 45.42958], + [9.304866, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.438574], + [9.304866, 45.447567], + [9.313859, 45.447567], + [9.313859, 45.438574], + [9.304866, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.447567], + [9.304866, 45.45656], + [9.313859, 45.45656], + [9.313859, 45.447567], + [9.304866, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.45656], + [9.304866, 45.465553], + [9.313859, 45.465553], + [9.313859, 45.45656], + [9.304866, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.465553], + [9.304866, 45.474547], + [9.313859, 45.474547], + [9.313859, 45.465553], + [9.304866, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.474547], + [9.304866, 45.48354], + [9.313859, 45.48354], + [9.313859, 45.474547], + [9.304866, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.48354], + [9.304866, 45.492533], + [9.313859, 45.492533], + [9.313859, 45.48354], + [9.304866, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.492533], + [9.304866, 45.501526], + [9.313859, 45.501526], + [9.313859, 45.492533], + [9.304866, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.501526], + [9.304866, 45.510519], + [9.313859, 45.510519], + [9.313859, 45.501526], + [9.304866, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.510519], + [9.304866, 45.519513], + [9.313859, 45.519513], + [9.313859, 45.510519], + [9.304866, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.519513], + [9.304866, 45.528506], + [9.313859, 45.528506], + [9.313859, 45.519513], + [9.304866, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.528506], + [9.304866, 45.537499], + [9.313859, 45.537499], + [9.313859, 45.528506], + [9.304866, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.537499], + [9.304866, 45.546492], + [9.313859, 45.546492], + [9.313859, 45.537499], + [9.304866, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.546492], + [9.304866, 45.555485], + [9.313859, 45.555485], + [9.313859, 45.546492], + [9.304866, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.555485], + [9.304866, 45.564479], + [9.313859, 45.564479], + [9.313859, 45.555485], + [9.304866, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.564479], + [9.304866, 45.573472], + [9.313859, 45.573472], + [9.313859, 45.564479], + [9.304866, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.573472], + [9.304866, 45.582465], + [9.313859, 45.582465], + [9.313859, 45.573472], + [9.304866, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.582465], + [9.304866, 45.591458], + [9.313859, 45.591458], + [9.313859, 45.582465], + [9.304866, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.591458], + [9.304866, 45.600451], + [9.313859, 45.600451], + [9.313859, 45.591458], + [9.304866, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.600451], + [9.304866, 45.609445], + [9.313859, 45.609445], + [9.313859, 45.600451], + [9.304866, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.609445], + [9.304866, 45.618438], + [9.313859, 45.618438], + [9.313859, 45.609445], + [9.304866, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.618438], + [9.304866, 45.627431], + [9.313859, 45.627431], + [9.313859, 45.618438], + [9.304866, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.304866, 45.627431], + [9.304866, 45.636424], + [9.313859, 45.636424], + [9.313859, 45.627431], + [9.304866, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.339648], + [9.313859, 45.348642], + [9.322853, 45.348642], + [9.322853, 45.339648], + [9.313859, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.348642], + [9.313859, 45.357635], + [9.322853, 45.357635], + [9.322853, 45.348642], + [9.313859, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.357635], + [9.313859, 45.366628], + [9.322853, 45.366628], + [9.322853, 45.357635], + [9.313859, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.366628], + [9.313859, 45.375621], + [9.322853, 45.375621], + [9.322853, 45.366628], + [9.313859, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.375621], + [9.313859, 45.384614], + [9.322853, 45.384614], + [9.322853, 45.375621], + [9.313859, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.384614], + [9.313859, 45.393608], + [9.322853, 45.393608], + [9.322853, 45.384614], + [9.313859, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.393608], + [9.313859, 45.402601], + [9.322853, 45.402601], + [9.322853, 45.393608], + [9.313859, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.402601], + [9.313859, 45.411594], + [9.322853, 45.411594], + [9.322853, 45.402601], + [9.313859, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.411594], + [9.313859, 45.420587], + [9.322853, 45.420587], + [9.322853, 45.411594], + [9.313859, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.420587], + [9.313859, 45.42958], + [9.322853, 45.42958], + [9.322853, 45.420587], + [9.313859, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.42958], + [9.313859, 45.438574], + [9.322853, 45.438574], + [9.322853, 45.42958], + [9.313859, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.438574], + [9.313859, 45.447567], + [9.322853, 45.447567], + [9.322853, 45.438574], + [9.313859, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.447567], + [9.313859, 45.45656], + [9.322853, 45.45656], + [9.322853, 45.447567], + [9.313859, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.45656], + [9.313859, 45.465553], + [9.322853, 45.465553], + [9.322853, 45.45656], + [9.313859, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.465553], + [9.313859, 45.474547], + [9.322853, 45.474547], + [9.322853, 45.465553], + [9.313859, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.474547], + [9.313859, 45.48354], + [9.322853, 45.48354], + [9.322853, 45.474547], + [9.313859, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.48354], + [9.313859, 45.492533], + [9.322853, 45.492533], + [9.322853, 45.48354], + [9.313859, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.492533], + [9.313859, 45.501526], + [9.322853, 45.501526], + [9.322853, 45.492533], + [9.313859, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.501526], + [9.313859, 45.510519], + [9.322853, 45.510519], + [9.322853, 45.501526], + [9.313859, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.510519], + [9.313859, 45.519513], + [9.322853, 45.519513], + [9.322853, 45.510519], + [9.313859, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.519513], + [9.313859, 45.528506], + [9.322853, 45.528506], + [9.322853, 45.519513], + [9.313859, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.528506], + [9.313859, 45.537499], + [9.322853, 45.537499], + [9.322853, 45.528506], + [9.313859, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.537499], + [9.313859, 45.546492], + [9.322853, 45.546492], + [9.322853, 45.537499], + [9.313859, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.546492], + [9.313859, 45.555485], + [9.322853, 45.555485], + [9.322853, 45.546492], + [9.313859, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.555485], + [9.313859, 45.564479], + [9.322853, 45.564479], + [9.322853, 45.555485], + [9.313859, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.564479], + [9.313859, 45.573472], + [9.322853, 45.573472], + [9.322853, 45.564479], + [9.313859, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.573472], + [9.313859, 45.582465], + [9.322853, 45.582465], + [9.322853, 45.573472], + [9.313859, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.582465], + [9.313859, 45.591458], + [9.322853, 45.591458], + [9.322853, 45.582465], + [9.313859, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.591458], + [9.313859, 45.600451], + [9.322853, 45.600451], + [9.322853, 45.591458], + [9.313859, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.600451], + [9.313859, 45.609445], + [9.322853, 45.609445], + [9.322853, 45.600451], + [9.313859, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.609445], + [9.313859, 45.618438], + [9.322853, 45.618438], + [9.322853, 45.609445], + [9.313859, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.618438], + [9.313859, 45.627431], + [9.322853, 45.627431], + [9.322853, 45.618438], + [9.313859, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.313859, 45.627431], + [9.313859, 45.636424], + [9.322853, 45.636424], + [9.322853, 45.627431], + [9.313859, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.339648], + [9.322853, 45.348642], + [9.331846, 45.348642], + [9.331846, 45.339648], + [9.322853, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.348642], + [9.322853, 45.357635], + [9.331846, 45.357635], + [9.331846, 45.348642], + [9.322853, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.357635], + [9.322853, 45.366628], + [9.331846, 45.366628], + [9.331846, 45.357635], + [9.322853, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.366628], + [9.322853, 45.375621], + [9.331846, 45.375621], + [9.331846, 45.366628], + [9.322853, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.375621], + [9.322853, 45.384614], + [9.331846, 45.384614], + [9.331846, 45.375621], + [9.322853, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.384614], + [9.322853, 45.393608], + [9.331846, 45.393608], + [9.331846, 45.384614], + [9.322853, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.393608], + [9.322853, 45.402601], + [9.331846, 45.402601], + [9.331846, 45.393608], + [9.322853, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.402601], + [9.322853, 45.411594], + [9.331846, 45.411594], + [9.331846, 45.402601], + [9.322853, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.411594], + [9.322853, 45.420587], + [9.331846, 45.420587], + [9.331846, 45.411594], + [9.322853, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.420587], + [9.322853, 45.42958], + [9.331846, 45.42958], + [9.331846, 45.420587], + [9.322853, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.42958], + [9.322853, 45.438574], + [9.331846, 45.438574], + [9.331846, 45.42958], + [9.322853, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.438574], + [9.322853, 45.447567], + [9.331846, 45.447567], + [9.331846, 45.438574], + [9.322853, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.447567], + [9.322853, 45.45656], + [9.331846, 45.45656], + [9.331846, 45.447567], + [9.322853, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.45656], + [9.322853, 45.465553], + [9.331846, 45.465553], + [9.331846, 45.45656], + [9.322853, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.465553], + [9.322853, 45.474547], + [9.331846, 45.474547], + [9.331846, 45.465553], + [9.322853, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.474547], + [9.322853, 45.48354], + [9.331846, 45.48354], + [9.331846, 45.474547], + [9.322853, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.48354], + [9.322853, 45.492533], + [9.331846, 45.492533], + [9.331846, 45.48354], + [9.322853, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.492533], + [9.322853, 45.501526], + [9.331846, 45.501526], + [9.331846, 45.492533], + [9.322853, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.501526], + [9.322853, 45.510519], + [9.331846, 45.510519], + [9.331846, 45.501526], + [9.322853, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.510519], + [9.322853, 45.519513], + [9.331846, 45.519513], + [9.331846, 45.510519], + [9.322853, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.519513], + [9.322853, 45.528506], + [9.331846, 45.528506], + [9.331846, 45.519513], + [9.322853, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.528506], + [9.322853, 45.537499], + [9.331846, 45.537499], + [9.331846, 45.528506], + [9.322853, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.537499], + [9.322853, 45.546492], + [9.331846, 45.546492], + [9.331846, 45.537499], + [9.322853, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.546492], + [9.322853, 45.555485], + [9.331846, 45.555485], + [9.331846, 45.546492], + [9.322853, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.555485], + [9.322853, 45.564479], + [9.331846, 45.564479], + [9.331846, 45.555485], + [9.322853, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.564479], + [9.322853, 45.573472], + [9.331846, 45.573472], + [9.331846, 45.564479], + [9.322853, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.573472], + [9.322853, 45.582465], + [9.331846, 45.582465], + [9.331846, 45.573472], + [9.322853, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.582465], + [9.322853, 45.591458], + [9.331846, 45.591458], + [9.331846, 45.582465], + [9.322853, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.591458], + [9.322853, 45.600451], + [9.331846, 45.600451], + [9.331846, 45.591458], + [9.322853, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.600451], + [9.322853, 45.609445], + [9.331846, 45.609445], + [9.331846, 45.600451], + [9.322853, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.609445], + [9.322853, 45.618438], + [9.331846, 45.618438], + [9.331846, 45.609445], + [9.322853, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.618438], + [9.322853, 45.627431], + [9.331846, 45.627431], + [9.331846, 45.618438], + [9.322853, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.322853, 45.627431], + [9.322853, 45.636424], + [9.331846, 45.636424], + [9.331846, 45.627431], + [9.322853, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.339648], + [9.331846, 45.348642], + [9.340839, 45.348642], + [9.340839, 45.339648], + [9.331846, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.348642], + [9.331846, 45.357635], + [9.340839, 45.357635], + [9.340839, 45.348642], + [9.331846, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.357635], + [9.331846, 45.366628], + [9.340839, 45.366628], + [9.340839, 45.357635], + [9.331846, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.366628], + [9.331846, 45.375621], + [9.340839, 45.375621], + [9.340839, 45.366628], + [9.331846, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.375621], + [9.331846, 45.384614], + [9.340839, 45.384614], + [9.340839, 45.375621], + [9.331846, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.384614], + [9.331846, 45.393608], + [9.340839, 45.393608], + [9.340839, 45.384614], + [9.331846, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.393608], + [9.331846, 45.402601], + [9.340839, 45.402601], + [9.340839, 45.393608], + [9.331846, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.402601], + [9.331846, 45.411594], + [9.340839, 45.411594], + [9.340839, 45.402601], + [9.331846, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.411594], + [9.331846, 45.420587], + [9.340839, 45.420587], + [9.340839, 45.411594], + [9.331846, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.420587], + [9.331846, 45.42958], + [9.340839, 45.42958], + [9.340839, 45.420587], + [9.331846, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.42958], + [9.331846, 45.438574], + [9.340839, 45.438574], + [9.340839, 45.42958], + [9.331846, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.438574], + [9.331846, 45.447567], + [9.340839, 45.447567], + [9.340839, 45.438574], + [9.331846, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.447567], + [9.331846, 45.45656], + [9.340839, 45.45656], + [9.340839, 45.447567], + [9.331846, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.45656], + [9.331846, 45.465553], + [9.340839, 45.465553], + [9.340839, 45.45656], + [9.331846, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.465553], + [9.331846, 45.474547], + [9.340839, 45.474547], + [9.340839, 45.465553], + [9.331846, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.474547], + [9.331846, 45.48354], + [9.340839, 45.48354], + [9.340839, 45.474547], + [9.331846, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.48354], + [9.331846, 45.492533], + [9.340839, 45.492533], + [9.340839, 45.48354], + [9.331846, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.492533], + [9.331846, 45.501526], + [9.340839, 45.501526], + [9.340839, 45.492533], + [9.331846, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.501526], + [9.331846, 45.510519], + [9.340839, 45.510519], + [9.340839, 45.501526], + [9.331846, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.510519], + [9.331846, 45.519513], + [9.340839, 45.519513], + [9.340839, 45.510519], + [9.331846, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.519513], + [9.331846, 45.528506], + [9.340839, 45.528506], + [9.340839, 45.519513], + [9.331846, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.528506], + [9.331846, 45.537499], + [9.340839, 45.537499], + [9.340839, 45.528506], + [9.331846, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.537499], + [9.331846, 45.546492], + [9.340839, 45.546492], + [9.340839, 45.537499], + [9.331846, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.546492], + [9.331846, 45.555485], + [9.340839, 45.555485], + [9.340839, 45.546492], + [9.331846, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.555485], + [9.331846, 45.564479], + [9.340839, 45.564479], + [9.340839, 45.555485], + [9.331846, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.564479], + [9.331846, 45.573472], + [9.340839, 45.573472], + [9.340839, 45.564479], + [9.331846, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.573472], + [9.331846, 45.582465], + [9.340839, 45.582465], + [9.340839, 45.573472], + [9.331846, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.582465], + [9.331846, 45.591458], + [9.340839, 45.591458], + [9.340839, 45.582465], + [9.331846, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.591458], + [9.331846, 45.600451], + [9.340839, 45.600451], + [9.340839, 45.591458], + [9.331846, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.600451], + [9.331846, 45.609445], + [9.340839, 45.609445], + [9.340839, 45.600451], + [9.331846, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.609445], + [9.331846, 45.618438], + [9.340839, 45.618438], + [9.340839, 45.609445], + [9.331846, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.618438], + [9.331846, 45.627431], + [9.340839, 45.627431], + [9.340839, 45.618438], + [9.331846, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.331846, 45.627431], + [9.331846, 45.636424], + [9.340839, 45.636424], + [9.340839, 45.627431], + [9.331846, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.339648], + [9.340839, 45.348642], + [9.349832, 45.348642], + [9.349832, 45.339648], + [9.340839, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.348642], + [9.340839, 45.357635], + [9.349832, 45.357635], + [9.349832, 45.348642], + [9.340839, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.357635], + [9.340839, 45.366628], + [9.349832, 45.366628], + [9.349832, 45.357635], + [9.340839, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.366628], + [9.340839, 45.375621], + [9.349832, 45.375621], + [9.349832, 45.366628], + [9.340839, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.375621], + [9.340839, 45.384614], + [9.349832, 45.384614], + [9.349832, 45.375621], + [9.340839, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.384614], + [9.340839, 45.393608], + [9.349832, 45.393608], + [9.349832, 45.384614], + [9.340839, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.393608], + [9.340839, 45.402601], + [9.349832, 45.402601], + [9.349832, 45.393608], + [9.340839, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.402601], + [9.340839, 45.411594], + [9.349832, 45.411594], + [9.349832, 45.402601], + [9.340839, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.411594], + [9.340839, 45.420587], + [9.349832, 45.420587], + [9.349832, 45.411594], + [9.340839, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.420587], + [9.340839, 45.42958], + [9.349832, 45.42958], + [9.349832, 45.420587], + [9.340839, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.42958], + [9.340839, 45.438574], + [9.349832, 45.438574], + [9.349832, 45.42958], + [9.340839, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.438574], + [9.340839, 45.447567], + [9.349832, 45.447567], + [9.349832, 45.438574], + [9.340839, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.447567], + [9.340839, 45.45656], + [9.349832, 45.45656], + [9.349832, 45.447567], + [9.340839, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.45656], + [9.340839, 45.465553], + [9.349832, 45.465553], + [9.349832, 45.45656], + [9.340839, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.465553], + [9.340839, 45.474547], + [9.349832, 45.474547], + [9.349832, 45.465553], + [9.340839, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.474547], + [9.340839, 45.48354], + [9.349832, 45.48354], + [9.349832, 45.474547], + [9.340839, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.48354], + [9.340839, 45.492533], + [9.349832, 45.492533], + [9.349832, 45.48354], + [9.340839, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.492533], + [9.340839, 45.501526], + [9.349832, 45.501526], + [9.349832, 45.492533], + [9.340839, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.501526], + [9.340839, 45.510519], + [9.349832, 45.510519], + [9.349832, 45.501526], + [9.340839, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.510519], + [9.340839, 45.519513], + [9.349832, 45.519513], + [9.349832, 45.510519], + [9.340839, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.519513], + [9.340839, 45.528506], + [9.349832, 45.528506], + [9.349832, 45.519513], + [9.340839, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.528506], + [9.340839, 45.537499], + [9.349832, 45.537499], + [9.349832, 45.528506], + [9.340839, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.537499], + [9.340839, 45.546492], + [9.349832, 45.546492], + [9.349832, 45.537499], + [9.340839, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.546492], + [9.340839, 45.555485], + [9.349832, 45.555485], + [9.349832, 45.546492], + [9.340839, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.555485], + [9.340839, 45.564479], + [9.349832, 45.564479], + [9.349832, 45.555485], + [9.340839, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.564479], + [9.340839, 45.573472], + [9.349832, 45.573472], + [9.349832, 45.564479], + [9.340839, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.573472], + [9.340839, 45.582465], + [9.349832, 45.582465], + [9.349832, 45.573472], + [9.340839, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.582465], + [9.340839, 45.591458], + [9.349832, 45.591458], + [9.349832, 45.582465], + [9.340839, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.591458], + [9.340839, 45.600451], + [9.349832, 45.600451], + [9.349832, 45.591458], + [9.340839, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.600451], + [9.340839, 45.609445], + [9.349832, 45.609445], + [9.349832, 45.600451], + [9.340839, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.609445], + [9.340839, 45.618438], + [9.349832, 45.618438], + [9.349832, 45.609445], + [9.340839, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.618438], + [9.340839, 45.627431], + [9.349832, 45.627431], + [9.349832, 45.618438], + [9.340839, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.340839, 45.627431], + [9.340839, 45.636424], + [9.349832, 45.636424], + [9.349832, 45.627431], + [9.340839, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.339648], + [9.349832, 45.348642], + [9.358825, 45.348642], + [9.358825, 45.339648], + [9.349832, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.348642], + [9.349832, 45.357635], + [9.358825, 45.357635], + [9.358825, 45.348642], + [9.349832, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.357635], + [9.349832, 45.366628], + [9.358825, 45.366628], + [9.358825, 45.357635], + [9.349832, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.366628], + [9.349832, 45.375621], + [9.358825, 45.375621], + [9.358825, 45.366628], + [9.349832, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.375621], + [9.349832, 45.384614], + [9.358825, 45.384614], + [9.358825, 45.375621], + [9.349832, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.384614], + [9.349832, 45.393608], + [9.358825, 45.393608], + [9.358825, 45.384614], + [9.349832, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.393608], + [9.349832, 45.402601], + [9.358825, 45.402601], + [9.358825, 45.393608], + [9.349832, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.402601], + [9.349832, 45.411594], + [9.358825, 45.411594], + [9.358825, 45.402601], + [9.349832, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.411594], + [9.349832, 45.420587], + [9.358825, 45.420587], + [9.358825, 45.411594], + [9.349832, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.420587], + [9.349832, 45.42958], + [9.358825, 45.42958], + [9.358825, 45.420587], + [9.349832, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.42958], + [9.349832, 45.438574], + [9.358825, 45.438574], + [9.358825, 45.42958], + [9.349832, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.438574], + [9.349832, 45.447567], + [9.358825, 45.447567], + [9.358825, 45.438574], + [9.349832, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.447567], + [9.349832, 45.45656], + [9.358825, 45.45656], + [9.358825, 45.447567], + [9.349832, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.45656], + [9.349832, 45.465553], + [9.358825, 45.465553], + [9.358825, 45.45656], + [9.349832, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.465553], + [9.349832, 45.474547], + [9.358825, 45.474547], + [9.358825, 45.465553], + [9.349832, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.474547], + [9.349832, 45.48354], + [9.358825, 45.48354], + [9.358825, 45.474547], + [9.349832, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.48354], + [9.349832, 45.492533], + [9.358825, 45.492533], + [9.358825, 45.48354], + [9.349832, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.492533], + [9.349832, 45.501526], + [9.358825, 45.501526], + [9.358825, 45.492533], + [9.349832, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.501526], + [9.349832, 45.510519], + [9.358825, 45.510519], + [9.358825, 45.501526], + [9.349832, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.510519], + [9.349832, 45.519513], + [9.358825, 45.519513], + [9.358825, 45.510519], + [9.349832, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.519513], + [9.349832, 45.528506], + [9.358825, 45.528506], + [9.358825, 45.519513], + [9.349832, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.528506], + [9.349832, 45.537499], + [9.358825, 45.537499], + [9.358825, 45.528506], + [9.349832, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.537499], + [9.349832, 45.546492], + [9.358825, 45.546492], + [9.358825, 45.537499], + [9.349832, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.546492], + [9.349832, 45.555485], + [9.358825, 45.555485], + [9.358825, 45.546492], + [9.349832, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.555485], + [9.349832, 45.564479], + [9.358825, 45.564479], + [9.358825, 45.555485], + [9.349832, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.564479], + [9.349832, 45.573472], + [9.358825, 45.573472], + [9.358825, 45.564479], + [9.349832, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.573472], + [9.349832, 45.582465], + [9.358825, 45.582465], + [9.358825, 45.573472], + [9.349832, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.582465], + [9.349832, 45.591458], + [9.358825, 45.591458], + [9.358825, 45.582465], + [9.349832, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.591458], + [9.349832, 45.600451], + [9.358825, 45.600451], + [9.358825, 45.591458], + [9.349832, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.600451], + [9.349832, 45.609445], + [9.358825, 45.609445], + [9.358825, 45.600451], + [9.349832, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.609445], + [9.349832, 45.618438], + [9.358825, 45.618438], + [9.358825, 45.609445], + [9.349832, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.618438], + [9.349832, 45.627431], + [9.358825, 45.627431], + [9.358825, 45.618438], + [9.349832, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.349832, 45.627431], + [9.349832, 45.636424], + [9.358825, 45.636424], + [9.358825, 45.627431], + [9.349832, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.339648], + [9.358825, 45.348642], + [9.367819, 45.348642], + [9.367819, 45.339648], + [9.358825, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.348642], + [9.358825, 45.357635], + [9.367819, 45.357635], + [9.367819, 45.348642], + [9.358825, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.357635], + [9.358825, 45.366628], + [9.367819, 45.366628], + [9.367819, 45.357635], + [9.358825, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.366628], + [9.358825, 45.375621], + [9.367819, 45.375621], + [9.367819, 45.366628], + [9.358825, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.375621], + [9.358825, 45.384614], + [9.367819, 45.384614], + [9.367819, 45.375621], + [9.358825, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.384614], + [9.358825, 45.393608], + [9.367819, 45.393608], + [9.367819, 45.384614], + [9.358825, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.393608], + [9.358825, 45.402601], + [9.367819, 45.402601], + [9.367819, 45.393608], + [9.358825, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.402601], + [9.358825, 45.411594], + [9.367819, 45.411594], + [9.367819, 45.402601], + [9.358825, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.411594], + [9.358825, 45.420587], + [9.367819, 45.420587], + [9.367819, 45.411594], + [9.358825, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.420587], + [9.358825, 45.42958], + [9.367819, 45.42958], + [9.367819, 45.420587], + [9.358825, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.42958], + [9.358825, 45.438574], + [9.367819, 45.438574], + [9.367819, 45.42958], + [9.358825, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.438574], + [9.358825, 45.447567], + [9.367819, 45.447567], + [9.367819, 45.438574], + [9.358825, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.447567], + [9.358825, 45.45656], + [9.367819, 45.45656], + [9.367819, 45.447567], + [9.358825, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.45656], + [9.358825, 45.465553], + [9.367819, 45.465553], + [9.367819, 45.45656], + [9.358825, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.465553], + [9.358825, 45.474547], + [9.367819, 45.474547], + [9.367819, 45.465553], + [9.358825, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.474547], + [9.358825, 45.48354], + [9.367819, 45.48354], + [9.367819, 45.474547], + [9.358825, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.48354], + [9.358825, 45.492533], + [9.367819, 45.492533], + [9.367819, 45.48354], + [9.358825, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.492533], + [9.358825, 45.501526], + [9.367819, 45.501526], + [9.367819, 45.492533], + [9.358825, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.501526], + [9.358825, 45.510519], + [9.367819, 45.510519], + [9.367819, 45.501526], + [9.358825, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.510519], + [9.358825, 45.519513], + [9.367819, 45.519513], + [9.367819, 45.510519], + [9.358825, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.519513], + [9.358825, 45.528506], + [9.367819, 45.528506], + [9.367819, 45.519513], + [9.358825, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.528506], + [9.358825, 45.537499], + [9.367819, 45.537499], + [9.367819, 45.528506], + [9.358825, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.537499], + [9.358825, 45.546492], + [9.367819, 45.546492], + [9.367819, 45.537499], + [9.358825, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.546492], + [9.358825, 45.555485], + [9.367819, 45.555485], + [9.367819, 45.546492], + [9.358825, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.555485], + [9.358825, 45.564479], + [9.367819, 45.564479], + [9.367819, 45.555485], + [9.358825, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.564479], + [9.358825, 45.573472], + [9.367819, 45.573472], + [9.367819, 45.564479], + [9.358825, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.573472], + [9.358825, 45.582465], + [9.367819, 45.582465], + [9.367819, 45.573472], + [9.358825, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.582465], + [9.358825, 45.591458], + [9.367819, 45.591458], + [9.367819, 45.582465], + [9.358825, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.591458], + [9.358825, 45.600451], + [9.367819, 45.600451], + [9.367819, 45.591458], + [9.358825, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.600451], + [9.358825, 45.609445], + [9.367819, 45.609445], + [9.367819, 45.600451], + [9.358825, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.609445], + [9.358825, 45.618438], + [9.367819, 45.618438], + [9.367819, 45.609445], + [9.358825, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.618438], + [9.358825, 45.627431], + [9.367819, 45.627431], + [9.367819, 45.618438], + [9.358825, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#3da2ff", + "fill": "#3da2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.358825, 45.627431], + [9.358825, 45.636424], + [9.367819, 45.636424], + [9.367819, 45.627431], + [9.358825, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.339648], + [9.367819, 45.348642], + [9.376812, 45.348642], + [9.376812, 45.339648], + [9.367819, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.348642], + [9.367819, 45.357635], + [9.376812, 45.357635], + [9.376812, 45.348642], + [9.367819, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.357635], + [9.367819, 45.366628], + [9.376812, 45.366628], + [9.376812, 45.357635], + [9.367819, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.366628], + [9.367819, 45.375621], + [9.376812, 45.375621], + [9.376812, 45.366628], + [9.367819, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.375621], + [9.367819, 45.384614], + [9.376812, 45.384614], + [9.376812, 45.375621], + [9.367819, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.384614], + [9.367819, 45.393608], + [9.376812, 45.393608], + [9.376812, 45.384614], + [9.367819, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.393608], + [9.367819, 45.402601], + [9.376812, 45.402601], + [9.376812, 45.393608], + [9.367819, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.402601], + [9.367819, 45.411594], + [9.376812, 45.411594], + [9.376812, 45.402601], + [9.367819, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.411594], + [9.367819, 45.420587], + [9.376812, 45.420587], + [9.376812, 45.411594], + [9.367819, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.420587], + [9.367819, 45.42958], + [9.376812, 45.42958], + [9.376812, 45.420587], + [9.367819, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.42958], + [9.367819, 45.438574], + [9.376812, 45.438574], + [9.376812, 45.42958], + [9.367819, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.438574], + [9.367819, 45.447567], + [9.376812, 45.447567], + [9.376812, 45.438574], + [9.367819, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.447567], + [9.367819, 45.45656], + [9.376812, 45.45656], + [9.376812, 45.447567], + [9.367819, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.45656], + [9.367819, 45.465553], + [9.376812, 45.465553], + [9.376812, 45.45656], + [9.367819, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.465553], + [9.367819, 45.474547], + [9.376812, 45.474547], + [9.376812, 45.465553], + [9.367819, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.474547], + [9.367819, 45.48354], + [9.376812, 45.48354], + [9.376812, 45.474547], + [9.367819, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.48354], + [9.367819, 45.492533], + [9.376812, 45.492533], + [9.376812, 45.48354], + [9.367819, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.492533], + [9.367819, 45.501526], + [9.376812, 45.501526], + [9.376812, 45.492533], + [9.367819, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.501526], + [9.367819, 45.510519], + [9.376812, 45.510519], + [9.376812, 45.501526], + [9.367819, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.510519], + [9.367819, 45.519513], + [9.376812, 45.519513], + [9.376812, 45.510519], + [9.367819, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.519513], + [9.367819, 45.528506], + [9.376812, 45.528506], + [9.376812, 45.519513], + [9.367819, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.528506], + [9.367819, 45.537499], + [9.376812, 45.537499], + [9.376812, 45.528506], + [9.367819, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.537499], + [9.367819, 45.546492], + [9.376812, 45.546492], + [9.376812, 45.537499], + [9.367819, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.546492], + [9.367819, 45.555485], + [9.376812, 45.555485], + [9.376812, 45.546492], + [9.367819, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.555485], + [9.367819, 45.564479], + [9.376812, 45.564479], + [9.376812, 45.555485], + [9.367819, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.564479], + [9.367819, 45.573472], + [9.376812, 45.573472], + [9.376812, 45.564479], + [9.367819, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.573472], + [9.367819, 45.582465], + [9.376812, 45.582465], + [9.376812, 45.573472], + [9.367819, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.582465], + [9.367819, 45.591458], + [9.376812, 45.591458], + [9.376812, 45.582465], + [9.367819, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.591458], + [9.367819, 45.600451], + [9.376812, 45.600451], + [9.376812, 45.591458], + [9.367819, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.600451], + [9.367819, 45.609445], + [9.376812, 45.609445], + [9.376812, 45.600451], + [9.367819, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.609445], + [9.367819, 45.618438], + [9.376812, 45.618438], + [9.376812, 45.609445], + [9.367819, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.618438], + [9.367819, 45.627431], + [9.376812, 45.627431], + [9.376812, 45.618438], + [9.367819, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.367819, 45.627431], + [9.367819, 45.636424], + [9.376812, 45.636424], + [9.376812, 45.627431], + [9.367819, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.339648], + [9.376812, 45.348642], + [9.385805, 45.348642], + [9.385805, 45.339648], + [9.376812, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.348642], + [9.376812, 45.357635], + [9.385805, 45.357635], + [9.385805, 45.348642], + [9.376812, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.357635], + [9.376812, 45.366628], + [9.385805, 45.366628], + [9.385805, 45.357635], + [9.376812, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.366628], + [9.376812, 45.375621], + [9.385805, 45.375621], + [9.385805, 45.366628], + [9.376812, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.375621], + [9.376812, 45.384614], + [9.385805, 45.384614], + [9.385805, 45.375621], + [9.376812, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.384614], + [9.376812, 45.393608], + [9.385805, 45.393608], + [9.385805, 45.384614], + [9.376812, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.393608], + [9.376812, 45.402601], + [9.385805, 45.402601], + [9.385805, 45.393608], + [9.376812, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.402601], + [9.376812, 45.411594], + [9.385805, 45.411594], + [9.385805, 45.402601], + [9.376812, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.411594], + [9.376812, 45.420587], + [9.385805, 45.420587], + [9.385805, 45.411594], + [9.376812, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.420587], + [9.376812, 45.42958], + [9.385805, 45.42958], + [9.385805, 45.420587], + [9.376812, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.42958], + [9.376812, 45.438574], + [9.385805, 45.438574], + [9.385805, 45.42958], + [9.376812, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.438574], + [9.376812, 45.447567], + [9.385805, 45.447567], + [9.385805, 45.438574], + [9.376812, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.447567], + [9.376812, 45.45656], + [9.385805, 45.45656], + [9.385805, 45.447567], + [9.376812, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.45656], + [9.376812, 45.465553], + [9.385805, 45.465553], + [9.385805, 45.45656], + [9.376812, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.465553], + [9.376812, 45.474547], + [9.385805, 45.474547], + [9.385805, 45.465553], + [9.376812, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.474547], + [9.376812, 45.48354], + [9.385805, 45.48354], + [9.385805, 45.474547], + [9.376812, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.48354], + [9.376812, 45.492533], + [9.385805, 45.492533], + [9.385805, 45.48354], + [9.376812, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.492533], + [9.376812, 45.501526], + [9.385805, 45.501526], + [9.385805, 45.492533], + [9.376812, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.501526], + [9.376812, 45.510519], + [9.385805, 45.510519], + [9.385805, 45.501526], + [9.376812, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.510519], + [9.376812, 45.519513], + [9.385805, 45.519513], + [9.385805, 45.510519], + [9.376812, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.519513], + [9.376812, 45.528506], + [9.385805, 45.528506], + [9.385805, 45.519513], + [9.376812, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.528506], + [9.376812, 45.537499], + [9.385805, 45.537499], + [9.385805, 45.528506], + [9.376812, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.537499], + [9.376812, 45.546492], + [9.385805, 45.546492], + [9.385805, 45.537499], + [9.376812, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.546492], + [9.376812, 45.555485], + [9.385805, 45.555485], + [9.385805, 45.546492], + [9.376812, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.555485], + [9.376812, 45.564479], + [9.385805, 45.564479], + [9.385805, 45.555485], + [9.376812, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.564479], + [9.376812, 45.573472], + [9.385805, 45.573472], + [9.385805, 45.564479], + [9.376812, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.573472], + [9.376812, 45.582465], + [9.385805, 45.582465], + [9.385805, 45.573472], + [9.376812, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.582465], + [9.376812, 45.591458], + [9.385805, 45.591458], + [9.385805, 45.582465], + [9.376812, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.591458], + [9.376812, 45.600451], + [9.385805, 45.600451], + [9.385805, 45.591458], + [9.376812, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.600451], + [9.376812, 45.609445], + [9.385805, 45.609445], + [9.385805, 45.600451], + [9.376812, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.609445], + [9.376812, 45.618438], + [9.385805, 45.618438], + [9.385805, 45.609445], + [9.376812, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.618438], + [9.376812, 45.627431], + [9.385805, 45.627431], + [9.385805, 45.618438], + [9.376812, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.376812, 45.627431], + [9.376812, 45.636424], + [9.385805, 45.636424], + [9.385805, 45.627431], + [9.376812, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.339648], + [9.385805, 45.348642], + [9.394798, 45.348642], + [9.394798, 45.339648], + [9.385805, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.348642], + [9.385805, 45.357635], + [9.394798, 45.357635], + [9.394798, 45.348642], + [9.385805, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.357635], + [9.385805, 45.366628], + [9.394798, 45.366628], + [9.394798, 45.357635], + [9.385805, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.366628], + [9.385805, 45.375621], + [9.394798, 45.375621], + [9.394798, 45.366628], + [9.385805, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.375621], + [9.385805, 45.384614], + [9.394798, 45.384614], + [9.394798, 45.375621], + [9.385805, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.384614], + [9.385805, 45.393608], + [9.394798, 45.393608], + [9.394798, 45.384614], + [9.385805, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.393608], + [9.385805, 45.402601], + [9.394798, 45.402601], + [9.394798, 45.393608], + [9.385805, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.402601], + [9.385805, 45.411594], + [9.394798, 45.411594], + [9.394798, 45.402601], + [9.385805, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.411594], + [9.385805, 45.420587], + [9.394798, 45.420587], + [9.394798, 45.411594], + [9.385805, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.420587], + [9.385805, 45.42958], + [9.394798, 45.42958], + [9.394798, 45.420587], + [9.385805, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.42958], + [9.385805, 45.438574], + [9.394798, 45.438574], + [9.394798, 45.42958], + [9.385805, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.438574], + [9.385805, 45.447567], + [9.394798, 45.447567], + [9.394798, 45.438574], + [9.385805, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.447567], + [9.385805, 45.45656], + [9.394798, 45.45656], + [9.394798, 45.447567], + [9.385805, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.45656], + [9.385805, 45.465553], + [9.394798, 45.465553], + [9.394798, 45.45656], + [9.385805, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.465553], + [9.385805, 45.474547], + [9.394798, 45.474547], + [9.394798, 45.465553], + [9.385805, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.474547], + [9.385805, 45.48354], + [9.394798, 45.48354], + [9.394798, 45.474547], + [9.385805, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.48354], + [9.385805, 45.492533], + [9.394798, 45.492533], + [9.394798, 45.48354], + [9.385805, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.492533], + [9.385805, 45.501526], + [9.394798, 45.501526], + [9.394798, 45.492533], + [9.385805, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.501526], + [9.385805, 45.510519], + [9.394798, 45.510519], + [9.394798, 45.501526], + [9.385805, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.510519], + [9.385805, 45.519513], + [9.394798, 45.519513], + [9.394798, 45.510519], + [9.385805, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.519513], + [9.385805, 45.528506], + [9.394798, 45.528506], + [9.394798, 45.519513], + [9.385805, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.528506], + [9.385805, 45.537499], + [9.394798, 45.537499], + [9.394798, 45.528506], + [9.385805, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.537499], + [9.385805, 45.546492], + [9.394798, 45.546492], + [9.394798, 45.537499], + [9.385805, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.546492], + [9.385805, 45.555485], + [9.394798, 45.555485], + [9.394798, 45.546492], + [9.385805, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.555485], + [9.385805, 45.564479], + [9.394798, 45.564479], + [9.394798, 45.555485], + [9.385805, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.564479], + [9.385805, 45.573472], + [9.394798, 45.573472], + [9.394798, 45.564479], + [9.385805, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.573472], + [9.385805, 45.582465], + [9.394798, 45.582465], + [9.394798, 45.573472], + [9.385805, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.582465], + [9.385805, 45.591458], + [9.394798, 45.591458], + [9.394798, 45.582465], + [9.385805, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.591458], + [9.385805, 45.600451], + [9.394798, 45.600451], + [9.394798, 45.591458], + [9.385805, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.600451], + [9.385805, 45.609445], + [9.394798, 45.609445], + [9.394798, 45.600451], + [9.385805, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.609445], + [9.385805, 45.618438], + [9.394798, 45.618438], + [9.394798, 45.609445], + [9.385805, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.618438], + [9.385805, 45.627431], + [9.394798, 45.627431], + [9.394798, 45.618438], + [9.385805, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.385805, 45.627431], + [9.385805, 45.636424], + [9.394798, 45.636424], + [9.394798, 45.627431], + [9.385805, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.339648], + [9.394798, 45.348642], + [9.403791, 45.348642], + [9.403791, 45.339648], + [9.394798, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.348642], + [9.394798, 45.357635], + [9.403791, 45.357635], + [9.403791, 45.348642], + [9.394798, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.357635], + [9.394798, 45.366628], + [9.403791, 45.366628], + [9.403791, 45.357635], + [9.394798, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.366628], + [9.394798, 45.375621], + [9.403791, 45.375621], + [9.403791, 45.366628], + [9.394798, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.375621], + [9.394798, 45.384614], + [9.403791, 45.384614], + [9.403791, 45.375621], + [9.394798, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.384614], + [9.394798, 45.393608], + [9.403791, 45.393608], + [9.403791, 45.384614], + [9.394798, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.393608], + [9.394798, 45.402601], + [9.403791, 45.402601], + [9.403791, 45.393608], + [9.394798, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.402601], + [9.394798, 45.411594], + [9.403791, 45.411594], + [9.403791, 45.402601], + [9.394798, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.411594], + [9.394798, 45.420587], + [9.403791, 45.420587], + [9.403791, 45.411594], + [9.394798, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.420587], + [9.394798, 45.42958], + [9.403791, 45.42958], + [9.403791, 45.420587], + [9.394798, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.42958], + [9.394798, 45.438574], + [9.403791, 45.438574], + [9.403791, 45.42958], + [9.394798, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.438574], + [9.394798, 45.447567], + [9.403791, 45.447567], + [9.403791, 45.438574], + [9.394798, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.447567], + [9.394798, 45.45656], + [9.403791, 45.45656], + [9.403791, 45.447567], + [9.394798, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.45656], + [9.394798, 45.465553], + [9.403791, 45.465553], + [9.403791, 45.45656], + [9.394798, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.465553], + [9.394798, 45.474547], + [9.403791, 45.474547], + [9.403791, 45.465553], + [9.394798, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.474547], + [9.394798, 45.48354], + [9.403791, 45.48354], + [9.403791, 45.474547], + [9.394798, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.48354], + [9.394798, 45.492533], + [9.403791, 45.492533], + [9.403791, 45.48354], + [9.394798, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.492533], + [9.394798, 45.501526], + [9.403791, 45.501526], + [9.403791, 45.492533], + [9.394798, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.501526], + [9.394798, 45.510519], + [9.403791, 45.510519], + [9.403791, 45.501526], + [9.394798, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.510519], + [9.394798, 45.519513], + [9.403791, 45.519513], + [9.403791, 45.510519], + [9.394798, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.519513], + [9.394798, 45.528506], + [9.403791, 45.528506], + [9.403791, 45.519513], + [9.394798, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.528506], + [9.394798, 45.537499], + [9.403791, 45.537499], + [9.403791, 45.528506], + [9.394798, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.537499], + [9.394798, 45.546492], + [9.403791, 45.546492], + [9.403791, 45.537499], + [9.394798, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.546492], + [9.394798, 45.555485], + [9.403791, 45.555485], + [9.403791, 45.546492], + [9.394798, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.555485], + [9.394798, 45.564479], + [9.403791, 45.564479], + [9.403791, 45.555485], + [9.394798, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.564479], + [9.394798, 45.573472], + [9.403791, 45.573472], + [9.403791, 45.564479], + [9.394798, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.573472], + [9.394798, 45.582465], + [9.403791, 45.582465], + [9.403791, 45.573472], + [9.394798, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.582465], + [9.394798, 45.591458], + [9.403791, 45.591458], + [9.403791, 45.582465], + [9.394798, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.591458], + [9.394798, 45.600451], + [9.403791, 45.600451], + [9.403791, 45.591458], + [9.394798, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.600451], + [9.394798, 45.609445], + [9.403791, 45.609445], + [9.403791, 45.600451], + [9.394798, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.609445], + [9.394798, 45.618438], + [9.403791, 45.618438], + [9.403791, 45.609445], + [9.394798, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.618438], + [9.394798, 45.627431], + [9.403791, 45.627431], + [9.403791, 45.618438], + [9.394798, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.394798, 45.627431], + [9.394798, 45.636424], + [9.403791, 45.636424], + [9.403791, 45.627431], + [9.394798, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.339648], + [9.403791, 45.348642], + [9.412785, 45.348642], + [9.412785, 45.339648], + [9.403791, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.348642], + [9.403791, 45.357635], + [9.412785, 45.357635], + [9.412785, 45.348642], + [9.403791, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.357635], + [9.403791, 45.366628], + [9.412785, 45.366628], + [9.412785, 45.357635], + [9.403791, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.366628], + [9.403791, 45.375621], + [9.412785, 45.375621], + [9.412785, 45.366628], + [9.403791, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.375621], + [9.403791, 45.384614], + [9.412785, 45.384614], + [9.412785, 45.375621], + [9.403791, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.384614], + [9.403791, 45.393608], + [9.412785, 45.393608], + [9.412785, 45.384614], + [9.403791, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.393608], + [9.403791, 45.402601], + [9.412785, 45.402601], + [9.412785, 45.393608], + [9.403791, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.402601], + [9.403791, 45.411594], + [9.412785, 45.411594], + [9.412785, 45.402601], + [9.403791, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.411594], + [9.403791, 45.420587], + [9.412785, 45.420587], + [9.412785, 45.411594], + [9.403791, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.420587], + [9.403791, 45.42958], + [9.412785, 45.42958], + [9.412785, 45.420587], + [9.403791, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.42958], + [9.403791, 45.438574], + [9.412785, 45.438574], + [9.412785, 45.42958], + [9.403791, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.438574], + [9.403791, 45.447567], + [9.412785, 45.447567], + [9.412785, 45.438574], + [9.403791, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.447567], + [9.403791, 45.45656], + [9.412785, 45.45656], + [9.412785, 45.447567], + [9.403791, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.45656], + [9.403791, 45.465553], + [9.412785, 45.465553], + [9.412785, 45.45656], + [9.403791, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.465553], + [9.403791, 45.474547], + [9.412785, 45.474547], + [9.412785, 45.465553], + [9.403791, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#66b6ff", + "fill": "#66b6ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.474547], + [9.403791, 45.48354], + [9.412785, 45.48354], + [9.412785, 45.474547], + [9.403791, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.48354], + [9.403791, 45.492533], + [9.412785, 45.492533], + [9.412785, 45.48354], + [9.403791, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.492533], + [9.403791, 45.501526], + [9.412785, 45.501526], + [9.412785, 45.492533], + [9.403791, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.501526], + [9.403791, 45.510519], + [9.412785, 45.510519], + [9.412785, 45.501526], + [9.403791, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.510519], + [9.403791, 45.519513], + [9.412785, 45.519513], + [9.412785, 45.510519], + [9.403791, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.519513], + [9.403791, 45.528506], + [9.412785, 45.528506], + [9.412785, 45.519513], + [9.403791, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.528506], + [9.403791, 45.537499], + [9.412785, 45.537499], + [9.412785, 45.528506], + [9.403791, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#5cb1ff", + "fill": "#5cb1ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.537499], + [9.403791, 45.546492], + [9.412785, 45.546492], + [9.412785, 45.537499], + [9.403791, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.546492], + [9.403791, 45.555485], + [9.412785, 45.555485], + [9.412785, 45.546492], + [9.403791, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.555485], + [9.403791, 45.564479], + [9.412785, 45.564479], + [9.412785, 45.555485], + [9.403791, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.564479], + [9.403791, 45.573472], + [9.412785, 45.573472], + [9.412785, 45.564479], + [9.403791, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.573472], + [9.403791, 45.582465], + [9.412785, 45.582465], + [9.412785, 45.573472], + [9.403791, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.582465], + [9.403791, 45.591458], + [9.412785, 45.591458], + [9.412785, 45.582465], + [9.403791, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.591458], + [9.403791, 45.600451], + [9.412785, 45.600451], + [9.412785, 45.591458], + [9.403791, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.600451], + [9.403791, 45.609445], + [9.412785, 45.609445], + [9.412785, 45.600451], + [9.403791, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.609445], + [9.403791, 45.618438], + [9.412785, 45.618438], + [9.412785, 45.609445], + [9.403791, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.618438], + [9.403791, 45.627431], + [9.412785, 45.627431], + [9.412785, 45.618438], + [9.403791, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.403791, 45.627431], + [9.403791, 45.636424], + [9.412785, 45.636424], + [9.412785, 45.627431], + [9.403791, 45.627431] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/data-500m-bbox.geojson b/packages/turf-interpolate/test/out/data-500m-bbox.geojson new file mode 100644 index 0000000000..e199873370 --- /dev/null +++ b/packages/turf-interpolate/test/out/data-500m-bbox.geojson @@ -0,0 +1,117815 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.339648], + [9.032822, 45.344145], + [9.037318, 45.344145], + [9.037318, 45.339648], + [9.032822, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.344145], + [9.032822, 45.348642], + [9.037318, 45.348642], + [9.037318, 45.344145], + [9.032822, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.348642], + [9.032822, 45.353138], + [9.037318, 45.353138], + [9.037318, 45.348642], + [9.032822, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.353138], + [9.032822, 45.357635], + [9.037318, 45.357635], + [9.037318, 45.353138], + [9.032822, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.357635], + [9.032822, 45.362131], + [9.037318, 45.362131], + [9.037318, 45.357635], + [9.032822, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.362131], + [9.032822, 45.366628], + [9.037318, 45.366628], + [9.037318, 45.362131], + [9.032822, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.366628], + [9.032822, 45.371125], + [9.037318, 45.371125], + [9.037318, 45.366628], + [9.032822, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.371125], + [9.032822, 45.375621], + [9.037318, 45.375621], + [9.037318, 45.371125], + [9.032822, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.375621], + [9.032822, 45.380118], + [9.037318, 45.380118], + [9.037318, 45.375621], + [9.032822, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.380118], + [9.032822, 45.384614], + [9.037318, 45.384614], + [9.037318, 45.380118], + [9.032822, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.384614], + [9.032822, 45.389111], + [9.037318, 45.389111], + [9.037318, 45.384614], + [9.032822, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.389111], + [9.032822, 45.393608], + [9.037318, 45.393608], + [9.037318, 45.389111], + [9.032822, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.393608], + [9.032822, 45.398104], + [9.037318, 45.398104], + [9.037318, 45.393608], + [9.032822, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.398104], + [9.032822, 45.402601], + [9.037318, 45.402601], + [9.037318, 45.398104], + [9.032822, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.402601], + [9.032822, 45.407097], + [9.037318, 45.407097], + [9.037318, 45.402601], + [9.032822, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.407097], + [9.032822, 45.411594], + [9.037318, 45.411594], + [9.037318, 45.407097], + [9.032822, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.411594], + [9.032822, 45.416091], + [9.037318, 45.416091], + [9.037318, 45.411594], + [9.032822, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.416091], + [9.032822, 45.420587], + [9.037318, 45.420587], + [9.037318, 45.416091], + [9.032822, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.420587], + [9.032822, 45.425084], + [9.037318, 45.425084], + [9.037318, 45.420587], + [9.032822, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.425084], + [9.032822, 45.42958], + [9.037318, 45.42958], + [9.037318, 45.425084], + [9.032822, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.42958], + [9.032822, 45.434077], + [9.037318, 45.434077], + [9.037318, 45.42958], + [9.032822, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.434077], + [9.032822, 45.438574], + [9.037318, 45.438574], + [9.037318, 45.434077], + [9.032822, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.438574], + [9.032822, 45.44307], + [9.037318, 45.44307], + [9.037318, 45.438574], + [9.032822, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.44307], + [9.032822, 45.447567], + [9.037318, 45.447567], + [9.037318, 45.44307], + [9.032822, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.447567], + [9.032822, 45.452063], + [9.037318, 45.452063], + [9.037318, 45.447567], + [9.032822, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.452063], + [9.032822, 45.45656], + [9.037318, 45.45656], + [9.037318, 45.452063], + [9.032822, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.45656], + [9.032822, 45.461057], + [9.037318, 45.461057], + [9.037318, 45.45656], + [9.032822, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.461057], + [9.032822, 45.465553], + [9.037318, 45.465553], + [9.037318, 45.461057], + [9.032822, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.465553], + [9.032822, 45.47005], + [9.037318, 45.47005], + [9.037318, 45.465553], + [9.032822, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.47005], + [9.032822, 45.474547], + [9.037318, 45.474547], + [9.037318, 45.47005], + [9.032822, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.474547], + [9.032822, 45.479043], + [9.037318, 45.479043], + [9.037318, 45.474547], + [9.032822, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.479043], + [9.032822, 45.48354], + [9.037318, 45.48354], + [9.037318, 45.479043], + [9.032822, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.48354], + [9.032822, 45.488036], + [9.037318, 45.488036], + [9.037318, 45.48354], + [9.032822, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.488036], + [9.032822, 45.492533], + [9.037318, 45.492533], + [9.037318, 45.488036], + [9.032822, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.492533], + [9.032822, 45.49703], + [9.037318, 45.49703], + [9.037318, 45.492533], + [9.032822, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.49703], + [9.032822, 45.501526], + [9.037318, 45.501526], + [9.037318, 45.49703], + [9.032822, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.501526], + [9.032822, 45.506023], + [9.037318, 45.506023], + [9.037318, 45.501526], + [9.032822, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.506023], + [9.032822, 45.510519], + [9.037318, 45.510519], + [9.037318, 45.506023], + [9.032822, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.510519], + [9.032822, 45.515016], + [9.037318, 45.515016], + [9.037318, 45.510519], + [9.032822, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.515016], + [9.032822, 45.519513], + [9.037318, 45.519513], + [9.037318, 45.515016], + [9.032822, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.519513], + [9.032822, 45.524009], + [9.037318, 45.524009], + [9.037318, 45.519513], + [9.032822, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.524009], + [9.032822, 45.528506], + [9.037318, 45.528506], + [9.037318, 45.524009], + [9.032822, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.528506], + [9.032822, 45.533002], + [9.037318, 45.533002], + [9.037318, 45.528506], + [9.032822, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.533002], + [9.032822, 45.537499], + [9.037318, 45.537499], + [9.037318, 45.533002], + [9.032822, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.537499], + [9.032822, 45.541996], + [9.037318, 45.541996], + [9.037318, 45.537499], + [9.032822, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.541996], + [9.032822, 45.546492], + [9.037318, 45.546492], + [9.037318, 45.541996], + [9.032822, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.546492], + [9.032822, 45.550989], + [9.037318, 45.550989], + [9.037318, 45.546492], + [9.032822, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.550989], + [9.032822, 45.555485], + [9.037318, 45.555485], + [9.037318, 45.550989], + [9.032822, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.555485], + [9.032822, 45.559982], + [9.037318, 45.559982], + [9.037318, 45.555485], + [9.032822, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.559982], + [9.032822, 45.564479], + [9.037318, 45.564479], + [9.037318, 45.559982], + [9.032822, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.564479], + [9.032822, 45.568975], + [9.037318, 45.568975], + [9.037318, 45.564479], + [9.032822, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.568975], + [9.032822, 45.573472], + [9.037318, 45.573472], + [9.037318, 45.568975], + [9.032822, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.573472], + [9.032822, 45.577968], + [9.037318, 45.577968], + [9.037318, 45.573472], + [9.032822, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.577968], + [9.032822, 45.582465], + [9.037318, 45.582465], + [9.037318, 45.577968], + [9.032822, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.582465], + [9.032822, 45.586962], + [9.037318, 45.586962], + [9.037318, 45.582465], + [9.032822, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.586962], + [9.032822, 45.591458], + [9.037318, 45.591458], + [9.037318, 45.586962], + [9.032822, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.591458], + [9.032822, 45.595955], + [9.037318, 45.595955], + [9.037318, 45.591458], + [9.032822, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.595955], + [9.032822, 45.600451], + [9.037318, 45.600451], + [9.037318, 45.595955], + [9.032822, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.600451], + [9.032822, 45.604948], + [9.037318, 45.604948], + [9.037318, 45.600451], + [9.032822, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.604948], + [9.032822, 45.609445], + [9.037318, 45.609445], + [9.037318, 45.604948], + [9.032822, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.609445], + [9.032822, 45.613941], + [9.037318, 45.613941], + [9.037318, 45.609445], + [9.032822, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.613941], + [9.032822, 45.618438], + [9.037318, 45.618438], + [9.037318, 45.613941], + [9.032822, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.618438], + [9.032822, 45.622934], + [9.037318, 45.622934], + [9.037318, 45.618438], + [9.032822, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.622934], + [9.032822, 45.627431], + [9.037318, 45.627431], + [9.037318, 45.622934], + [9.032822, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.627431], + [9.032822, 45.631928], + [9.037318, 45.631928], + [9.037318, 45.627431], + [9.032822, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.032822, 45.631928], + [9.032822, 45.636424], + [9.037318, 45.636424], + [9.037318, 45.631928], + [9.032822, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.339648], + [9.037318, 45.344145], + [9.041815, 45.344145], + [9.041815, 45.339648], + [9.037318, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.344145], + [9.037318, 45.348642], + [9.041815, 45.348642], + [9.041815, 45.344145], + [9.037318, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.348642], + [9.037318, 45.353138], + [9.041815, 45.353138], + [9.041815, 45.348642], + [9.037318, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.353138], + [9.037318, 45.357635], + [9.041815, 45.357635], + [9.041815, 45.353138], + [9.037318, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.357635], + [9.037318, 45.362131], + [9.041815, 45.362131], + [9.041815, 45.357635], + [9.037318, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.362131], + [9.037318, 45.366628], + [9.041815, 45.366628], + [9.041815, 45.362131], + [9.037318, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.366628], + [9.037318, 45.371125], + [9.041815, 45.371125], + [9.041815, 45.366628], + [9.037318, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.371125], + [9.037318, 45.375621], + [9.041815, 45.375621], + [9.041815, 45.371125], + [9.037318, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.375621], + [9.037318, 45.380118], + [9.041815, 45.380118], + [9.041815, 45.375621], + [9.037318, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.380118], + [9.037318, 45.384614], + [9.041815, 45.384614], + [9.041815, 45.380118], + [9.037318, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.384614], + [9.037318, 45.389111], + [9.041815, 45.389111], + [9.041815, 45.384614], + [9.037318, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.389111], + [9.037318, 45.393608], + [9.041815, 45.393608], + [9.041815, 45.389111], + [9.037318, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.393608], + [9.037318, 45.398104], + [9.041815, 45.398104], + [9.041815, 45.393608], + [9.037318, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.398104], + [9.037318, 45.402601], + [9.041815, 45.402601], + [9.041815, 45.398104], + [9.037318, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.402601], + [9.037318, 45.407097], + [9.041815, 45.407097], + [9.041815, 45.402601], + [9.037318, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.407097], + [9.037318, 45.411594], + [9.041815, 45.411594], + [9.041815, 45.407097], + [9.037318, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.411594], + [9.037318, 45.416091], + [9.041815, 45.416091], + [9.041815, 45.411594], + [9.037318, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.416091], + [9.037318, 45.420587], + [9.041815, 45.420587], + [9.041815, 45.416091], + [9.037318, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.420587], + [9.037318, 45.425084], + [9.041815, 45.425084], + [9.041815, 45.420587], + [9.037318, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.425084], + [9.037318, 45.42958], + [9.041815, 45.42958], + [9.041815, 45.425084], + [9.037318, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.42958], + [9.037318, 45.434077], + [9.041815, 45.434077], + [9.041815, 45.42958], + [9.037318, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.434077], + [9.037318, 45.438574], + [9.041815, 45.438574], + [9.041815, 45.434077], + [9.037318, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.438574], + [9.037318, 45.44307], + [9.041815, 45.44307], + [9.041815, 45.438574], + [9.037318, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.44307], + [9.037318, 45.447567], + [9.041815, 45.447567], + [9.041815, 45.44307], + [9.037318, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.447567], + [9.037318, 45.452063], + [9.041815, 45.452063], + [9.041815, 45.447567], + [9.037318, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.452063], + [9.037318, 45.45656], + [9.041815, 45.45656], + [9.041815, 45.452063], + [9.037318, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.45656], + [9.037318, 45.461057], + [9.041815, 45.461057], + [9.041815, 45.45656], + [9.037318, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.461057], + [9.037318, 45.465553], + [9.041815, 45.465553], + [9.041815, 45.461057], + [9.037318, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.465553], + [9.037318, 45.47005], + [9.041815, 45.47005], + [9.041815, 45.465553], + [9.037318, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.47005], + [9.037318, 45.474547], + [9.041815, 45.474547], + [9.041815, 45.47005], + [9.037318, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.474547], + [9.037318, 45.479043], + [9.041815, 45.479043], + [9.041815, 45.474547], + [9.037318, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.479043], + [9.037318, 45.48354], + [9.041815, 45.48354], + [9.041815, 45.479043], + [9.037318, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.48354], + [9.037318, 45.488036], + [9.041815, 45.488036], + [9.041815, 45.48354], + [9.037318, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.488036], + [9.037318, 45.492533], + [9.041815, 45.492533], + [9.041815, 45.488036], + [9.037318, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.492533], + [9.037318, 45.49703], + [9.041815, 45.49703], + [9.041815, 45.492533], + [9.037318, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.49703], + [9.037318, 45.501526], + [9.041815, 45.501526], + [9.041815, 45.49703], + [9.037318, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.501526], + [9.037318, 45.506023], + [9.041815, 45.506023], + [9.041815, 45.501526], + [9.037318, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.506023], + [9.037318, 45.510519], + [9.041815, 45.510519], + [9.041815, 45.506023], + [9.037318, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.510519], + [9.037318, 45.515016], + [9.041815, 45.515016], + [9.041815, 45.510519], + [9.037318, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.515016], + [9.037318, 45.519513], + [9.041815, 45.519513], + [9.041815, 45.515016], + [9.037318, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.519513], + [9.037318, 45.524009], + [9.041815, 45.524009], + [9.041815, 45.519513], + [9.037318, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.524009], + [9.037318, 45.528506], + [9.041815, 45.528506], + [9.041815, 45.524009], + [9.037318, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.528506], + [9.037318, 45.533002], + [9.041815, 45.533002], + [9.041815, 45.528506], + [9.037318, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.533002], + [9.037318, 45.537499], + [9.041815, 45.537499], + [9.041815, 45.533002], + [9.037318, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.537499], + [9.037318, 45.541996], + [9.041815, 45.541996], + [9.041815, 45.537499], + [9.037318, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.541996], + [9.037318, 45.546492], + [9.041815, 45.546492], + [9.041815, 45.541996], + [9.037318, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.546492], + [9.037318, 45.550989], + [9.041815, 45.550989], + [9.041815, 45.546492], + [9.037318, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.550989], + [9.037318, 45.555485], + [9.041815, 45.555485], + [9.041815, 45.550989], + [9.037318, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.555485], + [9.037318, 45.559982], + [9.041815, 45.559982], + [9.041815, 45.555485], + [9.037318, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.559982], + [9.037318, 45.564479], + [9.041815, 45.564479], + [9.041815, 45.559982], + [9.037318, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.564479], + [9.037318, 45.568975], + [9.041815, 45.568975], + [9.041815, 45.564479], + [9.037318, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.568975], + [9.037318, 45.573472], + [9.041815, 45.573472], + [9.041815, 45.568975], + [9.037318, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.573472], + [9.037318, 45.577968], + [9.041815, 45.577968], + [9.041815, 45.573472], + [9.037318, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.577968], + [9.037318, 45.582465], + [9.041815, 45.582465], + [9.041815, 45.577968], + [9.037318, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.582465], + [9.037318, 45.586962], + [9.041815, 45.586962], + [9.041815, 45.582465], + [9.037318, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.586962], + [9.037318, 45.591458], + [9.041815, 45.591458], + [9.041815, 45.586962], + [9.037318, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.591458], + [9.037318, 45.595955], + [9.041815, 45.595955], + [9.041815, 45.591458], + [9.037318, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.595955], + [9.037318, 45.600451], + [9.041815, 45.600451], + [9.041815, 45.595955], + [9.037318, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.600451], + [9.037318, 45.604948], + [9.041815, 45.604948], + [9.041815, 45.600451], + [9.037318, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.604948], + [9.037318, 45.609445], + [9.041815, 45.609445], + [9.041815, 45.604948], + [9.037318, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.609445], + [9.037318, 45.613941], + [9.041815, 45.613941], + [9.041815, 45.609445], + [9.037318, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.613941], + [9.037318, 45.618438], + [9.041815, 45.618438], + [9.041815, 45.613941], + [9.037318, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.618438], + [9.037318, 45.622934], + [9.041815, 45.622934], + [9.041815, 45.618438], + [9.037318, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.622934], + [9.037318, 45.627431], + [9.041815, 45.627431], + [9.041815, 45.622934], + [9.037318, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.627431], + [9.037318, 45.631928], + [9.041815, 45.631928], + [9.041815, 45.627431], + [9.037318, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.037318, 45.631928], + [9.037318, 45.636424], + [9.041815, 45.636424], + [9.041815, 45.631928], + [9.037318, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.339648], + [9.041815, 45.344145], + [9.046312, 45.344145], + [9.046312, 45.339648], + [9.041815, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.344145], + [9.041815, 45.348642], + [9.046312, 45.348642], + [9.046312, 45.344145], + [9.041815, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.348642], + [9.041815, 45.353138], + [9.046312, 45.353138], + [9.046312, 45.348642], + [9.041815, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.353138], + [9.041815, 45.357635], + [9.046312, 45.357635], + [9.046312, 45.353138], + [9.041815, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.357635], + [9.041815, 45.362131], + [9.046312, 45.362131], + [9.046312, 45.357635], + [9.041815, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.362131], + [9.041815, 45.366628], + [9.046312, 45.366628], + [9.046312, 45.362131], + [9.041815, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.366628], + [9.041815, 45.371125], + [9.046312, 45.371125], + [9.046312, 45.366628], + [9.041815, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.371125], + [9.041815, 45.375621], + [9.046312, 45.375621], + [9.046312, 45.371125], + [9.041815, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.375621], + [9.041815, 45.380118], + [9.046312, 45.380118], + [9.046312, 45.375621], + [9.041815, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.380118], + [9.041815, 45.384614], + [9.046312, 45.384614], + [9.046312, 45.380118], + [9.041815, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.384614], + [9.041815, 45.389111], + [9.046312, 45.389111], + [9.046312, 45.384614], + [9.041815, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.389111], + [9.041815, 45.393608], + [9.046312, 45.393608], + [9.046312, 45.389111], + [9.041815, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.393608], + [9.041815, 45.398104], + [9.046312, 45.398104], + [9.046312, 45.393608], + [9.041815, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.398104], + [9.041815, 45.402601], + [9.046312, 45.402601], + [9.046312, 45.398104], + [9.041815, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.402601], + [9.041815, 45.407097], + [9.046312, 45.407097], + [9.046312, 45.402601], + [9.041815, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.407097], + [9.041815, 45.411594], + [9.046312, 45.411594], + [9.046312, 45.407097], + [9.041815, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.411594], + [9.041815, 45.416091], + [9.046312, 45.416091], + [9.046312, 45.411594], + [9.041815, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.416091], + [9.041815, 45.420587], + [9.046312, 45.420587], + [9.046312, 45.416091], + [9.041815, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.420587], + [9.041815, 45.425084], + [9.046312, 45.425084], + [9.046312, 45.420587], + [9.041815, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.425084], + [9.041815, 45.42958], + [9.046312, 45.42958], + [9.046312, 45.425084], + [9.041815, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.42958], + [9.041815, 45.434077], + [9.046312, 45.434077], + [9.046312, 45.42958], + [9.041815, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.434077], + [9.041815, 45.438574], + [9.046312, 45.438574], + [9.046312, 45.434077], + [9.041815, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.438574], + [9.041815, 45.44307], + [9.046312, 45.44307], + [9.046312, 45.438574], + [9.041815, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.44307], + [9.041815, 45.447567], + [9.046312, 45.447567], + [9.046312, 45.44307], + [9.041815, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.447567], + [9.041815, 45.452063], + [9.046312, 45.452063], + [9.046312, 45.447567], + [9.041815, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.452063], + [9.041815, 45.45656], + [9.046312, 45.45656], + [9.046312, 45.452063], + [9.041815, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.45656], + [9.041815, 45.461057], + [9.046312, 45.461057], + [9.046312, 45.45656], + [9.041815, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.461057], + [9.041815, 45.465553], + [9.046312, 45.465553], + [9.046312, 45.461057], + [9.041815, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.465553], + [9.041815, 45.47005], + [9.046312, 45.47005], + [9.046312, 45.465553], + [9.041815, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.47005], + [9.041815, 45.474547], + [9.046312, 45.474547], + [9.046312, 45.47005], + [9.041815, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.474547], + [9.041815, 45.479043], + [9.046312, 45.479043], + [9.046312, 45.474547], + [9.041815, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.479043], + [9.041815, 45.48354], + [9.046312, 45.48354], + [9.046312, 45.479043], + [9.041815, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.48354], + [9.041815, 45.488036], + [9.046312, 45.488036], + [9.046312, 45.48354], + [9.041815, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.488036], + [9.041815, 45.492533], + [9.046312, 45.492533], + [9.046312, 45.488036], + [9.041815, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.492533], + [9.041815, 45.49703], + [9.046312, 45.49703], + [9.046312, 45.492533], + [9.041815, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.49703], + [9.041815, 45.501526], + [9.046312, 45.501526], + [9.046312, 45.49703], + [9.041815, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.501526], + [9.041815, 45.506023], + [9.046312, 45.506023], + [9.046312, 45.501526], + [9.041815, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.506023], + [9.041815, 45.510519], + [9.046312, 45.510519], + [9.046312, 45.506023], + [9.041815, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.510519], + [9.041815, 45.515016], + [9.046312, 45.515016], + [9.046312, 45.510519], + [9.041815, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.515016], + [9.041815, 45.519513], + [9.046312, 45.519513], + [9.046312, 45.515016], + [9.041815, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.519513], + [9.041815, 45.524009], + [9.046312, 45.524009], + [9.046312, 45.519513], + [9.041815, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.524009], + [9.041815, 45.528506], + [9.046312, 45.528506], + [9.046312, 45.524009], + [9.041815, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.528506], + [9.041815, 45.533002], + [9.046312, 45.533002], + [9.046312, 45.528506], + [9.041815, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.533002], + [9.041815, 45.537499], + [9.046312, 45.537499], + [9.046312, 45.533002], + [9.041815, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.537499], + [9.041815, 45.541996], + [9.046312, 45.541996], + [9.046312, 45.537499], + [9.041815, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.541996], + [9.041815, 45.546492], + [9.046312, 45.546492], + [9.046312, 45.541996], + [9.041815, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.546492], + [9.041815, 45.550989], + [9.046312, 45.550989], + [9.046312, 45.546492], + [9.041815, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.550989], + [9.041815, 45.555485], + [9.046312, 45.555485], + [9.046312, 45.550989], + [9.041815, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.555485], + [9.041815, 45.559982], + [9.046312, 45.559982], + [9.046312, 45.555485], + [9.041815, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.559982], + [9.041815, 45.564479], + [9.046312, 45.564479], + [9.046312, 45.559982], + [9.041815, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.564479], + [9.041815, 45.568975], + [9.046312, 45.568975], + [9.046312, 45.564479], + [9.041815, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.568975], + [9.041815, 45.573472], + [9.046312, 45.573472], + [9.046312, 45.568975], + [9.041815, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.573472], + [9.041815, 45.577968], + [9.046312, 45.577968], + [9.046312, 45.573472], + [9.041815, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.577968], + [9.041815, 45.582465], + [9.046312, 45.582465], + [9.046312, 45.577968], + [9.041815, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.582465], + [9.041815, 45.586962], + [9.046312, 45.586962], + [9.046312, 45.582465], + [9.041815, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.586962], + [9.041815, 45.591458], + [9.046312, 45.591458], + [9.046312, 45.586962], + [9.041815, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.591458], + [9.041815, 45.595955], + [9.046312, 45.595955], + [9.046312, 45.591458], + [9.041815, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.595955], + [9.041815, 45.600451], + [9.046312, 45.600451], + [9.046312, 45.595955], + [9.041815, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.600451], + [9.041815, 45.604948], + [9.046312, 45.604948], + [9.046312, 45.600451], + [9.041815, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.604948], + [9.041815, 45.609445], + [9.046312, 45.609445], + [9.046312, 45.604948], + [9.041815, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.609445], + [9.041815, 45.613941], + [9.046312, 45.613941], + [9.046312, 45.609445], + [9.041815, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.613941], + [9.041815, 45.618438], + [9.046312, 45.618438], + [9.046312, 45.613941], + [9.041815, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.618438], + [9.041815, 45.622934], + [9.046312, 45.622934], + [9.046312, 45.618438], + [9.041815, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.622934], + [9.041815, 45.627431], + [9.046312, 45.627431], + [9.046312, 45.622934], + [9.041815, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.627431], + [9.041815, 45.631928], + [9.046312, 45.631928], + [9.046312, 45.627431], + [9.041815, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.041815, 45.631928], + [9.041815, 45.636424], + [9.046312, 45.636424], + [9.046312, 45.631928], + [9.041815, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.339648], + [9.046312, 45.344145], + [9.050808, 45.344145], + [9.050808, 45.339648], + [9.046312, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.344145], + [9.046312, 45.348642], + [9.050808, 45.348642], + [9.050808, 45.344145], + [9.046312, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.348642], + [9.046312, 45.353138], + [9.050808, 45.353138], + [9.050808, 45.348642], + [9.046312, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.353138], + [9.046312, 45.357635], + [9.050808, 45.357635], + [9.050808, 45.353138], + [9.046312, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.357635], + [9.046312, 45.362131], + [9.050808, 45.362131], + [9.050808, 45.357635], + [9.046312, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.362131], + [9.046312, 45.366628], + [9.050808, 45.366628], + [9.050808, 45.362131], + [9.046312, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.366628], + [9.046312, 45.371125], + [9.050808, 45.371125], + [9.050808, 45.366628], + [9.046312, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.371125], + [9.046312, 45.375621], + [9.050808, 45.375621], + [9.050808, 45.371125], + [9.046312, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.375621], + [9.046312, 45.380118], + [9.050808, 45.380118], + [9.050808, 45.375621], + [9.046312, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.380118], + [9.046312, 45.384614], + [9.050808, 45.384614], + [9.050808, 45.380118], + [9.046312, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.384614], + [9.046312, 45.389111], + [9.050808, 45.389111], + [9.050808, 45.384614], + [9.046312, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.389111], + [9.046312, 45.393608], + [9.050808, 45.393608], + [9.050808, 45.389111], + [9.046312, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.393608], + [9.046312, 45.398104], + [9.050808, 45.398104], + [9.050808, 45.393608], + [9.046312, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.398104], + [9.046312, 45.402601], + [9.050808, 45.402601], + [9.050808, 45.398104], + [9.046312, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.402601], + [9.046312, 45.407097], + [9.050808, 45.407097], + [9.050808, 45.402601], + [9.046312, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.407097], + [9.046312, 45.411594], + [9.050808, 45.411594], + [9.050808, 45.407097], + [9.046312, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.411594], + [9.046312, 45.416091], + [9.050808, 45.416091], + [9.050808, 45.411594], + [9.046312, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.416091], + [9.046312, 45.420587], + [9.050808, 45.420587], + [9.050808, 45.416091], + [9.046312, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.420587], + [9.046312, 45.425084], + [9.050808, 45.425084], + [9.050808, 45.420587], + [9.046312, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.425084], + [9.046312, 45.42958], + [9.050808, 45.42958], + [9.050808, 45.425084], + [9.046312, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.42958], + [9.046312, 45.434077], + [9.050808, 45.434077], + [9.050808, 45.42958], + [9.046312, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.434077], + [9.046312, 45.438574], + [9.050808, 45.438574], + [9.050808, 45.434077], + [9.046312, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.438574], + [9.046312, 45.44307], + [9.050808, 45.44307], + [9.050808, 45.438574], + [9.046312, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.44307], + [9.046312, 45.447567], + [9.050808, 45.447567], + [9.050808, 45.44307], + [9.046312, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.447567], + [9.046312, 45.452063], + [9.050808, 45.452063], + [9.050808, 45.447567], + [9.046312, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.452063], + [9.046312, 45.45656], + [9.050808, 45.45656], + [9.050808, 45.452063], + [9.046312, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.45656], + [9.046312, 45.461057], + [9.050808, 45.461057], + [9.050808, 45.45656], + [9.046312, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.461057], + [9.046312, 45.465553], + [9.050808, 45.465553], + [9.050808, 45.461057], + [9.046312, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.465553], + [9.046312, 45.47005], + [9.050808, 45.47005], + [9.050808, 45.465553], + [9.046312, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.47005], + [9.046312, 45.474547], + [9.050808, 45.474547], + [9.050808, 45.47005], + [9.046312, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.474547], + [9.046312, 45.479043], + [9.050808, 45.479043], + [9.050808, 45.474547], + [9.046312, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.479043], + [9.046312, 45.48354], + [9.050808, 45.48354], + [9.050808, 45.479043], + [9.046312, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.48354], + [9.046312, 45.488036], + [9.050808, 45.488036], + [9.050808, 45.48354], + [9.046312, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.488036], + [9.046312, 45.492533], + [9.050808, 45.492533], + [9.050808, 45.488036], + [9.046312, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.492533], + [9.046312, 45.49703], + [9.050808, 45.49703], + [9.050808, 45.492533], + [9.046312, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.49703], + [9.046312, 45.501526], + [9.050808, 45.501526], + [9.050808, 45.49703], + [9.046312, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.501526], + [9.046312, 45.506023], + [9.050808, 45.506023], + [9.050808, 45.501526], + [9.046312, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.506023], + [9.046312, 45.510519], + [9.050808, 45.510519], + [9.050808, 45.506023], + [9.046312, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.510519], + [9.046312, 45.515016], + [9.050808, 45.515016], + [9.050808, 45.510519], + [9.046312, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.515016], + [9.046312, 45.519513], + [9.050808, 45.519513], + [9.050808, 45.515016], + [9.046312, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.519513], + [9.046312, 45.524009], + [9.050808, 45.524009], + [9.050808, 45.519513], + [9.046312, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.524009], + [9.046312, 45.528506], + [9.050808, 45.528506], + [9.050808, 45.524009], + [9.046312, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.528506], + [9.046312, 45.533002], + [9.050808, 45.533002], + [9.050808, 45.528506], + [9.046312, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.533002], + [9.046312, 45.537499], + [9.050808, 45.537499], + [9.050808, 45.533002], + [9.046312, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.537499], + [9.046312, 45.541996], + [9.050808, 45.541996], + [9.050808, 45.537499], + [9.046312, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.541996], + [9.046312, 45.546492], + [9.050808, 45.546492], + [9.050808, 45.541996], + [9.046312, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.546492], + [9.046312, 45.550989], + [9.050808, 45.550989], + [9.050808, 45.546492], + [9.046312, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.550989], + [9.046312, 45.555485], + [9.050808, 45.555485], + [9.050808, 45.550989], + [9.046312, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.555485], + [9.046312, 45.559982], + [9.050808, 45.559982], + [9.050808, 45.555485], + [9.046312, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.559982], + [9.046312, 45.564479], + [9.050808, 45.564479], + [9.050808, 45.559982], + [9.046312, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.564479], + [9.046312, 45.568975], + [9.050808, 45.568975], + [9.050808, 45.564479], + [9.046312, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.568975], + [9.046312, 45.573472], + [9.050808, 45.573472], + [9.050808, 45.568975], + [9.046312, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.573472], + [9.046312, 45.577968], + [9.050808, 45.577968], + [9.050808, 45.573472], + [9.046312, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.577968], + [9.046312, 45.582465], + [9.050808, 45.582465], + [9.050808, 45.577968], + [9.046312, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.582465], + [9.046312, 45.586962], + [9.050808, 45.586962], + [9.050808, 45.582465], + [9.046312, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.586962], + [9.046312, 45.591458], + [9.050808, 45.591458], + [9.050808, 45.586962], + [9.046312, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.591458], + [9.046312, 45.595955], + [9.050808, 45.595955], + [9.050808, 45.591458], + [9.046312, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.595955], + [9.046312, 45.600451], + [9.050808, 45.600451], + [9.050808, 45.595955], + [9.046312, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.600451], + [9.046312, 45.604948], + [9.050808, 45.604948], + [9.050808, 45.600451], + [9.046312, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.604948], + [9.046312, 45.609445], + [9.050808, 45.609445], + [9.050808, 45.604948], + [9.046312, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.609445], + [9.046312, 45.613941], + [9.050808, 45.613941], + [9.050808, 45.609445], + [9.046312, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.613941], + [9.046312, 45.618438], + [9.050808, 45.618438], + [9.050808, 45.613941], + [9.046312, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.618438], + [9.046312, 45.622934], + [9.050808, 45.622934], + [9.050808, 45.618438], + [9.046312, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.622934], + [9.046312, 45.627431], + [9.050808, 45.627431], + [9.050808, 45.622934], + [9.046312, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.627431], + [9.046312, 45.631928], + [9.050808, 45.631928], + [9.050808, 45.627431], + [9.046312, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.046312, 45.631928], + [9.046312, 45.636424], + [9.050808, 45.636424], + [9.050808, 45.631928], + [9.046312, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.339648], + [9.050808, 45.344145], + [9.055305, 45.344145], + [9.055305, 45.339648], + [9.050808, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.344145], + [9.050808, 45.348642], + [9.055305, 45.348642], + [9.055305, 45.344145], + [9.050808, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.348642], + [9.050808, 45.353138], + [9.055305, 45.353138], + [9.055305, 45.348642], + [9.050808, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.353138], + [9.050808, 45.357635], + [9.055305, 45.357635], + [9.055305, 45.353138], + [9.050808, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.357635], + [9.050808, 45.362131], + [9.055305, 45.362131], + [9.055305, 45.357635], + [9.050808, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.362131], + [9.050808, 45.366628], + [9.055305, 45.366628], + [9.055305, 45.362131], + [9.050808, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.366628], + [9.050808, 45.371125], + [9.055305, 45.371125], + [9.055305, 45.366628], + [9.050808, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.371125], + [9.050808, 45.375621], + [9.055305, 45.375621], + [9.055305, 45.371125], + [9.050808, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.375621], + [9.050808, 45.380118], + [9.055305, 45.380118], + [9.055305, 45.375621], + [9.050808, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.380118], + [9.050808, 45.384614], + [9.055305, 45.384614], + [9.055305, 45.380118], + [9.050808, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.384614], + [9.050808, 45.389111], + [9.055305, 45.389111], + [9.055305, 45.384614], + [9.050808, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.389111], + [9.050808, 45.393608], + [9.055305, 45.393608], + [9.055305, 45.389111], + [9.050808, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.393608], + [9.050808, 45.398104], + [9.055305, 45.398104], + [9.055305, 45.393608], + [9.050808, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.398104], + [9.050808, 45.402601], + [9.055305, 45.402601], + [9.055305, 45.398104], + [9.050808, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.402601], + [9.050808, 45.407097], + [9.055305, 45.407097], + [9.055305, 45.402601], + [9.050808, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.407097], + [9.050808, 45.411594], + [9.055305, 45.411594], + [9.055305, 45.407097], + [9.050808, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.411594], + [9.050808, 45.416091], + [9.055305, 45.416091], + [9.055305, 45.411594], + [9.050808, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.416091], + [9.050808, 45.420587], + [9.055305, 45.420587], + [9.055305, 45.416091], + [9.050808, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.420587], + [9.050808, 45.425084], + [9.055305, 45.425084], + [9.055305, 45.420587], + [9.050808, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.425084], + [9.050808, 45.42958], + [9.055305, 45.42958], + [9.055305, 45.425084], + [9.050808, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.42958], + [9.050808, 45.434077], + [9.055305, 45.434077], + [9.055305, 45.42958], + [9.050808, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.434077], + [9.050808, 45.438574], + [9.055305, 45.438574], + [9.055305, 45.434077], + [9.050808, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.438574], + [9.050808, 45.44307], + [9.055305, 45.44307], + [9.055305, 45.438574], + [9.050808, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.44307], + [9.050808, 45.447567], + [9.055305, 45.447567], + [9.055305, 45.44307], + [9.050808, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.447567], + [9.050808, 45.452063], + [9.055305, 45.452063], + [9.055305, 45.447567], + [9.050808, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.452063], + [9.050808, 45.45656], + [9.055305, 45.45656], + [9.055305, 45.452063], + [9.050808, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.45656], + [9.050808, 45.461057], + [9.055305, 45.461057], + [9.055305, 45.45656], + [9.050808, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.461057], + [9.050808, 45.465553], + [9.055305, 45.465553], + [9.055305, 45.461057], + [9.050808, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.465553], + [9.050808, 45.47005], + [9.055305, 45.47005], + [9.055305, 45.465553], + [9.050808, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.47005], + [9.050808, 45.474547], + [9.055305, 45.474547], + [9.055305, 45.47005], + [9.050808, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.474547], + [9.050808, 45.479043], + [9.055305, 45.479043], + [9.055305, 45.474547], + [9.050808, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.479043], + [9.050808, 45.48354], + [9.055305, 45.48354], + [9.055305, 45.479043], + [9.050808, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.48354], + [9.050808, 45.488036], + [9.055305, 45.488036], + [9.055305, 45.48354], + [9.050808, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.488036], + [9.050808, 45.492533], + [9.055305, 45.492533], + [9.055305, 45.488036], + [9.050808, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.492533], + [9.050808, 45.49703], + [9.055305, 45.49703], + [9.055305, 45.492533], + [9.050808, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.49703], + [9.050808, 45.501526], + [9.055305, 45.501526], + [9.055305, 45.49703], + [9.050808, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.501526], + [9.050808, 45.506023], + [9.055305, 45.506023], + [9.055305, 45.501526], + [9.050808, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.506023], + [9.050808, 45.510519], + [9.055305, 45.510519], + [9.055305, 45.506023], + [9.050808, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.510519], + [9.050808, 45.515016], + [9.055305, 45.515016], + [9.055305, 45.510519], + [9.050808, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.515016], + [9.050808, 45.519513], + [9.055305, 45.519513], + [9.055305, 45.515016], + [9.050808, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.519513], + [9.050808, 45.524009], + [9.055305, 45.524009], + [9.055305, 45.519513], + [9.050808, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.524009], + [9.050808, 45.528506], + [9.055305, 45.528506], + [9.055305, 45.524009], + [9.050808, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.528506], + [9.050808, 45.533002], + [9.055305, 45.533002], + [9.055305, 45.528506], + [9.050808, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.533002], + [9.050808, 45.537499], + [9.055305, 45.537499], + [9.055305, 45.533002], + [9.050808, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.537499], + [9.050808, 45.541996], + [9.055305, 45.541996], + [9.055305, 45.537499], + [9.050808, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.541996], + [9.050808, 45.546492], + [9.055305, 45.546492], + [9.055305, 45.541996], + [9.050808, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.546492], + [9.050808, 45.550989], + [9.055305, 45.550989], + [9.055305, 45.546492], + [9.050808, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.550989], + [9.050808, 45.555485], + [9.055305, 45.555485], + [9.055305, 45.550989], + [9.050808, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.555485], + [9.050808, 45.559982], + [9.055305, 45.559982], + [9.055305, 45.555485], + [9.050808, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.559982], + [9.050808, 45.564479], + [9.055305, 45.564479], + [9.055305, 45.559982], + [9.050808, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.564479], + [9.050808, 45.568975], + [9.055305, 45.568975], + [9.055305, 45.564479], + [9.050808, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.568975], + [9.050808, 45.573472], + [9.055305, 45.573472], + [9.055305, 45.568975], + [9.050808, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.573472], + [9.050808, 45.577968], + [9.055305, 45.577968], + [9.055305, 45.573472], + [9.050808, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.577968], + [9.050808, 45.582465], + [9.055305, 45.582465], + [9.055305, 45.577968], + [9.050808, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.582465], + [9.050808, 45.586962], + [9.055305, 45.586962], + [9.055305, 45.582465], + [9.050808, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.586962], + [9.050808, 45.591458], + [9.055305, 45.591458], + [9.055305, 45.586962], + [9.050808, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.591458], + [9.050808, 45.595955], + [9.055305, 45.595955], + [9.055305, 45.591458], + [9.050808, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.595955], + [9.050808, 45.600451], + [9.055305, 45.600451], + [9.055305, 45.595955], + [9.050808, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.600451], + [9.050808, 45.604948], + [9.055305, 45.604948], + [9.055305, 45.600451], + [9.050808, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.604948], + [9.050808, 45.609445], + [9.055305, 45.609445], + [9.055305, 45.604948], + [9.050808, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.609445], + [9.050808, 45.613941], + [9.055305, 45.613941], + [9.055305, 45.609445], + [9.050808, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.613941], + [9.050808, 45.618438], + [9.055305, 45.618438], + [9.055305, 45.613941], + [9.050808, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.618438], + [9.050808, 45.622934], + [9.055305, 45.622934], + [9.055305, 45.618438], + [9.050808, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.622934], + [9.050808, 45.627431], + [9.055305, 45.627431], + [9.055305, 45.622934], + [9.050808, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.627431], + [9.050808, 45.631928], + [9.055305, 45.631928], + [9.055305, 45.627431], + [9.050808, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.050808, 45.631928], + [9.050808, 45.636424], + [9.055305, 45.636424], + [9.055305, 45.631928], + [9.050808, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.339648], + [9.055305, 45.344145], + [9.059801, 45.344145], + [9.059801, 45.339648], + [9.055305, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.344145], + [9.055305, 45.348642], + [9.059801, 45.348642], + [9.059801, 45.344145], + [9.055305, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.348642], + [9.055305, 45.353138], + [9.059801, 45.353138], + [9.059801, 45.348642], + [9.055305, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.353138], + [9.055305, 45.357635], + [9.059801, 45.357635], + [9.059801, 45.353138], + [9.055305, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.357635], + [9.055305, 45.362131], + [9.059801, 45.362131], + [9.059801, 45.357635], + [9.055305, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.362131], + [9.055305, 45.366628], + [9.059801, 45.366628], + [9.059801, 45.362131], + [9.055305, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.366628], + [9.055305, 45.371125], + [9.059801, 45.371125], + [9.059801, 45.366628], + [9.055305, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.371125], + [9.055305, 45.375621], + [9.059801, 45.375621], + [9.059801, 45.371125], + [9.055305, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.375621], + [9.055305, 45.380118], + [9.059801, 45.380118], + [9.059801, 45.375621], + [9.055305, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.380118], + [9.055305, 45.384614], + [9.059801, 45.384614], + [9.059801, 45.380118], + [9.055305, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.384614], + [9.055305, 45.389111], + [9.059801, 45.389111], + [9.059801, 45.384614], + [9.055305, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.389111], + [9.055305, 45.393608], + [9.059801, 45.393608], + [9.059801, 45.389111], + [9.055305, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.393608], + [9.055305, 45.398104], + [9.059801, 45.398104], + [9.059801, 45.393608], + [9.055305, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.398104], + [9.055305, 45.402601], + [9.059801, 45.402601], + [9.059801, 45.398104], + [9.055305, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.402601], + [9.055305, 45.407097], + [9.059801, 45.407097], + [9.059801, 45.402601], + [9.055305, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.407097], + [9.055305, 45.411594], + [9.059801, 45.411594], + [9.059801, 45.407097], + [9.055305, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.411594], + [9.055305, 45.416091], + [9.059801, 45.416091], + [9.059801, 45.411594], + [9.055305, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.416091], + [9.055305, 45.420587], + [9.059801, 45.420587], + [9.059801, 45.416091], + [9.055305, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.420587], + [9.055305, 45.425084], + [9.059801, 45.425084], + [9.059801, 45.420587], + [9.055305, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.425084], + [9.055305, 45.42958], + [9.059801, 45.42958], + [9.059801, 45.425084], + [9.055305, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.42958], + [9.055305, 45.434077], + [9.059801, 45.434077], + [9.059801, 45.42958], + [9.055305, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.434077], + [9.055305, 45.438574], + [9.059801, 45.438574], + [9.059801, 45.434077], + [9.055305, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.438574], + [9.055305, 45.44307], + [9.059801, 45.44307], + [9.059801, 45.438574], + [9.055305, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.44307], + [9.055305, 45.447567], + [9.059801, 45.447567], + [9.059801, 45.44307], + [9.055305, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.447567], + [9.055305, 45.452063], + [9.059801, 45.452063], + [9.059801, 45.447567], + [9.055305, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.452063], + [9.055305, 45.45656], + [9.059801, 45.45656], + [9.059801, 45.452063], + [9.055305, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.45656], + [9.055305, 45.461057], + [9.059801, 45.461057], + [9.059801, 45.45656], + [9.055305, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.461057], + [9.055305, 45.465553], + [9.059801, 45.465553], + [9.059801, 45.461057], + [9.055305, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.465553], + [9.055305, 45.47005], + [9.059801, 45.47005], + [9.059801, 45.465553], + [9.055305, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.47005], + [9.055305, 45.474547], + [9.059801, 45.474547], + [9.059801, 45.47005], + [9.055305, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.474547], + [9.055305, 45.479043], + [9.059801, 45.479043], + [9.059801, 45.474547], + [9.055305, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.479043], + [9.055305, 45.48354], + [9.059801, 45.48354], + [9.059801, 45.479043], + [9.055305, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.48354], + [9.055305, 45.488036], + [9.059801, 45.488036], + [9.059801, 45.48354], + [9.055305, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.488036], + [9.055305, 45.492533], + [9.059801, 45.492533], + [9.059801, 45.488036], + [9.055305, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.492533], + [9.055305, 45.49703], + [9.059801, 45.49703], + [9.059801, 45.492533], + [9.055305, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.49703], + [9.055305, 45.501526], + [9.059801, 45.501526], + [9.059801, 45.49703], + [9.055305, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.501526], + [9.055305, 45.506023], + [9.059801, 45.506023], + [9.059801, 45.501526], + [9.055305, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.506023], + [9.055305, 45.510519], + [9.059801, 45.510519], + [9.059801, 45.506023], + [9.055305, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.510519], + [9.055305, 45.515016], + [9.059801, 45.515016], + [9.059801, 45.510519], + [9.055305, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.515016], + [9.055305, 45.519513], + [9.059801, 45.519513], + [9.059801, 45.515016], + [9.055305, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.519513], + [9.055305, 45.524009], + [9.059801, 45.524009], + [9.059801, 45.519513], + [9.055305, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.524009], + [9.055305, 45.528506], + [9.059801, 45.528506], + [9.059801, 45.524009], + [9.055305, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.528506], + [9.055305, 45.533002], + [9.059801, 45.533002], + [9.059801, 45.528506], + [9.055305, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.533002], + [9.055305, 45.537499], + [9.059801, 45.537499], + [9.059801, 45.533002], + [9.055305, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.537499], + [9.055305, 45.541996], + [9.059801, 45.541996], + [9.059801, 45.537499], + [9.055305, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.541996], + [9.055305, 45.546492], + [9.059801, 45.546492], + [9.059801, 45.541996], + [9.055305, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.546492], + [9.055305, 45.550989], + [9.059801, 45.550989], + [9.059801, 45.546492], + [9.055305, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.550989], + [9.055305, 45.555485], + [9.059801, 45.555485], + [9.059801, 45.550989], + [9.055305, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.555485], + [9.055305, 45.559982], + [9.059801, 45.559982], + [9.059801, 45.555485], + [9.055305, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.559982], + [9.055305, 45.564479], + [9.059801, 45.564479], + [9.059801, 45.559982], + [9.055305, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.564479], + [9.055305, 45.568975], + [9.059801, 45.568975], + [9.059801, 45.564479], + [9.055305, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.568975], + [9.055305, 45.573472], + [9.059801, 45.573472], + [9.059801, 45.568975], + [9.055305, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.573472], + [9.055305, 45.577968], + [9.059801, 45.577968], + [9.059801, 45.573472], + [9.055305, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.577968], + [9.055305, 45.582465], + [9.059801, 45.582465], + [9.059801, 45.577968], + [9.055305, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.582465], + [9.055305, 45.586962], + [9.059801, 45.586962], + [9.059801, 45.582465], + [9.055305, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.586962], + [9.055305, 45.591458], + [9.059801, 45.591458], + [9.059801, 45.586962], + [9.055305, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.591458], + [9.055305, 45.595955], + [9.059801, 45.595955], + [9.059801, 45.591458], + [9.055305, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.595955], + [9.055305, 45.600451], + [9.059801, 45.600451], + [9.059801, 45.595955], + [9.055305, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.600451], + [9.055305, 45.604948], + [9.059801, 45.604948], + [9.059801, 45.600451], + [9.055305, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.604948], + [9.055305, 45.609445], + [9.059801, 45.609445], + [9.059801, 45.604948], + [9.055305, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.609445], + [9.055305, 45.613941], + [9.059801, 45.613941], + [9.059801, 45.609445], + [9.055305, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.613941], + [9.055305, 45.618438], + [9.059801, 45.618438], + [9.059801, 45.613941], + [9.055305, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.618438], + [9.055305, 45.622934], + [9.059801, 45.622934], + [9.059801, 45.618438], + [9.055305, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.622934], + [9.055305, 45.627431], + [9.059801, 45.627431], + [9.059801, 45.622934], + [9.055305, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.627431], + [9.055305, 45.631928], + [9.059801, 45.631928], + [9.059801, 45.627431], + [9.055305, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.055305, 45.631928], + [9.055305, 45.636424], + [9.059801, 45.636424], + [9.059801, 45.631928], + [9.055305, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.339648], + [9.059801, 45.344145], + [9.064298, 45.344145], + [9.064298, 45.339648], + [9.059801, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.344145], + [9.059801, 45.348642], + [9.064298, 45.348642], + [9.064298, 45.344145], + [9.059801, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.348642], + [9.059801, 45.353138], + [9.064298, 45.353138], + [9.064298, 45.348642], + [9.059801, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.353138], + [9.059801, 45.357635], + [9.064298, 45.357635], + [9.064298, 45.353138], + [9.059801, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.357635], + [9.059801, 45.362131], + [9.064298, 45.362131], + [9.064298, 45.357635], + [9.059801, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.362131], + [9.059801, 45.366628], + [9.064298, 45.366628], + [9.064298, 45.362131], + [9.059801, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.366628], + [9.059801, 45.371125], + [9.064298, 45.371125], + [9.064298, 45.366628], + [9.059801, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.371125], + [9.059801, 45.375621], + [9.064298, 45.375621], + [9.064298, 45.371125], + [9.059801, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.375621], + [9.059801, 45.380118], + [9.064298, 45.380118], + [9.064298, 45.375621], + [9.059801, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.380118], + [9.059801, 45.384614], + [9.064298, 45.384614], + [9.064298, 45.380118], + [9.059801, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.384614], + [9.059801, 45.389111], + [9.064298, 45.389111], + [9.064298, 45.384614], + [9.059801, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.389111], + [9.059801, 45.393608], + [9.064298, 45.393608], + [9.064298, 45.389111], + [9.059801, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.393608], + [9.059801, 45.398104], + [9.064298, 45.398104], + [9.064298, 45.393608], + [9.059801, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.398104], + [9.059801, 45.402601], + [9.064298, 45.402601], + [9.064298, 45.398104], + [9.059801, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.402601], + [9.059801, 45.407097], + [9.064298, 45.407097], + [9.064298, 45.402601], + [9.059801, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.407097], + [9.059801, 45.411594], + [9.064298, 45.411594], + [9.064298, 45.407097], + [9.059801, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.411594], + [9.059801, 45.416091], + [9.064298, 45.416091], + [9.064298, 45.411594], + [9.059801, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.416091], + [9.059801, 45.420587], + [9.064298, 45.420587], + [9.064298, 45.416091], + [9.059801, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.420587], + [9.059801, 45.425084], + [9.064298, 45.425084], + [9.064298, 45.420587], + [9.059801, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.425084], + [9.059801, 45.42958], + [9.064298, 45.42958], + [9.064298, 45.425084], + [9.059801, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.42958], + [9.059801, 45.434077], + [9.064298, 45.434077], + [9.064298, 45.42958], + [9.059801, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.434077], + [9.059801, 45.438574], + [9.064298, 45.438574], + [9.064298, 45.434077], + [9.059801, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.438574], + [9.059801, 45.44307], + [9.064298, 45.44307], + [9.064298, 45.438574], + [9.059801, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.44307], + [9.059801, 45.447567], + [9.064298, 45.447567], + [9.064298, 45.44307], + [9.059801, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.447567], + [9.059801, 45.452063], + [9.064298, 45.452063], + [9.064298, 45.447567], + [9.059801, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.452063], + [9.059801, 45.45656], + [9.064298, 45.45656], + [9.064298, 45.452063], + [9.059801, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.45656], + [9.059801, 45.461057], + [9.064298, 45.461057], + [9.064298, 45.45656], + [9.059801, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.461057], + [9.059801, 45.465553], + [9.064298, 45.465553], + [9.064298, 45.461057], + [9.059801, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.465553], + [9.059801, 45.47005], + [9.064298, 45.47005], + [9.064298, 45.465553], + [9.059801, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.47005], + [9.059801, 45.474547], + [9.064298, 45.474547], + [9.064298, 45.47005], + [9.059801, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.474547], + [9.059801, 45.479043], + [9.064298, 45.479043], + [9.064298, 45.474547], + [9.059801, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.479043], + [9.059801, 45.48354], + [9.064298, 45.48354], + [9.064298, 45.479043], + [9.059801, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.48354], + [9.059801, 45.488036], + [9.064298, 45.488036], + [9.064298, 45.48354], + [9.059801, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.488036], + [9.059801, 45.492533], + [9.064298, 45.492533], + [9.064298, 45.488036], + [9.059801, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.492533], + [9.059801, 45.49703], + [9.064298, 45.49703], + [9.064298, 45.492533], + [9.059801, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.49703], + [9.059801, 45.501526], + [9.064298, 45.501526], + [9.064298, 45.49703], + [9.059801, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.501526], + [9.059801, 45.506023], + [9.064298, 45.506023], + [9.064298, 45.501526], + [9.059801, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.506023], + [9.059801, 45.510519], + [9.064298, 45.510519], + [9.064298, 45.506023], + [9.059801, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.510519], + [9.059801, 45.515016], + [9.064298, 45.515016], + [9.064298, 45.510519], + [9.059801, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.515016], + [9.059801, 45.519513], + [9.064298, 45.519513], + [9.064298, 45.515016], + [9.059801, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.519513], + [9.059801, 45.524009], + [9.064298, 45.524009], + [9.064298, 45.519513], + [9.059801, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.524009], + [9.059801, 45.528506], + [9.064298, 45.528506], + [9.064298, 45.524009], + [9.059801, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.528506], + [9.059801, 45.533002], + [9.064298, 45.533002], + [9.064298, 45.528506], + [9.059801, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.533002], + [9.059801, 45.537499], + [9.064298, 45.537499], + [9.064298, 45.533002], + [9.059801, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.537499], + [9.059801, 45.541996], + [9.064298, 45.541996], + [9.064298, 45.537499], + [9.059801, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.541996], + [9.059801, 45.546492], + [9.064298, 45.546492], + [9.064298, 45.541996], + [9.059801, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.546492], + [9.059801, 45.550989], + [9.064298, 45.550989], + [9.064298, 45.546492], + [9.059801, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.550989], + [9.059801, 45.555485], + [9.064298, 45.555485], + [9.064298, 45.550989], + [9.059801, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.555485], + [9.059801, 45.559982], + [9.064298, 45.559982], + [9.064298, 45.555485], + [9.059801, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.559982], + [9.059801, 45.564479], + [9.064298, 45.564479], + [9.064298, 45.559982], + [9.059801, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.564479], + [9.059801, 45.568975], + [9.064298, 45.568975], + [9.064298, 45.564479], + [9.059801, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.568975], + [9.059801, 45.573472], + [9.064298, 45.573472], + [9.064298, 45.568975], + [9.059801, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.573472], + [9.059801, 45.577968], + [9.064298, 45.577968], + [9.064298, 45.573472], + [9.059801, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.577968], + [9.059801, 45.582465], + [9.064298, 45.582465], + [9.064298, 45.577968], + [9.059801, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.582465], + [9.059801, 45.586962], + [9.064298, 45.586962], + [9.064298, 45.582465], + [9.059801, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.586962], + [9.059801, 45.591458], + [9.064298, 45.591458], + [9.064298, 45.586962], + [9.059801, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.591458], + [9.059801, 45.595955], + [9.064298, 45.595955], + [9.064298, 45.591458], + [9.059801, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.595955], + [9.059801, 45.600451], + [9.064298, 45.600451], + [9.064298, 45.595955], + [9.059801, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.600451], + [9.059801, 45.604948], + [9.064298, 45.604948], + [9.064298, 45.600451], + [9.059801, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.604948], + [9.059801, 45.609445], + [9.064298, 45.609445], + [9.064298, 45.604948], + [9.059801, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.609445], + [9.059801, 45.613941], + [9.064298, 45.613941], + [9.064298, 45.609445], + [9.059801, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.613941], + [9.059801, 45.618438], + [9.064298, 45.618438], + [9.064298, 45.613941], + [9.059801, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.618438], + [9.059801, 45.622934], + [9.064298, 45.622934], + [9.064298, 45.618438], + [9.059801, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.622934], + [9.059801, 45.627431], + [9.064298, 45.627431], + [9.064298, 45.622934], + [9.059801, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.627431], + [9.059801, 45.631928], + [9.064298, 45.631928], + [9.064298, 45.627431], + [9.059801, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.059801, 45.631928], + [9.059801, 45.636424], + [9.064298, 45.636424], + [9.064298, 45.631928], + [9.059801, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.339648], + [9.064298, 45.344145], + [9.068795, 45.344145], + [9.068795, 45.339648], + [9.064298, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.344145], + [9.064298, 45.348642], + [9.068795, 45.348642], + [9.068795, 45.344145], + [9.064298, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.348642], + [9.064298, 45.353138], + [9.068795, 45.353138], + [9.068795, 45.348642], + [9.064298, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.353138], + [9.064298, 45.357635], + [9.068795, 45.357635], + [9.068795, 45.353138], + [9.064298, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.357635], + [9.064298, 45.362131], + [9.068795, 45.362131], + [9.068795, 45.357635], + [9.064298, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.362131], + [9.064298, 45.366628], + [9.068795, 45.366628], + [9.068795, 45.362131], + [9.064298, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.366628], + [9.064298, 45.371125], + [9.068795, 45.371125], + [9.068795, 45.366628], + [9.064298, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.371125], + [9.064298, 45.375621], + [9.068795, 45.375621], + [9.068795, 45.371125], + [9.064298, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.375621], + [9.064298, 45.380118], + [9.068795, 45.380118], + [9.068795, 45.375621], + [9.064298, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.380118], + [9.064298, 45.384614], + [9.068795, 45.384614], + [9.068795, 45.380118], + [9.064298, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.384614], + [9.064298, 45.389111], + [9.068795, 45.389111], + [9.068795, 45.384614], + [9.064298, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.389111], + [9.064298, 45.393608], + [9.068795, 45.393608], + [9.068795, 45.389111], + [9.064298, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.393608], + [9.064298, 45.398104], + [9.068795, 45.398104], + [9.068795, 45.393608], + [9.064298, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.398104], + [9.064298, 45.402601], + [9.068795, 45.402601], + [9.068795, 45.398104], + [9.064298, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.402601], + [9.064298, 45.407097], + [9.068795, 45.407097], + [9.068795, 45.402601], + [9.064298, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.407097], + [9.064298, 45.411594], + [9.068795, 45.411594], + [9.068795, 45.407097], + [9.064298, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.411594], + [9.064298, 45.416091], + [9.068795, 45.416091], + [9.068795, 45.411594], + [9.064298, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.416091], + [9.064298, 45.420587], + [9.068795, 45.420587], + [9.068795, 45.416091], + [9.064298, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.420587], + [9.064298, 45.425084], + [9.068795, 45.425084], + [9.068795, 45.420587], + [9.064298, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.425084], + [9.064298, 45.42958], + [9.068795, 45.42958], + [9.068795, 45.425084], + [9.064298, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.42958], + [9.064298, 45.434077], + [9.068795, 45.434077], + [9.068795, 45.42958], + [9.064298, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.434077], + [9.064298, 45.438574], + [9.068795, 45.438574], + [9.068795, 45.434077], + [9.064298, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.438574], + [9.064298, 45.44307], + [9.068795, 45.44307], + [9.068795, 45.438574], + [9.064298, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.44307], + [9.064298, 45.447567], + [9.068795, 45.447567], + [9.068795, 45.44307], + [9.064298, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.447567], + [9.064298, 45.452063], + [9.068795, 45.452063], + [9.068795, 45.447567], + [9.064298, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.452063], + [9.064298, 45.45656], + [9.068795, 45.45656], + [9.068795, 45.452063], + [9.064298, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.45656], + [9.064298, 45.461057], + [9.068795, 45.461057], + [9.068795, 45.45656], + [9.064298, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.461057], + [9.064298, 45.465553], + [9.068795, 45.465553], + [9.068795, 45.461057], + [9.064298, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.465553], + [9.064298, 45.47005], + [9.068795, 45.47005], + [9.068795, 45.465553], + [9.064298, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.47005], + [9.064298, 45.474547], + [9.068795, 45.474547], + [9.068795, 45.47005], + [9.064298, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.474547], + [9.064298, 45.479043], + [9.068795, 45.479043], + [9.068795, 45.474547], + [9.064298, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.479043], + [9.064298, 45.48354], + [9.068795, 45.48354], + [9.068795, 45.479043], + [9.064298, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.48354], + [9.064298, 45.488036], + [9.068795, 45.488036], + [9.068795, 45.48354], + [9.064298, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.488036], + [9.064298, 45.492533], + [9.068795, 45.492533], + [9.068795, 45.488036], + [9.064298, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.492533], + [9.064298, 45.49703], + [9.068795, 45.49703], + [9.068795, 45.492533], + [9.064298, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.49703], + [9.064298, 45.501526], + [9.068795, 45.501526], + [9.068795, 45.49703], + [9.064298, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.501526], + [9.064298, 45.506023], + [9.068795, 45.506023], + [9.068795, 45.501526], + [9.064298, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.506023], + [9.064298, 45.510519], + [9.068795, 45.510519], + [9.068795, 45.506023], + [9.064298, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.510519], + [9.064298, 45.515016], + [9.068795, 45.515016], + [9.068795, 45.510519], + [9.064298, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.515016], + [9.064298, 45.519513], + [9.068795, 45.519513], + [9.068795, 45.515016], + [9.064298, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.519513], + [9.064298, 45.524009], + [9.068795, 45.524009], + [9.068795, 45.519513], + [9.064298, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.524009], + [9.064298, 45.528506], + [9.068795, 45.528506], + [9.068795, 45.524009], + [9.064298, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.528506], + [9.064298, 45.533002], + [9.068795, 45.533002], + [9.068795, 45.528506], + [9.064298, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.533002], + [9.064298, 45.537499], + [9.068795, 45.537499], + [9.068795, 45.533002], + [9.064298, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.537499], + [9.064298, 45.541996], + [9.068795, 45.541996], + [9.068795, 45.537499], + [9.064298, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.541996], + [9.064298, 45.546492], + [9.068795, 45.546492], + [9.068795, 45.541996], + [9.064298, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.546492], + [9.064298, 45.550989], + [9.068795, 45.550989], + [9.068795, 45.546492], + [9.064298, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.550989], + [9.064298, 45.555485], + [9.068795, 45.555485], + [9.068795, 45.550989], + [9.064298, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.555485], + [9.064298, 45.559982], + [9.068795, 45.559982], + [9.068795, 45.555485], + [9.064298, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.559982], + [9.064298, 45.564479], + [9.068795, 45.564479], + [9.068795, 45.559982], + [9.064298, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.564479], + [9.064298, 45.568975], + [9.068795, 45.568975], + [9.068795, 45.564479], + [9.064298, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.568975], + [9.064298, 45.573472], + [9.068795, 45.573472], + [9.068795, 45.568975], + [9.064298, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.573472], + [9.064298, 45.577968], + [9.068795, 45.577968], + [9.068795, 45.573472], + [9.064298, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.577968], + [9.064298, 45.582465], + [9.068795, 45.582465], + [9.068795, 45.577968], + [9.064298, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.582465], + [9.064298, 45.586962], + [9.068795, 45.586962], + [9.068795, 45.582465], + [9.064298, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.586962], + [9.064298, 45.591458], + [9.068795, 45.591458], + [9.068795, 45.586962], + [9.064298, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.591458], + [9.064298, 45.595955], + [9.068795, 45.595955], + [9.068795, 45.591458], + [9.064298, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.595955], + [9.064298, 45.600451], + [9.068795, 45.600451], + [9.068795, 45.595955], + [9.064298, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.600451], + [9.064298, 45.604948], + [9.068795, 45.604948], + [9.068795, 45.600451], + [9.064298, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.604948], + [9.064298, 45.609445], + [9.068795, 45.609445], + [9.068795, 45.604948], + [9.064298, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.609445], + [9.064298, 45.613941], + [9.068795, 45.613941], + [9.068795, 45.609445], + [9.064298, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.613941], + [9.064298, 45.618438], + [9.068795, 45.618438], + [9.068795, 45.613941], + [9.064298, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.618438], + [9.064298, 45.622934], + [9.068795, 45.622934], + [9.068795, 45.618438], + [9.064298, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.622934], + [9.064298, 45.627431], + [9.068795, 45.627431], + [9.068795, 45.622934], + [9.064298, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.627431], + [9.064298, 45.631928], + [9.068795, 45.631928], + [9.068795, 45.627431], + [9.064298, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.064298, 45.631928], + [9.064298, 45.636424], + [9.068795, 45.636424], + [9.068795, 45.631928], + [9.064298, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.339648], + [9.068795, 45.344145], + [9.073291, 45.344145], + [9.073291, 45.339648], + [9.068795, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.344145], + [9.068795, 45.348642], + [9.073291, 45.348642], + [9.073291, 45.344145], + [9.068795, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.348642], + [9.068795, 45.353138], + [9.073291, 45.353138], + [9.073291, 45.348642], + [9.068795, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.353138], + [9.068795, 45.357635], + [9.073291, 45.357635], + [9.073291, 45.353138], + [9.068795, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.357635], + [9.068795, 45.362131], + [9.073291, 45.362131], + [9.073291, 45.357635], + [9.068795, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.362131], + [9.068795, 45.366628], + [9.073291, 45.366628], + [9.073291, 45.362131], + [9.068795, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.366628], + [9.068795, 45.371125], + [9.073291, 45.371125], + [9.073291, 45.366628], + [9.068795, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.371125], + [9.068795, 45.375621], + [9.073291, 45.375621], + [9.073291, 45.371125], + [9.068795, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.375621], + [9.068795, 45.380118], + [9.073291, 45.380118], + [9.073291, 45.375621], + [9.068795, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.380118], + [9.068795, 45.384614], + [9.073291, 45.384614], + [9.073291, 45.380118], + [9.068795, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.384614], + [9.068795, 45.389111], + [9.073291, 45.389111], + [9.073291, 45.384614], + [9.068795, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.389111], + [9.068795, 45.393608], + [9.073291, 45.393608], + [9.073291, 45.389111], + [9.068795, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.393608], + [9.068795, 45.398104], + [9.073291, 45.398104], + [9.073291, 45.393608], + [9.068795, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.398104], + [9.068795, 45.402601], + [9.073291, 45.402601], + [9.073291, 45.398104], + [9.068795, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.402601], + [9.068795, 45.407097], + [9.073291, 45.407097], + [9.073291, 45.402601], + [9.068795, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.407097], + [9.068795, 45.411594], + [9.073291, 45.411594], + [9.073291, 45.407097], + [9.068795, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.411594], + [9.068795, 45.416091], + [9.073291, 45.416091], + [9.073291, 45.411594], + [9.068795, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.416091], + [9.068795, 45.420587], + [9.073291, 45.420587], + [9.073291, 45.416091], + [9.068795, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.420587], + [9.068795, 45.425084], + [9.073291, 45.425084], + [9.073291, 45.420587], + [9.068795, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.425084], + [9.068795, 45.42958], + [9.073291, 45.42958], + [9.073291, 45.425084], + [9.068795, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.42958], + [9.068795, 45.434077], + [9.073291, 45.434077], + [9.073291, 45.42958], + [9.068795, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.434077], + [9.068795, 45.438574], + [9.073291, 45.438574], + [9.073291, 45.434077], + [9.068795, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.438574], + [9.068795, 45.44307], + [9.073291, 45.44307], + [9.073291, 45.438574], + [9.068795, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.44307], + [9.068795, 45.447567], + [9.073291, 45.447567], + [9.073291, 45.44307], + [9.068795, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.447567], + [9.068795, 45.452063], + [9.073291, 45.452063], + [9.073291, 45.447567], + [9.068795, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.452063], + [9.068795, 45.45656], + [9.073291, 45.45656], + [9.073291, 45.452063], + [9.068795, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.45656], + [9.068795, 45.461057], + [9.073291, 45.461057], + [9.073291, 45.45656], + [9.068795, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.461057], + [9.068795, 45.465553], + [9.073291, 45.465553], + [9.073291, 45.461057], + [9.068795, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.465553], + [9.068795, 45.47005], + [9.073291, 45.47005], + [9.073291, 45.465553], + [9.068795, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.47005], + [9.068795, 45.474547], + [9.073291, 45.474547], + [9.073291, 45.47005], + [9.068795, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.474547], + [9.068795, 45.479043], + [9.073291, 45.479043], + [9.073291, 45.474547], + [9.068795, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.479043], + [9.068795, 45.48354], + [9.073291, 45.48354], + [9.073291, 45.479043], + [9.068795, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.48354], + [9.068795, 45.488036], + [9.073291, 45.488036], + [9.073291, 45.48354], + [9.068795, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.488036], + [9.068795, 45.492533], + [9.073291, 45.492533], + [9.073291, 45.488036], + [9.068795, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.492533], + [9.068795, 45.49703], + [9.073291, 45.49703], + [9.073291, 45.492533], + [9.068795, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.49703], + [9.068795, 45.501526], + [9.073291, 45.501526], + [9.073291, 45.49703], + [9.068795, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.501526], + [9.068795, 45.506023], + [9.073291, 45.506023], + [9.073291, 45.501526], + [9.068795, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.506023], + [9.068795, 45.510519], + [9.073291, 45.510519], + [9.073291, 45.506023], + [9.068795, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.510519], + [9.068795, 45.515016], + [9.073291, 45.515016], + [9.073291, 45.510519], + [9.068795, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.515016], + [9.068795, 45.519513], + [9.073291, 45.519513], + [9.073291, 45.515016], + [9.068795, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.519513], + [9.068795, 45.524009], + [9.073291, 45.524009], + [9.073291, 45.519513], + [9.068795, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.524009], + [9.068795, 45.528506], + [9.073291, 45.528506], + [9.073291, 45.524009], + [9.068795, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.528506], + [9.068795, 45.533002], + [9.073291, 45.533002], + [9.073291, 45.528506], + [9.068795, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.533002], + [9.068795, 45.537499], + [9.073291, 45.537499], + [9.073291, 45.533002], + [9.068795, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.537499], + [9.068795, 45.541996], + [9.073291, 45.541996], + [9.073291, 45.537499], + [9.068795, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.541996], + [9.068795, 45.546492], + [9.073291, 45.546492], + [9.073291, 45.541996], + [9.068795, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.546492], + [9.068795, 45.550989], + [9.073291, 45.550989], + [9.073291, 45.546492], + [9.068795, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.550989], + [9.068795, 45.555485], + [9.073291, 45.555485], + [9.073291, 45.550989], + [9.068795, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.555485], + [9.068795, 45.559982], + [9.073291, 45.559982], + [9.073291, 45.555485], + [9.068795, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.559982], + [9.068795, 45.564479], + [9.073291, 45.564479], + [9.073291, 45.559982], + [9.068795, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.564479], + [9.068795, 45.568975], + [9.073291, 45.568975], + [9.073291, 45.564479], + [9.068795, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.568975], + [9.068795, 45.573472], + [9.073291, 45.573472], + [9.073291, 45.568975], + [9.068795, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.573472], + [9.068795, 45.577968], + [9.073291, 45.577968], + [9.073291, 45.573472], + [9.068795, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.577968], + [9.068795, 45.582465], + [9.073291, 45.582465], + [9.073291, 45.577968], + [9.068795, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.582465], + [9.068795, 45.586962], + [9.073291, 45.586962], + [9.073291, 45.582465], + [9.068795, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.586962], + [9.068795, 45.591458], + [9.073291, 45.591458], + [9.073291, 45.586962], + [9.068795, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.591458], + [9.068795, 45.595955], + [9.073291, 45.595955], + [9.073291, 45.591458], + [9.068795, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.595955], + [9.068795, 45.600451], + [9.073291, 45.600451], + [9.073291, 45.595955], + [9.068795, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.600451], + [9.068795, 45.604948], + [9.073291, 45.604948], + [9.073291, 45.600451], + [9.068795, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.604948], + [9.068795, 45.609445], + [9.073291, 45.609445], + [9.073291, 45.604948], + [9.068795, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.609445], + [9.068795, 45.613941], + [9.073291, 45.613941], + [9.073291, 45.609445], + [9.068795, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.613941], + [9.068795, 45.618438], + [9.073291, 45.618438], + [9.073291, 45.613941], + [9.068795, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.618438], + [9.068795, 45.622934], + [9.073291, 45.622934], + [9.073291, 45.618438], + [9.068795, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.622934], + [9.068795, 45.627431], + [9.073291, 45.627431], + [9.073291, 45.622934], + [9.068795, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.627431], + [9.068795, 45.631928], + [9.073291, 45.631928], + [9.073291, 45.627431], + [9.068795, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.068795, 45.631928], + [9.068795, 45.636424], + [9.073291, 45.636424], + [9.073291, 45.631928], + [9.068795, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.339648], + [9.073291, 45.344145], + [9.077788, 45.344145], + [9.077788, 45.339648], + [9.073291, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.344145], + [9.073291, 45.348642], + [9.077788, 45.348642], + [9.077788, 45.344145], + [9.073291, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.348642], + [9.073291, 45.353138], + [9.077788, 45.353138], + [9.077788, 45.348642], + [9.073291, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.353138], + [9.073291, 45.357635], + [9.077788, 45.357635], + [9.077788, 45.353138], + [9.073291, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.357635], + [9.073291, 45.362131], + [9.077788, 45.362131], + [9.077788, 45.357635], + [9.073291, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.362131], + [9.073291, 45.366628], + [9.077788, 45.366628], + [9.077788, 45.362131], + [9.073291, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.366628], + [9.073291, 45.371125], + [9.077788, 45.371125], + [9.077788, 45.366628], + [9.073291, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.371125], + [9.073291, 45.375621], + [9.077788, 45.375621], + [9.077788, 45.371125], + [9.073291, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.375621], + [9.073291, 45.380118], + [9.077788, 45.380118], + [9.077788, 45.375621], + [9.073291, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.380118], + [9.073291, 45.384614], + [9.077788, 45.384614], + [9.077788, 45.380118], + [9.073291, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.384614], + [9.073291, 45.389111], + [9.077788, 45.389111], + [9.077788, 45.384614], + [9.073291, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.389111], + [9.073291, 45.393608], + [9.077788, 45.393608], + [9.077788, 45.389111], + [9.073291, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.393608], + [9.073291, 45.398104], + [9.077788, 45.398104], + [9.077788, 45.393608], + [9.073291, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.398104], + [9.073291, 45.402601], + [9.077788, 45.402601], + [9.077788, 45.398104], + [9.073291, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.402601], + [9.073291, 45.407097], + [9.077788, 45.407097], + [9.077788, 45.402601], + [9.073291, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.407097], + [9.073291, 45.411594], + [9.077788, 45.411594], + [9.077788, 45.407097], + [9.073291, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.411594], + [9.073291, 45.416091], + [9.077788, 45.416091], + [9.077788, 45.411594], + [9.073291, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.416091], + [9.073291, 45.420587], + [9.077788, 45.420587], + [9.077788, 45.416091], + [9.073291, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.420587], + [9.073291, 45.425084], + [9.077788, 45.425084], + [9.077788, 45.420587], + [9.073291, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.425084], + [9.073291, 45.42958], + [9.077788, 45.42958], + [9.077788, 45.425084], + [9.073291, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.42958], + [9.073291, 45.434077], + [9.077788, 45.434077], + [9.077788, 45.42958], + [9.073291, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.434077], + [9.073291, 45.438574], + [9.077788, 45.438574], + [9.077788, 45.434077], + [9.073291, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.438574], + [9.073291, 45.44307], + [9.077788, 45.44307], + [9.077788, 45.438574], + [9.073291, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.44307], + [9.073291, 45.447567], + [9.077788, 45.447567], + [9.077788, 45.44307], + [9.073291, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.447567], + [9.073291, 45.452063], + [9.077788, 45.452063], + [9.077788, 45.447567], + [9.073291, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.452063], + [9.073291, 45.45656], + [9.077788, 45.45656], + [9.077788, 45.452063], + [9.073291, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.45656], + [9.073291, 45.461057], + [9.077788, 45.461057], + [9.077788, 45.45656], + [9.073291, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.461057], + [9.073291, 45.465553], + [9.077788, 45.465553], + [9.077788, 45.461057], + [9.073291, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.465553], + [9.073291, 45.47005], + [9.077788, 45.47005], + [9.077788, 45.465553], + [9.073291, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.47005], + [9.073291, 45.474547], + [9.077788, 45.474547], + [9.077788, 45.47005], + [9.073291, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.474547], + [9.073291, 45.479043], + [9.077788, 45.479043], + [9.077788, 45.474547], + [9.073291, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.479043], + [9.073291, 45.48354], + [9.077788, 45.48354], + [9.077788, 45.479043], + [9.073291, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.48354], + [9.073291, 45.488036], + [9.077788, 45.488036], + [9.077788, 45.48354], + [9.073291, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.488036], + [9.073291, 45.492533], + [9.077788, 45.492533], + [9.077788, 45.488036], + [9.073291, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.492533], + [9.073291, 45.49703], + [9.077788, 45.49703], + [9.077788, 45.492533], + [9.073291, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.49703], + [9.073291, 45.501526], + [9.077788, 45.501526], + [9.077788, 45.49703], + [9.073291, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.501526], + [9.073291, 45.506023], + [9.077788, 45.506023], + [9.077788, 45.501526], + [9.073291, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.506023], + [9.073291, 45.510519], + [9.077788, 45.510519], + [9.077788, 45.506023], + [9.073291, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.510519], + [9.073291, 45.515016], + [9.077788, 45.515016], + [9.077788, 45.510519], + [9.073291, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.515016], + [9.073291, 45.519513], + [9.077788, 45.519513], + [9.077788, 45.515016], + [9.073291, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.519513], + [9.073291, 45.524009], + [9.077788, 45.524009], + [9.077788, 45.519513], + [9.073291, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.524009], + [9.073291, 45.528506], + [9.077788, 45.528506], + [9.077788, 45.524009], + [9.073291, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.528506], + [9.073291, 45.533002], + [9.077788, 45.533002], + [9.077788, 45.528506], + [9.073291, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.533002], + [9.073291, 45.537499], + [9.077788, 45.537499], + [9.077788, 45.533002], + [9.073291, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.537499], + [9.073291, 45.541996], + [9.077788, 45.541996], + [9.077788, 45.537499], + [9.073291, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.541996], + [9.073291, 45.546492], + [9.077788, 45.546492], + [9.077788, 45.541996], + [9.073291, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.546492], + [9.073291, 45.550989], + [9.077788, 45.550989], + [9.077788, 45.546492], + [9.073291, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.550989], + [9.073291, 45.555485], + [9.077788, 45.555485], + [9.077788, 45.550989], + [9.073291, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.555485], + [9.073291, 45.559982], + [9.077788, 45.559982], + [9.077788, 45.555485], + [9.073291, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.559982], + [9.073291, 45.564479], + [9.077788, 45.564479], + [9.077788, 45.559982], + [9.073291, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.564479], + [9.073291, 45.568975], + [9.077788, 45.568975], + [9.077788, 45.564479], + [9.073291, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.568975], + [9.073291, 45.573472], + [9.077788, 45.573472], + [9.077788, 45.568975], + [9.073291, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.573472], + [9.073291, 45.577968], + [9.077788, 45.577968], + [9.077788, 45.573472], + [9.073291, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.577968], + [9.073291, 45.582465], + [9.077788, 45.582465], + [9.077788, 45.577968], + [9.073291, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.582465], + [9.073291, 45.586962], + [9.077788, 45.586962], + [9.077788, 45.582465], + [9.073291, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.586962], + [9.073291, 45.591458], + [9.077788, 45.591458], + [9.077788, 45.586962], + [9.073291, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.591458], + [9.073291, 45.595955], + [9.077788, 45.595955], + [9.077788, 45.591458], + [9.073291, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.595955], + [9.073291, 45.600451], + [9.077788, 45.600451], + [9.077788, 45.595955], + [9.073291, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.600451], + [9.073291, 45.604948], + [9.077788, 45.604948], + [9.077788, 45.600451], + [9.073291, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.604948], + [9.073291, 45.609445], + [9.077788, 45.609445], + [9.077788, 45.604948], + [9.073291, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.609445], + [9.073291, 45.613941], + [9.077788, 45.613941], + [9.077788, 45.609445], + [9.073291, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.613941], + [9.073291, 45.618438], + [9.077788, 45.618438], + [9.077788, 45.613941], + [9.073291, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.618438], + [9.073291, 45.622934], + [9.077788, 45.622934], + [9.077788, 45.618438], + [9.073291, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.622934], + [9.073291, 45.627431], + [9.077788, 45.627431], + [9.077788, 45.622934], + [9.073291, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.627431], + [9.073291, 45.631928], + [9.077788, 45.631928], + [9.077788, 45.627431], + [9.073291, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.073291, 45.631928], + [9.073291, 45.636424], + [9.077788, 45.636424], + [9.077788, 45.631928], + [9.073291, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.339648], + [9.077788, 45.344145], + [9.082284, 45.344145], + [9.082284, 45.339648], + [9.077788, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.344145], + [9.077788, 45.348642], + [9.082284, 45.348642], + [9.082284, 45.344145], + [9.077788, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.348642], + [9.077788, 45.353138], + [9.082284, 45.353138], + [9.082284, 45.348642], + [9.077788, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.353138], + [9.077788, 45.357635], + [9.082284, 45.357635], + [9.082284, 45.353138], + [9.077788, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.357635], + [9.077788, 45.362131], + [9.082284, 45.362131], + [9.082284, 45.357635], + [9.077788, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.362131], + [9.077788, 45.366628], + [9.082284, 45.366628], + [9.082284, 45.362131], + [9.077788, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.366628], + [9.077788, 45.371125], + [9.082284, 45.371125], + [9.082284, 45.366628], + [9.077788, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.371125], + [9.077788, 45.375621], + [9.082284, 45.375621], + [9.082284, 45.371125], + [9.077788, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.375621], + [9.077788, 45.380118], + [9.082284, 45.380118], + [9.082284, 45.375621], + [9.077788, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.380118], + [9.077788, 45.384614], + [9.082284, 45.384614], + [9.082284, 45.380118], + [9.077788, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.384614], + [9.077788, 45.389111], + [9.082284, 45.389111], + [9.082284, 45.384614], + [9.077788, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.389111], + [9.077788, 45.393608], + [9.082284, 45.393608], + [9.082284, 45.389111], + [9.077788, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.393608], + [9.077788, 45.398104], + [9.082284, 45.398104], + [9.082284, 45.393608], + [9.077788, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.398104], + [9.077788, 45.402601], + [9.082284, 45.402601], + [9.082284, 45.398104], + [9.077788, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.402601], + [9.077788, 45.407097], + [9.082284, 45.407097], + [9.082284, 45.402601], + [9.077788, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.407097], + [9.077788, 45.411594], + [9.082284, 45.411594], + [9.082284, 45.407097], + [9.077788, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.411594], + [9.077788, 45.416091], + [9.082284, 45.416091], + [9.082284, 45.411594], + [9.077788, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.416091], + [9.077788, 45.420587], + [9.082284, 45.420587], + [9.082284, 45.416091], + [9.077788, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.420587], + [9.077788, 45.425084], + [9.082284, 45.425084], + [9.082284, 45.420587], + [9.077788, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.425084], + [9.077788, 45.42958], + [9.082284, 45.42958], + [9.082284, 45.425084], + [9.077788, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.42958], + [9.077788, 45.434077], + [9.082284, 45.434077], + [9.082284, 45.42958], + [9.077788, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.434077], + [9.077788, 45.438574], + [9.082284, 45.438574], + [9.082284, 45.434077], + [9.077788, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.438574], + [9.077788, 45.44307], + [9.082284, 45.44307], + [9.082284, 45.438574], + [9.077788, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.44307], + [9.077788, 45.447567], + [9.082284, 45.447567], + [9.082284, 45.44307], + [9.077788, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.447567], + [9.077788, 45.452063], + [9.082284, 45.452063], + [9.082284, 45.447567], + [9.077788, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.452063], + [9.077788, 45.45656], + [9.082284, 45.45656], + [9.082284, 45.452063], + [9.077788, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.45656], + [9.077788, 45.461057], + [9.082284, 45.461057], + [9.082284, 45.45656], + [9.077788, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.461057], + [9.077788, 45.465553], + [9.082284, 45.465553], + [9.082284, 45.461057], + [9.077788, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.465553], + [9.077788, 45.47005], + [9.082284, 45.47005], + [9.082284, 45.465553], + [9.077788, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.47005], + [9.077788, 45.474547], + [9.082284, 45.474547], + [9.082284, 45.47005], + [9.077788, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.474547], + [9.077788, 45.479043], + [9.082284, 45.479043], + [9.082284, 45.474547], + [9.077788, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.479043], + [9.077788, 45.48354], + [9.082284, 45.48354], + [9.082284, 45.479043], + [9.077788, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.48354], + [9.077788, 45.488036], + [9.082284, 45.488036], + [9.082284, 45.48354], + [9.077788, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.488036], + [9.077788, 45.492533], + [9.082284, 45.492533], + [9.082284, 45.488036], + [9.077788, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.492533], + [9.077788, 45.49703], + [9.082284, 45.49703], + [9.082284, 45.492533], + [9.077788, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.49703], + [9.077788, 45.501526], + [9.082284, 45.501526], + [9.082284, 45.49703], + [9.077788, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.501526], + [9.077788, 45.506023], + [9.082284, 45.506023], + [9.082284, 45.501526], + [9.077788, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.506023], + [9.077788, 45.510519], + [9.082284, 45.510519], + [9.082284, 45.506023], + [9.077788, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.510519], + [9.077788, 45.515016], + [9.082284, 45.515016], + [9.082284, 45.510519], + [9.077788, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.515016], + [9.077788, 45.519513], + [9.082284, 45.519513], + [9.082284, 45.515016], + [9.077788, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.519513], + [9.077788, 45.524009], + [9.082284, 45.524009], + [9.082284, 45.519513], + [9.077788, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.524009], + [9.077788, 45.528506], + [9.082284, 45.528506], + [9.082284, 45.524009], + [9.077788, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.528506], + [9.077788, 45.533002], + [9.082284, 45.533002], + [9.082284, 45.528506], + [9.077788, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.533002], + [9.077788, 45.537499], + [9.082284, 45.537499], + [9.082284, 45.533002], + [9.077788, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.537499], + [9.077788, 45.541996], + [9.082284, 45.541996], + [9.082284, 45.537499], + [9.077788, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.541996], + [9.077788, 45.546492], + [9.082284, 45.546492], + [9.082284, 45.541996], + [9.077788, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.546492], + [9.077788, 45.550989], + [9.082284, 45.550989], + [9.082284, 45.546492], + [9.077788, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.550989], + [9.077788, 45.555485], + [9.082284, 45.555485], + [9.082284, 45.550989], + [9.077788, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.555485], + [9.077788, 45.559982], + [9.082284, 45.559982], + [9.082284, 45.555485], + [9.077788, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.559982], + [9.077788, 45.564479], + [9.082284, 45.564479], + [9.082284, 45.559982], + [9.077788, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.564479], + [9.077788, 45.568975], + [9.082284, 45.568975], + [9.082284, 45.564479], + [9.077788, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.568975], + [9.077788, 45.573472], + [9.082284, 45.573472], + [9.082284, 45.568975], + [9.077788, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.573472], + [9.077788, 45.577968], + [9.082284, 45.577968], + [9.082284, 45.573472], + [9.077788, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.577968], + [9.077788, 45.582465], + [9.082284, 45.582465], + [9.082284, 45.577968], + [9.077788, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.582465], + [9.077788, 45.586962], + [9.082284, 45.586962], + [9.082284, 45.582465], + [9.077788, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.586962], + [9.077788, 45.591458], + [9.082284, 45.591458], + [9.082284, 45.586962], + [9.077788, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.591458], + [9.077788, 45.595955], + [9.082284, 45.595955], + [9.082284, 45.591458], + [9.077788, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.595955], + [9.077788, 45.600451], + [9.082284, 45.600451], + [9.082284, 45.595955], + [9.077788, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.600451], + [9.077788, 45.604948], + [9.082284, 45.604948], + [9.082284, 45.600451], + [9.077788, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.604948], + [9.077788, 45.609445], + [9.082284, 45.609445], + [9.082284, 45.604948], + [9.077788, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.609445], + [9.077788, 45.613941], + [9.082284, 45.613941], + [9.082284, 45.609445], + [9.077788, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.613941], + [9.077788, 45.618438], + [9.082284, 45.618438], + [9.082284, 45.613941], + [9.077788, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.618438], + [9.077788, 45.622934], + [9.082284, 45.622934], + [9.082284, 45.618438], + [9.077788, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.622934], + [9.077788, 45.627431], + [9.082284, 45.627431], + [9.082284, 45.622934], + [9.077788, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.627431], + [9.077788, 45.631928], + [9.082284, 45.631928], + [9.082284, 45.627431], + [9.077788, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.077788, 45.631928], + [9.077788, 45.636424], + [9.082284, 45.636424], + [9.082284, 45.631928], + [9.077788, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.339648], + [9.082284, 45.344145], + [9.086781, 45.344145], + [9.086781, 45.339648], + [9.082284, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.344145], + [9.082284, 45.348642], + [9.086781, 45.348642], + [9.086781, 45.344145], + [9.082284, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.348642], + [9.082284, 45.353138], + [9.086781, 45.353138], + [9.086781, 45.348642], + [9.082284, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.353138], + [9.082284, 45.357635], + [9.086781, 45.357635], + [9.086781, 45.353138], + [9.082284, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.357635], + [9.082284, 45.362131], + [9.086781, 45.362131], + [9.086781, 45.357635], + [9.082284, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.362131], + [9.082284, 45.366628], + [9.086781, 45.366628], + [9.086781, 45.362131], + [9.082284, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.366628], + [9.082284, 45.371125], + [9.086781, 45.371125], + [9.086781, 45.366628], + [9.082284, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.371125], + [9.082284, 45.375621], + [9.086781, 45.375621], + [9.086781, 45.371125], + [9.082284, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.375621], + [9.082284, 45.380118], + [9.086781, 45.380118], + [9.086781, 45.375621], + [9.082284, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.380118], + [9.082284, 45.384614], + [9.086781, 45.384614], + [9.086781, 45.380118], + [9.082284, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.384614], + [9.082284, 45.389111], + [9.086781, 45.389111], + [9.086781, 45.384614], + [9.082284, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.389111], + [9.082284, 45.393608], + [9.086781, 45.393608], + [9.086781, 45.389111], + [9.082284, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.393608], + [9.082284, 45.398104], + [9.086781, 45.398104], + [9.086781, 45.393608], + [9.082284, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.398104], + [9.082284, 45.402601], + [9.086781, 45.402601], + [9.086781, 45.398104], + [9.082284, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.402601], + [9.082284, 45.407097], + [9.086781, 45.407097], + [9.086781, 45.402601], + [9.082284, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.407097], + [9.082284, 45.411594], + [9.086781, 45.411594], + [9.086781, 45.407097], + [9.082284, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.411594], + [9.082284, 45.416091], + [9.086781, 45.416091], + [9.086781, 45.411594], + [9.082284, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.416091], + [9.082284, 45.420587], + [9.086781, 45.420587], + [9.086781, 45.416091], + [9.082284, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.420587], + [9.082284, 45.425084], + [9.086781, 45.425084], + [9.086781, 45.420587], + [9.082284, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.425084], + [9.082284, 45.42958], + [9.086781, 45.42958], + [9.086781, 45.425084], + [9.082284, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.42958], + [9.082284, 45.434077], + [9.086781, 45.434077], + [9.086781, 45.42958], + [9.082284, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.434077], + [9.082284, 45.438574], + [9.086781, 45.438574], + [9.086781, 45.434077], + [9.082284, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.438574], + [9.082284, 45.44307], + [9.086781, 45.44307], + [9.086781, 45.438574], + [9.082284, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.44307], + [9.082284, 45.447567], + [9.086781, 45.447567], + [9.086781, 45.44307], + [9.082284, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.447567], + [9.082284, 45.452063], + [9.086781, 45.452063], + [9.086781, 45.447567], + [9.082284, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.452063], + [9.082284, 45.45656], + [9.086781, 45.45656], + [9.086781, 45.452063], + [9.082284, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.45656], + [9.082284, 45.461057], + [9.086781, 45.461057], + [9.086781, 45.45656], + [9.082284, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.461057], + [9.082284, 45.465553], + [9.086781, 45.465553], + [9.086781, 45.461057], + [9.082284, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.465553], + [9.082284, 45.47005], + [9.086781, 45.47005], + [9.086781, 45.465553], + [9.082284, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.47005], + [9.082284, 45.474547], + [9.086781, 45.474547], + [9.086781, 45.47005], + [9.082284, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.474547], + [9.082284, 45.479043], + [9.086781, 45.479043], + [9.086781, 45.474547], + [9.082284, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.479043], + [9.082284, 45.48354], + [9.086781, 45.48354], + [9.086781, 45.479043], + [9.082284, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.48354], + [9.082284, 45.488036], + [9.086781, 45.488036], + [9.086781, 45.48354], + [9.082284, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.488036], + [9.082284, 45.492533], + [9.086781, 45.492533], + [9.086781, 45.488036], + [9.082284, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.492533], + [9.082284, 45.49703], + [9.086781, 45.49703], + [9.086781, 45.492533], + [9.082284, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.49703], + [9.082284, 45.501526], + [9.086781, 45.501526], + [9.086781, 45.49703], + [9.082284, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.501526], + [9.082284, 45.506023], + [9.086781, 45.506023], + [9.086781, 45.501526], + [9.082284, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.506023], + [9.082284, 45.510519], + [9.086781, 45.510519], + [9.086781, 45.506023], + [9.082284, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.510519], + [9.082284, 45.515016], + [9.086781, 45.515016], + [9.086781, 45.510519], + [9.082284, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.515016], + [9.082284, 45.519513], + [9.086781, 45.519513], + [9.086781, 45.515016], + [9.082284, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.519513], + [9.082284, 45.524009], + [9.086781, 45.524009], + [9.086781, 45.519513], + [9.082284, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.524009], + [9.082284, 45.528506], + [9.086781, 45.528506], + [9.086781, 45.524009], + [9.082284, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.528506], + [9.082284, 45.533002], + [9.086781, 45.533002], + [9.086781, 45.528506], + [9.082284, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.533002], + [9.082284, 45.537499], + [9.086781, 45.537499], + [9.086781, 45.533002], + [9.082284, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.537499], + [9.082284, 45.541996], + [9.086781, 45.541996], + [9.086781, 45.537499], + [9.082284, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.541996], + [9.082284, 45.546492], + [9.086781, 45.546492], + [9.086781, 45.541996], + [9.082284, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.546492], + [9.082284, 45.550989], + [9.086781, 45.550989], + [9.086781, 45.546492], + [9.082284, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.550989], + [9.082284, 45.555485], + [9.086781, 45.555485], + [9.086781, 45.550989], + [9.082284, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.555485], + [9.082284, 45.559982], + [9.086781, 45.559982], + [9.086781, 45.555485], + [9.082284, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.559982], + [9.082284, 45.564479], + [9.086781, 45.564479], + [9.086781, 45.559982], + [9.082284, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.564479], + [9.082284, 45.568975], + [9.086781, 45.568975], + [9.086781, 45.564479], + [9.082284, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.568975], + [9.082284, 45.573472], + [9.086781, 45.573472], + [9.086781, 45.568975], + [9.082284, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.573472], + [9.082284, 45.577968], + [9.086781, 45.577968], + [9.086781, 45.573472], + [9.082284, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.577968], + [9.082284, 45.582465], + [9.086781, 45.582465], + [9.086781, 45.577968], + [9.082284, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.582465], + [9.082284, 45.586962], + [9.086781, 45.586962], + [9.086781, 45.582465], + [9.082284, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.586962], + [9.082284, 45.591458], + [9.086781, 45.591458], + [9.086781, 45.586962], + [9.082284, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.591458], + [9.082284, 45.595955], + [9.086781, 45.595955], + [9.086781, 45.591458], + [9.082284, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.595955], + [9.082284, 45.600451], + [9.086781, 45.600451], + [9.086781, 45.595955], + [9.082284, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.600451], + [9.082284, 45.604948], + [9.086781, 45.604948], + [9.086781, 45.600451], + [9.082284, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.604948], + [9.082284, 45.609445], + [9.086781, 45.609445], + [9.086781, 45.604948], + [9.082284, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.609445], + [9.082284, 45.613941], + [9.086781, 45.613941], + [9.086781, 45.609445], + [9.082284, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.613941], + [9.082284, 45.618438], + [9.086781, 45.618438], + [9.086781, 45.613941], + [9.082284, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.618438], + [9.082284, 45.622934], + [9.086781, 45.622934], + [9.086781, 45.618438], + [9.082284, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.622934], + [9.082284, 45.627431], + [9.086781, 45.627431], + [9.086781, 45.622934], + [9.082284, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.627431], + [9.082284, 45.631928], + [9.086781, 45.631928], + [9.086781, 45.627431], + [9.082284, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.082284, 45.631928], + [9.082284, 45.636424], + [9.086781, 45.636424], + [9.086781, 45.631928], + [9.082284, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.339648], + [9.086781, 45.344145], + [9.091278, 45.344145], + [9.091278, 45.339648], + [9.086781, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.344145], + [9.086781, 45.348642], + [9.091278, 45.348642], + [9.091278, 45.344145], + [9.086781, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.348642], + [9.086781, 45.353138], + [9.091278, 45.353138], + [9.091278, 45.348642], + [9.086781, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.353138], + [9.086781, 45.357635], + [9.091278, 45.357635], + [9.091278, 45.353138], + [9.086781, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.357635], + [9.086781, 45.362131], + [9.091278, 45.362131], + [9.091278, 45.357635], + [9.086781, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.362131], + [9.086781, 45.366628], + [9.091278, 45.366628], + [9.091278, 45.362131], + [9.086781, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.366628], + [9.086781, 45.371125], + [9.091278, 45.371125], + [9.091278, 45.366628], + [9.086781, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.371125], + [9.086781, 45.375621], + [9.091278, 45.375621], + [9.091278, 45.371125], + [9.086781, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.375621], + [9.086781, 45.380118], + [9.091278, 45.380118], + [9.091278, 45.375621], + [9.086781, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.380118], + [9.086781, 45.384614], + [9.091278, 45.384614], + [9.091278, 45.380118], + [9.086781, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.384614], + [9.086781, 45.389111], + [9.091278, 45.389111], + [9.091278, 45.384614], + [9.086781, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.389111], + [9.086781, 45.393608], + [9.091278, 45.393608], + [9.091278, 45.389111], + [9.086781, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.393608], + [9.086781, 45.398104], + [9.091278, 45.398104], + [9.091278, 45.393608], + [9.086781, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.398104], + [9.086781, 45.402601], + [9.091278, 45.402601], + [9.091278, 45.398104], + [9.086781, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.402601], + [9.086781, 45.407097], + [9.091278, 45.407097], + [9.091278, 45.402601], + [9.086781, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.407097], + [9.086781, 45.411594], + [9.091278, 45.411594], + [9.091278, 45.407097], + [9.086781, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.411594], + [9.086781, 45.416091], + [9.091278, 45.416091], + [9.091278, 45.411594], + [9.086781, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.416091], + [9.086781, 45.420587], + [9.091278, 45.420587], + [9.091278, 45.416091], + [9.086781, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.420587], + [9.086781, 45.425084], + [9.091278, 45.425084], + [9.091278, 45.420587], + [9.086781, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.425084], + [9.086781, 45.42958], + [9.091278, 45.42958], + [9.091278, 45.425084], + [9.086781, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.42958], + [9.086781, 45.434077], + [9.091278, 45.434077], + [9.091278, 45.42958], + [9.086781, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.434077], + [9.086781, 45.438574], + [9.091278, 45.438574], + [9.091278, 45.434077], + [9.086781, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.438574], + [9.086781, 45.44307], + [9.091278, 45.44307], + [9.091278, 45.438574], + [9.086781, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.44307], + [9.086781, 45.447567], + [9.091278, 45.447567], + [9.091278, 45.44307], + [9.086781, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.447567], + [9.086781, 45.452063], + [9.091278, 45.452063], + [9.091278, 45.447567], + [9.086781, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.452063], + [9.086781, 45.45656], + [9.091278, 45.45656], + [9.091278, 45.452063], + [9.086781, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.45656], + [9.086781, 45.461057], + [9.091278, 45.461057], + [9.091278, 45.45656], + [9.086781, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.461057], + [9.086781, 45.465553], + [9.091278, 45.465553], + [9.091278, 45.461057], + [9.086781, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.465553], + [9.086781, 45.47005], + [9.091278, 45.47005], + [9.091278, 45.465553], + [9.086781, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.47005], + [9.086781, 45.474547], + [9.091278, 45.474547], + [9.091278, 45.47005], + [9.086781, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.474547], + [9.086781, 45.479043], + [9.091278, 45.479043], + [9.091278, 45.474547], + [9.086781, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.479043], + [9.086781, 45.48354], + [9.091278, 45.48354], + [9.091278, 45.479043], + [9.086781, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.48354], + [9.086781, 45.488036], + [9.091278, 45.488036], + [9.091278, 45.48354], + [9.086781, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.488036], + [9.086781, 45.492533], + [9.091278, 45.492533], + [9.091278, 45.488036], + [9.086781, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.492533], + [9.086781, 45.49703], + [9.091278, 45.49703], + [9.091278, 45.492533], + [9.086781, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.49703], + [9.086781, 45.501526], + [9.091278, 45.501526], + [9.091278, 45.49703], + [9.086781, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.501526], + [9.086781, 45.506023], + [9.091278, 45.506023], + [9.091278, 45.501526], + [9.086781, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.506023], + [9.086781, 45.510519], + [9.091278, 45.510519], + [9.091278, 45.506023], + [9.086781, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.510519], + [9.086781, 45.515016], + [9.091278, 45.515016], + [9.091278, 45.510519], + [9.086781, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.515016], + [9.086781, 45.519513], + [9.091278, 45.519513], + [9.091278, 45.515016], + [9.086781, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.519513], + [9.086781, 45.524009], + [9.091278, 45.524009], + [9.091278, 45.519513], + [9.086781, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.524009], + [9.086781, 45.528506], + [9.091278, 45.528506], + [9.091278, 45.524009], + [9.086781, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.528506], + [9.086781, 45.533002], + [9.091278, 45.533002], + [9.091278, 45.528506], + [9.086781, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.533002], + [9.086781, 45.537499], + [9.091278, 45.537499], + [9.091278, 45.533002], + [9.086781, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.537499], + [9.086781, 45.541996], + [9.091278, 45.541996], + [9.091278, 45.537499], + [9.086781, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.541996], + [9.086781, 45.546492], + [9.091278, 45.546492], + [9.091278, 45.541996], + [9.086781, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.546492], + [9.086781, 45.550989], + [9.091278, 45.550989], + [9.091278, 45.546492], + [9.086781, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.550989], + [9.086781, 45.555485], + [9.091278, 45.555485], + [9.091278, 45.550989], + [9.086781, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.555485], + [9.086781, 45.559982], + [9.091278, 45.559982], + [9.091278, 45.555485], + [9.086781, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.559982], + [9.086781, 45.564479], + [9.091278, 45.564479], + [9.091278, 45.559982], + [9.086781, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.564479], + [9.086781, 45.568975], + [9.091278, 45.568975], + [9.091278, 45.564479], + [9.086781, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.568975], + [9.086781, 45.573472], + [9.091278, 45.573472], + [9.091278, 45.568975], + [9.086781, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.573472], + [9.086781, 45.577968], + [9.091278, 45.577968], + [9.091278, 45.573472], + [9.086781, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.577968], + [9.086781, 45.582465], + [9.091278, 45.582465], + [9.091278, 45.577968], + [9.086781, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.582465], + [9.086781, 45.586962], + [9.091278, 45.586962], + [9.091278, 45.582465], + [9.086781, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.586962], + [9.086781, 45.591458], + [9.091278, 45.591458], + [9.091278, 45.586962], + [9.086781, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.591458], + [9.086781, 45.595955], + [9.091278, 45.595955], + [9.091278, 45.591458], + [9.086781, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.595955], + [9.086781, 45.600451], + [9.091278, 45.600451], + [9.091278, 45.595955], + [9.086781, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.600451], + [9.086781, 45.604948], + [9.091278, 45.604948], + [9.091278, 45.600451], + [9.086781, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.604948], + [9.086781, 45.609445], + [9.091278, 45.609445], + [9.091278, 45.604948], + [9.086781, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.609445], + [9.086781, 45.613941], + [9.091278, 45.613941], + [9.091278, 45.609445], + [9.086781, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.613941], + [9.086781, 45.618438], + [9.091278, 45.618438], + [9.091278, 45.613941], + [9.086781, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.618438], + [9.086781, 45.622934], + [9.091278, 45.622934], + [9.091278, 45.618438], + [9.086781, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.622934], + [9.086781, 45.627431], + [9.091278, 45.627431], + [9.091278, 45.622934], + [9.086781, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.627431], + [9.086781, 45.631928], + [9.091278, 45.631928], + [9.091278, 45.627431], + [9.086781, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.086781, 45.631928], + [9.086781, 45.636424], + [9.091278, 45.636424], + [9.091278, 45.631928], + [9.086781, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.339648], + [9.091278, 45.344145], + [9.095774, 45.344145], + [9.095774, 45.339648], + [9.091278, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.344145], + [9.091278, 45.348642], + [9.095774, 45.348642], + [9.095774, 45.344145], + [9.091278, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.348642], + [9.091278, 45.353138], + [9.095774, 45.353138], + [9.095774, 45.348642], + [9.091278, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.353138], + [9.091278, 45.357635], + [9.095774, 45.357635], + [9.095774, 45.353138], + [9.091278, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.357635], + [9.091278, 45.362131], + [9.095774, 45.362131], + [9.095774, 45.357635], + [9.091278, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.362131], + [9.091278, 45.366628], + [9.095774, 45.366628], + [9.095774, 45.362131], + [9.091278, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.366628], + [9.091278, 45.371125], + [9.095774, 45.371125], + [9.095774, 45.366628], + [9.091278, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.371125], + [9.091278, 45.375621], + [9.095774, 45.375621], + [9.095774, 45.371125], + [9.091278, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.375621], + [9.091278, 45.380118], + [9.095774, 45.380118], + [9.095774, 45.375621], + [9.091278, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.380118], + [9.091278, 45.384614], + [9.095774, 45.384614], + [9.095774, 45.380118], + [9.091278, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.384614], + [9.091278, 45.389111], + [9.095774, 45.389111], + [9.095774, 45.384614], + [9.091278, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.389111], + [9.091278, 45.393608], + [9.095774, 45.393608], + [9.095774, 45.389111], + [9.091278, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.393608], + [9.091278, 45.398104], + [9.095774, 45.398104], + [9.095774, 45.393608], + [9.091278, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.398104], + [9.091278, 45.402601], + [9.095774, 45.402601], + [9.095774, 45.398104], + [9.091278, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.402601], + [9.091278, 45.407097], + [9.095774, 45.407097], + [9.095774, 45.402601], + [9.091278, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.407097], + [9.091278, 45.411594], + [9.095774, 45.411594], + [9.095774, 45.407097], + [9.091278, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.411594], + [9.091278, 45.416091], + [9.095774, 45.416091], + [9.095774, 45.411594], + [9.091278, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.416091], + [9.091278, 45.420587], + [9.095774, 45.420587], + [9.095774, 45.416091], + [9.091278, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.420587], + [9.091278, 45.425084], + [9.095774, 45.425084], + [9.095774, 45.420587], + [9.091278, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.425084], + [9.091278, 45.42958], + [9.095774, 45.42958], + [9.095774, 45.425084], + [9.091278, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.42958], + [9.091278, 45.434077], + [9.095774, 45.434077], + [9.095774, 45.42958], + [9.091278, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.434077], + [9.091278, 45.438574], + [9.095774, 45.438574], + [9.095774, 45.434077], + [9.091278, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.438574], + [9.091278, 45.44307], + [9.095774, 45.44307], + [9.095774, 45.438574], + [9.091278, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.44307], + [9.091278, 45.447567], + [9.095774, 45.447567], + [9.095774, 45.44307], + [9.091278, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.447567], + [9.091278, 45.452063], + [9.095774, 45.452063], + [9.095774, 45.447567], + [9.091278, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.452063], + [9.091278, 45.45656], + [9.095774, 45.45656], + [9.095774, 45.452063], + [9.091278, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.45656], + [9.091278, 45.461057], + [9.095774, 45.461057], + [9.095774, 45.45656], + [9.091278, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.461057], + [9.091278, 45.465553], + [9.095774, 45.465553], + [9.095774, 45.461057], + [9.091278, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.465553], + [9.091278, 45.47005], + [9.095774, 45.47005], + [9.095774, 45.465553], + [9.091278, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.47005], + [9.091278, 45.474547], + [9.095774, 45.474547], + [9.095774, 45.47005], + [9.091278, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.474547], + [9.091278, 45.479043], + [9.095774, 45.479043], + [9.095774, 45.474547], + [9.091278, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.479043], + [9.091278, 45.48354], + [9.095774, 45.48354], + [9.095774, 45.479043], + [9.091278, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.48354], + [9.091278, 45.488036], + [9.095774, 45.488036], + [9.095774, 45.48354], + [9.091278, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.488036], + [9.091278, 45.492533], + [9.095774, 45.492533], + [9.095774, 45.488036], + [9.091278, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.492533], + [9.091278, 45.49703], + [9.095774, 45.49703], + [9.095774, 45.492533], + [9.091278, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.49703], + [9.091278, 45.501526], + [9.095774, 45.501526], + [9.095774, 45.49703], + [9.091278, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.501526], + [9.091278, 45.506023], + [9.095774, 45.506023], + [9.095774, 45.501526], + [9.091278, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.506023], + [9.091278, 45.510519], + [9.095774, 45.510519], + [9.095774, 45.506023], + [9.091278, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.510519], + [9.091278, 45.515016], + [9.095774, 45.515016], + [9.095774, 45.510519], + [9.091278, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.515016], + [9.091278, 45.519513], + [9.095774, 45.519513], + [9.095774, 45.515016], + [9.091278, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.519513], + [9.091278, 45.524009], + [9.095774, 45.524009], + [9.095774, 45.519513], + [9.091278, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.524009], + [9.091278, 45.528506], + [9.095774, 45.528506], + [9.095774, 45.524009], + [9.091278, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.528506], + [9.091278, 45.533002], + [9.095774, 45.533002], + [9.095774, 45.528506], + [9.091278, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.533002], + [9.091278, 45.537499], + [9.095774, 45.537499], + [9.095774, 45.533002], + [9.091278, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.537499], + [9.091278, 45.541996], + [9.095774, 45.541996], + [9.095774, 45.537499], + [9.091278, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.541996], + [9.091278, 45.546492], + [9.095774, 45.546492], + [9.095774, 45.541996], + [9.091278, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.546492], + [9.091278, 45.550989], + [9.095774, 45.550989], + [9.095774, 45.546492], + [9.091278, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.550989], + [9.091278, 45.555485], + [9.095774, 45.555485], + [9.095774, 45.550989], + [9.091278, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.555485], + [9.091278, 45.559982], + [9.095774, 45.559982], + [9.095774, 45.555485], + [9.091278, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.559982], + [9.091278, 45.564479], + [9.095774, 45.564479], + [9.095774, 45.559982], + [9.091278, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.564479], + [9.091278, 45.568975], + [9.095774, 45.568975], + [9.095774, 45.564479], + [9.091278, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.568975], + [9.091278, 45.573472], + [9.095774, 45.573472], + [9.095774, 45.568975], + [9.091278, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.573472], + [9.091278, 45.577968], + [9.095774, 45.577968], + [9.095774, 45.573472], + [9.091278, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.577968], + [9.091278, 45.582465], + [9.095774, 45.582465], + [9.095774, 45.577968], + [9.091278, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.582465], + [9.091278, 45.586962], + [9.095774, 45.586962], + [9.095774, 45.582465], + [9.091278, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.586962], + [9.091278, 45.591458], + [9.095774, 45.591458], + [9.095774, 45.586962], + [9.091278, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.591458], + [9.091278, 45.595955], + [9.095774, 45.595955], + [9.095774, 45.591458], + [9.091278, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.595955], + [9.091278, 45.600451], + [9.095774, 45.600451], + [9.095774, 45.595955], + [9.091278, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.600451], + [9.091278, 45.604948], + [9.095774, 45.604948], + [9.095774, 45.600451], + [9.091278, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.604948], + [9.091278, 45.609445], + [9.095774, 45.609445], + [9.095774, 45.604948], + [9.091278, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.609445], + [9.091278, 45.613941], + [9.095774, 45.613941], + [9.095774, 45.609445], + [9.091278, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.613941], + [9.091278, 45.618438], + [9.095774, 45.618438], + [9.095774, 45.613941], + [9.091278, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.618438], + [9.091278, 45.622934], + [9.095774, 45.622934], + [9.095774, 45.618438], + [9.091278, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.622934], + [9.091278, 45.627431], + [9.095774, 45.627431], + [9.095774, 45.622934], + [9.091278, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.627431], + [9.091278, 45.631928], + [9.095774, 45.631928], + [9.095774, 45.627431], + [9.091278, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.091278, 45.631928], + [9.091278, 45.636424], + [9.095774, 45.636424], + [9.095774, 45.631928], + [9.091278, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.339648], + [9.095774, 45.344145], + [9.100271, 45.344145], + [9.100271, 45.339648], + [9.095774, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.344145], + [9.095774, 45.348642], + [9.100271, 45.348642], + [9.100271, 45.344145], + [9.095774, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.348642], + [9.095774, 45.353138], + [9.100271, 45.353138], + [9.100271, 45.348642], + [9.095774, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.353138], + [9.095774, 45.357635], + [9.100271, 45.357635], + [9.100271, 45.353138], + [9.095774, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.357635], + [9.095774, 45.362131], + [9.100271, 45.362131], + [9.100271, 45.357635], + [9.095774, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.362131], + [9.095774, 45.366628], + [9.100271, 45.366628], + [9.100271, 45.362131], + [9.095774, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.366628], + [9.095774, 45.371125], + [9.100271, 45.371125], + [9.100271, 45.366628], + [9.095774, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.371125], + [9.095774, 45.375621], + [9.100271, 45.375621], + [9.100271, 45.371125], + [9.095774, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.375621], + [9.095774, 45.380118], + [9.100271, 45.380118], + [9.100271, 45.375621], + [9.095774, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.380118], + [9.095774, 45.384614], + [9.100271, 45.384614], + [9.100271, 45.380118], + [9.095774, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.384614], + [9.095774, 45.389111], + [9.100271, 45.389111], + [9.100271, 45.384614], + [9.095774, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.389111], + [9.095774, 45.393608], + [9.100271, 45.393608], + [9.100271, 45.389111], + [9.095774, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.393608], + [9.095774, 45.398104], + [9.100271, 45.398104], + [9.100271, 45.393608], + [9.095774, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.398104], + [9.095774, 45.402601], + [9.100271, 45.402601], + [9.100271, 45.398104], + [9.095774, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.402601], + [9.095774, 45.407097], + [9.100271, 45.407097], + [9.100271, 45.402601], + [9.095774, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.407097], + [9.095774, 45.411594], + [9.100271, 45.411594], + [9.100271, 45.407097], + [9.095774, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.411594], + [9.095774, 45.416091], + [9.100271, 45.416091], + [9.100271, 45.411594], + [9.095774, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.416091], + [9.095774, 45.420587], + [9.100271, 45.420587], + [9.100271, 45.416091], + [9.095774, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.420587], + [9.095774, 45.425084], + [9.100271, 45.425084], + [9.100271, 45.420587], + [9.095774, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.425084], + [9.095774, 45.42958], + [9.100271, 45.42958], + [9.100271, 45.425084], + [9.095774, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.42958], + [9.095774, 45.434077], + [9.100271, 45.434077], + [9.100271, 45.42958], + [9.095774, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.434077], + [9.095774, 45.438574], + [9.100271, 45.438574], + [9.100271, 45.434077], + [9.095774, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.438574], + [9.095774, 45.44307], + [9.100271, 45.44307], + [9.100271, 45.438574], + [9.095774, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.44307], + [9.095774, 45.447567], + [9.100271, 45.447567], + [9.100271, 45.44307], + [9.095774, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.447567], + [9.095774, 45.452063], + [9.100271, 45.452063], + [9.100271, 45.447567], + [9.095774, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.452063], + [9.095774, 45.45656], + [9.100271, 45.45656], + [9.100271, 45.452063], + [9.095774, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.45656], + [9.095774, 45.461057], + [9.100271, 45.461057], + [9.100271, 45.45656], + [9.095774, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.461057], + [9.095774, 45.465553], + [9.100271, 45.465553], + [9.100271, 45.461057], + [9.095774, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.465553], + [9.095774, 45.47005], + [9.100271, 45.47005], + [9.100271, 45.465553], + [9.095774, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.47005], + [9.095774, 45.474547], + [9.100271, 45.474547], + [9.100271, 45.47005], + [9.095774, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.474547], + [9.095774, 45.479043], + [9.100271, 45.479043], + [9.100271, 45.474547], + [9.095774, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.479043], + [9.095774, 45.48354], + [9.100271, 45.48354], + [9.100271, 45.479043], + [9.095774, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.48354], + [9.095774, 45.488036], + [9.100271, 45.488036], + [9.100271, 45.48354], + [9.095774, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.488036], + [9.095774, 45.492533], + [9.100271, 45.492533], + [9.100271, 45.488036], + [9.095774, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.492533], + [9.095774, 45.49703], + [9.100271, 45.49703], + [9.100271, 45.492533], + [9.095774, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.49703], + [9.095774, 45.501526], + [9.100271, 45.501526], + [9.100271, 45.49703], + [9.095774, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.501526], + [9.095774, 45.506023], + [9.100271, 45.506023], + [9.100271, 45.501526], + [9.095774, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.506023], + [9.095774, 45.510519], + [9.100271, 45.510519], + [9.100271, 45.506023], + [9.095774, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.510519], + [9.095774, 45.515016], + [9.100271, 45.515016], + [9.100271, 45.510519], + [9.095774, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.515016], + [9.095774, 45.519513], + [9.100271, 45.519513], + [9.100271, 45.515016], + [9.095774, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.519513], + [9.095774, 45.524009], + [9.100271, 45.524009], + [9.100271, 45.519513], + [9.095774, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.524009], + [9.095774, 45.528506], + [9.100271, 45.528506], + [9.100271, 45.524009], + [9.095774, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.528506], + [9.095774, 45.533002], + [9.100271, 45.533002], + [9.100271, 45.528506], + [9.095774, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.533002], + [9.095774, 45.537499], + [9.100271, 45.537499], + [9.100271, 45.533002], + [9.095774, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.537499], + [9.095774, 45.541996], + [9.100271, 45.541996], + [9.100271, 45.537499], + [9.095774, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.541996], + [9.095774, 45.546492], + [9.100271, 45.546492], + [9.100271, 45.541996], + [9.095774, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.546492], + [9.095774, 45.550989], + [9.100271, 45.550989], + [9.100271, 45.546492], + [9.095774, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.550989], + [9.095774, 45.555485], + [9.100271, 45.555485], + [9.100271, 45.550989], + [9.095774, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.555485], + [9.095774, 45.559982], + [9.100271, 45.559982], + [9.100271, 45.555485], + [9.095774, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.559982], + [9.095774, 45.564479], + [9.100271, 45.564479], + [9.100271, 45.559982], + [9.095774, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.564479], + [9.095774, 45.568975], + [9.100271, 45.568975], + [9.100271, 45.564479], + [9.095774, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.568975], + [9.095774, 45.573472], + [9.100271, 45.573472], + [9.100271, 45.568975], + [9.095774, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.573472], + [9.095774, 45.577968], + [9.100271, 45.577968], + [9.100271, 45.573472], + [9.095774, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.577968], + [9.095774, 45.582465], + [9.100271, 45.582465], + [9.100271, 45.577968], + [9.095774, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.582465], + [9.095774, 45.586962], + [9.100271, 45.586962], + [9.100271, 45.582465], + [9.095774, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.586962], + [9.095774, 45.591458], + [9.100271, 45.591458], + [9.100271, 45.586962], + [9.095774, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.591458], + [9.095774, 45.595955], + [9.100271, 45.595955], + [9.100271, 45.591458], + [9.095774, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.595955], + [9.095774, 45.600451], + [9.100271, 45.600451], + [9.100271, 45.595955], + [9.095774, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.600451], + [9.095774, 45.604948], + [9.100271, 45.604948], + [9.100271, 45.600451], + [9.095774, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.604948], + [9.095774, 45.609445], + [9.100271, 45.609445], + [9.100271, 45.604948], + [9.095774, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.609445], + [9.095774, 45.613941], + [9.100271, 45.613941], + [9.100271, 45.609445], + [9.095774, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.613941], + [9.095774, 45.618438], + [9.100271, 45.618438], + [9.100271, 45.613941], + [9.095774, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.618438], + [9.095774, 45.622934], + [9.100271, 45.622934], + [9.100271, 45.618438], + [9.095774, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.622934], + [9.095774, 45.627431], + [9.100271, 45.627431], + [9.100271, 45.622934], + [9.095774, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.627431], + [9.095774, 45.631928], + [9.100271, 45.631928], + [9.100271, 45.627431], + [9.095774, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.095774, 45.631928], + [9.095774, 45.636424], + [9.100271, 45.636424], + [9.100271, 45.631928], + [9.095774, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.339648], + [9.100271, 45.344145], + [9.104767, 45.344145], + [9.104767, 45.339648], + [9.100271, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.344145], + [9.100271, 45.348642], + [9.104767, 45.348642], + [9.104767, 45.344145], + [9.100271, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.348642], + [9.100271, 45.353138], + [9.104767, 45.353138], + [9.104767, 45.348642], + [9.100271, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.353138], + [9.100271, 45.357635], + [9.104767, 45.357635], + [9.104767, 45.353138], + [9.100271, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.357635], + [9.100271, 45.362131], + [9.104767, 45.362131], + [9.104767, 45.357635], + [9.100271, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.362131], + [9.100271, 45.366628], + [9.104767, 45.366628], + [9.104767, 45.362131], + [9.100271, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.366628], + [9.100271, 45.371125], + [9.104767, 45.371125], + [9.104767, 45.366628], + [9.100271, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.371125], + [9.100271, 45.375621], + [9.104767, 45.375621], + [9.104767, 45.371125], + [9.100271, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.375621], + [9.100271, 45.380118], + [9.104767, 45.380118], + [9.104767, 45.375621], + [9.100271, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.380118], + [9.100271, 45.384614], + [9.104767, 45.384614], + [9.104767, 45.380118], + [9.100271, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.384614], + [9.100271, 45.389111], + [9.104767, 45.389111], + [9.104767, 45.384614], + [9.100271, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.389111], + [9.100271, 45.393608], + [9.104767, 45.393608], + [9.104767, 45.389111], + [9.100271, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.393608], + [9.100271, 45.398104], + [9.104767, 45.398104], + [9.104767, 45.393608], + [9.100271, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.398104], + [9.100271, 45.402601], + [9.104767, 45.402601], + [9.104767, 45.398104], + [9.100271, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.402601], + [9.100271, 45.407097], + [9.104767, 45.407097], + [9.104767, 45.402601], + [9.100271, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.407097], + [9.100271, 45.411594], + [9.104767, 45.411594], + [9.104767, 45.407097], + [9.100271, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.411594], + [9.100271, 45.416091], + [9.104767, 45.416091], + [9.104767, 45.411594], + [9.100271, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.416091], + [9.100271, 45.420587], + [9.104767, 45.420587], + [9.104767, 45.416091], + [9.100271, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.420587], + [9.100271, 45.425084], + [9.104767, 45.425084], + [9.104767, 45.420587], + [9.100271, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.425084], + [9.100271, 45.42958], + [9.104767, 45.42958], + [9.104767, 45.425084], + [9.100271, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.42958], + [9.100271, 45.434077], + [9.104767, 45.434077], + [9.104767, 45.42958], + [9.100271, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.434077], + [9.100271, 45.438574], + [9.104767, 45.438574], + [9.104767, 45.434077], + [9.100271, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.438574], + [9.100271, 45.44307], + [9.104767, 45.44307], + [9.104767, 45.438574], + [9.100271, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.44307], + [9.100271, 45.447567], + [9.104767, 45.447567], + [9.104767, 45.44307], + [9.100271, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.447567], + [9.100271, 45.452063], + [9.104767, 45.452063], + [9.104767, 45.447567], + [9.100271, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.452063], + [9.100271, 45.45656], + [9.104767, 45.45656], + [9.104767, 45.452063], + [9.100271, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.45656], + [9.100271, 45.461057], + [9.104767, 45.461057], + [9.104767, 45.45656], + [9.100271, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.461057], + [9.100271, 45.465553], + [9.104767, 45.465553], + [9.104767, 45.461057], + [9.100271, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.465553], + [9.100271, 45.47005], + [9.104767, 45.47005], + [9.104767, 45.465553], + [9.100271, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.47005], + [9.100271, 45.474547], + [9.104767, 45.474547], + [9.104767, 45.47005], + [9.100271, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.474547], + [9.100271, 45.479043], + [9.104767, 45.479043], + [9.104767, 45.474547], + [9.100271, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.479043], + [9.100271, 45.48354], + [9.104767, 45.48354], + [9.104767, 45.479043], + [9.100271, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.48354], + [9.100271, 45.488036], + [9.104767, 45.488036], + [9.104767, 45.48354], + [9.100271, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.488036], + [9.100271, 45.492533], + [9.104767, 45.492533], + [9.104767, 45.488036], + [9.100271, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.492533], + [9.100271, 45.49703], + [9.104767, 45.49703], + [9.104767, 45.492533], + [9.100271, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.49703], + [9.100271, 45.501526], + [9.104767, 45.501526], + [9.104767, 45.49703], + [9.100271, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.501526], + [9.100271, 45.506023], + [9.104767, 45.506023], + [9.104767, 45.501526], + [9.100271, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.506023], + [9.100271, 45.510519], + [9.104767, 45.510519], + [9.104767, 45.506023], + [9.100271, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.510519], + [9.100271, 45.515016], + [9.104767, 45.515016], + [9.104767, 45.510519], + [9.100271, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.515016], + [9.100271, 45.519513], + [9.104767, 45.519513], + [9.104767, 45.515016], + [9.100271, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.519513], + [9.100271, 45.524009], + [9.104767, 45.524009], + [9.104767, 45.519513], + [9.100271, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.524009], + [9.100271, 45.528506], + [9.104767, 45.528506], + [9.104767, 45.524009], + [9.100271, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.528506], + [9.100271, 45.533002], + [9.104767, 45.533002], + [9.104767, 45.528506], + [9.100271, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.533002], + [9.100271, 45.537499], + [9.104767, 45.537499], + [9.104767, 45.533002], + [9.100271, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.537499], + [9.100271, 45.541996], + [9.104767, 45.541996], + [9.104767, 45.537499], + [9.100271, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.541996], + [9.100271, 45.546492], + [9.104767, 45.546492], + [9.104767, 45.541996], + [9.100271, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.546492], + [9.100271, 45.550989], + [9.104767, 45.550989], + [9.104767, 45.546492], + [9.100271, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.550989], + [9.100271, 45.555485], + [9.104767, 45.555485], + [9.104767, 45.550989], + [9.100271, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.555485], + [9.100271, 45.559982], + [9.104767, 45.559982], + [9.104767, 45.555485], + [9.100271, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.559982], + [9.100271, 45.564479], + [9.104767, 45.564479], + [9.104767, 45.559982], + [9.100271, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.564479], + [9.100271, 45.568975], + [9.104767, 45.568975], + [9.104767, 45.564479], + [9.100271, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.568975], + [9.100271, 45.573472], + [9.104767, 45.573472], + [9.104767, 45.568975], + [9.100271, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.573472], + [9.100271, 45.577968], + [9.104767, 45.577968], + [9.104767, 45.573472], + [9.100271, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.577968], + [9.100271, 45.582465], + [9.104767, 45.582465], + [9.104767, 45.577968], + [9.100271, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.582465], + [9.100271, 45.586962], + [9.104767, 45.586962], + [9.104767, 45.582465], + [9.100271, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.586962], + [9.100271, 45.591458], + [9.104767, 45.591458], + [9.104767, 45.586962], + [9.100271, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.591458], + [9.100271, 45.595955], + [9.104767, 45.595955], + [9.104767, 45.591458], + [9.100271, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.595955], + [9.100271, 45.600451], + [9.104767, 45.600451], + [9.104767, 45.595955], + [9.100271, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.600451], + [9.100271, 45.604948], + [9.104767, 45.604948], + [9.104767, 45.600451], + [9.100271, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.604948], + [9.100271, 45.609445], + [9.104767, 45.609445], + [9.104767, 45.604948], + [9.100271, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.609445], + [9.100271, 45.613941], + [9.104767, 45.613941], + [9.104767, 45.609445], + [9.100271, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.613941], + [9.100271, 45.618438], + [9.104767, 45.618438], + [9.104767, 45.613941], + [9.100271, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.618438], + [9.100271, 45.622934], + [9.104767, 45.622934], + [9.104767, 45.618438], + [9.100271, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.622934], + [9.100271, 45.627431], + [9.104767, 45.627431], + [9.104767, 45.622934], + [9.100271, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.627431], + [9.100271, 45.631928], + [9.104767, 45.631928], + [9.104767, 45.627431], + [9.100271, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.100271, 45.631928], + [9.100271, 45.636424], + [9.104767, 45.636424], + [9.104767, 45.631928], + [9.100271, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.339648], + [9.104767, 45.344145], + [9.109264, 45.344145], + [9.109264, 45.339648], + [9.104767, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.344145], + [9.104767, 45.348642], + [9.109264, 45.348642], + [9.109264, 45.344145], + [9.104767, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.348642], + [9.104767, 45.353138], + [9.109264, 45.353138], + [9.109264, 45.348642], + [9.104767, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.353138], + [9.104767, 45.357635], + [9.109264, 45.357635], + [9.109264, 45.353138], + [9.104767, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.357635], + [9.104767, 45.362131], + [9.109264, 45.362131], + [9.109264, 45.357635], + [9.104767, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.362131], + [9.104767, 45.366628], + [9.109264, 45.366628], + [9.109264, 45.362131], + [9.104767, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.366628], + [9.104767, 45.371125], + [9.109264, 45.371125], + [9.109264, 45.366628], + [9.104767, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.371125], + [9.104767, 45.375621], + [9.109264, 45.375621], + [9.109264, 45.371125], + [9.104767, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.375621], + [9.104767, 45.380118], + [9.109264, 45.380118], + [9.109264, 45.375621], + [9.104767, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.380118], + [9.104767, 45.384614], + [9.109264, 45.384614], + [9.109264, 45.380118], + [9.104767, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.384614], + [9.104767, 45.389111], + [9.109264, 45.389111], + [9.109264, 45.384614], + [9.104767, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.389111], + [9.104767, 45.393608], + [9.109264, 45.393608], + [9.109264, 45.389111], + [9.104767, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.393608], + [9.104767, 45.398104], + [9.109264, 45.398104], + [9.109264, 45.393608], + [9.104767, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.398104], + [9.104767, 45.402601], + [9.109264, 45.402601], + [9.109264, 45.398104], + [9.104767, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.402601], + [9.104767, 45.407097], + [9.109264, 45.407097], + [9.109264, 45.402601], + [9.104767, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.407097], + [9.104767, 45.411594], + [9.109264, 45.411594], + [9.109264, 45.407097], + [9.104767, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.411594], + [9.104767, 45.416091], + [9.109264, 45.416091], + [9.109264, 45.411594], + [9.104767, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.416091], + [9.104767, 45.420587], + [9.109264, 45.420587], + [9.109264, 45.416091], + [9.104767, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.420587], + [9.104767, 45.425084], + [9.109264, 45.425084], + [9.109264, 45.420587], + [9.104767, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.425084], + [9.104767, 45.42958], + [9.109264, 45.42958], + [9.109264, 45.425084], + [9.104767, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.42958], + [9.104767, 45.434077], + [9.109264, 45.434077], + [9.109264, 45.42958], + [9.104767, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.434077], + [9.104767, 45.438574], + [9.109264, 45.438574], + [9.109264, 45.434077], + [9.104767, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.438574], + [9.104767, 45.44307], + [9.109264, 45.44307], + [9.109264, 45.438574], + [9.104767, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.44307], + [9.104767, 45.447567], + [9.109264, 45.447567], + [9.109264, 45.44307], + [9.104767, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.447567], + [9.104767, 45.452063], + [9.109264, 45.452063], + [9.109264, 45.447567], + [9.104767, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.452063], + [9.104767, 45.45656], + [9.109264, 45.45656], + [9.109264, 45.452063], + [9.104767, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.45656], + [9.104767, 45.461057], + [9.109264, 45.461057], + [9.109264, 45.45656], + [9.104767, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.461057], + [9.104767, 45.465553], + [9.109264, 45.465553], + [9.109264, 45.461057], + [9.104767, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.465553], + [9.104767, 45.47005], + [9.109264, 45.47005], + [9.109264, 45.465553], + [9.104767, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.47005], + [9.104767, 45.474547], + [9.109264, 45.474547], + [9.109264, 45.47005], + [9.104767, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.474547], + [9.104767, 45.479043], + [9.109264, 45.479043], + [9.109264, 45.474547], + [9.104767, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.479043], + [9.104767, 45.48354], + [9.109264, 45.48354], + [9.109264, 45.479043], + [9.104767, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.48354], + [9.104767, 45.488036], + [9.109264, 45.488036], + [9.109264, 45.48354], + [9.104767, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.488036], + [9.104767, 45.492533], + [9.109264, 45.492533], + [9.109264, 45.488036], + [9.104767, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.492533], + [9.104767, 45.49703], + [9.109264, 45.49703], + [9.109264, 45.492533], + [9.104767, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.49703], + [9.104767, 45.501526], + [9.109264, 45.501526], + [9.109264, 45.49703], + [9.104767, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.501526], + [9.104767, 45.506023], + [9.109264, 45.506023], + [9.109264, 45.501526], + [9.104767, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.506023], + [9.104767, 45.510519], + [9.109264, 45.510519], + [9.109264, 45.506023], + [9.104767, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.510519], + [9.104767, 45.515016], + [9.109264, 45.515016], + [9.109264, 45.510519], + [9.104767, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.515016], + [9.104767, 45.519513], + [9.109264, 45.519513], + [9.109264, 45.515016], + [9.104767, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.519513], + [9.104767, 45.524009], + [9.109264, 45.524009], + [9.109264, 45.519513], + [9.104767, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.524009], + [9.104767, 45.528506], + [9.109264, 45.528506], + [9.109264, 45.524009], + [9.104767, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.528506], + [9.104767, 45.533002], + [9.109264, 45.533002], + [9.109264, 45.528506], + [9.104767, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.533002], + [9.104767, 45.537499], + [9.109264, 45.537499], + [9.109264, 45.533002], + [9.104767, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.537499], + [9.104767, 45.541996], + [9.109264, 45.541996], + [9.109264, 45.537499], + [9.104767, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.541996], + [9.104767, 45.546492], + [9.109264, 45.546492], + [9.109264, 45.541996], + [9.104767, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.546492], + [9.104767, 45.550989], + [9.109264, 45.550989], + [9.109264, 45.546492], + [9.104767, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.550989], + [9.104767, 45.555485], + [9.109264, 45.555485], + [9.109264, 45.550989], + [9.104767, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.555485], + [9.104767, 45.559982], + [9.109264, 45.559982], + [9.109264, 45.555485], + [9.104767, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.559982], + [9.104767, 45.564479], + [9.109264, 45.564479], + [9.109264, 45.559982], + [9.104767, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.564479], + [9.104767, 45.568975], + [9.109264, 45.568975], + [9.109264, 45.564479], + [9.104767, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.568975], + [9.104767, 45.573472], + [9.109264, 45.573472], + [9.109264, 45.568975], + [9.104767, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.573472], + [9.104767, 45.577968], + [9.109264, 45.577968], + [9.109264, 45.573472], + [9.104767, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.577968], + [9.104767, 45.582465], + [9.109264, 45.582465], + [9.109264, 45.577968], + [9.104767, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.582465], + [9.104767, 45.586962], + [9.109264, 45.586962], + [9.109264, 45.582465], + [9.104767, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.586962], + [9.104767, 45.591458], + [9.109264, 45.591458], + [9.109264, 45.586962], + [9.104767, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.591458], + [9.104767, 45.595955], + [9.109264, 45.595955], + [9.109264, 45.591458], + [9.104767, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.595955], + [9.104767, 45.600451], + [9.109264, 45.600451], + [9.109264, 45.595955], + [9.104767, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.600451], + [9.104767, 45.604948], + [9.109264, 45.604948], + [9.109264, 45.600451], + [9.104767, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.604948], + [9.104767, 45.609445], + [9.109264, 45.609445], + [9.109264, 45.604948], + [9.104767, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.609445], + [9.104767, 45.613941], + [9.109264, 45.613941], + [9.109264, 45.609445], + [9.104767, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.613941], + [9.104767, 45.618438], + [9.109264, 45.618438], + [9.109264, 45.613941], + [9.104767, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.618438], + [9.104767, 45.622934], + [9.109264, 45.622934], + [9.109264, 45.618438], + [9.104767, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.622934], + [9.104767, 45.627431], + [9.109264, 45.627431], + [9.109264, 45.622934], + [9.104767, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.627431], + [9.104767, 45.631928], + [9.109264, 45.631928], + [9.109264, 45.627431], + [9.104767, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.104767, 45.631928], + [9.104767, 45.636424], + [9.109264, 45.636424], + [9.109264, 45.631928], + [9.104767, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.339648], + [9.109264, 45.344145], + [9.113761, 45.344145], + [9.113761, 45.339648], + [9.109264, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.344145], + [9.109264, 45.348642], + [9.113761, 45.348642], + [9.113761, 45.344145], + [9.109264, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.348642], + [9.109264, 45.353138], + [9.113761, 45.353138], + [9.113761, 45.348642], + [9.109264, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.353138], + [9.109264, 45.357635], + [9.113761, 45.357635], + [9.113761, 45.353138], + [9.109264, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.357635], + [9.109264, 45.362131], + [9.113761, 45.362131], + [9.113761, 45.357635], + [9.109264, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.362131], + [9.109264, 45.366628], + [9.113761, 45.366628], + [9.113761, 45.362131], + [9.109264, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.366628], + [9.109264, 45.371125], + [9.113761, 45.371125], + [9.113761, 45.366628], + [9.109264, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.371125], + [9.109264, 45.375621], + [9.113761, 45.375621], + [9.113761, 45.371125], + [9.109264, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.375621], + [9.109264, 45.380118], + [9.113761, 45.380118], + [9.113761, 45.375621], + [9.109264, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.380118], + [9.109264, 45.384614], + [9.113761, 45.384614], + [9.113761, 45.380118], + [9.109264, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.384614], + [9.109264, 45.389111], + [9.113761, 45.389111], + [9.113761, 45.384614], + [9.109264, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.389111], + [9.109264, 45.393608], + [9.113761, 45.393608], + [9.113761, 45.389111], + [9.109264, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.393608], + [9.109264, 45.398104], + [9.113761, 45.398104], + [9.113761, 45.393608], + [9.109264, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.398104], + [9.109264, 45.402601], + [9.113761, 45.402601], + [9.113761, 45.398104], + [9.109264, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.402601], + [9.109264, 45.407097], + [9.113761, 45.407097], + [9.113761, 45.402601], + [9.109264, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.407097], + [9.109264, 45.411594], + [9.113761, 45.411594], + [9.113761, 45.407097], + [9.109264, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.411594], + [9.109264, 45.416091], + [9.113761, 45.416091], + [9.113761, 45.411594], + [9.109264, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.416091], + [9.109264, 45.420587], + [9.113761, 45.420587], + [9.113761, 45.416091], + [9.109264, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.420587], + [9.109264, 45.425084], + [9.113761, 45.425084], + [9.113761, 45.420587], + [9.109264, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.425084], + [9.109264, 45.42958], + [9.113761, 45.42958], + [9.113761, 45.425084], + [9.109264, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.42958], + [9.109264, 45.434077], + [9.113761, 45.434077], + [9.113761, 45.42958], + [9.109264, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.434077], + [9.109264, 45.438574], + [9.113761, 45.438574], + [9.113761, 45.434077], + [9.109264, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.438574], + [9.109264, 45.44307], + [9.113761, 45.44307], + [9.113761, 45.438574], + [9.109264, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.44307], + [9.109264, 45.447567], + [9.113761, 45.447567], + [9.113761, 45.44307], + [9.109264, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.447567], + [9.109264, 45.452063], + [9.113761, 45.452063], + [9.113761, 45.447567], + [9.109264, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.452063], + [9.109264, 45.45656], + [9.113761, 45.45656], + [9.113761, 45.452063], + [9.109264, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.45656], + [9.109264, 45.461057], + [9.113761, 45.461057], + [9.113761, 45.45656], + [9.109264, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.461057], + [9.109264, 45.465553], + [9.113761, 45.465553], + [9.113761, 45.461057], + [9.109264, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.465553], + [9.109264, 45.47005], + [9.113761, 45.47005], + [9.113761, 45.465553], + [9.109264, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.47005], + [9.109264, 45.474547], + [9.113761, 45.474547], + [9.113761, 45.47005], + [9.109264, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.474547], + [9.109264, 45.479043], + [9.113761, 45.479043], + [9.113761, 45.474547], + [9.109264, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.479043], + [9.109264, 45.48354], + [9.113761, 45.48354], + [9.113761, 45.479043], + [9.109264, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.48354], + [9.109264, 45.488036], + [9.113761, 45.488036], + [9.113761, 45.48354], + [9.109264, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.488036], + [9.109264, 45.492533], + [9.113761, 45.492533], + [9.113761, 45.488036], + [9.109264, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.492533], + [9.109264, 45.49703], + [9.113761, 45.49703], + [9.113761, 45.492533], + [9.109264, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.49703], + [9.109264, 45.501526], + [9.113761, 45.501526], + [9.113761, 45.49703], + [9.109264, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.501526], + [9.109264, 45.506023], + [9.113761, 45.506023], + [9.113761, 45.501526], + [9.109264, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.506023], + [9.109264, 45.510519], + [9.113761, 45.510519], + [9.113761, 45.506023], + [9.109264, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.510519], + [9.109264, 45.515016], + [9.113761, 45.515016], + [9.113761, 45.510519], + [9.109264, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.515016], + [9.109264, 45.519513], + [9.113761, 45.519513], + [9.113761, 45.515016], + [9.109264, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.519513], + [9.109264, 45.524009], + [9.113761, 45.524009], + [9.113761, 45.519513], + [9.109264, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.524009], + [9.109264, 45.528506], + [9.113761, 45.528506], + [9.113761, 45.524009], + [9.109264, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.528506], + [9.109264, 45.533002], + [9.113761, 45.533002], + [9.113761, 45.528506], + [9.109264, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.533002], + [9.109264, 45.537499], + [9.113761, 45.537499], + [9.113761, 45.533002], + [9.109264, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.537499], + [9.109264, 45.541996], + [9.113761, 45.541996], + [9.113761, 45.537499], + [9.109264, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.541996], + [9.109264, 45.546492], + [9.113761, 45.546492], + [9.113761, 45.541996], + [9.109264, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.546492], + [9.109264, 45.550989], + [9.113761, 45.550989], + [9.113761, 45.546492], + [9.109264, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.550989], + [9.109264, 45.555485], + [9.113761, 45.555485], + [9.113761, 45.550989], + [9.109264, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.555485], + [9.109264, 45.559982], + [9.113761, 45.559982], + [9.113761, 45.555485], + [9.109264, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.559982], + [9.109264, 45.564479], + [9.113761, 45.564479], + [9.113761, 45.559982], + [9.109264, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.564479], + [9.109264, 45.568975], + [9.113761, 45.568975], + [9.113761, 45.564479], + [9.109264, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.568975], + [9.109264, 45.573472], + [9.113761, 45.573472], + [9.113761, 45.568975], + [9.109264, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.573472], + [9.109264, 45.577968], + [9.113761, 45.577968], + [9.113761, 45.573472], + [9.109264, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.577968], + [9.109264, 45.582465], + [9.113761, 45.582465], + [9.113761, 45.577968], + [9.109264, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.582465], + [9.109264, 45.586962], + [9.113761, 45.586962], + [9.113761, 45.582465], + [9.109264, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.586962], + [9.109264, 45.591458], + [9.113761, 45.591458], + [9.113761, 45.586962], + [9.109264, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.591458], + [9.109264, 45.595955], + [9.113761, 45.595955], + [9.113761, 45.591458], + [9.109264, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.595955], + [9.109264, 45.600451], + [9.113761, 45.600451], + [9.113761, 45.595955], + [9.109264, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.600451], + [9.109264, 45.604948], + [9.113761, 45.604948], + [9.113761, 45.600451], + [9.109264, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.604948], + [9.109264, 45.609445], + [9.113761, 45.609445], + [9.113761, 45.604948], + [9.109264, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.609445], + [9.109264, 45.613941], + [9.113761, 45.613941], + [9.113761, 45.609445], + [9.109264, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.613941], + [9.109264, 45.618438], + [9.113761, 45.618438], + [9.113761, 45.613941], + [9.109264, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.618438], + [9.109264, 45.622934], + [9.113761, 45.622934], + [9.113761, 45.618438], + [9.109264, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.622934], + [9.109264, 45.627431], + [9.113761, 45.627431], + [9.113761, 45.622934], + [9.109264, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.627431], + [9.109264, 45.631928], + [9.113761, 45.631928], + [9.113761, 45.627431], + [9.109264, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.109264, 45.631928], + [9.109264, 45.636424], + [9.113761, 45.636424], + [9.113761, 45.631928], + [9.109264, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.339648], + [9.113761, 45.344145], + [9.118257, 45.344145], + [9.118257, 45.339648], + [9.113761, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.344145], + [9.113761, 45.348642], + [9.118257, 45.348642], + [9.118257, 45.344145], + [9.113761, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.348642], + [9.113761, 45.353138], + [9.118257, 45.353138], + [9.118257, 45.348642], + [9.113761, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.353138], + [9.113761, 45.357635], + [9.118257, 45.357635], + [9.118257, 45.353138], + [9.113761, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.357635], + [9.113761, 45.362131], + [9.118257, 45.362131], + [9.118257, 45.357635], + [9.113761, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.362131], + [9.113761, 45.366628], + [9.118257, 45.366628], + [9.118257, 45.362131], + [9.113761, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.366628], + [9.113761, 45.371125], + [9.118257, 45.371125], + [9.118257, 45.366628], + [9.113761, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.371125], + [9.113761, 45.375621], + [9.118257, 45.375621], + [9.118257, 45.371125], + [9.113761, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.375621], + [9.113761, 45.380118], + [9.118257, 45.380118], + [9.118257, 45.375621], + [9.113761, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.380118], + [9.113761, 45.384614], + [9.118257, 45.384614], + [9.118257, 45.380118], + [9.113761, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.384614], + [9.113761, 45.389111], + [9.118257, 45.389111], + [9.118257, 45.384614], + [9.113761, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.389111], + [9.113761, 45.393608], + [9.118257, 45.393608], + [9.118257, 45.389111], + [9.113761, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.393608], + [9.113761, 45.398104], + [9.118257, 45.398104], + [9.118257, 45.393608], + [9.113761, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.398104], + [9.113761, 45.402601], + [9.118257, 45.402601], + [9.118257, 45.398104], + [9.113761, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.402601], + [9.113761, 45.407097], + [9.118257, 45.407097], + [9.118257, 45.402601], + [9.113761, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.407097], + [9.113761, 45.411594], + [9.118257, 45.411594], + [9.118257, 45.407097], + [9.113761, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.411594], + [9.113761, 45.416091], + [9.118257, 45.416091], + [9.118257, 45.411594], + [9.113761, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.416091], + [9.113761, 45.420587], + [9.118257, 45.420587], + [9.118257, 45.416091], + [9.113761, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.420587], + [9.113761, 45.425084], + [9.118257, 45.425084], + [9.118257, 45.420587], + [9.113761, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.425084], + [9.113761, 45.42958], + [9.118257, 45.42958], + [9.118257, 45.425084], + [9.113761, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.42958], + [9.113761, 45.434077], + [9.118257, 45.434077], + [9.118257, 45.42958], + [9.113761, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.434077], + [9.113761, 45.438574], + [9.118257, 45.438574], + [9.118257, 45.434077], + [9.113761, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 14, + "stroke": "#e0f0ff", + "fill": "#e0f0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.438574], + [9.113761, 45.44307], + [9.118257, 45.44307], + [9.118257, 45.438574], + [9.113761, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.44307], + [9.113761, 45.447567], + [9.118257, 45.447567], + [9.118257, 45.44307], + [9.113761, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.447567], + [9.113761, 45.452063], + [9.118257, 45.452063], + [9.118257, 45.447567], + [9.113761, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.452063], + [9.113761, 45.45656], + [9.118257, 45.45656], + [9.118257, 45.452063], + [9.113761, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.45656], + [9.113761, 45.461057], + [9.118257, 45.461057], + [9.118257, 45.45656], + [9.113761, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.461057], + [9.113761, 45.465553], + [9.118257, 45.465553], + [9.118257, 45.461057], + [9.113761, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.465553], + [9.113761, 45.47005], + [9.118257, 45.47005], + [9.118257, 45.465553], + [9.113761, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.47005], + [9.113761, 45.474547], + [9.118257, 45.474547], + [9.118257, 45.47005], + [9.113761, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.474547], + [9.113761, 45.479043], + [9.118257, 45.479043], + [9.118257, 45.474547], + [9.113761, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.479043], + [9.113761, 45.48354], + [9.118257, 45.48354], + [9.118257, 45.479043], + [9.113761, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.48354], + [9.113761, 45.488036], + [9.118257, 45.488036], + [9.118257, 45.48354], + [9.113761, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.488036], + [9.113761, 45.492533], + [9.118257, 45.492533], + [9.118257, 45.488036], + [9.113761, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.492533], + [9.113761, 45.49703], + [9.118257, 45.49703], + [9.118257, 45.492533], + [9.113761, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.49703], + [9.113761, 45.501526], + [9.118257, 45.501526], + [9.118257, 45.49703], + [9.113761, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.501526], + [9.113761, 45.506023], + [9.118257, 45.506023], + [9.118257, 45.501526], + [9.113761, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.506023], + [9.113761, 45.510519], + [9.118257, 45.510519], + [9.118257, 45.506023], + [9.113761, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.510519], + [9.113761, 45.515016], + [9.118257, 45.515016], + [9.118257, 45.510519], + [9.113761, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.515016], + [9.113761, 45.519513], + [9.118257, 45.519513], + [9.118257, 45.515016], + [9.113761, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.519513], + [9.113761, 45.524009], + [9.118257, 45.524009], + [9.118257, 45.519513], + [9.113761, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.524009], + [9.113761, 45.528506], + [9.118257, 45.528506], + [9.118257, 45.524009], + [9.113761, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.528506], + [9.113761, 45.533002], + [9.118257, 45.533002], + [9.118257, 45.528506], + [9.113761, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.533002], + [9.113761, 45.537499], + [9.118257, 45.537499], + [9.118257, 45.533002], + [9.113761, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.537499], + [9.113761, 45.541996], + [9.118257, 45.541996], + [9.118257, 45.537499], + [9.113761, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.541996], + [9.113761, 45.546492], + [9.118257, 45.546492], + [9.118257, 45.541996], + [9.113761, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.546492], + [9.113761, 45.550989], + [9.118257, 45.550989], + [9.118257, 45.546492], + [9.113761, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.550989], + [9.113761, 45.555485], + [9.118257, 45.555485], + [9.118257, 45.550989], + [9.113761, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.555485], + [9.113761, 45.559982], + [9.118257, 45.559982], + [9.118257, 45.555485], + [9.113761, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.559982], + [9.113761, 45.564479], + [9.118257, 45.564479], + [9.118257, 45.559982], + [9.113761, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.564479], + [9.113761, 45.568975], + [9.118257, 45.568975], + [9.118257, 45.564479], + [9.113761, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.568975], + [9.113761, 45.573472], + [9.118257, 45.573472], + [9.118257, 45.568975], + [9.113761, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.573472], + [9.113761, 45.577968], + [9.118257, 45.577968], + [9.118257, 45.573472], + [9.113761, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.577968], + [9.113761, 45.582465], + [9.118257, 45.582465], + [9.118257, 45.577968], + [9.113761, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.582465], + [9.113761, 45.586962], + [9.118257, 45.586962], + [9.118257, 45.582465], + [9.113761, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.586962], + [9.113761, 45.591458], + [9.118257, 45.591458], + [9.118257, 45.586962], + [9.113761, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.591458], + [9.113761, 45.595955], + [9.118257, 45.595955], + [9.118257, 45.591458], + [9.113761, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.595955], + [9.113761, 45.600451], + [9.118257, 45.600451], + [9.118257, 45.595955], + [9.113761, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.600451], + [9.113761, 45.604948], + [9.118257, 45.604948], + [9.118257, 45.600451], + [9.113761, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.604948], + [9.113761, 45.609445], + [9.118257, 45.609445], + [9.118257, 45.604948], + [9.113761, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.609445], + [9.113761, 45.613941], + [9.118257, 45.613941], + [9.118257, 45.609445], + [9.113761, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.613941], + [9.113761, 45.618438], + [9.118257, 45.618438], + [9.118257, 45.613941], + [9.113761, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.618438], + [9.113761, 45.622934], + [9.118257, 45.622934], + [9.118257, 45.618438], + [9.113761, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.622934], + [9.113761, 45.627431], + [9.118257, 45.627431], + [9.118257, 45.622934], + [9.113761, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.627431], + [9.113761, 45.631928], + [9.118257, 45.631928], + [9.118257, 45.627431], + [9.113761, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.113761, 45.631928], + [9.113761, 45.636424], + [9.118257, 45.636424], + [9.118257, 45.631928], + [9.113761, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.339648], + [9.118257, 45.344145], + [9.122754, 45.344145], + [9.122754, 45.339648], + [9.118257, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.344145], + [9.118257, 45.348642], + [9.122754, 45.348642], + [9.122754, 45.344145], + [9.118257, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.348642], + [9.118257, 45.353138], + [9.122754, 45.353138], + [9.122754, 45.348642], + [9.118257, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.353138], + [9.118257, 45.357635], + [9.122754, 45.357635], + [9.122754, 45.353138], + [9.118257, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.357635], + [9.118257, 45.362131], + [9.122754, 45.362131], + [9.122754, 45.357635], + [9.118257, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.362131], + [9.118257, 45.366628], + [9.122754, 45.366628], + [9.122754, 45.362131], + [9.118257, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.366628], + [9.118257, 45.371125], + [9.122754, 45.371125], + [9.122754, 45.366628], + [9.118257, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.371125], + [9.118257, 45.375621], + [9.122754, 45.375621], + [9.122754, 45.371125], + [9.118257, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.375621], + [9.118257, 45.380118], + [9.122754, 45.380118], + [9.122754, 45.375621], + [9.118257, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.380118], + [9.118257, 45.384614], + [9.122754, 45.384614], + [9.122754, 45.380118], + [9.118257, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.384614], + [9.118257, 45.389111], + [9.122754, 45.389111], + [9.122754, 45.384614], + [9.118257, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.389111], + [9.118257, 45.393608], + [9.122754, 45.393608], + [9.122754, 45.389111], + [9.118257, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.393608], + [9.118257, 45.398104], + [9.122754, 45.398104], + [9.122754, 45.393608], + [9.118257, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.398104], + [9.118257, 45.402601], + [9.122754, 45.402601], + [9.122754, 45.398104], + [9.118257, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.402601], + [9.118257, 45.407097], + [9.122754, 45.407097], + [9.122754, 45.402601], + [9.118257, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.407097], + [9.118257, 45.411594], + [9.122754, 45.411594], + [9.122754, 45.407097], + [9.118257, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.411594], + [9.118257, 45.416091], + [9.122754, 45.416091], + [9.122754, 45.411594], + [9.118257, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.416091], + [9.118257, 45.420587], + [9.122754, 45.420587], + [9.122754, 45.416091], + [9.118257, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.420587], + [9.118257, 45.425084], + [9.122754, 45.425084], + [9.122754, 45.420587], + [9.118257, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.425084], + [9.118257, 45.42958], + [9.122754, 45.42958], + [9.122754, 45.425084], + [9.118257, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.42958], + [9.118257, 45.434077], + [9.122754, 45.434077], + [9.122754, 45.42958], + [9.118257, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.434077], + [9.118257, 45.438574], + [9.122754, 45.438574], + [9.122754, 45.434077], + [9.118257, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.438574], + [9.118257, 45.44307], + [9.122754, 45.44307], + [9.122754, 45.438574], + [9.118257, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.44307], + [9.118257, 45.447567], + [9.122754, 45.447567], + [9.122754, 45.44307], + [9.118257, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.447567], + [9.118257, 45.452063], + [9.122754, 45.452063], + [9.122754, 45.447567], + [9.118257, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.452063], + [9.118257, 45.45656], + [9.122754, 45.45656], + [9.122754, 45.452063], + [9.118257, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.45656], + [9.118257, 45.461057], + [9.122754, 45.461057], + [9.122754, 45.45656], + [9.118257, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.461057], + [9.118257, 45.465553], + [9.122754, 45.465553], + [9.122754, 45.461057], + [9.118257, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.465553], + [9.118257, 45.47005], + [9.122754, 45.47005], + [9.122754, 45.465553], + [9.118257, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.47005], + [9.118257, 45.474547], + [9.122754, 45.474547], + [9.122754, 45.47005], + [9.118257, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.474547], + [9.118257, 45.479043], + [9.122754, 45.479043], + [9.122754, 45.474547], + [9.118257, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.479043], + [9.118257, 45.48354], + [9.122754, 45.48354], + [9.122754, 45.479043], + [9.118257, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.48354], + [9.118257, 45.488036], + [9.122754, 45.488036], + [9.122754, 45.48354], + [9.118257, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.488036], + [9.118257, 45.492533], + [9.122754, 45.492533], + [9.122754, 45.488036], + [9.118257, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.492533], + [9.118257, 45.49703], + [9.122754, 45.49703], + [9.122754, 45.492533], + [9.118257, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.49703], + [9.118257, 45.501526], + [9.122754, 45.501526], + [9.122754, 45.49703], + [9.118257, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.501526], + [9.118257, 45.506023], + [9.122754, 45.506023], + [9.122754, 45.501526], + [9.118257, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.506023], + [9.118257, 45.510519], + [9.122754, 45.510519], + [9.122754, 45.506023], + [9.118257, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.510519], + [9.118257, 45.515016], + [9.122754, 45.515016], + [9.122754, 45.510519], + [9.118257, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.515016], + [9.118257, 45.519513], + [9.122754, 45.519513], + [9.122754, 45.515016], + [9.118257, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.519513], + [9.118257, 45.524009], + [9.122754, 45.524009], + [9.122754, 45.519513], + [9.118257, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.524009], + [9.118257, 45.528506], + [9.122754, 45.528506], + [9.122754, 45.524009], + [9.118257, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.528506], + [9.118257, 45.533002], + [9.122754, 45.533002], + [9.122754, 45.528506], + [9.118257, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.533002], + [9.118257, 45.537499], + [9.122754, 45.537499], + [9.122754, 45.533002], + [9.118257, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.537499], + [9.118257, 45.541996], + [9.122754, 45.541996], + [9.122754, 45.537499], + [9.118257, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.541996], + [9.118257, 45.546492], + [9.122754, 45.546492], + [9.122754, 45.541996], + [9.118257, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.546492], + [9.118257, 45.550989], + [9.122754, 45.550989], + [9.122754, 45.546492], + [9.118257, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.550989], + [9.118257, 45.555485], + [9.122754, 45.555485], + [9.122754, 45.550989], + [9.118257, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.555485], + [9.118257, 45.559982], + [9.122754, 45.559982], + [9.122754, 45.555485], + [9.118257, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.559982], + [9.118257, 45.564479], + [9.122754, 45.564479], + [9.122754, 45.559982], + [9.118257, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.564479], + [9.118257, 45.568975], + [9.122754, 45.568975], + [9.122754, 45.564479], + [9.118257, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.568975], + [9.118257, 45.573472], + [9.122754, 45.573472], + [9.122754, 45.568975], + [9.118257, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.573472], + [9.118257, 45.577968], + [9.122754, 45.577968], + [9.122754, 45.573472], + [9.118257, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.577968], + [9.118257, 45.582465], + [9.122754, 45.582465], + [9.122754, 45.577968], + [9.118257, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.582465], + [9.118257, 45.586962], + [9.122754, 45.586962], + [9.122754, 45.582465], + [9.118257, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.586962], + [9.118257, 45.591458], + [9.122754, 45.591458], + [9.122754, 45.586962], + [9.118257, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.591458], + [9.118257, 45.595955], + [9.122754, 45.595955], + [9.122754, 45.591458], + [9.118257, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.595955], + [9.118257, 45.600451], + [9.122754, 45.600451], + [9.122754, 45.595955], + [9.118257, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.600451], + [9.118257, 45.604948], + [9.122754, 45.604948], + [9.122754, 45.600451], + [9.118257, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.604948], + [9.118257, 45.609445], + [9.122754, 45.609445], + [9.122754, 45.604948], + [9.118257, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.609445], + [9.118257, 45.613941], + [9.122754, 45.613941], + [9.122754, 45.609445], + [9.118257, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.613941], + [9.118257, 45.618438], + [9.122754, 45.618438], + [9.122754, 45.613941], + [9.118257, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.618438], + [9.118257, 45.622934], + [9.122754, 45.622934], + [9.122754, 45.618438], + [9.118257, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.622934], + [9.118257, 45.627431], + [9.122754, 45.627431], + [9.122754, 45.622934], + [9.118257, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.627431], + [9.118257, 45.631928], + [9.122754, 45.631928], + [9.122754, 45.627431], + [9.118257, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.118257, 45.631928], + [9.118257, 45.636424], + [9.122754, 45.636424], + [9.122754, 45.631928], + [9.118257, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.339648], + [9.122754, 45.344145], + [9.12725, 45.344145], + [9.12725, 45.339648], + [9.122754, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.344145], + [9.122754, 45.348642], + [9.12725, 45.348642], + [9.12725, 45.344145], + [9.122754, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.348642], + [9.122754, 45.353138], + [9.12725, 45.353138], + [9.12725, 45.348642], + [9.122754, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.353138], + [9.122754, 45.357635], + [9.12725, 45.357635], + [9.12725, 45.353138], + [9.122754, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.357635], + [9.122754, 45.362131], + [9.12725, 45.362131], + [9.12725, 45.357635], + [9.122754, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.362131], + [9.122754, 45.366628], + [9.12725, 45.366628], + [9.12725, 45.362131], + [9.122754, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.366628], + [9.122754, 45.371125], + [9.12725, 45.371125], + [9.12725, 45.366628], + [9.122754, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.371125], + [9.122754, 45.375621], + [9.12725, 45.375621], + [9.12725, 45.371125], + [9.122754, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.375621], + [9.122754, 45.380118], + [9.12725, 45.380118], + [9.12725, 45.375621], + [9.122754, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.380118], + [9.122754, 45.384614], + [9.12725, 45.384614], + [9.12725, 45.380118], + [9.122754, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.384614], + [9.122754, 45.389111], + [9.12725, 45.389111], + [9.12725, 45.384614], + [9.122754, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.389111], + [9.122754, 45.393608], + [9.12725, 45.393608], + [9.12725, 45.389111], + [9.122754, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.393608], + [9.122754, 45.398104], + [9.12725, 45.398104], + [9.12725, 45.393608], + [9.122754, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.398104], + [9.122754, 45.402601], + [9.12725, 45.402601], + [9.12725, 45.398104], + [9.122754, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.402601], + [9.122754, 45.407097], + [9.12725, 45.407097], + [9.12725, 45.402601], + [9.122754, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.407097], + [9.122754, 45.411594], + [9.12725, 45.411594], + [9.12725, 45.407097], + [9.122754, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.411594], + [9.122754, 45.416091], + [9.12725, 45.416091], + [9.12725, 45.411594], + [9.122754, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.416091], + [9.122754, 45.420587], + [9.12725, 45.420587], + [9.12725, 45.416091], + [9.122754, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.420587], + [9.122754, 45.425084], + [9.12725, 45.425084], + [9.12725, 45.420587], + [9.122754, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.425084], + [9.122754, 45.42958], + [9.12725, 45.42958], + [9.12725, 45.425084], + [9.122754, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.42958], + [9.122754, 45.434077], + [9.12725, 45.434077], + [9.12725, 45.42958], + [9.122754, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.434077], + [9.122754, 45.438574], + [9.12725, 45.438574], + [9.12725, 45.434077], + [9.122754, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.438574], + [9.122754, 45.44307], + [9.12725, 45.44307], + [9.12725, 45.438574], + [9.122754, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.44307], + [9.122754, 45.447567], + [9.12725, 45.447567], + [9.12725, 45.44307], + [9.122754, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.447567], + [9.122754, 45.452063], + [9.12725, 45.452063], + [9.12725, 45.447567], + [9.122754, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.452063], + [9.122754, 45.45656], + [9.12725, 45.45656], + [9.12725, 45.452063], + [9.122754, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.45656], + [9.122754, 45.461057], + [9.12725, 45.461057], + [9.12725, 45.45656], + [9.122754, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.461057], + [9.122754, 45.465553], + [9.12725, 45.465553], + [9.12725, 45.461057], + [9.122754, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.465553], + [9.122754, 45.47005], + [9.12725, 45.47005], + [9.12725, 45.465553], + [9.122754, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.47005], + [9.122754, 45.474547], + [9.12725, 45.474547], + [9.12725, 45.47005], + [9.122754, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.474547], + [9.122754, 45.479043], + [9.12725, 45.479043], + [9.12725, 45.474547], + [9.122754, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.479043], + [9.122754, 45.48354], + [9.12725, 45.48354], + [9.12725, 45.479043], + [9.122754, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.48354], + [9.122754, 45.488036], + [9.12725, 45.488036], + [9.12725, 45.48354], + [9.122754, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.488036], + [9.122754, 45.492533], + [9.12725, 45.492533], + [9.12725, 45.488036], + [9.122754, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.492533], + [9.122754, 45.49703], + [9.12725, 45.49703], + [9.12725, 45.492533], + [9.122754, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.49703], + [9.122754, 45.501526], + [9.12725, 45.501526], + [9.12725, 45.49703], + [9.122754, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.501526], + [9.122754, 45.506023], + [9.12725, 45.506023], + [9.12725, 45.501526], + [9.122754, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.506023], + [9.122754, 45.510519], + [9.12725, 45.510519], + [9.12725, 45.506023], + [9.122754, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.510519], + [9.122754, 45.515016], + [9.12725, 45.515016], + [9.12725, 45.510519], + [9.122754, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.515016], + [9.122754, 45.519513], + [9.12725, 45.519513], + [9.12725, 45.515016], + [9.122754, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.519513], + [9.122754, 45.524009], + [9.12725, 45.524009], + [9.12725, 45.519513], + [9.122754, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.524009], + [9.122754, 45.528506], + [9.12725, 45.528506], + [9.12725, 45.524009], + [9.122754, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.528506], + [9.122754, 45.533002], + [9.12725, 45.533002], + [9.12725, 45.528506], + [9.122754, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.533002], + [9.122754, 45.537499], + [9.12725, 45.537499], + [9.12725, 45.533002], + [9.122754, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.537499], + [9.122754, 45.541996], + [9.12725, 45.541996], + [9.12725, 45.537499], + [9.122754, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.541996], + [9.122754, 45.546492], + [9.12725, 45.546492], + [9.12725, 45.541996], + [9.122754, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.546492], + [9.122754, 45.550989], + [9.12725, 45.550989], + [9.12725, 45.546492], + [9.122754, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.550989], + [9.122754, 45.555485], + [9.12725, 45.555485], + [9.12725, 45.550989], + [9.122754, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.555485], + [9.122754, 45.559982], + [9.12725, 45.559982], + [9.12725, 45.555485], + [9.122754, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.559982], + [9.122754, 45.564479], + [9.12725, 45.564479], + [9.12725, 45.559982], + [9.122754, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.564479], + [9.122754, 45.568975], + [9.12725, 45.568975], + [9.12725, 45.564479], + [9.122754, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.568975], + [9.122754, 45.573472], + [9.12725, 45.573472], + [9.12725, 45.568975], + [9.122754, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.573472], + [9.122754, 45.577968], + [9.12725, 45.577968], + [9.12725, 45.573472], + [9.122754, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.577968], + [9.122754, 45.582465], + [9.12725, 45.582465], + [9.12725, 45.577968], + [9.122754, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.582465], + [9.122754, 45.586962], + [9.12725, 45.586962], + [9.12725, 45.582465], + [9.122754, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.586962], + [9.122754, 45.591458], + [9.12725, 45.591458], + [9.12725, 45.586962], + [9.122754, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.591458], + [9.122754, 45.595955], + [9.12725, 45.595955], + [9.12725, 45.591458], + [9.122754, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.595955], + [9.122754, 45.600451], + [9.12725, 45.600451], + [9.12725, 45.595955], + [9.122754, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.600451], + [9.122754, 45.604948], + [9.12725, 45.604948], + [9.12725, 45.600451], + [9.122754, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.604948], + [9.122754, 45.609445], + [9.12725, 45.609445], + [9.12725, 45.604948], + [9.122754, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.609445], + [9.122754, 45.613941], + [9.12725, 45.613941], + [9.12725, 45.609445], + [9.122754, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.613941], + [9.122754, 45.618438], + [9.12725, 45.618438], + [9.12725, 45.613941], + [9.122754, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.618438], + [9.122754, 45.622934], + [9.12725, 45.622934], + [9.12725, 45.618438], + [9.122754, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.622934], + [9.122754, 45.627431], + [9.12725, 45.627431], + [9.12725, 45.622934], + [9.122754, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.627431], + [9.122754, 45.631928], + [9.12725, 45.631928], + [9.12725, 45.627431], + [9.122754, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.122754, 45.631928], + [9.122754, 45.636424], + [9.12725, 45.636424], + [9.12725, 45.631928], + [9.122754, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.339648], + [9.12725, 45.344145], + [9.131747, 45.344145], + [9.131747, 45.339648], + [9.12725, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.344145], + [9.12725, 45.348642], + [9.131747, 45.348642], + [9.131747, 45.344145], + [9.12725, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.348642], + [9.12725, 45.353138], + [9.131747, 45.353138], + [9.131747, 45.348642], + [9.12725, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.353138], + [9.12725, 45.357635], + [9.131747, 45.357635], + [9.131747, 45.353138], + [9.12725, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.357635], + [9.12725, 45.362131], + [9.131747, 45.362131], + [9.131747, 45.357635], + [9.12725, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.362131], + [9.12725, 45.366628], + [9.131747, 45.366628], + [9.131747, 45.362131], + [9.12725, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.366628], + [9.12725, 45.371125], + [9.131747, 45.371125], + [9.131747, 45.366628], + [9.12725, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.371125], + [9.12725, 45.375621], + [9.131747, 45.375621], + [9.131747, 45.371125], + [9.12725, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.375621], + [9.12725, 45.380118], + [9.131747, 45.380118], + [9.131747, 45.375621], + [9.12725, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.380118], + [9.12725, 45.384614], + [9.131747, 45.384614], + [9.131747, 45.380118], + [9.12725, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.384614], + [9.12725, 45.389111], + [9.131747, 45.389111], + [9.131747, 45.384614], + [9.12725, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.389111], + [9.12725, 45.393608], + [9.131747, 45.393608], + [9.131747, 45.389111], + [9.12725, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.393608], + [9.12725, 45.398104], + [9.131747, 45.398104], + [9.131747, 45.393608], + [9.12725, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.398104], + [9.12725, 45.402601], + [9.131747, 45.402601], + [9.131747, 45.398104], + [9.12725, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.402601], + [9.12725, 45.407097], + [9.131747, 45.407097], + [9.131747, 45.402601], + [9.12725, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.407097], + [9.12725, 45.411594], + [9.131747, 45.411594], + [9.131747, 45.407097], + [9.12725, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.411594], + [9.12725, 45.416091], + [9.131747, 45.416091], + [9.131747, 45.411594], + [9.12725, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.416091], + [9.12725, 45.420587], + [9.131747, 45.420587], + [9.131747, 45.416091], + [9.12725, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.420587], + [9.12725, 45.425084], + [9.131747, 45.425084], + [9.131747, 45.420587], + [9.12725, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.425084], + [9.12725, 45.42958], + [9.131747, 45.42958], + [9.131747, 45.425084], + [9.12725, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.42958], + [9.12725, 45.434077], + [9.131747, 45.434077], + [9.131747, 45.42958], + [9.12725, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.434077], + [9.12725, 45.438574], + [9.131747, 45.438574], + [9.131747, 45.434077], + [9.12725, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.438574], + [9.12725, 45.44307], + [9.131747, 45.44307], + [9.131747, 45.438574], + [9.12725, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.44307], + [9.12725, 45.447567], + [9.131747, 45.447567], + [9.131747, 45.44307], + [9.12725, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.447567], + [9.12725, 45.452063], + [9.131747, 45.452063], + [9.131747, 45.447567], + [9.12725, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.452063], + [9.12725, 45.45656], + [9.131747, 45.45656], + [9.131747, 45.452063], + [9.12725, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.45656], + [9.12725, 45.461057], + [9.131747, 45.461057], + [9.131747, 45.45656], + [9.12725, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.461057], + [9.12725, 45.465553], + [9.131747, 45.465553], + [9.131747, 45.461057], + [9.12725, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.465553], + [9.12725, 45.47005], + [9.131747, 45.47005], + [9.131747, 45.465553], + [9.12725, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.47005], + [9.12725, 45.474547], + [9.131747, 45.474547], + [9.131747, 45.47005], + [9.12725, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.474547], + [9.12725, 45.479043], + [9.131747, 45.479043], + [9.131747, 45.474547], + [9.12725, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.479043], + [9.12725, 45.48354], + [9.131747, 45.48354], + [9.131747, 45.479043], + [9.12725, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.48354], + [9.12725, 45.488036], + [9.131747, 45.488036], + [9.131747, 45.48354], + [9.12725, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.488036], + [9.12725, 45.492533], + [9.131747, 45.492533], + [9.131747, 45.488036], + [9.12725, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.492533], + [9.12725, 45.49703], + [9.131747, 45.49703], + [9.131747, 45.492533], + [9.12725, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.49703], + [9.12725, 45.501526], + [9.131747, 45.501526], + [9.131747, 45.49703], + [9.12725, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.501526], + [9.12725, 45.506023], + [9.131747, 45.506023], + [9.131747, 45.501526], + [9.12725, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.506023], + [9.12725, 45.510519], + [9.131747, 45.510519], + [9.131747, 45.506023], + [9.12725, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.510519], + [9.12725, 45.515016], + [9.131747, 45.515016], + [9.131747, 45.510519], + [9.12725, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.515016], + [9.12725, 45.519513], + [9.131747, 45.519513], + [9.131747, 45.515016], + [9.12725, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.519513], + [9.12725, 45.524009], + [9.131747, 45.524009], + [9.131747, 45.519513], + [9.12725, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.524009], + [9.12725, 45.528506], + [9.131747, 45.528506], + [9.131747, 45.524009], + [9.12725, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.528506], + [9.12725, 45.533002], + [9.131747, 45.533002], + [9.131747, 45.528506], + [9.12725, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.533002], + [9.12725, 45.537499], + [9.131747, 45.537499], + [9.131747, 45.533002], + [9.12725, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.537499], + [9.12725, 45.541996], + [9.131747, 45.541996], + [9.131747, 45.537499], + [9.12725, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.541996], + [9.12725, 45.546492], + [9.131747, 45.546492], + [9.131747, 45.541996], + [9.12725, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.546492], + [9.12725, 45.550989], + [9.131747, 45.550989], + [9.131747, 45.546492], + [9.12725, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.550989], + [9.12725, 45.555485], + [9.131747, 45.555485], + [9.131747, 45.550989], + [9.12725, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.555485], + [9.12725, 45.559982], + [9.131747, 45.559982], + [9.131747, 45.555485], + [9.12725, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.559982], + [9.12725, 45.564479], + [9.131747, 45.564479], + [9.131747, 45.559982], + [9.12725, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.564479], + [9.12725, 45.568975], + [9.131747, 45.568975], + [9.131747, 45.564479], + [9.12725, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.568975], + [9.12725, 45.573472], + [9.131747, 45.573472], + [9.131747, 45.568975], + [9.12725, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.573472], + [9.12725, 45.577968], + [9.131747, 45.577968], + [9.131747, 45.573472], + [9.12725, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.577968], + [9.12725, 45.582465], + [9.131747, 45.582465], + [9.131747, 45.577968], + [9.12725, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.582465], + [9.12725, 45.586962], + [9.131747, 45.586962], + [9.131747, 45.582465], + [9.12725, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.586962], + [9.12725, 45.591458], + [9.131747, 45.591458], + [9.131747, 45.586962], + [9.12725, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.591458], + [9.12725, 45.595955], + [9.131747, 45.595955], + [9.131747, 45.591458], + [9.12725, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.595955], + [9.12725, 45.600451], + [9.131747, 45.600451], + [9.131747, 45.595955], + [9.12725, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.600451], + [9.12725, 45.604948], + [9.131747, 45.604948], + [9.131747, 45.600451], + [9.12725, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.604948], + [9.12725, 45.609445], + [9.131747, 45.609445], + [9.131747, 45.604948], + [9.12725, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.609445], + [9.12725, 45.613941], + [9.131747, 45.613941], + [9.131747, 45.609445], + [9.12725, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.613941], + [9.12725, 45.618438], + [9.131747, 45.618438], + [9.131747, 45.613941], + [9.12725, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.618438], + [9.12725, 45.622934], + [9.131747, 45.622934], + [9.131747, 45.618438], + [9.12725, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.622934], + [9.12725, 45.627431], + [9.131747, 45.627431], + [9.131747, 45.622934], + [9.12725, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.627431], + [9.12725, 45.631928], + [9.131747, 45.631928], + [9.131747, 45.627431], + [9.12725, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.12725, 45.631928], + [9.12725, 45.636424], + [9.131747, 45.636424], + [9.131747, 45.631928], + [9.12725, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.339648], + [9.131747, 45.344145], + [9.136244, 45.344145], + [9.136244, 45.339648], + [9.131747, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.344145], + [9.131747, 45.348642], + [9.136244, 45.348642], + [9.136244, 45.344145], + [9.131747, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.348642], + [9.131747, 45.353138], + [9.136244, 45.353138], + [9.136244, 45.348642], + [9.131747, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.353138], + [9.131747, 45.357635], + [9.136244, 45.357635], + [9.136244, 45.353138], + [9.131747, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.357635], + [9.131747, 45.362131], + [9.136244, 45.362131], + [9.136244, 45.357635], + [9.131747, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.362131], + [9.131747, 45.366628], + [9.136244, 45.366628], + [9.136244, 45.362131], + [9.131747, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.366628], + [9.131747, 45.371125], + [9.136244, 45.371125], + [9.136244, 45.366628], + [9.131747, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.371125], + [9.131747, 45.375621], + [9.136244, 45.375621], + [9.136244, 45.371125], + [9.131747, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.375621], + [9.131747, 45.380118], + [9.136244, 45.380118], + [9.136244, 45.375621], + [9.131747, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.380118], + [9.131747, 45.384614], + [9.136244, 45.384614], + [9.136244, 45.380118], + [9.131747, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.384614], + [9.131747, 45.389111], + [9.136244, 45.389111], + [9.136244, 45.384614], + [9.131747, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.389111], + [9.131747, 45.393608], + [9.136244, 45.393608], + [9.136244, 45.389111], + [9.131747, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.393608], + [9.131747, 45.398104], + [9.136244, 45.398104], + [9.136244, 45.393608], + [9.131747, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.398104], + [9.131747, 45.402601], + [9.136244, 45.402601], + [9.136244, 45.398104], + [9.131747, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.402601], + [9.131747, 45.407097], + [9.136244, 45.407097], + [9.136244, 45.402601], + [9.131747, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.407097], + [9.131747, 45.411594], + [9.136244, 45.411594], + [9.136244, 45.407097], + [9.131747, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.411594], + [9.131747, 45.416091], + [9.136244, 45.416091], + [9.136244, 45.411594], + [9.131747, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.416091], + [9.131747, 45.420587], + [9.136244, 45.420587], + [9.136244, 45.416091], + [9.131747, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.420587], + [9.131747, 45.425084], + [9.136244, 45.425084], + [9.136244, 45.420587], + [9.131747, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.425084], + [9.131747, 45.42958], + [9.136244, 45.42958], + [9.136244, 45.425084], + [9.131747, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.42958], + [9.131747, 45.434077], + [9.136244, 45.434077], + [9.136244, 45.42958], + [9.131747, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.434077], + [9.131747, 45.438574], + [9.136244, 45.438574], + [9.136244, 45.434077], + [9.131747, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.438574], + [9.131747, 45.44307], + [9.136244, 45.44307], + [9.136244, 45.438574], + [9.131747, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.44307], + [9.131747, 45.447567], + [9.136244, 45.447567], + [9.136244, 45.44307], + [9.131747, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.447567], + [9.131747, 45.452063], + [9.136244, 45.452063], + [9.136244, 45.447567], + [9.131747, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.452063], + [9.131747, 45.45656], + [9.136244, 45.45656], + [9.136244, 45.452063], + [9.131747, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.45656], + [9.131747, 45.461057], + [9.136244, 45.461057], + [9.136244, 45.45656], + [9.131747, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.461057], + [9.131747, 45.465553], + [9.136244, 45.465553], + [9.136244, 45.461057], + [9.131747, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.465553], + [9.131747, 45.47005], + [9.136244, 45.47005], + [9.136244, 45.465553], + [9.131747, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.47005], + [9.131747, 45.474547], + [9.136244, 45.474547], + [9.136244, 45.47005], + [9.131747, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.474547], + [9.131747, 45.479043], + [9.136244, 45.479043], + [9.136244, 45.474547], + [9.131747, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.479043], + [9.131747, 45.48354], + [9.136244, 45.48354], + [9.136244, 45.479043], + [9.131747, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.48354], + [9.131747, 45.488036], + [9.136244, 45.488036], + [9.136244, 45.48354], + [9.131747, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.488036], + [9.131747, 45.492533], + [9.136244, 45.492533], + [9.136244, 45.488036], + [9.131747, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.492533], + [9.131747, 45.49703], + [9.136244, 45.49703], + [9.136244, 45.492533], + [9.131747, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.49703], + [9.131747, 45.501526], + [9.136244, 45.501526], + [9.136244, 45.49703], + [9.131747, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.501526], + [9.131747, 45.506023], + [9.136244, 45.506023], + [9.136244, 45.501526], + [9.131747, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.506023], + [9.131747, 45.510519], + [9.136244, 45.510519], + [9.136244, 45.506023], + [9.131747, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.510519], + [9.131747, 45.515016], + [9.136244, 45.515016], + [9.136244, 45.510519], + [9.131747, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.515016], + [9.131747, 45.519513], + [9.136244, 45.519513], + [9.136244, 45.515016], + [9.131747, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.519513], + [9.131747, 45.524009], + [9.136244, 45.524009], + [9.136244, 45.519513], + [9.131747, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.524009], + [9.131747, 45.528506], + [9.136244, 45.528506], + [9.136244, 45.524009], + [9.131747, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.528506], + [9.131747, 45.533002], + [9.136244, 45.533002], + [9.136244, 45.528506], + [9.131747, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.533002], + [9.131747, 45.537499], + [9.136244, 45.537499], + [9.136244, 45.533002], + [9.131747, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.537499], + [9.131747, 45.541996], + [9.136244, 45.541996], + [9.136244, 45.537499], + [9.131747, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.541996], + [9.131747, 45.546492], + [9.136244, 45.546492], + [9.136244, 45.541996], + [9.131747, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.546492], + [9.131747, 45.550989], + [9.136244, 45.550989], + [9.136244, 45.546492], + [9.131747, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.550989], + [9.131747, 45.555485], + [9.136244, 45.555485], + [9.136244, 45.550989], + [9.131747, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.555485], + [9.131747, 45.559982], + [9.136244, 45.559982], + [9.136244, 45.555485], + [9.131747, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.559982], + [9.131747, 45.564479], + [9.136244, 45.564479], + [9.136244, 45.559982], + [9.131747, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.564479], + [9.131747, 45.568975], + [9.136244, 45.568975], + [9.136244, 45.564479], + [9.131747, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.568975], + [9.131747, 45.573472], + [9.136244, 45.573472], + [9.136244, 45.568975], + [9.131747, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.573472], + [9.131747, 45.577968], + [9.136244, 45.577968], + [9.136244, 45.573472], + [9.131747, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.577968], + [9.131747, 45.582465], + [9.136244, 45.582465], + [9.136244, 45.577968], + [9.131747, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.582465], + [9.131747, 45.586962], + [9.136244, 45.586962], + [9.136244, 45.582465], + [9.131747, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.586962], + [9.131747, 45.591458], + [9.136244, 45.591458], + [9.136244, 45.586962], + [9.131747, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.591458], + [9.131747, 45.595955], + [9.136244, 45.595955], + [9.136244, 45.591458], + [9.131747, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.595955], + [9.131747, 45.600451], + [9.136244, 45.600451], + [9.136244, 45.595955], + [9.131747, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.600451], + [9.131747, 45.604948], + [9.136244, 45.604948], + [9.136244, 45.600451], + [9.131747, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.604948], + [9.131747, 45.609445], + [9.136244, 45.609445], + [9.136244, 45.604948], + [9.131747, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.609445], + [9.131747, 45.613941], + [9.136244, 45.613941], + [9.136244, 45.609445], + [9.131747, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.613941], + [9.131747, 45.618438], + [9.136244, 45.618438], + [9.136244, 45.613941], + [9.131747, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.618438], + [9.131747, 45.622934], + [9.136244, 45.622934], + [9.136244, 45.618438], + [9.131747, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.622934], + [9.131747, 45.627431], + [9.136244, 45.627431], + [9.136244, 45.622934], + [9.131747, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.627431], + [9.131747, 45.631928], + [9.136244, 45.631928], + [9.136244, 45.627431], + [9.131747, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.131747, 45.631928], + [9.131747, 45.636424], + [9.136244, 45.636424], + [9.136244, 45.631928], + [9.131747, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.339648], + [9.136244, 45.344145], + [9.14074, 45.344145], + [9.14074, 45.339648], + [9.136244, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.344145], + [9.136244, 45.348642], + [9.14074, 45.348642], + [9.14074, 45.344145], + [9.136244, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.348642], + [9.136244, 45.353138], + [9.14074, 45.353138], + [9.14074, 45.348642], + [9.136244, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.353138], + [9.136244, 45.357635], + [9.14074, 45.357635], + [9.14074, 45.353138], + [9.136244, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.357635], + [9.136244, 45.362131], + [9.14074, 45.362131], + [9.14074, 45.357635], + [9.136244, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.362131], + [9.136244, 45.366628], + [9.14074, 45.366628], + [9.14074, 45.362131], + [9.136244, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.366628], + [9.136244, 45.371125], + [9.14074, 45.371125], + [9.14074, 45.366628], + [9.136244, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.371125], + [9.136244, 45.375621], + [9.14074, 45.375621], + [9.14074, 45.371125], + [9.136244, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.375621], + [9.136244, 45.380118], + [9.14074, 45.380118], + [9.14074, 45.375621], + [9.136244, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.380118], + [9.136244, 45.384614], + [9.14074, 45.384614], + [9.14074, 45.380118], + [9.136244, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.384614], + [9.136244, 45.389111], + [9.14074, 45.389111], + [9.14074, 45.384614], + [9.136244, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.389111], + [9.136244, 45.393608], + [9.14074, 45.393608], + [9.14074, 45.389111], + [9.136244, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.393608], + [9.136244, 45.398104], + [9.14074, 45.398104], + [9.14074, 45.393608], + [9.136244, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.398104], + [9.136244, 45.402601], + [9.14074, 45.402601], + [9.14074, 45.398104], + [9.136244, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.402601], + [9.136244, 45.407097], + [9.14074, 45.407097], + [9.14074, 45.402601], + [9.136244, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.407097], + [9.136244, 45.411594], + [9.14074, 45.411594], + [9.14074, 45.407097], + [9.136244, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.411594], + [9.136244, 45.416091], + [9.14074, 45.416091], + [9.14074, 45.411594], + [9.136244, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.416091], + [9.136244, 45.420587], + [9.14074, 45.420587], + [9.14074, 45.416091], + [9.136244, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.420587], + [9.136244, 45.425084], + [9.14074, 45.425084], + [9.14074, 45.420587], + [9.136244, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.425084], + [9.136244, 45.42958], + [9.14074, 45.42958], + [9.14074, 45.425084], + [9.136244, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.42958], + [9.136244, 45.434077], + [9.14074, 45.434077], + [9.14074, 45.42958], + [9.136244, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.434077], + [9.136244, 45.438574], + [9.14074, 45.438574], + [9.14074, 45.434077], + [9.136244, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.438574], + [9.136244, 45.44307], + [9.14074, 45.44307], + [9.14074, 45.438574], + [9.136244, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.44307], + [9.136244, 45.447567], + [9.14074, 45.447567], + [9.14074, 45.44307], + [9.136244, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.447567], + [9.136244, 45.452063], + [9.14074, 45.452063], + [9.14074, 45.447567], + [9.136244, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.452063], + [9.136244, 45.45656], + [9.14074, 45.45656], + [9.14074, 45.452063], + [9.136244, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.45656], + [9.136244, 45.461057], + [9.14074, 45.461057], + [9.14074, 45.45656], + [9.136244, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.461057], + [9.136244, 45.465553], + [9.14074, 45.465553], + [9.14074, 45.461057], + [9.136244, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.465553], + [9.136244, 45.47005], + [9.14074, 45.47005], + [9.14074, 45.465553], + [9.136244, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.47005], + [9.136244, 45.474547], + [9.14074, 45.474547], + [9.14074, 45.47005], + [9.136244, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.474547], + [9.136244, 45.479043], + [9.14074, 45.479043], + [9.14074, 45.474547], + [9.136244, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.479043], + [9.136244, 45.48354], + [9.14074, 45.48354], + [9.14074, 45.479043], + [9.136244, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.48354], + [9.136244, 45.488036], + [9.14074, 45.488036], + [9.14074, 45.48354], + [9.136244, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.488036], + [9.136244, 45.492533], + [9.14074, 45.492533], + [9.14074, 45.488036], + [9.136244, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.492533], + [9.136244, 45.49703], + [9.14074, 45.49703], + [9.14074, 45.492533], + [9.136244, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.49703], + [9.136244, 45.501526], + [9.14074, 45.501526], + [9.14074, 45.49703], + [9.136244, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.501526], + [9.136244, 45.506023], + [9.14074, 45.506023], + [9.14074, 45.501526], + [9.136244, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.506023], + [9.136244, 45.510519], + [9.14074, 45.510519], + [9.14074, 45.506023], + [9.136244, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.510519], + [9.136244, 45.515016], + [9.14074, 45.515016], + [9.14074, 45.510519], + [9.136244, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.515016], + [9.136244, 45.519513], + [9.14074, 45.519513], + [9.14074, 45.515016], + [9.136244, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.519513], + [9.136244, 45.524009], + [9.14074, 45.524009], + [9.14074, 45.519513], + [9.136244, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.524009], + [9.136244, 45.528506], + [9.14074, 45.528506], + [9.14074, 45.524009], + [9.136244, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.528506], + [9.136244, 45.533002], + [9.14074, 45.533002], + [9.14074, 45.528506], + [9.136244, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.533002], + [9.136244, 45.537499], + [9.14074, 45.537499], + [9.14074, 45.533002], + [9.136244, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.537499], + [9.136244, 45.541996], + [9.14074, 45.541996], + [9.14074, 45.537499], + [9.136244, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.541996], + [9.136244, 45.546492], + [9.14074, 45.546492], + [9.14074, 45.541996], + [9.136244, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.546492], + [9.136244, 45.550989], + [9.14074, 45.550989], + [9.14074, 45.546492], + [9.136244, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.550989], + [9.136244, 45.555485], + [9.14074, 45.555485], + [9.14074, 45.550989], + [9.136244, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.555485], + [9.136244, 45.559982], + [9.14074, 45.559982], + [9.14074, 45.555485], + [9.136244, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.559982], + [9.136244, 45.564479], + [9.14074, 45.564479], + [9.14074, 45.559982], + [9.136244, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.564479], + [9.136244, 45.568975], + [9.14074, 45.568975], + [9.14074, 45.564479], + [9.136244, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.568975], + [9.136244, 45.573472], + [9.14074, 45.573472], + [9.14074, 45.568975], + [9.136244, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.573472], + [9.136244, 45.577968], + [9.14074, 45.577968], + [9.14074, 45.573472], + [9.136244, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.577968], + [9.136244, 45.582465], + [9.14074, 45.582465], + [9.14074, 45.577968], + [9.136244, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.582465], + [9.136244, 45.586962], + [9.14074, 45.586962], + [9.14074, 45.582465], + [9.136244, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.586962], + [9.136244, 45.591458], + [9.14074, 45.591458], + [9.14074, 45.586962], + [9.136244, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.591458], + [9.136244, 45.595955], + [9.14074, 45.595955], + [9.14074, 45.591458], + [9.136244, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.595955], + [9.136244, 45.600451], + [9.14074, 45.600451], + [9.14074, 45.595955], + [9.136244, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.600451], + [9.136244, 45.604948], + [9.14074, 45.604948], + [9.14074, 45.600451], + [9.136244, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.604948], + [9.136244, 45.609445], + [9.14074, 45.609445], + [9.14074, 45.604948], + [9.136244, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.609445], + [9.136244, 45.613941], + [9.14074, 45.613941], + [9.14074, 45.609445], + [9.136244, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.613941], + [9.136244, 45.618438], + [9.14074, 45.618438], + [9.14074, 45.613941], + [9.136244, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.618438], + [9.136244, 45.622934], + [9.14074, 45.622934], + [9.14074, 45.618438], + [9.136244, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.622934], + [9.136244, 45.627431], + [9.14074, 45.627431], + [9.14074, 45.622934], + [9.136244, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.627431], + [9.136244, 45.631928], + [9.14074, 45.631928], + [9.14074, 45.627431], + [9.136244, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.136244, 45.631928], + [9.136244, 45.636424], + [9.14074, 45.636424], + [9.14074, 45.631928], + [9.136244, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.339648], + [9.14074, 45.344145], + [9.145237, 45.344145], + [9.145237, 45.339648], + [9.14074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.344145], + [9.14074, 45.348642], + [9.145237, 45.348642], + [9.145237, 45.344145], + [9.14074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.348642], + [9.14074, 45.353138], + [9.145237, 45.353138], + [9.145237, 45.348642], + [9.14074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.353138], + [9.14074, 45.357635], + [9.145237, 45.357635], + [9.145237, 45.353138], + [9.14074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.357635], + [9.14074, 45.362131], + [9.145237, 45.362131], + [9.145237, 45.357635], + [9.14074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.362131], + [9.14074, 45.366628], + [9.145237, 45.366628], + [9.145237, 45.362131], + [9.14074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.366628], + [9.14074, 45.371125], + [9.145237, 45.371125], + [9.145237, 45.366628], + [9.14074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.371125], + [9.14074, 45.375621], + [9.145237, 45.375621], + [9.145237, 45.371125], + [9.14074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.375621], + [9.14074, 45.380118], + [9.145237, 45.380118], + [9.145237, 45.375621], + [9.14074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.380118], + [9.14074, 45.384614], + [9.145237, 45.384614], + [9.145237, 45.380118], + [9.14074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.384614], + [9.14074, 45.389111], + [9.145237, 45.389111], + [9.145237, 45.384614], + [9.14074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.389111], + [9.14074, 45.393608], + [9.145237, 45.393608], + [9.145237, 45.389111], + [9.14074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.393608], + [9.14074, 45.398104], + [9.145237, 45.398104], + [9.145237, 45.393608], + [9.14074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.398104], + [9.14074, 45.402601], + [9.145237, 45.402601], + [9.145237, 45.398104], + [9.14074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.402601], + [9.14074, 45.407097], + [9.145237, 45.407097], + [9.145237, 45.402601], + [9.14074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.407097], + [9.14074, 45.411594], + [9.145237, 45.411594], + [9.145237, 45.407097], + [9.14074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.411594], + [9.14074, 45.416091], + [9.145237, 45.416091], + [9.145237, 45.411594], + [9.14074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.416091], + [9.14074, 45.420587], + [9.145237, 45.420587], + [9.145237, 45.416091], + [9.14074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.420587], + [9.14074, 45.425084], + [9.145237, 45.425084], + [9.145237, 45.420587], + [9.14074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.425084], + [9.14074, 45.42958], + [9.145237, 45.42958], + [9.145237, 45.425084], + [9.14074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.42958], + [9.14074, 45.434077], + [9.145237, 45.434077], + [9.145237, 45.42958], + [9.14074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.434077], + [9.14074, 45.438574], + [9.145237, 45.438574], + [9.145237, 45.434077], + [9.14074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.438574], + [9.14074, 45.44307], + [9.145237, 45.44307], + [9.145237, 45.438574], + [9.14074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.44307], + [9.14074, 45.447567], + [9.145237, 45.447567], + [9.145237, 45.44307], + [9.14074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.447567], + [9.14074, 45.452063], + [9.145237, 45.452063], + [9.145237, 45.447567], + [9.14074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.452063], + [9.14074, 45.45656], + [9.145237, 45.45656], + [9.145237, 45.452063], + [9.14074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.45656], + [9.14074, 45.461057], + [9.145237, 45.461057], + [9.145237, 45.45656], + [9.14074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.461057], + [9.14074, 45.465553], + [9.145237, 45.465553], + [9.145237, 45.461057], + [9.14074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.465553], + [9.14074, 45.47005], + [9.145237, 45.47005], + [9.145237, 45.465553], + [9.14074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.47005], + [9.14074, 45.474547], + [9.145237, 45.474547], + [9.145237, 45.47005], + [9.14074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.474547], + [9.14074, 45.479043], + [9.145237, 45.479043], + [9.145237, 45.474547], + [9.14074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.479043], + [9.14074, 45.48354], + [9.145237, 45.48354], + [9.145237, 45.479043], + [9.14074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.48354], + [9.14074, 45.488036], + [9.145237, 45.488036], + [9.145237, 45.48354], + [9.14074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.488036], + [9.14074, 45.492533], + [9.145237, 45.492533], + [9.145237, 45.488036], + [9.14074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.492533], + [9.14074, 45.49703], + [9.145237, 45.49703], + [9.145237, 45.492533], + [9.14074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.49703], + [9.14074, 45.501526], + [9.145237, 45.501526], + [9.145237, 45.49703], + [9.14074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.501526], + [9.14074, 45.506023], + [9.145237, 45.506023], + [9.145237, 45.501526], + [9.14074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.506023], + [9.14074, 45.510519], + [9.145237, 45.510519], + [9.145237, 45.506023], + [9.14074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.510519], + [9.14074, 45.515016], + [9.145237, 45.515016], + [9.145237, 45.510519], + [9.14074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.515016], + [9.14074, 45.519513], + [9.145237, 45.519513], + [9.145237, 45.515016], + [9.14074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.519513], + [9.14074, 45.524009], + [9.145237, 45.524009], + [9.145237, 45.519513], + [9.14074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.524009], + [9.14074, 45.528506], + [9.145237, 45.528506], + [9.145237, 45.524009], + [9.14074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.528506], + [9.14074, 45.533002], + [9.145237, 45.533002], + [9.145237, 45.528506], + [9.14074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.533002], + [9.14074, 45.537499], + [9.145237, 45.537499], + [9.145237, 45.533002], + [9.14074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.537499], + [9.14074, 45.541996], + [9.145237, 45.541996], + [9.145237, 45.537499], + [9.14074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.541996], + [9.14074, 45.546492], + [9.145237, 45.546492], + [9.145237, 45.541996], + [9.14074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.546492], + [9.14074, 45.550989], + [9.145237, 45.550989], + [9.145237, 45.546492], + [9.14074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.550989], + [9.14074, 45.555485], + [9.145237, 45.555485], + [9.145237, 45.550989], + [9.14074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.555485], + [9.14074, 45.559982], + [9.145237, 45.559982], + [9.145237, 45.555485], + [9.14074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.559982], + [9.14074, 45.564479], + [9.145237, 45.564479], + [9.145237, 45.559982], + [9.14074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.564479], + [9.14074, 45.568975], + [9.145237, 45.568975], + [9.145237, 45.564479], + [9.14074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.568975], + [9.14074, 45.573472], + [9.145237, 45.573472], + [9.145237, 45.568975], + [9.14074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.573472], + [9.14074, 45.577968], + [9.145237, 45.577968], + [9.145237, 45.573472], + [9.14074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.577968], + [9.14074, 45.582465], + [9.145237, 45.582465], + [9.145237, 45.577968], + [9.14074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.582465], + [9.14074, 45.586962], + [9.145237, 45.586962], + [9.145237, 45.582465], + [9.14074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.586962], + [9.14074, 45.591458], + [9.145237, 45.591458], + [9.145237, 45.586962], + [9.14074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.591458], + [9.14074, 45.595955], + [9.145237, 45.595955], + [9.145237, 45.591458], + [9.14074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.595955], + [9.14074, 45.600451], + [9.145237, 45.600451], + [9.145237, 45.595955], + [9.14074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.600451], + [9.14074, 45.604948], + [9.145237, 45.604948], + [9.145237, 45.600451], + [9.14074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.604948], + [9.14074, 45.609445], + [9.145237, 45.609445], + [9.145237, 45.604948], + [9.14074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.609445], + [9.14074, 45.613941], + [9.145237, 45.613941], + [9.145237, 45.609445], + [9.14074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.613941], + [9.14074, 45.618438], + [9.145237, 45.618438], + [9.145237, 45.613941], + [9.14074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.618438], + [9.14074, 45.622934], + [9.145237, 45.622934], + [9.145237, 45.618438], + [9.14074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.622934], + [9.14074, 45.627431], + [9.145237, 45.627431], + [9.145237, 45.622934], + [9.14074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.627431], + [9.14074, 45.631928], + [9.145237, 45.631928], + [9.145237, 45.627431], + [9.14074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.14074, 45.631928], + [9.14074, 45.636424], + [9.145237, 45.636424], + [9.145237, 45.631928], + [9.14074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.339648], + [9.145237, 45.344145], + [9.149733, 45.344145], + [9.149733, 45.339648], + [9.145237, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.344145], + [9.145237, 45.348642], + [9.149733, 45.348642], + [9.149733, 45.344145], + [9.145237, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.348642], + [9.145237, 45.353138], + [9.149733, 45.353138], + [9.149733, 45.348642], + [9.145237, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.353138], + [9.145237, 45.357635], + [9.149733, 45.357635], + [9.149733, 45.353138], + [9.145237, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.357635], + [9.145237, 45.362131], + [9.149733, 45.362131], + [9.149733, 45.357635], + [9.145237, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.362131], + [9.145237, 45.366628], + [9.149733, 45.366628], + [9.149733, 45.362131], + [9.145237, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.366628], + [9.145237, 45.371125], + [9.149733, 45.371125], + [9.149733, 45.366628], + [9.145237, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.371125], + [9.145237, 45.375621], + [9.149733, 45.375621], + [9.149733, 45.371125], + [9.145237, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.375621], + [9.145237, 45.380118], + [9.149733, 45.380118], + [9.149733, 45.375621], + [9.145237, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.380118], + [9.145237, 45.384614], + [9.149733, 45.384614], + [9.149733, 45.380118], + [9.145237, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.384614], + [9.145237, 45.389111], + [9.149733, 45.389111], + [9.149733, 45.384614], + [9.145237, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.389111], + [9.145237, 45.393608], + [9.149733, 45.393608], + [9.149733, 45.389111], + [9.145237, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.393608], + [9.145237, 45.398104], + [9.149733, 45.398104], + [9.149733, 45.393608], + [9.145237, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.398104], + [9.145237, 45.402601], + [9.149733, 45.402601], + [9.149733, 45.398104], + [9.145237, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.402601], + [9.145237, 45.407097], + [9.149733, 45.407097], + [9.149733, 45.402601], + [9.145237, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.407097], + [9.145237, 45.411594], + [9.149733, 45.411594], + [9.149733, 45.407097], + [9.145237, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.411594], + [9.145237, 45.416091], + [9.149733, 45.416091], + [9.149733, 45.411594], + [9.145237, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.416091], + [9.145237, 45.420587], + [9.149733, 45.420587], + [9.149733, 45.416091], + [9.145237, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.420587], + [9.145237, 45.425084], + [9.149733, 45.425084], + [9.149733, 45.420587], + [9.145237, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.425084], + [9.145237, 45.42958], + [9.149733, 45.42958], + [9.149733, 45.425084], + [9.145237, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.42958], + [9.145237, 45.434077], + [9.149733, 45.434077], + [9.149733, 45.42958], + [9.145237, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.434077], + [9.145237, 45.438574], + [9.149733, 45.438574], + [9.149733, 45.434077], + [9.145237, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.438574], + [9.145237, 45.44307], + [9.149733, 45.44307], + [9.149733, 45.438574], + [9.145237, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.44307], + [9.145237, 45.447567], + [9.149733, 45.447567], + [9.149733, 45.44307], + [9.145237, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.447567], + [9.145237, 45.452063], + [9.149733, 45.452063], + [9.149733, 45.447567], + [9.145237, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.452063], + [9.145237, 45.45656], + [9.149733, 45.45656], + [9.149733, 45.452063], + [9.145237, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.45656], + [9.145237, 45.461057], + [9.149733, 45.461057], + [9.149733, 45.45656], + [9.145237, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.461057], + [9.145237, 45.465553], + [9.149733, 45.465553], + [9.149733, 45.461057], + [9.145237, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.465553], + [9.145237, 45.47005], + [9.149733, 45.47005], + [9.149733, 45.465553], + [9.145237, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.47005], + [9.145237, 45.474547], + [9.149733, 45.474547], + [9.149733, 45.47005], + [9.145237, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.474547], + [9.145237, 45.479043], + [9.149733, 45.479043], + [9.149733, 45.474547], + [9.145237, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.479043], + [9.145237, 45.48354], + [9.149733, 45.48354], + [9.149733, 45.479043], + [9.145237, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.48354], + [9.145237, 45.488036], + [9.149733, 45.488036], + [9.149733, 45.48354], + [9.145237, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.488036], + [9.145237, 45.492533], + [9.149733, 45.492533], + [9.149733, 45.488036], + [9.145237, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.492533], + [9.145237, 45.49703], + [9.149733, 45.49703], + [9.149733, 45.492533], + [9.145237, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.49703], + [9.145237, 45.501526], + [9.149733, 45.501526], + [9.149733, 45.49703], + [9.145237, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.501526], + [9.145237, 45.506023], + [9.149733, 45.506023], + [9.149733, 45.501526], + [9.145237, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.506023], + [9.145237, 45.510519], + [9.149733, 45.510519], + [9.149733, 45.506023], + [9.145237, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.510519], + [9.145237, 45.515016], + [9.149733, 45.515016], + [9.149733, 45.510519], + [9.145237, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.515016], + [9.145237, 45.519513], + [9.149733, 45.519513], + [9.149733, 45.515016], + [9.145237, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.519513], + [9.145237, 45.524009], + [9.149733, 45.524009], + [9.149733, 45.519513], + [9.145237, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.524009], + [9.145237, 45.528506], + [9.149733, 45.528506], + [9.149733, 45.524009], + [9.145237, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.528506], + [9.145237, 45.533002], + [9.149733, 45.533002], + [9.149733, 45.528506], + [9.145237, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.533002], + [9.145237, 45.537499], + [9.149733, 45.537499], + [9.149733, 45.533002], + [9.145237, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.537499], + [9.145237, 45.541996], + [9.149733, 45.541996], + [9.149733, 45.537499], + [9.145237, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.541996], + [9.145237, 45.546492], + [9.149733, 45.546492], + [9.149733, 45.541996], + [9.145237, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.546492], + [9.145237, 45.550989], + [9.149733, 45.550989], + [9.149733, 45.546492], + [9.145237, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.550989], + [9.145237, 45.555485], + [9.149733, 45.555485], + [9.149733, 45.550989], + [9.145237, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.555485], + [9.145237, 45.559982], + [9.149733, 45.559982], + [9.149733, 45.555485], + [9.145237, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.559982], + [9.145237, 45.564479], + [9.149733, 45.564479], + [9.149733, 45.559982], + [9.145237, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.564479], + [9.145237, 45.568975], + [9.149733, 45.568975], + [9.149733, 45.564479], + [9.145237, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.568975], + [9.145237, 45.573472], + [9.149733, 45.573472], + [9.149733, 45.568975], + [9.145237, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.573472], + [9.145237, 45.577968], + [9.149733, 45.577968], + [9.149733, 45.573472], + [9.145237, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.577968], + [9.145237, 45.582465], + [9.149733, 45.582465], + [9.149733, 45.577968], + [9.145237, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.582465], + [9.145237, 45.586962], + [9.149733, 45.586962], + [9.149733, 45.582465], + [9.145237, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.586962], + [9.145237, 45.591458], + [9.149733, 45.591458], + [9.149733, 45.586962], + [9.145237, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.591458], + [9.145237, 45.595955], + [9.149733, 45.595955], + [9.149733, 45.591458], + [9.145237, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.595955], + [9.145237, 45.600451], + [9.149733, 45.600451], + [9.149733, 45.595955], + [9.145237, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.600451], + [9.145237, 45.604948], + [9.149733, 45.604948], + [9.149733, 45.600451], + [9.145237, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.604948], + [9.145237, 45.609445], + [9.149733, 45.609445], + [9.149733, 45.604948], + [9.145237, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.609445], + [9.145237, 45.613941], + [9.149733, 45.613941], + [9.149733, 45.609445], + [9.145237, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.613941], + [9.145237, 45.618438], + [9.149733, 45.618438], + [9.149733, 45.613941], + [9.145237, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.618438], + [9.145237, 45.622934], + [9.149733, 45.622934], + [9.149733, 45.618438], + [9.145237, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.622934], + [9.145237, 45.627431], + [9.149733, 45.627431], + [9.149733, 45.622934], + [9.145237, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.627431], + [9.145237, 45.631928], + [9.149733, 45.631928], + [9.149733, 45.627431], + [9.145237, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.145237, 45.631928], + [9.145237, 45.636424], + [9.149733, 45.636424], + [9.149733, 45.631928], + [9.145237, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.339648], + [9.149733, 45.344145], + [9.15423, 45.344145], + [9.15423, 45.339648], + [9.149733, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.344145], + [9.149733, 45.348642], + [9.15423, 45.348642], + [9.15423, 45.344145], + [9.149733, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.348642], + [9.149733, 45.353138], + [9.15423, 45.353138], + [9.15423, 45.348642], + [9.149733, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.353138], + [9.149733, 45.357635], + [9.15423, 45.357635], + [9.15423, 45.353138], + [9.149733, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.357635], + [9.149733, 45.362131], + [9.15423, 45.362131], + [9.15423, 45.357635], + [9.149733, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.362131], + [9.149733, 45.366628], + [9.15423, 45.366628], + [9.15423, 45.362131], + [9.149733, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.366628], + [9.149733, 45.371125], + [9.15423, 45.371125], + [9.15423, 45.366628], + [9.149733, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.371125], + [9.149733, 45.375621], + [9.15423, 45.375621], + [9.15423, 45.371125], + [9.149733, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.375621], + [9.149733, 45.380118], + [9.15423, 45.380118], + [9.15423, 45.375621], + [9.149733, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.380118], + [9.149733, 45.384614], + [9.15423, 45.384614], + [9.15423, 45.380118], + [9.149733, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.384614], + [9.149733, 45.389111], + [9.15423, 45.389111], + [9.15423, 45.384614], + [9.149733, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.389111], + [9.149733, 45.393608], + [9.15423, 45.393608], + [9.15423, 45.389111], + [9.149733, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.393608], + [9.149733, 45.398104], + [9.15423, 45.398104], + [9.15423, 45.393608], + [9.149733, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.398104], + [9.149733, 45.402601], + [9.15423, 45.402601], + [9.15423, 45.398104], + [9.149733, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.402601], + [9.149733, 45.407097], + [9.15423, 45.407097], + [9.15423, 45.402601], + [9.149733, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.407097], + [9.149733, 45.411594], + [9.15423, 45.411594], + [9.15423, 45.407097], + [9.149733, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.411594], + [9.149733, 45.416091], + [9.15423, 45.416091], + [9.15423, 45.411594], + [9.149733, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.416091], + [9.149733, 45.420587], + [9.15423, 45.420587], + [9.15423, 45.416091], + [9.149733, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.420587], + [9.149733, 45.425084], + [9.15423, 45.425084], + [9.15423, 45.420587], + [9.149733, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.425084], + [9.149733, 45.42958], + [9.15423, 45.42958], + [9.15423, 45.425084], + [9.149733, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.42958], + [9.149733, 45.434077], + [9.15423, 45.434077], + [9.15423, 45.42958], + [9.149733, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.434077], + [9.149733, 45.438574], + [9.15423, 45.438574], + [9.15423, 45.434077], + [9.149733, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.438574], + [9.149733, 45.44307], + [9.15423, 45.44307], + [9.15423, 45.438574], + [9.149733, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.44307], + [9.149733, 45.447567], + [9.15423, 45.447567], + [9.15423, 45.44307], + [9.149733, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.447567], + [9.149733, 45.452063], + [9.15423, 45.452063], + [9.15423, 45.447567], + [9.149733, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.452063], + [9.149733, 45.45656], + [9.15423, 45.45656], + [9.15423, 45.452063], + [9.149733, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.45656], + [9.149733, 45.461057], + [9.15423, 45.461057], + [9.15423, 45.45656], + [9.149733, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.461057], + [9.149733, 45.465553], + [9.15423, 45.465553], + [9.15423, 45.461057], + [9.149733, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.465553], + [9.149733, 45.47005], + [9.15423, 45.47005], + [9.15423, 45.465553], + [9.149733, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 15, + "stroke": "#d6ebff", + "fill": "#d6ebff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.47005], + [9.149733, 45.474547], + [9.15423, 45.474547], + [9.15423, 45.47005], + [9.149733, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.474547], + [9.149733, 45.479043], + [9.15423, 45.479043], + [9.15423, 45.474547], + [9.149733, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.479043], + [9.149733, 45.48354], + [9.15423, 45.48354], + [9.15423, 45.479043], + [9.149733, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.48354], + [9.149733, 45.488036], + [9.15423, 45.488036], + [9.15423, 45.48354], + [9.149733, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.488036], + [9.149733, 45.492533], + [9.15423, 45.492533], + [9.15423, 45.488036], + [9.149733, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.492533], + [9.149733, 45.49703], + [9.15423, 45.49703], + [9.15423, 45.492533], + [9.149733, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.49703], + [9.149733, 45.501526], + [9.15423, 45.501526], + [9.15423, 45.49703], + [9.149733, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.501526], + [9.149733, 45.506023], + [9.15423, 45.506023], + [9.15423, 45.501526], + [9.149733, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.506023], + [9.149733, 45.510519], + [9.15423, 45.510519], + [9.15423, 45.506023], + [9.149733, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.510519], + [9.149733, 45.515016], + [9.15423, 45.515016], + [9.15423, 45.510519], + [9.149733, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.515016], + [9.149733, 45.519513], + [9.15423, 45.519513], + [9.15423, 45.515016], + [9.149733, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.519513], + [9.149733, 45.524009], + [9.15423, 45.524009], + [9.15423, 45.519513], + [9.149733, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.524009], + [9.149733, 45.528506], + [9.15423, 45.528506], + [9.15423, 45.524009], + [9.149733, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.528506], + [9.149733, 45.533002], + [9.15423, 45.533002], + [9.15423, 45.528506], + [9.149733, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.533002], + [9.149733, 45.537499], + [9.15423, 45.537499], + [9.15423, 45.533002], + [9.149733, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.537499], + [9.149733, 45.541996], + [9.15423, 45.541996], + [9.15423, 45.537499], + [9.149733, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.541996], + [9.149733, 45.546492], + [9.15423, 45.546492], + [9.15423, 45.541996], + [9.149733, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.546492], + [9.149733, 45.550989], + [9.15423, 45.550989], + [9.15423, 45.546492], + [9.149733, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.550989], + [9.149733, 45.555485], + [9.15423, 45.555485], + [9.15423, 45.550989], + [9.149733, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.555485], + [9.149733, 45.559982], + [9.15423, 45.559982], + [9.15423, 45.555485], + [9.149733, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.559982], + [9.149733, 45.564479], + [9.15423, 45.564479], + [9.15423, 45.559982], + [9.149733, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.564479], + [9.149733, 45.568975], + [9.15423, 45.568975], + [9.15423, 45.564479], + [9.149733, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.568975], + [9.149733, 45.573472], + [9.15423, 45.573472], + [9.15423, 45.568975], + [9.149733, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.573472], + [9.149733, 45.577968], + [9.15423, 45.577968], + [9.15423, 45.573472], + [9.149733, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.577968], + [9.149733, 45.582465], + [9.15423, 45.582465], + [9.15423, 45.577968], + [9.149733, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.582465], + [9.149733, 45.586962], + [9.15423, 45.586962], + [9.15423, 45.582465], + [9.149733, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.586962], + [9.149733, 45.591458], + [9.15423, 45.591458], + [9.15423, 45.586962], + [9.149733, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.591458], + [9.149733, 45.595955], + [9.15423, 45.595955], + [9.15423, 45.591458], + [9.149733, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.595955], + [9.149733, 45.600451], + [9.15423, 45.600451], + [9.15423, 45.595955], + [9.149733, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.600451], + [9.149733, 45.604948], + [9.15423, 45.604948], + [9.15423, 45.600451], + [9.149733, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.604948], + [9.149733, 45.609445], + [9.15423, 45.609445], + [9.15423, 45.604948], + [9.149733, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.609445], + [9.149733, 45.613941], + [9.15423, 45.613941], + [9.15423, 45.609445], + [9.149733, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.613941], + [9.149733, 45.618438], + [9.15423, 45.618438], + [9.15423, 45.613941], + [9.149733, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.618438], + [9.149733, 45.622934], + [9.15423, 45.622934], + [9.15423, 45.618438], + [9.149733, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.622934], + [9.149733, 45.627431], + [9.15423, 45.627431], + [9.15423, 45.622934], + [9.149733, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.627431], + [9.149733, 45.631928], + [9.15423, 45.631928], + [9.15423, 45.627431], + [9.149733, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.149733, 45.631928], + [9.149733, 45.636424], + [9.15423, 45.636424], + [9.15423, 45.631928], + [9.149733, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.339648], + [9.15423, 45.344145], + [9.158727, 45.344145], + [9.158727, 45.339648], + [9.15423, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.344145], + [9.15423, 45.348642], + [9.158727, 45.348642], + [9.158727, 45.344145], + [9.15423, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.348642], + [9.15423, 45.353138], + [9.158727, 45.353138], + [9.158727, 45.348642], + [9.15423, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.353138], + [9.15423, 45.357635], + [9.158727, 45.357635], + [9.158727, 45.353138], + [9.15423, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.357635], + [9.15423, 45.362131], + [9.158727, 45.362131], + [9.158727, 45.357635], + [9.15423, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.362131], + [9.15423, 45.366628], + [9.158727, 45.366628], + [9.158727, 45.362131], + [9.15423, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.366628], + [9.15423, 45.371125], + [9.158727, 45.371125], + [9.158727, 45.366628], + [9.15423, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.371125], + [9.15423, 45.375621], + [9.158727, 45.375621], + [9.158727, 45.371125], + [9.15423, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.375621], + [9.15423, 45.380118], + [9.158727, 45.380118], + [9.158727, 45.375621], + [9.15423, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.380118], + [9.15423, 45.384614], + [9.158727, 45.384614], + [9.158727, 45.380118], + [9.15423, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.384614], + [9.15423, 45.389111], + [9.158727, 45.389111], + [9.158727, 45.384614], + [9.15423, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.389111], + [9.15423, 45.393608], + [9.158727, 45.393608], + [9.158727, 45.389111], + [9.15423, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.393608], + [9.15423, 45.398104], + [9.158727, 45.398104], + [9.158727, 45.393608], + [9.15423, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.398104], + [9.15423, 45.402601], + [9.158727, 45.402601], + [9.158727, 45.398104], + [9.15423, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.402601], + [9.15423, 45.407097], + [9.158727, 45.407097], + [9.158727, 45.402601], + [9.15423, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.407097], + [9.15423, 45.411594], + [9.158727, 45.411594], + [9.158727, 45.407097], + [9.15423, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.411594], + [9.15423, 45.416091], + [9.158727, 45.416091], + [9.158727, 45.411594], + [9.15423, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.416091], + [9.15423, 45.420587], + [9.158727, 45.420587], + [9.158727, 45.416091], + [9.15423, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.420587], + [9.15423, 45.425084], + [9.158727, 45.425084], + [9.158727, 45.420587], + [9.15423, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.425084], + [9.15423, 45.42958], + [9.158727, 45.42958], + [9.158727, 45.425084], + [9.15423, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.42958], + [9.15423, 45.434077], + [9.158727, 45.434077], + [9.158727, 45.42958], + [9.15423, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.434077], + [9.15423, 45.438574], + [9.158727, 45.438574], + [9.158727, 45.434077], + [9.15423, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.438574], + [9.15423, 45.44307], + [9.158727, 45.44307], + [9.158727, 45.438574], + [9.15423, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.44307], + [9.15423, 45.447567], + [9.158727, 45.447567], + [9.158727, 45.44307], + [9.15423, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.447567], + [9.15423, 45.452063], + [9.158727, 45.452063], + [9.158727, 45.447567], + [9.15423, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.452063], + [9.15423, 45.45656], + [9.158727, 45.45656], + [9.158727, 45.452063], + [9.15423, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.45656], + [9.15423, 45.461057], + [9.158727, 45.461057], + [9.158727, 45.45656], + [9.15423, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.461057], + [9.15423, 45.465553], + [9.158727, 45.465553], + [9.158727, 45.461057], + [9.15423, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.465553], + [9.15423, 45.47005], + [9.158727, 45.47005], + [9.158727, 45.465553], + [9.15423, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 11, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.47005], + [9.15423, 45.474547], + [9.158727, 45.474547], + [9.158727, 45.47005], + [9.15423, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.474547], + [9.15423, 45.479043], + [9.158727, 45.479043], + [9.158727, 45.474547], + [9.15423, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.479043], + [9.15423, 45.48354], + [9.158727, 45.48354], + [9.158727, 45.479043], + [9.15423, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.48354], + [9.15423, 45.488036], + [9.158727, 45.488036], + [9.158727, 45.48354], + [9.15423, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.488036], + [9.15423, 45.492533], + [9.158727, 45.492533], + [9.158727, 45.488036], + [9.15423, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.492533], + [9.15423, 45.49703], + [9.158727, 45.49703], + [9.158727, 45.492533], + [9.15423, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.49703], + [9.15423, 45.501526], + [9.158727, 45.501526], + [9.158727, 45.49703], + [9.15423, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.501526], + [9.15423, 45.506023], + [9.158727, 45.506023], + [9.158727, 45.501526], + [9.15423, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.506023], + [9.15423, 45.510519], + [9.158727, 45.510519], + [9.158727, 45.506023], + [9.15423, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.510519], + [9.15423, 45.515016], + [9.158727, 45.515016], + [9.158727, 45.510519], + [9.15423, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.515016], + [9.15423, 45.519513], + [9.158727, 45.519513], + [9.158727, 45.515016], + [9.15423, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.519513], + [9.15423, 45.524009], + [9.158727, 45.524009], + [9.158727, 45.519513], + [9.15423, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.524009], + [9.15423, 45.528506], + [9.158727, 45.528506], + [9.158727, 45.524009], + [9.15423, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.528506], + [9.15423, 45.533002], + [9.158727, 45.533002], + [9.158727, 45.528506], + [9.15423, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.533002], + [9.15423, 45.537499], + [9.158727, 45.537499], + [9.158727, 45.533002], + [9.15423, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.537499], + [9.15423, 45.541996], + [9.158727, 45.541996], + [9.158727, 45.537499], + [9.15423, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.541996], + [9.15423, 45.546492], + [9.158727, 45.546492], + [9.158727, 45.541996], + [9.15423, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.546492], + [9.15423, 45.550989], + [9.158727, 45.550989], + [9.158727, 45.546492], + [9.15423, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.550989], + [9.15423, 45.555485], + [9.158727, 45.555485], + [9.158727, 45.550989], + [9.15423, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.555485], + [9.15423, 45.559982], + [9.158727, 45.559982], + [9.158727, 45.555485], + [9.15423, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.559982], + [9.15423, 45.564479], + [9.158727, 45.564479], + [9.158727, 45.559982], + [9.15423, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.564479], + [9.15423, 45.568975], + [9.158727, 45.568975], + [9.158727, 45.564479], + [9.15423, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.568975], + [9.15423, 45.573472], + [9.158727, 45.573472], + [9.158727, 45.568975], + [9.15423, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.573472], + [9.15423, 45.577968], + [9.158727, 45.577968], + [9.158727, 45.573472], + [9.15423, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.577968], + [9.15423, 45.582465], + [9.158727, 45.582465], + [9.158727, 45.577968], + [9.15423, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.582465], + [9.15423, 45.586962], + [9.158727, 45.586962], + [9.158727, 45.582465], + [9.15423, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.586962], + [9.15423, 45.591458], + [9.158727, 45.591458], + [9.158727, 45.586962], + [9.15423, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.591458], + [9.15423, 45.595955], + [9.158727, 45.595955], + [9.158727, 45.591458], + [9.15423, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.595955], + [9.15423, 45.600451], + [9.158727, 45.600451], + [9.158727, 45.595955], + [9.15423, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.600451], + [9.15423, 45.604948], + [9.158727, 45.604948], + [9.158727, 45.600451], + [9.15423, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.604948], + [9.15423, 45.609445], + [9.158727, 45.609445], + [9.158727, 45.604948], + [9.15423, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.609445], + [9.15423, 45.613941], + [9.158727, 45.613941], + [9.158727, 45.609445], + [9.15423, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.613941], + [9.15423, 45.618438], + [9.158727, 45.618438], + [9.158727, 45.613941], + [9.15423, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.618438], + [9.15423, 45.622934], + [9.158727, 45.622934], + [9.158727, 45.618438], + [9.15423, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.622934], + [9.15423, 45.627431], + [9.158727, 45.627431], + [9.158727, 45.622934], + [9.15423, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.627431], + [9.15423, 45.631928], + [9.158727, 45.631928], + [9.158727, 45.627431], + [9.15423, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.15423, 45.631928], + [9.15423, 45.636424], + [9.158727, 45.636424], + [9.158727, 45.631928], + [9.15423, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.339648], + [9.158727, 45.344145], + [9.163223, 45.344145], + [9.163223, 45.339648], + [9.158727, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.344145], + [9.158727, 45.348642], + [9.163223, 45.348642], + [9.163223, 45.344145], + [9.158727, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.348642], + [9.158727, 45.353138], + [9.163223, 45.353138], + [9.163223, 45.348642], + [9.158727, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.353138], + [9.158727, 45.357635], + [9.163223, 45.357635], + [9.163223, 45.353138], + [9.158727, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.357635], + [9.158727, 45.362131], + [9.163223, 45.362131], + [9.163223, 45.357635], + [9.158727, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.362131], + [9.158727, 45.366628], + [9.163223, 45.366628], + [9.163223, 45.362131], + [9.158727, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.366628], + [9.158727, 45.371125], + [9.163223, 45.371125], + [9.163223, 45.366628], + [9.158727, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.371125], + [9.158727, 45.375621], + [9.163223, 45.375621], + [9.163223, 45.371125], + [9.158727, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.375621], + [9.158727, 45.380118], + [9.163223, 45.380118], + [9.163223, 45.375621], + [9.158727, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.380118], + [9.158727, 45.384614], + [9.163223, 45.384614], + [9.163223, 45.380118], + [9.158727, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.384614], + [9.158727, 45.389111], + [9.163223, 45.389111], + [9.163223, 45.384614], + [9.158727, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.389111], + [9.158727, 45.393608], + [9.163223, 45.393608], + [9.163223, 45.389111], + [9.158727, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.393608], + [9.158727, 45.398104], + [9.163223, 45.398104], + [9.163223, 45.393608], + [9.158727, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.398104], + [9.158727, 45.402601], + [9.163223, 45.402601], + [9.163223, 45.398104], + [9.158727, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.402601], + [9.158727, 45.407097], + [9.163223, 45.407097], + [9.163223, 45.402601], + [9.158727, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.407097], + [9.158727, 45.411594], + [9.163223, 45.411594], + [9.163223, 45.407097], + [9.158727, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.411594], + [9.158727, 45.416091], + [9.163223, 45.416091], + [9.163223, 45.411594], + [9.158727, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.416091], + [9.158727, 45.420587], + [9.163223, 45.420587], + [9.163223, 45.416091], + [9.158727, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.420587], + [9.158727, 45.425084], + [9.163223, 45.425084], + [9.163223, 45.420587], + [9.158727, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.425084], + [9.158727, 45.42958], + [9.163223, 45.42958], + [9.163223, 45.425084], + [9.158727, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.42958], + [9.158727, 45.434077], + [9.163223, 45.434077], + [9.163223, 45.42958], + [9.158727, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.434077], + [9.158727, 45.438574], + [9.163223, 45.438574], + [9.163223, 45.434077], + [9.158727, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.438574], + [9.158727, 45.44307], + [9.163223, 45.44307], + [9.163223, 45.438574], + [9.158727, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.44307], + [9.158727, 45.447567], + [9.163223, 45.447567], + [9.163223, 45.44307], + [9.158727, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.447567], + [9.158727, 45.452063], + [9.163223, 45.452063], + [9.163223, 45.447567], + [9.158727, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.452063], + [9.158727, 45.45656], + [9.163223, 45.45656], + [9.163223, 45.452063], + [9.158727, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.45656], + [9.158727, 45.461057], + [9.163223, 45.461057], + [9.163223, 45.45656], + [9.158727, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.461057], + [9.158727, 45.465553], + [9.163223, 45.465553], + [9.163223, 45.461057], + [9.158727, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.465553], + [9.158727, 45.47005], + [9.163223, 45.47005], + [9.163223, 45.465553], + [9.158727, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.47005], + [9.158727, 45.474547], + [9.163223, 45.474547], + [9.163223, 45.47005], + [9.158727, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 17, + "stroke": "#c2e2ff", + "fill": "#c2e2ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.474547], + [9.158727, 45.479043], + [9.163223, 45.479043], + [9.163223, 45.474547], + [9.158727, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.479043], + [9.158727, 45.48354], + [9.163223, 45.48354], + [9.163223, 45.479043], + [9.158727, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.48354], + [9.158727, 45.488036], + [9.163223, 45.488036], + [9.163223, 45.48354], + [9.158727, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.488036], + [9.158727, 45.492533], + [9.163223, 45.492533], + [9.163223, 45.488036], + [9.158727, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.492533], + [9.158727, 45.49703], + [9.163223, 45.49703], + [9.163223, 45.492533], + [9.158727, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.49703], + [9.158727, 45.501526], + [9.163223, 45.501526], + [9.163223, 45.49703], + [9.158727, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.501526], + [9.158727, 45.506023], + [9.163223, 45.506023], + [9.163223, 45.501526], + [9.158727, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.506023], + [9.158727, 45.510519], + [9.163223, 45.510519], + [9.163223, 45.506023], + [9.158727, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.510519], + [9.158727, 45.515016], + [9.163223, 45.515016], + [9.163223, 45.510519], + [9.158727, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.515016], + [9.158727, 45.519513], + [9.163223, 45.519513], + [9.163223, 45.515016], + [9.158727, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.519513], + [9.158727, 45.524009], + [9.163223, 45.524009], + [9.163223, 45.519513], + [9.158727, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.524009], + [9.158727, 45.528506], + [9.163223, 45.528506], + [9.163223, 45.524009], + [9.158727, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.528506], + [9.158727, 45.533002], + [9.163223, 45.533002], + [9.163223, 45.528506], + [9.158727, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.533002], + [9.158727, 45.537499], + [9.163223, 45.537499], + [9.163223, 45.533002], + [9.158727, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.537499], + [9.158727, 45.541996], + [9.163223, 45.541996], + [9.163223, 45.537499], + [9.158727, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.541996], + [9.158727, 45.546492], + [9.163223, 45.546492], + [9.163223, 45.541996], + [9.158727, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.546492], + [9.158727, 45.550989], + [9.163223, 45.550989], + [9.163223, 45.546492], + [9.158727, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.550989], + [9.158727, 45.555485], + [9.163223, 45.555485], + [9.163223, 45.550989], + [9.158727, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.555485], + [9.158727, 45.559982], + [9.163223, 45.559982], + [9.163223, 45.555485], + [9.158727, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.559982], + [9.158727, 45.564479], + [9.163223, 45.564479], + [9.163223, 45.559982], + [9.158727, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.564479], + [9.158727, 45.568975], + [9.163223, 45.568975], + [9.163223, 45.564479], + [9.158727, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.568975], + [9.158727, 45.573472], + [9.163223, 45.573472], + [9.163223, 45.568975], + [9.158727, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.573472], + [9.158727, 45.577968], + [9.163223, 45.577968], + [9.163223, 45.573472], + [9.158727, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.577968], + [9.158727, 45.582465], + [9.163223, 45.582465], + [9.163223, 45.577968], + [9.158727, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.582465], + [9.158727, 45.586962], + [9.163223, 45.586962], + [9.163223, 45.582465], + [9.158727, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.586962], + [9.158727, 45.591458], + [9.163223, 45.591458], + [9.163223, 45.586962], + [9.158727, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.591458], + [9.158727, 45.595955], + [9.163223, 45.595955], + [9.163223, 45.591458], + [9.158727, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.595955], + [9.158727, 45.600451], + [9.163223, 45.600451], + [9.163223, 45.595955], + [9.158727, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.600451], + [9.158727, 45.604948], + [9.163223, 45.604948], + [9.163223, 45.600451], + [9.158727, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.604948], + [9.158727, 45.609445], + [9.163223, 45.609445], + [9.163223, 45.604948], + [9.158727, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.609445], + [9.158727, 45.613941], + [9.163223, 45.613941], + [9.163223, 45.609445], + [9.158727, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.613941], + [9.158727, 45.618438], + [9.163223, 45.618438], + [9.163223, 45.613941], + [9.158727, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.618438], + [9.158727, 45.622934], + [9.163223, 45.622934], + [9.163223, 45.618438], + [9.158727, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.622934], + [9.158727, 45.627431], + [9.163223, 45.627431], + [9.163223, 45.622934], + [9.158727, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.627431], + [9.158727, 45.631928], + [9.163223, 45.631928], + [9.163223, 45.627431], + [9.158727, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.158727, 45.631928], + [9.158727, 45.636424], + [9.163223, 45.636424], + [9.163223, 45.631928], + [9.158727, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.339648], + [9.163223, 45.344145], + [9.16772, 45.344145], + [9.16772, 45.339648], + [9.163223, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.344145], + [9.163223, 45.348642], + [9.16772, 45.348642], + [9.16772, 45.344145], + [9.163223, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.348642], + [9.163223, 45.353138], + [9.16772, 45.353138], + [9.16772, 45.348642], + [9.163223, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.353138], + [9.163223, 45.357635], + [9.16772, 45.357635], + [9.16772, 45.353138], + [9.163223, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.357635], + [9.163223, 45.362131], + [9.16772, 45.362131], + [9.16772, 45.357635], + [9.163223, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.362131], + [9.163223, 45.366628], + [9.16772, 45.366628], + [9.16772, 45.362131], + [9.163223, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.366628], + [9.163223, 45.371125], + [9.16772, 45.371125], + [9.16772, 45.366628], + [9.163223, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.371125], + [9.163223, 45.375621], + [9.16772, 45.375621], + [9.16772, 45.371125], + [9.163223, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.375621], + [9.163223, 45.380118], + [9.16772, 45.380118], + [9.16772, 45.375621], + [9.163223, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.380118], + [9.163223, 45.384614], + [9.16772, 45.384614], + [9.16772, 45.380118], + [9.163223, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.384614], + [9.163223, 45.389111], + [9.16772, 45.389111], + [9.16772, 45.384614], + [9.163223, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.389111], + [9.163223, 45.393608], + [9.16772, 45.393608], + [9.16772, 45.389111], + [9.163223, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.393608], + [9.163223, 45.398104], + [9.16772, 45.398104], + [9.16772, 45.393608], + [9.163223, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.398104], + [9.163223, 45.402601], + [9.16772, 45.402601], + [9.16772, 45.398104], + [9.163223, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.402601], + [9.163223, 45.407097], + [9.16772, 45.407097], + [9.16772, 45.402601], + [9.163223, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.407097], + [9.163223, 45.411594], + [9.16772, 45.411594], + [9.16772, 45.407097], + [9.163223, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.411594], + [9.163223, 45.416091], + [9.16772, 45.416091], + [9.16772, 45.411594], + [9.163223, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.416091], + [9.163223, 45.420587], + [9.16772, 45.420587], + [9.16772, 45.416091], + [9.163223, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.420587], + [9.163223, 45.425084], + [9.16772, 45.425084], + [9.16772, 45.420587], + [9.163223, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.425084], + [9.163223, 45.42958], + [9.16772, 45.42958], + [9.16772, 45.425084], + [9.163223, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.42958], + [9.163223, 45.434077], + [9.16772, 45.434077], + [9.16772, 45.42958], + [9.163223, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.434077], + [9.163223, 45.438574], + [9.16772, 45.438574], + [9.16772, 45.434077], + [9.163223, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.438574], + [9.163223, 45.44307], + [9.16772, 45.44307], + [9.16772, 45.438574], + [9.163223, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.44307], + [9.163223, 45.447567], + [9.16772, 45.447567], + [9.16772, 45.44307], + [9.163223, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.447567], + [9.163223, 45.452063], + [9.16772, 45.452063], + [9.16772, 45.447567], + [9.163223, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.452063], + [9.163223, 45.45656], + [9.16772, 45.45656], + [9.16772, 45.452063], + [9.163223, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.45656], + [9.163223, 45.461057], + [9.16772, 45.461057], + [9.16772, 45.45656], + [9.163223, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.461057], + [9.163223, 45.465553], + [9.16772, 45.465553], + [9.16772, 45.461057], + [9.163223, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.465553], + [9.163223, 45.47005], + [9.16772, 45.47005], + [9.16772, 45.465553], + [9.163223, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.47005], + [9.163223, 45.474547], + [9.16772, 45.474547], + [9.16772, 45.47005], + [9.163223, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.474547], + [9.163223, 45.479043], + [9.16772, 45.479043], + [9.16772, 45.474547], + [9.163223, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.479043], + [9.163223, 45.48354], + [9.16772, 45.48354], + [9.16772, 45.479043], + [9.163223, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.48354], + [9.163223, 45.488036], + [9.16772, 45.488036], + [9.16772, 45.48354], + [9.163223, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.488036], + [9.163223, 45.492533], + [9.16772, 45.492533], + [9.16772, 45.488036], + [9.163223, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.492533], + [9.163223, 45.49703], + [9.16772, 45.49703], + [9.16772, 45.492533], + [9.163223, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.49703], + [9.163223, 45.501526], + [9.16772, 45.501526], + [9.16772, 45.49703], + [9.163223, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.501526], + [9.163223, 45.506023], + [9.16772, 45.506023], + [9.16772, 45.501526], + [9.163223, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.506023], + [9.163223, 45.510519], + [9.16772, 45.510519], + [9.16772, 45.506023], + [9.163223, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.510519], + [9.163223, 45.515016], + [9.16772, 45.515016], + [9.16772, 45.510519], + [9.163223, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.515016], + [9.163223, 45.519513], + [9.16772, 45.519513], + [9.16772, 45.515016], + [9.163223, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.519513], + [9.163223, 45.524009], + [9.16772, 45.524009], + [9.16772, 45.519513], + [9.163223, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.524009], + [9.163223, 45.528506], + [9.16772, 45.528506], + [9.16772, 45.524009], + [9.163223, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.528506], + [9.163223, 45.533002], + [9.16772, 45.533002], + [9.16772, 45.528506], + [9.163223, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.533002], + [9.163223, 45.537499], + [9.16772, 45.537499], + [9.16772, 45.533002], + [9.163223, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.537499], + [9.163223, 45.541996], + [9.16772, 45.541996], + [9.16772, 45.537499], + [9.163223, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.541996], + [9.163223, 45.546492], + [9.16772, 45.546492], + [9.16772, 45.541996], + [9.163223, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.546492], + [9.163223, 45.550989], + [9.16772, 45.550989], + [9.16772, 45.546492], + [9.163223, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.550989], + [9.163223, 45.555485], + [9.16772, 45.555485], + [9.16772, 45.550989], + [9.163223, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.555485], + [9.163223, 45.559982], + [9.16772, 45.559982], + [9.16772, 45.555485], + [9.163223, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.559982], + [9.163223, 45.564479], + [9.16772, 45.564479], + [9.16772, 45.559982], + [9.163223, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.564479], + [9.163223, 45.568975], + [9.16772, 45.568975], + [9.16772, 45.564479], + [9.163223, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.568975], + [9.163223, 45.573472], + [9.16772, 45.573472], + [9.16772, 45.568975], + [9.163223, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.573472], + [9.163223, 45.577968], + [9.16772, 45.577968], + [9.16772, 45.573472], + [9.163223, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.577968], + [9.163223, 45.582465], + [9.16772, 45.582465], + [9.16772, 45.577968], + [9.163223, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.582465], + [9.163223, 45.586962], + [9.16772, 45.586962], + [9.16772, 45.582465], + [9.163223, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.586962], + [9.163223, 45.591458], + [9.16772, 45.591458], + [9.16772, 45.586962], + [9.163223, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.591458], + [9.163223, 45.595955], + [9.16772, 45.595955], + [9.16772, 45.591458], + [9.163223, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.595955], + [9.163223, 45.600451], + [9.16772, 45.600451], + [9.16772, 45.595955], + [9.163223, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.600451], + [9.163223, 45.604948], + [9.16772, 45.604948], + [9.16772, 45.600451], + [9.163223, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.604948], + [9.163223, 45.609445], + [9.16772, 45.609445], + [9.16772, 45.604948], + [9.163223, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.609445], + [9.163223, 45.613941], + [9.16772, 45.613941], + [9.16772, 45.609445], + [9.163223, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.613941], + [9.163223, 45.618438], + [9.16772, 45.618438], + [9.16772, 45.613941], + [9.163223, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.618438], + [9.163223, 45.622934], + [9.16772, 45.622934], + [9.16772, 45.618438], + [9.163223, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.622934], + [9.163223, 45.627431], + [9.16772, 45.627431], + [9.16772, 45.622934], + [9.163223, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.627431], + [9.163223, 45.631928], + [9.16772, 45.631928], + [9.16772, 45.627431], + [9.163223, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.163223, 45.631928], + [9.163223, 45.636424], + [9.16772, 45.636424], + [9.16772, 45.631928], + [9.163223, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.339648], + [9.16772, 45.344145], + [9.172216, 45.344145], + [9.172216, 45.339648], + [9.16772, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.344145], + [9.16772, 45.348642], + [9.172216, 45.348642], + [9.172216, 45.344145], + [9.16772, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.348642], + [9.16772, 45.353138], + [9.172216, 45.353138], + [9.172216, 45.348642], + [9.16772, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.353138], + [9.16772, 45.357635], + [9.172216, 45.357635], + [9.172216, 45.353138], + [9.16772, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.357635], + [9.16772, 45.362131], + [9.172216, 45.362131], + [9.172216, 45.357635], + [9.16772, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.362131], + [9.16772, 45.366628], + [9.172216, 45.366628], + [9.172216, 45.362131], + [9.16772, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.366628], + [9.16772, 45.371125], + [9.172216, 45.371125], + [9.172216, 45.366628], + [9.16772, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.371125], + [9.16772, 45.375621], + [9.172216, 45.375621], + [9.172216, 45.371125], + [9.16772, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.375621], + [9.16772, 45.380118], + [9.172216, 45.380118], + [9.172216, 45.375621], + [9.16772, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.380118], + [9.16772, 45.384614], + [9.172216, 45.384614], + [9.172216, 45.380118], + [9.16772, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.384614], + [9.16772, 45.389111], + [9.172216, 45.389111], + [9.172216, 45.384614], + [9.16772, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.389111], + [9.16772, 45.393608], + [9.172216, 45.393608], + [9.172216, 45.389111], + [9.16772, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.393608], + [9.16772, 45.398104], + [9.172216, 45.398104], + [9.172216, 45.393608], + [9.16772, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.398104], + [9.16772, 45.402601], + [9.172216, 45.402601], + [9.172216, 45.398104], + [9.16772, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.402601], + [9.16772, 45.407097], + [9.172216, 45.407097], + [9.172216, 45.402601], + [9.16772, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.407097], + [9.16772, 45.411594], + [9.172216, 45.411594], + [9.172216, 45.407097], + [9.16772, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.411594], + [9.16772, 45.416091], + [9.172216, 45.416091], + [9.172216, 45.411594], + [9.16772, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.416091], + [9.16772, 45.420587], + [9.172216, 45.420587], + [9.172216, 45.416091], + [9.16772, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.420587], + [9.16772, 45.425084], + [9.172216, 45.425084], + [9.172216, 45.420587], + [9.16772, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.425084], + [9.16772, 45.42958], + [9.172216, 45.42958], + [9.172216, 45.425084], + [9.16772, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.42958], + [9.16772, 45.434077], + [9.172216, 45.434077], + [9.172216, 45.42958], + [9.16772, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.434077], + [9.16772, 45.438574], + [9.172216, 45.438574], + [9.172216, 45.434077], + [9.16772, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.438574], + [9.16772, 45.44307], + [9.172216, 45.44307], + [9.172216, 45.438574], + [9.16772, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.44307], + [9.16772, 45.447567], + [9.172216, 45.447567], + [9.172216, 45.44307], + [9.16772, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.447567], + [9.16772, 45.452063], + [9.172216, 45.452063], + [9.172216, 45.447567], + [9.16772, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.452063], + [9.16772, 45.45656], + [9.172216, 45.45656], + [9.172216, 45.452063], + [9.16772, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.45656], + [9.16772, 45.461057], + [9.172216, 45.461057], + [9.172216, 45.45656], + [9.16772, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.461057], + [9.16772, 45.465553], + [9.172216, 45.465553], + [9.172216, 45.461057], + [9.16772, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.465553], + [9.16772, 45.47005], + [9.172216, 45.47005], + [9.172216, 45.465553], + [9.16772, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.47005], + [9.16772, 45.474547], + [9.172216, 45.474547], + [9.172216, 45.47005], + [9.16772, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.474547], + [9.16772, 45.479043], + [9.172216, 45.479043], + [9.172216, 45.474547], + [9.16772, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.479043], + [9.16772, 45.48354], + [9.172216, 45.48354], + [9.172216, 45.479043], + [9.16772, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.48354], + [9.16772, 45.488036], + [9.172216, 45.488036], + [9.172216, 45.48354], + [9.16772, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.488036], + [9.16772, 45.492533], + [9.172216, 45.492533], + [9.172216, 45.488036], + [9.16772, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.492533], + [9.16772, 45.49703], + [9.172216, 45.49703], + [9.172216, 45.492533], + [9.16772, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.49703], + [9.16772, 45.501526], + [9.172216, 45.501526], + [9.172216, 45.49703], + [9.16772, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.501526], + [9.16772, 45.506023], + [9.172216, 45.506023], + [9.172216, 45.501526], + [9.16772, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.506023], + [9.16772, 45.510519], + [9.172216, 45.510519], + [9.172216, 45.506023], + [9.16772, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.510519], + [9.16772, 45.515016], + [9.172216, 45.515016], + [9.172216, 45.510519], + [9.16772, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.515016], + [9.16772, 45.519513], + [9.172216, 45.519513], + [9.172216, 45.515016], + [9.16772, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.519513], + [9.16772, 45.524009], + [9.172216, 45.524009], + [9.172216, 45.519513], + [9.16772, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.524009], + [9.16772, 45.528506], + [9.172216, 45.528506], + [9.172216, 45.524009], + [9.16772, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.528506], + [9.16772, 45.533002], + [9.172216, 45.533002], + [9.172216, 45.528506], + [9.16772, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.533002], + [9.16772, 45.537499], + [9.172216, 45.537499], + [9.172216, 45.533002], + [9.16772, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.537499], + [9.16772, 45.541996], + [9.172216, 45.541996], + [9.172216, 45.537499], + [9.16772, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.541996], + [9.16772, 45.546492], + [9.172216, 45.546492], + [9.172216, 45.541996], + [9.16772, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.546492], + [9.16772, 45.550989], + [9.172216, 45.550989], + [9.172216, 45.546492], + [9.16772, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.550989], + [9.16772, 45.555485], + [9.172216, 45.555485], + [9.172216, 45.550989], + [9.16772, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.555485], + [9.16772, 45.559982], + [9.172216, 45.559982], + [9.172216, 45.555485], + [9.16772, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.559982], + [9.16772, 45.564479], + [9.172216, 45.564479], + [9.172216, 45.559982], + [9.16772, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.564479], + [9.16772, 45.568975], + [9.172216, 45.568975], + [9.172216, 45.564479], + [9.16772, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.568975], + [9.16772, 45.573472], + [9.172216, 45.573472], + [9.172216, 45.568975], + [9.16772, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.573472], + [9.16772, 45.577968], + [9.172216, 45.577968], + [9.172216, 45.573472], + [9.16772, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.577968], + [9.16772, 45.582465], + [9.172216, 45.582465], + [9.172216, 45.577968], + [9.16772, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.582465], + [9.16772, 45.586962], + [9.172216, 45.586962], + [9.172216, 45.582465], + [9.16772, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.586962], + [9.16772, 45.591458], + [9.172216, 45.591458], + [9.172216, 45.586962], + [9.16772, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.591458], + [9.16772, 45.595955], + [9.172216, 45.595955], + [9.172216, 45.591458], + [9.16772, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.595955], + [9.16772, 45.600451], + [9.172216, 45.600451], + [9.172216, 45.595955], + [9.16772, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.600451], + [9.16772, 45.604948], + [9.172216, 45.604948], + [9.172216, 45.600451], + [9.16772, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.604948], + [9.16772, 45.609445], + [9.172216, 45.609445], + [9.172216, 45.604948], + [9.16772, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.609445], + [9.16772, 45.613941], + [9.172216, 45.613941], + [9.172216, 45.609445], + [9.16772, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.613941], + [9.16772, 45.618438], + [9.172216, 45.618438], + [9.172216, 45.613941], + [9.16772, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.618438], + [9.16772, 45.622934], + [9.172216, 45.622934], + [9.172216, 45.618438], + [9.16772, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.622934], + [9.16772, 45.627431], + [9.172216, 45.627431], + [9.172216, 45.622934], + [9.16772, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.627431], + [9.16772, 45.631928], + [9.172216, 45.631928], + [9.172216, 45.627431], + [9.16772, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.16772, 45.631928], + [9.16772, 45.636424], + [9.172216, 45.636424], + [9.172216, 45.631928], + [9.16772, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.339648], + [9.172216, 45.344145], + [9.176713, 45.344145], + [9.176713, 45.339648], + [9.172216, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.344145], + [9.172216, 45.348642], + [9.176713, 45.348642], + [9.176713, 45.344145], + [9.172216, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.348642], + [9.172216, 45.353138], + [9.176713, 45.353138], + [9.176713, 45.348642], + [9.172216, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.353138], + [9.172216, 45.357635], + [9.176713, 45.357635], + [9.176713, 45.353138], + [9.172216, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.357635], + [9.172216, 45.362131], + [9.176713, 45.362131], + [9.176713, 45.357635], + [9.172216, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.362131], + [9.172216, 45.366628], + [9.176713, 45.366628], + [9.176713, 45.362131], + [9.172216, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.366628], + [9.172216, 45.371125], + [9.176713, 45.371125], + [9.176713, 45.366628], + [9.172216, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.371125], + [9.172216, 45.375621], + [9.176713, 45.375621], + [9.176713, 45.371125], + [9.172216, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.375621], + [9.172216, 45.380118], + [9.176713, 45.380118], + [9.176713, 45.375621], + [9.172216, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.380118], + [9.172216, 45.384614], + [9.176713, 45.384614], + [9.176713, 45.380118], + [9.172216, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.384614], + [9.172216, 45.389111], + [9.176713, 45.389111], + [9.176713, 45.384614], + [9.172216, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.389111], + [9.172216, 45.393608], + [9.176713, 45.393608], + [9.176713, 45.389111], + [9.172216, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.393608], + [9.172216, 45.398104], + [9.176713, 45.398104], + [9.176713, 45.393608], + [9.172216, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.398104], + [9.172216, 45.402601], + [9.176713, 45.402601], + [9.176713, 45.398104], + [9.172216, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.402601], + [9.172216, 45.407097], + [9.176713, 45.407097], + [9.176713, 45.402601], + [9.172216, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.407097], + [9.172216, 45.411594], + [9.176713, 45.411594], + [9.176713, 45.407097], + [9.172216, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.411594], + [9.172216, 45.416091], + [9.176713, 45.416091], + [9.176713, 45.411594], + [9.172216, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.416091], + [9.172216, 45.420587], + [9.176713, 45.420587], + [9.176713, 45.416091], + [9.172216, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.420587], + [9.172216, 45.425084], + [9.176713, 45.425084], + [9.176713, 45.420587], + [9.172216, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.425084], + [9.172216, 45.42958], + [9.176713, 45.42958], + [9.176713, 45.425084], + [9.172216, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.42958], + [9.172216, 45.434077], + [9.176713, 45.434077], + [9.176713, 45.42958], + [9.172216, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.434077], + [9.172216, 45.438574], + [9.176713, 45.438574], + [9.176713, 45.434077], + [9.172216, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.438574], + [9.172216, 45.44307], + [9.176713, 45.44307], + [9.176713, 45.438574], + [9.172216, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.44307], + [9.172216, 45.447567], + [9.176713, 45.447567], + [9.176713, 45.44307], + [9.172216, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.447567], + [9.172216, 45.452063], + [9.176713, 45.452063], + [9.176713, 45.447567], + [9.172216, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.452063], + [9.172216, 45.45656], + [9.176713, 45.45656], + [9.176713, 45.452063], + [9.172216, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.45656], + [9.172216, 45.461057], + [9.176713, 45.461057], + [9.176713, 45.45656], + [9.172216, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.461057], + [9.172216, 45.465553], + [9.176713, 45.465553], + [9.176713, 45.461057], + [9.172216, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.465553], + [9.172216, 45.47005], + [9.176713, 45.47005], + [9.176713, 45.465553], + [9.172216, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.47005], + [9.172216, 45.474547], + [9.176713, 45.474547], + [9.176713, 45.47005], + [9.172216, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.474547], + [9.172216, 45.479043], + [9.176713, 45.479043], + [9.176713, 45.474547], + [9.172216, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.479043], + [9.172216, 45.48354], + [9.176713, 45.48354], + [9.176713, 45.479043], + [9.172216, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.48354], + [9.172216, 45.488036], + [9.176713, 45.488036], + [9.176713, 45.48354], + [9.172216, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.488036], + [9.172216, 45.492533], + [9.176713, 45.492533], + [9.176713, 45.488036], + [9.172216, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.492533], + [9.172216, 45.49703], + [9.176713, 45.49703], + [9.176713, 45.492533], + [9.172216, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.49703], + [9.172216, 45.501526], + [9.176713, 45.501526], + [9.176713, 45.49703], + [9.172216, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.501526], + [9.172216, 45.506023], + [9.176713, 45.506023], + [9.176713, 45.501526], + [9.172216, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.506023], + [9.172216, 45.510519], + [9.176713, 45.510519], + [9.176713, 45.506023], + [9.172216, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.510519], + [9.172216, 45.515016], + [9.176713, 45.515016], + [9.176713, 45.510519], + [9.172216, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.515016], + [9.172216, 45.519513], + [9.176713, 45.519513], + [9.176713, 45.515016], + [9.172216, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.519513], + [9.172216, 45.524009], + [9.176713, 45.524009], + [9.176713, 45.519513], + [9.172216, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.524009], + [9.172216, 45.528506], + [9.176713, 45.528506], + [9.176713, 45.524009], + [9.172216, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.528506], + [9.172216, 45.533002], + [9.176713, 45.533002], + [9.176713, 45.528506], + [9.172216, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.533002], + [9.172216, 45.537499], + [9.176713, 45.537499], + [9.176713, 45.533002], + [9.172216, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.537499], + [9.172216, 45.541996], + [9.176713, 45.541996], + [9.176713, 45.537499], + [9.172216, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.541996], + [9.172216, 45.546492], + [9.176713, 45.546492], + [9.176713, 45.541996], + [9.172216, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.546492], + [9.172216, 45.550989], + [9.176713, 45.550989], + [9.176713, 45.546492], + [9.172216, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.550989], + [9.172216, 45.555485], + [9.176713, 45.555485], + [9.176713, 45.550989], + [9.172216, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.555485], + [9.172216, 45.559982], + [9.176713, 45.559982], + [9.176713, 45.555485], + [9.172216, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.559982], + [9.172216, 45.564479], + [9.176713, 45.564479], + [9.176713, 45.559982], + [9.172216, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.564479], + [9.172216, 45.568975], + [9.176713, 45.568975], + [9.176713, 45.564479], + [9.172216, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.568975], + [9.172216, 45.573472], + [9.176713, 45.573472], + [9.176713, 45.568975], + [9.172216, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.573472], + [9.172216, 45.577968], + [9.176713, 45.577968], + [9.176713, 45.573472], + [9.172216, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.577968], + [9.172216, 45.582465], + [9.176713, 45.582465], + [9.176713, 45.577968], + [9.172216, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.582465], + [9.172216, 45.586962], + [9.176713, 45.586962], + [9.176713, 45.582465], + [9.172216, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.586962], + [9.172216, 45.591458], + [9.176713, 45.591458], + [9.176713, 45.586962], + [9.172216, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.591458], + [9.172216, 45.595955], + [9.176713, 45.595955], + [9.176713, 45.591458], + [9.172216, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.595955], + [9.172216, 45.600451], + [9.176713, 45.600451], + [9.176713, 45.595955], + [9.172216, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.600451], + [9.172216, 45.604948], + [9.176713, 45.604948], + [9.176713, 45.600451], + [9.172216, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.604948], + [9.172216, 45.609445], + [9.176713, 45.609445], + [9.176713, 45.604948], + [9.172216, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.609445], + [9.172216, 45.613941], + [9.176713, 45.613941], + [9.176713, 45.609445], + [9.172216, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.613941], + [9.172216, 45.618438], + [9.176713, 45.618438], + [9.176713, 45.613941], + [9.172216, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.618438], + [9.172216, 45.622934], + [9.176713, 45.622934], + [9.176713, 45.618438], + [9.172216, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.622934], + [9.172216, 45.627431], + [9.176713, 45.627431], + [9.176713, 45.622934], + [9.172216, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.627431], + [9.172216, 45.631928], + [9.176713, 45.631928], + [9.176713, 45.627431], + [9.172216, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.172216, 45.631928], + [9.172216, 45.636424], + [9.176713, 45.636424], + [9.176713, 45.631928], + [9.172216, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.339648], + [9.176713, 45.344145], + [9.18121, 45.344145], + [9.18121, 45.339648], + [9.176713, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.344145], + [9.176713, 45.348642], + [9.18121, 45.348642], + [9.18121, 45.344145], + [9.176713, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.348642], + [9.176713, 45.353138], + [9.18121, 45.353138], + [9.18121, 45.348642], + [9.176713, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.353138], + [9.176713, 45.357635], + [9.18121, 45.357635], + [9.18121, 45.353138], + [9.176713, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.357635], + [9.176713, 45.362131], + [9.18121, 45.362131], + [9.18121, 45.357635], + [9.176713, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.362131], + [9.176713, 45.366628], + [9.18121, 45.366628], + [9.18121, 45.362131], + [9.176713, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.366628], + [9.176713, 45.371125], + [9.18121, 45.371125], + [9.18121, 45.366628], + [9.176713, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.371125], + [9.176713, 45.375621], + [9.18121, 45.375621], + [9.18121, 45.371125], + [9.176713, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.375621], + [9.176713, 45.380118], + [9.18121, 45.380118], + [9.18121, 45.375621], + [9.176713, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.380118], + [9.176713, 45.384614], + [9.18121, 45.384614], + [9.18121, 45.380118], + [9.176713, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.384614], + [9.176713, 45.389111], + [9.18121, 45.389111], + [9.18121, 45.384614], + [9.176713, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.389111], + [9.176713, 45.393608], + [9.18121, 45.393608], + [9.18121, 45.389111], + [9.176713, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.393608], + [9.176713, 45.398104], + [9.18121, 45.398104], + [9.18121, 45.393608], + [9.176713, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.398104], + [9.176713, 45.402601], + [9.18121, 45.402601], + [9.18121, 45.398104], + [9.176713, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.402601], + [9.176713, 45.407097], + [9.18121, 45.407097], + [9.18121, 45.402601], + [9.176713, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.407097], + [9.176713, 45.411594], + [9.18121, 45.411594], + [9.18121, 45.407097], + [9.176713, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.411594], + [9.176713, 45.416091], + [9.18121, 45.416091], + [9.18121, 45.411594], + [9.176713, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.416091], + [9.176713, 45.420587], + [9.18121, 45.420587], + [9.18121, 45.416091], + [9.176713, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.420587], + [9.176713, 45.425084], + [9.18121, 45.425084], + [9.18121, 45.420587], + [9.176713, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.425084], + [9.176713, 45.42958], + [9.18121, 45.42958], + [9.18121, 45.425084], + [9.176713, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.42958], + [9.176713, 45.434077], + [9.18121, 45.434077], + [9.18121, 45.42958], + [9.176713, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.434077], + [9.176713, 45.438574], + [9.18121, 45.438574], + [9.18121, 45.434077], + [9.176713, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.438574], + [9.176713, 45.44307], + [9.18121, 45.44307], + [9.18121, 45.438574], + [9.176713, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.44307], + [9.176713, 45.447567], + [9.18121, 45.447567], + [9.18121, 45.44307], + [9.176713, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.447567], + [9.176713, 45.452063], + [9.18121, 45.452063], + [9.18121, 45.447567], + [9.176713, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.452063], + [9.176713, 45.45656], + [9.18121, 45.45656], + [9.18121, 45.452063], + [9.176713, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.45656], + [9.176713, 45.461057], + [9.18121, 45.461057], + [9.18121, 45.45656], + [9.176713, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.461057], + [9.176713, 45.465553], + [9.18121, 45.465553], + [9.18121, 45.461057], + [9.176713, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.465553], + [9.176713, 45.47005], + [9.18121, 45.47005], + [9.18121, 45.465553], + [9.176713, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.47005], + [9.176713, 45.474547], + [9.18121, 45.474547], + [9.18121, 45.47005], + [9.176713, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.474547], + [9.176713, 45.479043], + [9.18121, 45.479043], + [9.18121, 45.474547], + [9.176713, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.479043], + [9.176713, 45.48354], + [9.18121, 45.48354], + [9.18121, 45.479043], + [9.176713, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.48354], + [9.176713, 45.488036], + [9.18121, 45.488036], + [9.18121, 45.48354], + [9.176713, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.488036], + [9.176713, 45.492533], + [9.18121, 45.492533], + [9.18121, 45.488036], + [9.176713, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.492533], + [9.176713, 45.49703], + [9.18121, 45.49703], + [9.18121, 45.492533], + [9.176713, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.49703], + [9.176713, 45.501526], + [9.18121, 45.501526], + [9.18121, 45.49703], + [9.176713, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.501526], + [9.176713, 45.506023], + [9.18121, 45.506023], + [9.18121, 45.501526], + [9.176713, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.506023], + [9.176713, 45.510519], + [9.18121, 45.510519], + [9.18121, 45.506023], + [9.176713, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.510519], + [9.176713, 45.515016], + [9.18121, 45.515016], + [9.18121, 45.510519], + [9.176713, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.515016], + [9.176713, 45.519513], + [9.18121, 45.519513], + [9.18121, 45.515016], + [9.176713, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.519513], + [9.176713, 45.524009], + [9.18121, 45.524009], + [9.18121, 45.519513], + [9.176713, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.524009], + [9.176713, 45.528506], + [9.18121, 45.528506], + [9.18121, 45.524009], + [9.176713, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.528506], + [9.176713, 45.533002], + [9.18121, 45.533002], + [9.18121, 45.528506], + [9.176713, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.533002], + [9.176713, 45.537499], + [9.18121, 45.537499], + [9.18121, 45.533002], + [9.176713, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.537499], + [9.176713, 45.541996], + [9.18121, 45.541996], + [9.18121, 45.537499], + [9.176713, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.541996], + [9.176713, 45.546492], + [9.18121, 45.546492], + [9.18121, 45.541996], + [9.176713, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.546492], + [9.176713, 45.550989], + [9.18121, 45.550989], + [9.18121, 45.546492], + [9.176713, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.550989], + [9.176713, 45.555485], + [9.18121, 45.555485], + [9.18121, 45.550989], + [9.176713, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.555485], + [9.176713, 45.559982], + [9.18121, 45.559982], + [9.18121, 45.555485], + [9.176713, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.559982], + [9.176713, 45.564479], + [9.18121, 45.564479], + [9.18121, 45.559982], + [9.176713, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.564479], + [9.176713, 45.568975], + [9.18121, 45.568975], + [9.18121, 45.564479], + [9.176713, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.568975], + [9.176713, 45.573472], + [9.18121, 45.573472], + [9.18121, 45.568975], + [9.176713, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.573472], + [9.176713, 45.577968], + [9.18121, 45.577968], + [9.18121, 45.573472], + [9.176713, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.577968], + [9.176713, 45.582465], + [9.18121, 45.582465], + [9.18121, 45.577968], + [9.176713, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.582465], + [9.176713, 45.586962], + [9.18121, 45.586962], + [9.18121, 45.582465], + [9.176713, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.586962], + [9.176713, 45.591458], + [9.18121, 45.591458], + [9.18121, 45.586962], + [9.176713, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.591458], + [9.176713, 45.595955], + [9.18121, 45.595955], + [9.18121, 45.591458], + [9.176713, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.595955], + [9.176713, 45.600451], + [9.18121, 45.600451], + [9.18121, 45.595955], + [9.176713, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.600451], + [9.176713, 45.604948], + [9.18121, 45.604948], + [9.18121, 45.600451], + [9.176713, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.604948], + [9.176713, 45.609445], + [9.18121, 45.609445], + [9.18121, 45.604948], + [9.176713, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.609445], + [9.176713, 45.613941], + [9.18121, 45.613941], + [9.18121, 45.609445], + [9.176713, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.613941], + [9.176713, 45.618438], + [9.18121, 45.618438], + [9.18121, 45.613941], + [9.176713, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.618438], + [9.176713, 45.622934], + [9.18121, 45.622934], + [9.18121, 45.618438], + [9.176713, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.622934], + [9.176713, 45.627431], + [9.18121, 45.627431], + [9.18121, 45.622934], + [9.176713, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.627431], + [9.176713, 45.631928], + [9.18121, 45.631928], + [9.18121, 45.627431], + [9.176713, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.176713, 45.631928], + [9.176713, 45.636424], + [9.18121, 45.636424], + [9.18121, 45.631928], + [9.176713, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.339648], + [9.18121, 45.344145], + [9.185706, 45.344145], + [9.185706, 45.339648], + [9.18121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.344145], + [9.18121, 45.348642], + [9.185706, 45.348642], + [9.185706, 45.344145], + [9.18121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.348642], + [9.18121, 45.353138], + [9.185706, 45.353138], + [9.185706, 45.348642], + [9.18121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.353138], + [9.18121, 45.357635], + [9.185706, 45.357635], + [9.185706, 45.353138], + [9.18121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.357635], + [9.18121, 45.362131], + [9.185706, 45.362131], + [9.185706, 45.357635], + [9.18121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.362131], + [9.18121, 45.366628], + [9.185706, 45.366628], + [9.185706, 45.362131], + [9.18121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.366628], + [9.18121, 45.371125], + [9.185706, 45.371125], + [9.185706, 45.366628], + [9.18121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.371125], + [9.18121, 45.375621], + [9.185706, 45.375621], + [9.185706, 45.371125], + [9.18121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.375621], + [9.18121, 45.380118], + [9.185706, 45.380118], + [9.185706, 45.375621], + [9.18121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.380118], + [9.18121, 45.384614], + [9.185706, 45.384614], + [9.185706, 45.380118], + [9.18121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.384614], + [9.18121, 45.389111], + [9.185706, 45.389111], + [9.185706, 45.384614], + [9.18121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.389111], + [9.18121, 45.393608], + [9.185706, 45.393608], + [9.185706, 45.389111], + [9.18121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.393608], + [9.18121, 45.398104], + [9.185706, 45.398104], + [9.185706, 45.393608], + [9.18121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.398104], + [9.18121, 45.402601], + [9.185706, 45.402601], + [9.185706, 45.398104], + [9.18121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.402601], + [9.18121, 45.407097], + [9.185706, 45.407097], + [9.185706, 45.402601], + [9.18121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.407097], + [9.18121, 45.411594], + [9.185706, 45.411594], + [9.185706, 45.407097], + [9.18121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.411594], + [9.18121, 45.416091], + [9.185706, 45.416091], + [9.185706, 45.411594], + [9.18121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.416091], + [9.18121, 45.420587], + [9.185706, 45.420587], + [9.185706, 45.416091], + [9.18121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.420587], + [9.18121, 45.425084], + [9.185706, 45.425084], + [9.185706, 45.420587], + [9.18121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.425084], + [9.18121, 45.42958], + [9.185706, 45.42958], + [9.185706, 45.425084], + [9.18121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.42958], + [9.18121, 45.434077], + [9.185706, 45.434077], + [9.185706, 45.42958], + [9.18121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.434077], + [9.18121, 45.438574], + [9.185706, 45.438574], + [9.185706, 45.434077], + [9.18121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.438574], + [9.18121, 45.44307], + [9.185706, 45.44307], + [9.185706, 45.438574], + [9.18121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.44307], + [9.18121, 45.447567], + [9.185706, 45.447567], + [9.185706, 45.44307], + [9.18121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.447567], + [9.18121, 45.452063], + [9.185706, 45.452063], + [9.185706, 45.447567], + [9.18121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.452063], + [9.18121, 45.45656], + [9.185706, 45.45656], + [9.185706, 45.452063], + [9.18121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.45656], + [9.18121, 45.461057], + [9.185706, 45.461057], + [9.185706, 45.45656], + [9.18121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.461057], + [9.18121, 45.465553], + [9.185706, 45.465553], + [9.185706, 45.461057], + [9.18121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.465553], + [9.18121, 45.47005], + [9.185706, 45.47005], + [9.185706, 45.465553], + [9.18121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.47005], + [9.18121, 45.474547], + [9.185706, 45.474547], + [9.185706, 45.47005], + [9.18121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.474547], + [9.18121, 45.479043], + [9.185706, 45.479043], + [9.185706, 45.474547], + [9.18121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.479043], + [9.18121, 45.48354], + [9.185706, 45.48354], + [9.185706, 45.479043], + [9.18121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.48354], + [9.18121, 45.488036], + [9.185706, 45.488036], + [9.185706, 45.48354], + [9.18121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.488036], + [9.18121, 45.492533], + [9.185706, 45.492533], + [9.185706, 45.488036], + [9.18121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.492533], + [9.18121, 45.49703], + [9.185706, 45.49703], + [9.185706, 45.492533], + [9.18121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.49703], + [9.18121, 45.501526], + [9.185706, 45.501526], + [9.185706, 45.49703], + [9.18121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.501526], + [9.18121, 45.506023], + [9.185706, 45.506023], + [9.185706, 45.501526], + [9.18121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.506023], + [9.18121, 45.510519], + [9.185706, 45.510519], + [9.185706, 45.506023], + [9.18121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.510519], + [9.18121, 45.515016], + [9.185706, 45.515016], + [9.185706, 45.510519], + [9.18121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.515016], + [9.18121, 45.519513], + [9.185706, 45.519513], + [9.185706, 45.515016], + [9.18121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.519513], + [9.18121, 45.524009], + [9.185706, 45.524009], + [9.185706, 45.519513], + [9.18121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.524009], + [9.18121, 45.528506], + [9.185706, 45.528506], + [9.185706, 45.524009], + [9.18121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.528506], + [9.18121, 45.533002], + [9.185706, 45.533002], + [9.185706, 45.528506], + [9.18121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.533002], + [9.18121, 45.537499], + [9.185706, 45.537499], + [9.185706, 45.533002], + [9.18121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.537499], + [9.18121, 45.541996], + [9.185706, 45.541996], + [9.185706, 45.537499], + [9.18121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.541996], + [9.18121, 45.546492], + [9.185706, 45.546492], + [9.185706, 45.541996], + [9.18121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.546492], + [9.18121, 45.550989], + [9.185706, 45.550989], + [9.185706, 45.546492], + [9.18121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.550989], + [9.18121, 45.555485], + [9.185706, 45.555485], + [9.185706, 45.550989], + [9.18121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.555485], + [9.18121, 45.559982], + [9.185706, 45.559982], + [9.185706, 45.555485], + [9.18121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.559982], + [9.18121, 45.564479], + [9.185706, 45.564479], + [9.185706, 45.559982], + [9.18121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.564479], + [9.18121, 45.568975], + [9.185706, 45.568975], + [9.185706, 45.564479], + [9.18121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.568975], + [9.18121, 45.573472], + [9.185706, 45.573472], + [9.185706, 45.568975], + [9.18121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.573472], + [9.18121, 45.577968], + [9.185706, 45.577968], + [9.185706, 45.573472], + [9.18121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.577968], + [9.18121, 45.582465], + [9.185706, 45.582465], + [9.185706, 45.577968], + [9.18121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.582465], + [9.18121, 45.586962], + [9.185706, 45.586962], + [9.185706, 45.582465], + [9.18121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.586962], + [9.18121, 45.591458], + [9.185706, 45.591458], + [9.185706, 45.586962], + [9.18121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.591458], + [9.18121, 45.595955], + [9.185706, 45.595955], + [9.185706, 45.591458], + [9.18121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.595955], + [9.18121, 45.600451], + [9.185706, 45.600451], + [9.185706, 45.595955], + [9.18121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.600451], + [9.18121, 45.604948], + [9.185706, 45.604948], + [9.185706, 45.600451], + [9.18121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.604948], + [9.18121, 45.609445], + [9.185706, 45.609445], + [9.185706, 45.604948], + [9.18121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.609445], + [9.18121, 45.613941], + [9.185706, 45.613941], + [9.185706, 45.609445], + [9.18121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.613941], + [9.18121, 45.618438], + [9.185706, 45.618438], + [9.185706, 45.613941], + [9.18121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.618438], + [9.18121, 45.622934], + [9.185706, 45.622934], + [9.185706, 45.618438], + [9.18121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.622934], + [9.18121, 45.627431], + [9.185706, 45.627431], + [9.185706, 45.622934], + [9.18121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.627431], + [9.18121, 45.631928], + [9.185706, 45.631928], + [9.185706, 45.627431], + [9.18121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.18121, 45.631928], + [9.18121, 45.636424], + [9.185706, 45.636424], + [9.185706, 45.631928], + [9.18121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.339648], + [9.185706, 45.344145], + [9.190203, 45.344145], + [9.190203, 45.339648], + [9.185706, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.344145], + [9.185706, 45.348642], + [9.190203, 45.348642], + [9.190203, 45.344145], + [9.185706, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.348642], + [9.185706, 45.353138], + [9.190203, 45.353138], + [9.190203, 45.348642], + [9.185706, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.353138], + [9.185706, 45.357635], + [9.190203, 45.357635], + [9.190203, 45.353138], + [9.185706, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.357635], + [9.185706, 45.362131], + [9.190203, 45.362131], + [9.190203, 45.357635], + [9.185706, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.362131], + [9.185706, 45.366628], + [9.190203, 45.366628], + [9.190203, 45.362131], + [9.185706, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.366628], + [9.185706, 45.371125], + [9.190203, 45.371125], + [9.190203, 45.366628], + [9.185706, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.371125], + [9.185706, 45.375621], + [9.190203, 45.375621], + [9.190203, 45.371125], + [9.185706, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.375621], + [9.185706, 45.380118], + [9.190203, 45.380118], + [9.190203, 45.375621], + [9.185706, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.380118], + [9.185706, 45.384614], + [9.190203, 45.384614], + [9.190203, 45.380118], + [9.185706, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.384614], + [9.185706, 45.389111], + [9.190203, 45.389111], + [9.190203, 45.384614], + [9.185706, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.389111], + [9.185706, 45.393608], + [9.190203, 45.393608], + [9.190203, 45.389111], + [9.185706, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.393608], + [9.185706, 45.398104], + [9.190203, 45.398104], + [9.190203, 45.393608], + [9.185706, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.398104], + [9.185706, 45.402601], + [9.190203, 45.402601], + [9.190203, 45.398104], + [9.185706, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.402601], + [9.185706, 45.407097], + [9.190203, 45.407097], + [9.190203, 45.402601], + [9.185706, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.407097], + [9.185706, 45.411594], + [9.190203, 45.411594], + [9.190203, 45.407097], + [9.185706, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.411594], + [9.185706, 45.416091], + [9.190203, 45.416091], + [9.190203, 45.411594], + [9.185706, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.416091], + [9.185706, 45.420587], + [9.190203, 45.420587], + [9.190203, 45.416091], + [9.185706, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.420587], + [9.185706, 45.425084], + [9.190203, 45.425084], + [9.190203, 45.420587], + [9.185706, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.425084], + [9.185706, 45.42958], + [9.190203, 45.42958], + [9.190203, 45.425084], + [9.185706, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.42958], + [9.185706, 45.434077], + [9.190203, 45.434077], + [9.190203, 45.42958], + [9.185706, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.434077], + [9.185706, 45.438574], + [9.190203, 45.438574], + [9.190203, 45.434077], + [9.185706, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.438574], + [9.185706, 45.44307], + [9.190203, 45.44307], + [9.190203, 45.438574], + [9.185706, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.44307], + [9.185706, 45.447567], + [9.190203, 45.447567], + [9.190203, 45.44307], + [9.185706, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.447567], + [9.185706, 45.452063], + [9.190203, 45.452063], + [9.190203, 45.447567], + [9.185706, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.452063], + [9.185706, 45.45656], + [9.190203, 45.45656], + [9.190203, 45.452063], + [9.185706, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.45656], + [9.185706, 45.461057], + [9.190203, 45.461057], + [9.190203, 45.45656], + [9.185706, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.461057], + [9.185706, 45.465553], + [9.190203, 45.465553], + [9.190203, 45.461057], + [9.185706, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.465553], + [9.185706, 45.47005], + [9.190203, 45.47005], + [9.190203, 45.465553], + [9.185706, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.47005], + [9.185706, 45.474547], + [9.190203, 45.474547], + [9.190203, 45.47005], + [9.185706, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.474547], + [9.185706, 45.479043], + [9.190203, 45.479043], + [9.190203, 45.474547], + [9.185706, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.479043], + [9.185706, 45.48354], + [9.190203, 45.48354], + [9.190203, 45.479043], + [9.185706, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.48354], + [9.185706, 45.488036], + [9.190203, 45.488036], + [9.190203, 45.48354], + [9.185706, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.488036], + [9.185706, 45.492533], + [9.190203, 45.492533], + [9.190203, 45.488036], + [9.185706, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.492533], + [9.185706, 45.49703], + [9.190203, 45.49703], + [9.190203, 45.492533], + [9.185706, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.49703], + [9.185706, 45.501526], + [9.190203, 45.501526], + [9.190203, 45.49703], + [9.185706, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.501526], + [9.185706, 45.506023], + [9.190203, 45.506023], + [9.190203, 45.501526], + [9.185706, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.506023], + [9.185706, 45.510519], + [9.190203, 45.510519], + [9.190203, 45.506023], + [9.185706, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.510519], + [9.185706, 45.515016], + [9.190203, 45.515016], + [9.190203, 45.510519], + [9.185706, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.515016], + [9.185706, 45.519513], + [9.190203, 45.519513], + [9.190203, 45.515016], + [9.185706, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.519513], + [9.185706, 45.524009], + [9.190203, 45.524009], + [9.190203, 45.519513], + [9.185706, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.524009], + [9.185706, 45.528506], + [9.190203, 45.528506], + [9.190203, 45.524009], + [9.185706, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.528506], + [9.185706, 45.533002], + [9.190203, 45.533002], + [9.190203, 45.528506], + [9.185706, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.533002], + [9.185706, 45.537499], + [9.190203, 45.537499], + [9.190203, 45.533002], + [9.185706, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 49, + "stroke": "#003b70", + "fill": "#003b70", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.537499], + [9.185706, 45.541996], + [9.190203, 45.541996], + [9.190203, 45.537499], + [9.185706, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.541996], + [9.185706, 45.546492], + [9.190203, 45.546492], + [9.190203, 45.541996], + [9.185706, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.546492], + [9.185706, 45.550989], + [9.190203, 45.550989], + [9.190203, 45.546492], + [9.185706, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.550989], + [9.185706, 45.555485], + [9.190203, 45.555485], + [9.190203, 45.550989], + [9.185706, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.555485], + [9.185706, 45.559982], + [9.190203, 45.559982], + [9.190203, 45.555485], + [9.185706, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.559982], + [9.185706, 45.564479], + [9.190203, 45.564479], + [9.190203, 45.559982], + [9.185706, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.564479], + [9.185706, 45.568975], + [9.190203, 45.568975], + [9.190203, 45.564479], + [9.185706, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.568975], + [9.185706, 45.573472], + [9.190203, 45.573472], + [9.190203, 45.568975], + [9.185706, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.573472], + [9.185706, 45.577968], + [9.190203, 45.577968], + [9.190203, 45.573472], + [9.185706, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.577968], + [9.185706, 45.582465], + [9.190203, 45.582465], + [9.190203, 45.577968], + [9.185706, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.582465], + [9.185706, 45.586962], + [9.190203, 45.586962], + [9.190203, 45.582465], + [9.185706, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.586962], + [9.185706, 45.591458], + [9.190203, 45.591458], + [9.190203, 45.586962], + [9.185706, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.591458], + [9.185706, 45.595955], + [9.190203, 45.595955], + [9.190203, 45.591458], + [9.185706, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.595955], + [9.185706, 45.600451], + [9.190203, 45.600451], + [9.190203, 45.595955], + [9.185706, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.600451], + [9.185706, 45.604948], + [9.190203, 45.604948], + [9.190203, 45.600451], + [9.185706, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.604948], + [9.185706, 45.609445], + [9.190203, 45.609445], + [9.190203, 45.604948], + [9.185706, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.609445], + [9.185706, 45.613941], + [9.190203, 45.613941], + [9.190203, 45.609445], + [9.185706, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.613941], + [9.185706, 45.618438], + [9.190203, 45.618438], + [9.190203, 45.613941], + [9.185706, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.618438], + [9.185706, 45.622934], + [9.190203, 45.622934], + [9.190203, 45.618438], + [9.185706, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.622934], + [9.185706, 45.627431], + [9.190203, 45.627431], + [9.190203, 45.622934], + [9.185706, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.627431], + [9.185706, 45.631928], + [9.190203, 45.631928], + [9.190203, 45.627431], + [9.185706, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.185706, 45.631928], + [9.185706, 45.636424], + [9.190203, 45.636424], + [9.190203, 45.631928], + [9.185706, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.339648], + [9.190203, 45.344145], + [9.194699, 45.344145], + [9.194699, 45.339648], + [9.190203, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.344145], + [9.190203, 45.348642], + [9.194699, 45.348642], + [9.194699, 45.344145], + [9.190203, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.348642], + [9.190203, 45.353138], + [9.194699, 45.353138], + [9.194699, 45.348642], + [9.190203, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.353138], + [9.190203, 45.357635], + [9.194699, 45.357635], + [9.194699, 45.353138], + [9.190203, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.357635], + [9.190203, 45.362131], + [9.194699, 45.362131], + [9.194699, 45.357635], + [9.190203, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.362131], + [9.190203, 45.366628], + [9.194699, 45.366628], + [9.194699, 45.362131], + [9.190203, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.366628], + [9.190203, 45.371125], + [9.194699, 45.371125], + [9.194699, 45.366628], + [9.190203, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.371125], + [9.190203, 45.375621], + [9.194699, 45.375621], + [9.194699, 45.371125], + [9.190203, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.375621], + [9.190203, 45.380118], + [9.194699, 45.380118], + [9.194699, 45.375621], + [9.190203, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.380118], + [9.190203, 45.384614], + [9.194699, 45.384614], + [9.194699, 45.380118], + [9.190203, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.384614], + [9.190203, 45.389111], + [9.194699, 45.389111], + [9.194699, 45.384614], + [9.190203, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.389111], + [9.190203, 45.393608], + [9.194699, 45.393608], + [9.194699, 45.389111], + [9.190203, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.393608], + [9.190203, 45.398104], + [9.194699, 45.398104], + [9.194699, 45.393608], + [9.190203, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.398104], + [9.190203, 45.402601], + [9.194699, 45.402601], + [9.194699, 45.398104], + [9.190203, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.402601], + [9.190203, 45.407097], + [9.194699, 45.407097], + [9.194699, 45.402601], + [9.190203, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.407097], + [9.190203, 45.411594], + [9.194699, 45.411594], + [9.194699, 45.407097], + [9.190203, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.411594], + [9.190203, 45.416091], + [9.194699, 45.416091], + [9.194699, 45.411594], + [9.190203, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.416091], + [9.190203, 45.420587], + [9.194699, 45.420587], + [9.194699, 45.416091], + [9.190203, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.420587], + [9.190203, 45.425084], + [9.194699, 45.425084], + [9.194699, 45.420587], + [9.190203, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.425084], + [9.190203, 45.42958], + [9.194699, 45.42958], + [9.194699, 45.425084], + [9.190203, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.42958], + [9.190203, 45.434077], + [9.194699, 45.434077], + [9.194699, 45.42958], + [9.190203, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.434077], + [9.190203, 45.438574], + [9.194699, 45.438574], + [9.194699, 45.434077], + [9.190203, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.438574], + [9.190203, 45.44307], + [9.194699, 45.44307], + [9.194699, 45.438574], + [9.190203, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.44307], + [9.190203, 45.447567], + [9.194699, 45.447567], + [9.194699, 45.44307], + [9.190203, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.447567], + [9.190203, 45.452063], + [9.194699, 45.452063], + [9.194699, 45.447567], + [9.190203, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.452063], + [9.190203, 45.45656], + [9.194699, 45.45656], + [9.194699, 45.452063], + [9.190203, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.45656], + [9.190203, 45.461057], + [9.194699, 45.461057], + [9.194699, 45.45656], + [9.190203, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.461057], + [9.190203, 45.465553], + [9.194699, 45.465553], + [9.194699, 45.461057], + [9.190203, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.465553], + [9.190203, 45.47005], + [9.194699, 45.47005], + [9.194699, 45.465553], + [9.190203, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.47005], + [9.190203, 45.474547], + [9.194699, 45.474547], + [9.194699, 45.47005], + [9.190203, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.474547], + [9.190203, 45.479043], + [9.194699, 45.479043], + [9.194699, 45.474547], + [9.190203, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.479043], + [9.190203, 45.48354], + [9.194699, 45.48354], + [9.194699, 45.479043], + [9.190203, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.48354], + [9.190203, 45.488036], + [9.194699, 45.488036], + [9.194699, 45.48354], + [9.190203, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.488036], + [9.190203, 45.492533], + [9.194699, 45.492533], + [9.194699, 45.488036], + [9.190203, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.492533], + [9.190203, 45.49703], + [9.194699, 45.49703], + [9.194699, 45.492533], + [9.190203, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.49703], + [9.190203, 45.501526], + [9.194699, 45.501526], + [9.194699, 45.49703], + [9.190203, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.501526], + [9.190203, 45.506023], + [9.194699, 45.506023], + [9.194699, 45.501526], + [9.190203, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.506023], + [9.190203, 45.510519], + [9.194699, 45.510519], + [9.194699, 45.506023], + [9.190203, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.510519], + [9.190203, 45.515016], + [9.194699, 45.515016], + [9.194699, 45.510519], + [9.190203, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.515016], + [9.190203, 45.519513], + [9.194699, 45.519513], + [9.194699, 45.515016], + [9.190203, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.519513], + [9.190203, 45.524009], + [9.194699, 45.524009], + [9.194699, 45.519513], + [9.190203, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.524009], + [9.190203, 45.528506], + [9.194699, 45.528506], + [9.194699, 45.524009], + [9.190203, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.528506], + [9.190203, 45.533002], + [9.194699, 45.533002], + [9.194699, 45.528506], + [9.190203, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 57, + "stroke": "#00101f", + "fill": "#00101f", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.533002], + [9.190203, 45.537499], + [9.194699, 45.537499], + [9.194699, 45.533002], + [9.190203, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 55, + "stroke": "#001b33", + "fill": "#001b33", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.537499], + [9.190203, 45.541996], + [9.194699, 45.541996], + [9.194699, 45.537499], + [9.190203, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.541996], + [9.190203, 45.546492], + [9.194699, 45.546492], + [9.194699, 45.541996], + [9.190203, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.546492], + [9.190203, 45.550989], + [9.194699, 45.550989], + [9.194699, 45.546492], + [9.190203, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.550989], + [9.190203, 45.555485], + [9.194699, 45.555485], + [9.194699, 45.550989], + [9.190203, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.555485], + [9.190203, 45.559982], + [9.194699, 45.559982], + [9.194699, 45.555485], + [9.190203, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.559982], + [9.190203, 45.564479], + [9.194699, 45.564479], + [9.194699, 45.559982], + [9.190203, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.564479], + [9.190203, 45.568975], + [9.194699, 45.568975], + [9.194699, 45.564479], + [9.190203, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.568975], + [9.190203, 45.573472], + [9.194699, 45.573472], + [9.194699, 45.568975], + [9.190203, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.573472], + [9.190203, 45.577968], + [9.194699, 45.577968], + [9.194699, 45.573472], + [9.190203, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.577968], + [9.190203, 45.582465], + [9.194699, 45.582465], + [9.194699, 45.577968], + [9.190203, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.582465], + [9.190203, 45.586962], + [9.194699, 45.586962], + [9.194699, 45.582465], + [9.190203, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.586962], + [9.190203, 45.591458], + [9.194699, 45.591458], + [9.194699, 45.586962], + [9.190203, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.591458], + [9.190203, 45.595955], + [9.194699, 45.595955], + [9.194699, 45.591458], + [9.190203, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.595955], + [9.190203, 45.600451], + [9.194699, 45.600451], + [9.194699, 45.595955], + [9.190203, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.600451], + [9.190203, 45.604948], + [9.194699, 45.604948], + [9.194699, 45.600451], + [9.190203, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.604948], + [9.190203, 45.609445], + [9.194699, 45.609445], + [9.194699, 45.604948], + [9.190203, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.609445], + [9.190203, 45.613941], + [9.194699, 45.613941], + [9.194699, 45.609445], + [9.190203, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.613941], + [9.190203, 45.618438], + [9.194699, 45.618438], + [9.194699, 45.613941], + [9.190203, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.618438], + [9.190203, 45.622934], + [9.194699, 45.622934], + [9.194699, 45.618438], + [9.190203, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.622934], + [9.190203, 45.627431], + [9.194699, 45.627431], + [9.194699, 45.622934], + [9.190203, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.627431], + [9.190203, 45.631928], + [9.194699, 45.631928], + [9.194699, 45.627431], + [9.190203, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.190203, 45.631928], + [9.190203, 45.636424], + [9.194699, 45.636424], + [9.194699, 45.631928], + [9.190203, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.339648], + [9.194699, 45.344145], + [9.199196, 45.344145], + [9.199196, 45.339648], + [9.194699, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.344145], + [9.194699, 45.348642], + [9.199196, 45.348642], + [9.199196, 45.344145], + [9.194699, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.348642], + [9.194699, 45.353138], + [9.199196, 45.353138], + [9.199196, 45.348642], + [9.194699, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.353138], + [9.194699, 45.357635], + [9.199196, 45.357635], + [9.199196, 45.353138], + [9.194699, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.357635], + [9.194699, 45.362131], + [9.199196, 45.362131], + [9.199196, 45.357635], + [9.194699, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.362131], + [9.194699, 45.366628], + [9.199196, 45.366628], + [9.199196, 45.362131], + [9.194699, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.366628], + [9.194699, 45.371125], + [9.199196, 45.371125], + [9.199196, 45.366628], + [9.194699, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.371125], + [9.194699, 45.375621], + [9.199196, 45.375621], + [9.199196, 45.371125], + [9.194699, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.375621], + [9.194699, 45.380118], + [9.199196, 45.380118], + [9.199196, 45.375621], + [9.194699, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.380118], + [9.194699, 45.384614], + [9.199196, 45.384614], + [9.199196, 45.380118], + [9.194699, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.384614], + [9.194699, 45.389111], + [9.199196, 45.389111], + [9.199196, 45.384614], + [9.194699, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.389111], + [9.194699, 45.393608], + [9.199196, 45.393608], + [9.199196, 45.389111], + [9.194699, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.393608], + [9.194699, 45.398104], + [9.199196, 45.398104], + [9.199196, 45.393608], + [9.194699, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.398104], + [9.194699, 45.402601], + [9.199196, 45.402601], + [9.199196, 45.398104], + [9.194699, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.402601], + [9.194699, 45.407097], + [9.199196, 45.407097], + [9.199196, 45.402601], + [9.194699, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.407097], + [9.194699, 45.411594], + [9.199196, 45.411594], + [9.199196, 45.407097], + [9.194699, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.411594], + [9.194699, 45.416091], + [9.199196, 45.416091], + [9.199196, 45.411594], + [9.194699, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.416091], + [9.194699, 45.420587], + [9.199196, 45.420587], + [9.199196, 45.416091], + [9.194699, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.420587], + [9.194699, 45.425084], + [9.199196, 45.425084], + [9.199196, 45.420587], + [9.194699, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.425084], + [9.194699, 45.42958], + [9.199196, 45.42958], + [9.199196, 45.425084], + [9.194699, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.42958], + [9.194699, 45.434077], + [9.199196, 45.434077], + [9.199196, 45.42958], + [9.194699, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.434077], + [9.194699, 45.438574], + [9.199196, 45.438574], + [9.199196, 45.434077], + [9.194699, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.438574], + [9.194699, 45.44307], + [9.199196, 45.44307], + [9.199196, 45.438574], + [9.194699, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.44307], + [9.194699, 45.447567], + [9.199196, 45.447567], + [9.199196, 45.44307], + [9.194699, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.447567], + [9.194699, 45.452063], + [9.199196, 45.452063], + [9.199196, 45.447567], + [9.194699, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.452063], + [9.194699, 45.45656], + [9.199196, 45.45656], + [9.199196, 45.452063], + [9.194699, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.45656], + [9.194699, 45.461057], + [9.199196, 45.461057], + [9.199196, 45.45656], + [9.194699, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.461057], + [9.194699, 45.465553], + [9.199196, 45.465553], + [9.199196, 45.461057], + [9.194699, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.465553], + [9.194699, 45.47005], + [9.199196, 45.47005], + [9.199196, 45.465553], + [9.194699, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.47005], + [9.194699, 45.474547], + [9.199196, 45.474547], + [9.199196, 45.47005], + [9.194699, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.474547], + [9.194699, 45.479043], + [9.199196, 45.479043], + [9.199196, 45.474547], + [9.194699, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.479043], + [9.194699, 45.48354], + [9.199196, 45.48354], + [9.199196, 45.479043], + [9.194699, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.48354], + [9.194699, 45.488036], + [9.199196, 45.488036], + [9.199196, 45.48354], + [9.194699, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.488036], + [9.194699, 45.492533], + [9.199196, 45.492533], + [9.199196, 45.488036], + [9.194699, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.492533], + [9.194699, 45.49703], + [9.199196, 45.49703], + [9.199196, 45.492533], + [9.194699, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.49703], + [9.194699, 45.501526], + [9.199196, 45.501526], + [9.199196, 45.49703], + [9.194699, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.501526], + [9.194699, 45.506023], + [9.199196, 45.506023], + [9.199196, 45.501526], + [9.194699, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.506023], + [9.194699, 45.510519], + [9.199196, 45.510519], + [9.199196, 45.506023], + [9.194699, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.510519], + [9.194699, 45.515016], + [9.199196, 45.515016], + [9.199196, 45.510519], + [9.194699, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.515016], + [9.194699, 45.519513], + [9.199196, 45.519513], + [9.199196, 45.515016], + [9.194699, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.519513], + [9.194699, 45.524009], + [9.199196, 45.524009], + [9.199196, 45.519513], + [9.194699, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 40, + "stroke": "#006dd1", + "fill": "#006dd1", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.524009], + [9.194699, 45.528506], + [9.199196, 45.528506], + [9.199196, 45.524009], + [9.194699, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 46, + "stroke": "#004d94", + "fill": "#004d94", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.528506], + [9.194699, 45.533002], + [9.199196, 45.533002], + [9.199196, 45.528506], + [9.194699, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 60, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.533002], + [9.194699, 45.537499], + [9.199196, 45.537499], + [9.199196, 45.533002], + [9.194699, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 56, + "stroke": "#001529", + "fill": "#001529", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.537499], + [9.194699, 45.541996], + [9.199196, 45.541996], + [9.199196, 45.537499], + [9.194699, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 47, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.541996], + [9.194699, 45.546492], + [9.199196, 45.546492], + [9.199196, 45.541996], + [9.194699, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.546492], + [9.194699, 45.550989], + [9.199196, 45.550989], + [9.199196, 45.546492], + [9.194699, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.550989], + [9.194699, 45.555485], + [9.199196, 45.555485], + [9.199196, 45.550989], + [9.194699, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.555485], + [9.194699, 45.559982], + [9.199196, 45.559982], + [9.199196, 45.555485], + [9.194699, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.559982], + [9.194699, 45.564479], + [9.199196, 45.564479], + [9.199196, 45.559982], + [9.194699, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.564479], + [9.194699, 45.568975], + [9.199196, 45.568975], + [9.199196, 45.564479], + [9.194699, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.568975], + [9.194699, 45.573472], + [9.199196, 45.573472], + [9.199196, 45.568975], + [9.194699, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.573472], + [9.194699, 45.577968], + [9.199196, 45.577968], + [9.199196, 45.573472], + [9.194699, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.577968], + [9.194699, 45.582465], + [9.199196, 45.582465], + [9.199196, 45.577968], + [9.194699, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.582465], + [9.194699, 45.586962], + [9.199196, 45.586962], + [9.199196, 45.582465], + [9.194699, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.586962], + [9.194699, 45.591458], + [9.199196, 45.591458], + [9.199196, 45.586962], + [9.194699, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.591458], + [9.194699, 45.595955], + [9.199196, 45.595955], + [9.199196, 45.591458], + [9.194699, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.595955], + [9.194699, 45.600451], + [9.199196, 45.600451], + [9.199196, 45.595955], + [9.194699, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.600451], + [9.194699, 45.604948], + [9.199196, 45.604948], + [9.199196, 45.600451], + [9.194699, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.604948], + [9.194699, 45.609445], + [9.199196, 45.609445], + [9.199196, 45.604948], + [9.194699, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.609445], + [9.194699, 45.613941], + [9.199196, 45.613941], + [9.199196, 45.609445], + [9.194699, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.613941], + [9.194699, 45.618438], + [9.199196, 45.618438], + [9.199196, 45.613941], + [9.194699, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.618438], + [9.194699, 45.622934], + [9.199196, 45.622934], + [9.199196, 45.618438], + [9.194699, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.622934], + [9.194699, 45.627431], + [9.199196, 45.627431], + [9.199196, 45.622934], + [9.194699, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.627431], + [9.194699, 45.631928], + [9.199196, 45.631928], + [9.199196, 45.627431], + [9.194699, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.194699, 45.631928], + [9.194699, 45.636424], + [9.199196, 45.636424], + [9.199196, 45.631928], + [9.194699, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.339648], + [9.199196, 45.344145], + [9.203693, 45.344145], + [9.203693, 45.339648], + [9.199196, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.344145], + [9.199196, 45.348642], + [9.203693, 45.348642], + [9.203693, 45.344145], + [9.199196, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.348642], + [9.199196, 45.353138], + [9.203693, 45.353138], + [9.203693, 45.348642], + [9.199196, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.353138], + [9.199196, 45.357635], + [9.203693, 45.357635], + [9.203693, 45.353138], + [9.199196, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.357635], + [9.199196, 45.362131], + [9.203693, 45.362131], + [9.203693, 45.357635], + [9.199196, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.362131], + [9.199196, 45.366628], + [9.203693, 45.366628], + [9.203693, 45.362131], + [9.199196, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.366628], + [9.199196, 45.371125], + [9.203693, 45.371125], + [9.203693, 45.366628], + [9.199196, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.371125], + [9.199196, 45.375621], + [9.203693, 45.375621], + [9.203693, 45.371125], + [9.199196, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.375621], + [9.199196, 45.380118], + [9.203693, 45.380118], + [9.203693, 45.375621], + [9.199196, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.380118], + [9.199196, 45.384614], + [9.203693, 45.384614], + [9.203693, 45.380118], + [9.199196, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.384614], + [9.199196, 45.389111], + [9.203693, 45.389111], + [9.203693, 45.384614], + [9.199196, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.389111], + [9.199196, 45.393608], + [9.203693, 45.393608], + [9.203693, 45.389111], + [9.199196, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.393608], + [9.199196, 45.398104], + [9.203693, 45.398104], + [9.203693, 45.393608], + [9.199196, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.398104], + [9.199196, 45.402601], + [9.203693, 45.402601], + [9.203693, 45.398104], + [9.199196, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.402601], + [9.199196, 45.407097], + [9.203693, 45.407097], + [9.203693, 45.402601], + [9.199196, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.407097], + [9.199196, 45.411594], + [9.203693, 45.411594], + [9.203693, 45.407097], + [9.199196, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.411594], + [9.199196, 45.416091], + [9.203693, 45.416091], + [9.203693, 45.411594], + [9.199196, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.416091], + [9.199196, 45.420587], + [9.203693, 45.420587], + [9.203693, 45.416091], + [9.199196, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.420587], + [9.199196, 45.425084], + [9.203693, 45.425084], + [9.203693, 45.420587], + [9.199196, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.425084], + [9.199196, 45.42958], + [9.203693, 45.42958], + [9.203693, 45.425084], + [9.199196, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.42958], + [9.199196, 45.434077], + [9.203693, 45.434077], + [9.203693, 45.42958], + [9.199196, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.434077], + [9.199196, 45.438574], + [9.203693, 45.438574], + [9.203693, 45.434077], + [9.199196, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.438574], + [9.199196, 45.44307], + [9.203693, 45.44307], + [9.203693, 45.438574], + [9.199196, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.44307], + [9.199196, 45.447567], + [9.203693, 45.447567], + [9.203693, 45.44307], + [9.199196, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.447567], + [9.199196, 45.452063], + [9.203693, 45.452063], + [9.203693, 45.447567], + [9.199196, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.452063], + [9.199196, 45.45656], + [9.203693, 45.45656], + [9.203693, 45.452063], + [9.199196, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.45656], + [9.199196, 45.461057], + [9.203693, 45.461057], + [9.203693, 45.45656], + [9.199196, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.461057], + [9.199196, 45.465553], + [9.203693, 45.465553], + [9.203693, 45.461057], + [9.199196, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.465553], + [9.199196, 45.47005], + [9.203693, 45.47005], + [9.203693, 45.465553], + [9.199196, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.47005], + [9.199196, 45.474547], + [9.203693, 45.474547], + [9.203693, 45.47005], + [9.199196, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.474547], + [9.199196, 45.479043], + [9.203693, 45.479043], + [9.203693, 45.474547], + [9.199196, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.479043], + [9.199196, 45.48354], + [9.203693, 45.48354], + [9.203693, 45.479043], + [9.199196, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.48354], + [9.199196, 45.488036], + [9.203693, 45.488036], + [9.203693, 45.48354], + [9.199196, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.488036], + [9.199196, 45.492533], + [9.203693, 45.492533], + [9.203693, 45.488036], + [9.199196, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.492533], + [9.199196, 45.49703], + [9.203693, 45.49703], + [9.203693, 45.492533], + [9.199196, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.49703], + [9.199196, 45.501526], + [9.203693, 45.501526], + [9.203693, 45.49703], + [9.199196, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.501526], + [9.199196, 45.506023], + [9.203693, 45.506023], + [9.203693, 45.501526], + [9.199196, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.506023], + [9.199196, 45.510519], + [9.203693, 45.510519], + [9.203693, 45.506023], + [9.199196, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.510519], + [9.199196, 45.515016], + [9.203693, 45.515016], + [9.203693, 45.510519], + [9.199196, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.515016], + [9.199196, 45.519513], + [9.203693, 45.519513], + [9.203693, 45.515016], + [9.199196, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.519513], + [9.199196, 45.524009], + [9.203693, 45.524009], + [9.203693, 45.519513], + [9.199196, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.524009], + [9.199196, 45.528506], + [9.203693, 45.528506], + [9.203693, 45.524009], + [9.199196, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 44, + "stroke": "#0058a8", + "fill": "#0058a8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.528506], + [9.199196, 45.533002], + [9.203693, 45.533002], + [9.203693, 45.528506], + [9.199196, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 51, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.533002], + [9.199196, 45.537499], + [9.203693, 45.537499], + [9.203693, 45.533002], + [9.199196, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 50, + "stroke": "#003566", + "fill": "#003566", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.537499], + [9.199196, 45.541996], + [9.203693, 45.541996], + [9.203693, 45.537499], + [9.199196, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.541996], + [9.199196, 45.546492], + [9.203693, 45.546492], + [9.203693, 45.541996], + [9.199196, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.546492], + [9.199196, 45.550989], + [9.203693, 45.550989], + [9.203693, 45.546492], + [9.199196, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.550989], + [9.199196, 45.555485], + [9.203693, 45.555485], + [9.203693, 45.550989], + [9.199196, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.555485], + [9.199196, 45.559982], + [9.203693, 45.559982], + [9.203693, 45.555485], + [9.199196, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.559982], + [9.199196, 45.564479], + [9.203693, 45.564479], + [9.203693, 45.559982], + [9.199196, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.564479], + [9.199196, 45.568975], + [9.203693, 45.568975], + [9.203693, 45.564479], + [9.199196, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.568975], + [9.199196, 45.573472], + [9.203693, 45.573472], + [9.203693, 45.568975], + [9.199196, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.573472], + [9.199196, 45.577968], + [9.203693, 45.577968], + [9.203693, 45.573472], + [9.199196, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.577968], + [9.199196, 45.582465], + [9.203693, 45.582465], + [9.203693, 45.577968], + [9.199196, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.582465], + [9.199196, 45.586962], + [9.203693, 45.586962], + [9.203693, 45.582465], + [9.199196, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.586962], + [9.199196, 45.591458], + [9.203693, 45.591458], + [9.203693, 45.586962], + [9.199196, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.591458], + [9.199196, 45.595955], + [9.203693, 45.595955], + [9.203693, 45.591458], + [9.199196, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.595955], + [9.199196, 45.600451], + [9.203693, 45.600451], + [9.203693, 45.595955], + [9.199196, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.600451], + [9.199196, 45.604948], + [9.203693, 45.604948], + [9.203693, 45.600451], + [9.199196, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.604948], + [9.199196, 45.609445], + [9.203693, 45.609445], + [9.203693, 45.604948], + [9.199196, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.609445], + [9.199196, 45.613941], + [9.203693, 45.613941], + [9.203693, 45.609445], + [9.199196, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.613941], + [9.199196, 45.618438], + [9.203693, 45.618438], + [9.203693, 45.613941], + [9.199196, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.618438], + [9.199196, 45.622934], + [9.203693, 45.622934], + [9.203693, 45.618438], + [9.199196, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.622934], + [9.199196, 45.627431], + [9.203693, 45.627431], + [9.203693, 45.622934], + [9.199196, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.627431], + [9.199196, 45.631928], + [9.203693, 45.631928], + [9.203693, 45.627431], + [9.199196, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.199196, 45.631928], + [9.199196, 45.636424], + [9.203693, 45.636424], + [9.203693, 45.631928], + [9.199196, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.339648], + [9.203693, 45.344145], + [9.208189, 45.344145], + [9.208189, 45.339648], + [9.203693, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.344145], + [9.203693, 45.348642], + [9.208189, 45.348642], + [9.208189, 45.344145], + [9.203693, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.348642], + [9.203693, 45.353138], + [9.208189, 45.353138], + [9.208189, 45.348642], + [9.203693, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.353138], + [9.203693, 45.357635], + [9.208189, 45.357635], + [9.208189, 45.353138], + [9.203693, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.357635], + [9.203693, 45.362131], + [9.208189, 45.362131], + [9.208189, 45.357635], + [9.203693, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.362131], + [9.203693, 45.366628], + [9.208189, 45.366628], + [9.208189, 45.362131], + [9.203693, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.366628], + [9.203693, 45.371125], + [9.208189, 45.371125], + [9.208189, 45.366628], + [9.203693, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.371125], + [9.203693, 45.375621], + [9.208189, 45.375621], + [9.208189, 45.371125], + [9.203693, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.375621], + [9.203693, 45.380118], + [9.208189, 45.380118], + [9.208189, 45.375621], + [9.203693, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.380118], + [9.203693, 45.384614], + [9.208189, 45.384614], + [9.208189, 45.380118], + [9.203693, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.384614], + [9.203693, 45.389111], + [9.208189, 45.389111], + [9.208189, 45.384614], + [9.203693, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.389111], + [9.203693, 45.393608], + [9.208189, 45.393608], + [9.208189, 45.389111], + [9.203693, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.393608], + [9.203693, 45.398104], + [9.208189, 45.398104], + [9.208189, 45.393608], + [9.203693, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.398104], + [9.203693, 45.402601], + [9.208189, 45.402601], + [9.208189, 45.398104], + [9.203693, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.402601], + [9.203693, 45.407097], + [9.208189, 45.407097], + [9.208189, 45.402601], + [9.203693, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.407097], + [9.203693, 45.411594], + [9.208189, 45.411594], + [9.208189, 45.407097], + [9.203693, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.411594], + [9.203693, 45.416091], + [9.208189, 45.416091], + [9.208189, 45.411594], + [9.203693, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.416091], + [9.203693, 45.420587], + [9.208189, 45.420587], + [9.208189, 45.416091], + [9.203693, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.420587], + [9.203693, 45.425084], + [9.208189, 45.425084], + [9.208189, 45.420587], + [9.203693, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.425084], + [9.203693, 45.42958], + [9.208189, 45.42958], + [9.208189, 45.425084], + [9.203693, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.42958], + [9.203693, 45.434077], + [9.208189, 45.434077], + [9.208189, 45.42958], + [9.203693, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.434077], + [9.203693, 45.438574], + [9.208189, 45.438574], + [9.208189, 45.434077], + [9.203693, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.438574], + [9.203693, 45.44307], + [9.208189, 45.44307], + [9.208189, 45.438574], + [9.203693, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.44307], + [9.203693, 45.447567], + [9.208189, 45.447567], + [9.208189, 45.44307], + [9.203693, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.447567], + [9.203693, 45.452063], + [9.208189, 45.452063], + [9.208189, 45.447567], + [9.203693, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.452063], + [9.203693, 45.45656], + [9.208189, 45.45656], + [9.208189, 45.452063], + [9.203693, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.45656], + [9.203693, 45.461057], + [9.208189, 45.461057], + [9.208189, 45.45656], + [9.203693, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.461057], + [9.203693, 45.465553], + [9.208189, 45.465553], + [9.208189, 45.461057], + [9.203693, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.465553], + [9.203693, 45.47005], + [9.208189, 45.47005], + [9.208189, 45.465553], + [9.203693, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.47005], + [9.203693, 45.474547], + [9.208189, 45.474547], + [9.208189, 45.47005], + [9.203693, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.474547], + [9.203693, 45.479043], + [9.208189, 45.479043], + [9.208189, 45.474547], + [9.203693, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.479043], + [9.203693, 45.48354], + [9.208189, 45.48354], + [9.208189, 45.479043], + [9.203693, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.48354], + [9.203693, 45.488036], + [9.208189, 45.488036], + [9.208189, 45.48354], + [9.203693, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.488036], + [9.203693, 45.492533], + [9.208189, 45.492533], + [9.208189, 45.488036], + [9.203693, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.492533], + [9.203693, 45.49703], + [9.208189, 45.49703], + [9.208189, 45.492533], + [9.203693, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.49703], + [9.203693, 45.501526], + [9.208189, 45.501526], + [9.208189, 45.49703], + [9.203693, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.501526], + [9.203693, 45.506023], + [9.208189, 45.506023], + [9.208189, 45.501526], + [9.203693, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.506023], + [9.203693, 45.510519], + [9.208189, 45.510519], + [9.208189, 45.506023], + [9.203693, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.510519], + [9.203693, 45.515016], + [9.208189, 45.515016], + [9.208189, 45.510519], + [9.203693, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.515016], + [9.203693, 45.519513], + [9.208189, 45.519513], + [9.208189, 45.515016], + [9.203693, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.519513], + [9.203693, 45.524009], + [9.208189, 45.524009], + [9.208189, 45.519513], + [9.203693, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.524009], + [9.203693, 45.528506], + [9.208189, 45.528506], + [9.208189, 45.524009], + [9.203693, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.528506], + [9.203693, 45.533002], + [9.208189, 45.533002], + [9.208189, 45.528506], + [9.203693, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.533002], + [9.203693, 45.537499], + [9.208189, 45.537499], + [9.208189, 45.533002], + [9.203693, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 45, + "stroke": "#00529e", + "fill": "#00529e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.537499], + [9.203693, 45.541996], + [9.208189, 45.541996], + [9.208189, 45.537499], + [9.203693, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 43, + "stroke": "#005db3", + "fill": "#005db3", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.541996], + [9.203693, 45.546492], + [9.208189, 45.546492], + [9.208189, 45.541996], + [9.203693, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.546492], + [9.203693, 45.550989], + [9.208189, 45.550989], + [9.208189, 45.546492], + [9.203693, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.550989], + [9.203693, 45.555485], + [9.208189, 45.555485], + [9.208189, 45.550989], + [9.203693, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.555485], + [9.203693, 45.559982], + [9.208189, 45.559982], + [9.208189, 45.555485], + [9.203693, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.559982], + [9.203693, 45.564479], + [9.208189, 45.564479], + [9.208189, 45.559982], + [9.203693, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.564479], + [9.203693, 45.568975], + [9.208189, 45.568975], + [9.208189, 45.564479], + [9.203693, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.568975], + [9.203693, 45.573472], + [9.208189, 45.573472], + [9.208189, 45.568975], + [9.203693, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.573472], + [9.203693, 45.577968], + [9.208189, 45.577968], + [9.208189, 45.573472], + [9.203693, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.577968], + [9.203693, 45.582465], + [9.208189, 45.582465], + [9.208189, 45.577968], + [9.203693, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.582465], + [9.203693, 45.586962], + [9.208189, 45.586962], + [9.208189, 45.582465], + [9.203693, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.586962], + [9.203693, 45.591458], + [9.208189, 45.591458], + [9.208189, 45.586962], + [9.203693, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.591458], + [9.203693, 45.595955], + [9.208189, 45.595955], + [9.208189, 45.591458], + [9.203693, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.595955], + [9.203693, 45.600451], + [9.208189, 45.600451], + [9.208189, 45.595955], + [9.203693, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.600451], + [9.203693, 45.604948], + [9.208189, 45.604948], + [9.208189, 45.600451], + [9.203693, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.604948], + [9.203693, 45.609445], + [9.208189, 45.609445], + [9.208189, 45.604948], + [9.203693, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.609445], + [9.203693, 45.613941], + [9.208189, 45.613941], + [9.208189, 45.609445], + [9.203693, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.613941], + [9.203693, 45.618438], + [9.208189, 45.618438], + [9.208189, 45.613941], + [9.203693, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.618438], + [9.203693, 45.622934], + [9.208189, 45.622934], + [9.208189, 45.618438], + [9.203693, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.622934], + [9.203693, 45.627431], + [9.208189, 45.627431], + [9.208189, 45.622934], + [9.203693, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.627431], + [9.203693, 45.631928], + [9.208189, 45.631928], + [9.208189, 45.627431], + [9.203693, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.203693, 45.631928], + [9.203693, 45.636424], + [9.208189, 45.636424], + [9.208189, 45.631928], + [9.203693, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.339648], + [9.208189, 45.344145], + [9.212686, 45.344145], + [9.212686, 45.339648], + [9.208189, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.344145], + [9.208189, 45.348642], + [9.212686, 45.348642], + [9.212686, 45.344145], + [9.208189, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.348642], + [9.208189, 45.353138], + [9.212686, 45.353138], + [9.212686, 45.348642], + [9.208189, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.353138], + [9.208189, 45.357635], + [9.212686, 45.357635], + [9.212686, 45.353138], + [9.208189, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.357635], + [9.208189, 45.362131], + [9.212686, 45.362131], + [9.212686, 45.357635], + [9.208189, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.362131], + [9.208189, 45.366628], + [9.212686, 45.366628], + [9.212686, 45.362131], + [9.208189, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.366628], + [9.208189, 45.371125], + [9.212686, 45.371125], + [9.212686, 45.366628], + [9.208189, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.371125], + [9.208189, 45.375621], + [9.212686, 45.375621], + [9.212686, 45.371125], + [9.208189, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.375621], + [9.208189, 45.380118], + [9.212686, 45.380118], + [9.212686, 45.375621], + [9.208189, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.380118], + [9.208189, 45.384614], + [9.212686, 45.384614], + [9.212686, 45.380118], + [9.208189, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.384614], + [9.208189, 45.389111], + [9.212686, 45.389111], + [9.212686, 45.384614], + [9.208189, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.389111], + [9.208189, 45.393608], + [9.212686, 45.393608], + [9.212686, 45.389111], + [9.208189, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.393608], + [9.208189, 45.398104], + [9.212686, 45.398104], + [9.212686, 45.393608], + [9.208189, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.398104], + [9.208189, 45.402601], + [9.212686, 45.402601], + [9.212686, 45.398104], + [9.208189, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.402601], + [9.208189, 45.407097], + [9.212686, 45.407097], + [9.212686, 45.402601], + [9.208189, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.407097], + [9.208189, 45.411594], + [9.212686, 45.411594], + [9.212686, 45.407097], + [9.208189, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.411594], + [9.208189, 45.416091], + [9.212686, 45.416091], + [9.212686, 45.411594], + [9.208189, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.416091], + [9.208189, 45.420587], + [9.212686, 45.420587], + [9.212686, 45.416091], + [9.208189, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.420587], + [9.208189, 45.425084], + [9.212686, 45.425084], + [9.212686, 45.420587], + [9.208189, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.425084], + [9.208189, 45.42958], + [9.212686, 45.42958], + [9.212686, 45.425084], + [9.208189, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.42958], + [9.208189, 45.434077], + [9.212686, 45.434077], + [9.212686, 45.42958], + [9.208189, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.434077], + [9.208189, 45.438574], + [9.212686, 45.438574], + [9.212686, 45.434077], + [9.208189, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.438574], + [9.208189, 45.44307], + [9.212686, 45.44307], + [9.212686, 45.438574], + [9.208189, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.44307], + [9.208189, 45.447567], + [9.212686, 45.447567], + [9.212686, 45.44307], + [9.208189, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.447567], + [9.208189, 45.452063], + [9.212686, 45.452063], + [9.212686, 45.447567], + [9.208189, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.452063], + [9.208189, 45.45656], + [9.212686, 45.45656], + [9.212686, 45.452063], + [9.208189, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.45656], + [9.208189, 45.461057], + [9.212686, 45.461057], + [9.212686, 45.45656], + [9.208189, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.461057], + [9.208189, 45.465553], + [9.212686, 45.465553], + [9.212686, 45.461057], + [9.208189, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.465553], + [9.208189, 45.47005], + [9.212686, 45.47005], + [9.212686, 45.465553], + [9.208189, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.47005], + [9.208189, 45.474547], + [9.212686, 45.474547], + [9.212686, 45.47005], + [9.208189, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.474547], + [9.208189, 45.479043], + [9.212686, 45.479043], + [9.212686, 45.474547], + [9.208189, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.479043], + [9.208189, 45.48354], + [9.212686, 45.48354], + [9.212686, 45.479043], + [9.208189, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.48354], + [9.208189, 45.488036], + [9.212686, 45.488036], + [9.212686, 45.48354], + [9.208189, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.488036], + [9.208189, 45.492533], + [9.212686, 45.492533], + [9.212686, 45.488036], + [9.208189, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.492533], + [9.208189, 45.49703], + [9.212686, 45.49703], + [9.212686, 45.492533], + [9.208189, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.49703], + [9.208189, 45.501526], + [9.212686, 45.501526], + [9.212686, 45.49703], + [9.208189, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.501526], + [9.208189, 45.506023], + [9.212686, 45.506023], + [9.212686, 45.501526], + [9.208189, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.506023], + [9.208189, 45.510519], + [9.212686, 45.510519], + [9.212686, 45.506023], + [9.208189, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.510519], + [9.208189, 45.515016], + [9.212686, 45.515016], + [9.212686, 45.510519], + [9.208189, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.515016], + [9.208189, 45.519513], + [9.212686, 45.519513], + [9.212686, 45.515016], + [9.208189, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.519513], + [9.208189, 45.524009], + [9.212686, 45.524009], + [9.212686, 45.519513], + [9.208189, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.524009], + [9.208189, 45.528506], + [9.212686, 45.528506], + [9.212686, 45.524009], + [9.208189, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.528506], + [9.208189, 45.533002], + [9.212686, 45.533002], + [9.212686, 45.528506], + [9.208189, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.533002], + [9.208189, 45.537499], + [9.212686, 45.537499], + [9.212686, 45.533002], + [9.208189, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 42, + "stroke": "#0062bd", + "fill": "#0062bd", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.537499], + [9.208189, 45.541996], + [9.212686, 45.541996], + [9.212686, 45.537499], + [9.208189, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 41, + "stroke": "#0068c7", + "fill": "#0068c7", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.541996], + [9.208189, 45.546492], + [9.212686, 45.546492], + [9.212686, 45.541996], + [9.208189, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.546492], + [9.208189, 45.550989], + [9.212686, 45.550989], + [9.212686, 45.546492], + [9.208189, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.550989], + [9.208189, 45.555485], + [9.212686, 45.555485], + [9.212686, 45.550989], + [9.208189, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.555485], + [9.208189, 45.559982], + [9.212686, 45.559982], + [9.212686, 45.555485], + [9.208189, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.559982], + [9.208189, 45.564479], + [9.212686, 45.564479], + [9.212686, 45.559982], + [9.208189, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.564479], + [9.208189, 45.568975], + [9.212686, 45.568975], + [9.212686, 45.564479], + [9.208189, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.568975], + [9.208189, 45.573472], + [9.212686, 45.573472], + [9.212686, 45.568975], + [9.208189, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.573472], + [9.208189, 45.577968], + [9.212686, 45.577968], + [9.212686, 45.573472], + [9.208189, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.577968], + [9.208189, 45.582465], + [9.212686, 45.582465], + [9.212686, 45.577968], + [9.208189, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.582465], + [9.208189, 45.586962], + [9.212686, 45.586962], + [9.212686, 45.582465], + [9.208189, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.586962], + [9.208189, 45.591458], + [9.212686, 45.591458], + [9.212686, 45.586962], + [9.208189, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.591458], + [9.208189, 45.595955], + [9.212686, 45.595955], + [9.212686, 45.591458], + [9.208189, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.595955], + [9.208189, 45.600451], + [9.212686, 45.600451], + [9.212686, 45.595955], + [9.208189, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.600451], + [9.208189, 45.604948], + [9.212686, 45.604948], + [9.212686, 45.600451], + [9.208189, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.604948], + [9.208189, 45.609445], + [9.212686, 45.609445], + [9.212686, 45.604948], + [9.208189, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.609445], + [9.208189, 45.613941], + [9.212686, 45.613941], + [9.212686, 45.609445], + [9.208189, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.613941], + [9.208189, 45.618438], + [9.212686, 45.618438], + [9.212686, 45.613941], + [9.208189, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.618438], + [9.208189, 45.622934], + [9.212686, 45.622934], + [9.212686, 45.618438], + [9.208189, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.622934], + [9.208189, 45.627431], + [9.212686, 45.627431], + [9.212686, 45.622934], + [9.208189, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.627431], + [9.208189, 45.631928], + [9.212686, 45.631928], + [9.212686, 45.627431], + [9.208189, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.208189, 45.631928], + [9.208189, 45.636424], + [9.212686, 45.636424], + [9.212686, 45.631928], + [9.208189, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.339648], + [9.212686, 45.344145], + [9.217182, 45.344145], + [9.217182, 45.339648], + [9.212686, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.344145], + [9.212686, 45.348642], + [9.217182, 45.348642], + [9.217182, 45.344145], + [9.212686, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.348642], + [9.212686, 45.353138], + [9.217182, 45.353138], + [9.217182, 45.348642], + [9.212686, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.353138], + [9.212686, 45.357635], + [9.217182, 45.357635], + [9.217182, 45.353138], + [9.212686, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.357635], + [9.212686, 45.362131], + [9.217182, 45.362131], + [9.217182, 45.357635], + [9.212686, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.362131], + [9.212686, 45.366628], + [9.217182, 45.366628], + [9.217182, 45.362131], + [9.212686, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.366628], + [9.212686, 45.371125], + [9.217182, 45.371125], + [9.217182, 45.366628], + [9.212686, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.371125], + [9.212686, 45.375621], + [9.217182, 45.375621], + [9.217182, 45.371125], + [9.212686, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.375621], + [9.212686, 45.380118], + [9.217182, 45.380118], + [9.217182, 45.375621], + [9.212686, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.380118], + [9.212686, 45.384614], + [9.217182, 45.384614], + [9.217182, 45.380118], + [9.212686, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.384614], + [9.212686, 45.389111], + [9.217182, 45.389111], + [9.217182, 45.384614], + [9.212686, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.389111], + [9.212686, 45.393608], + [9.217182, 45.393608], + [9.217182, 45.389111], + [9.212686, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.393608], + [9.212686, 45.398104], + [9.217182, 45.398104], + [9.217182, 45.393608], + [9.212686, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.398104], + [9.212686, 45.402601], + [9.217182, 45.402601], + [9.217182, 45.398104], + [9.212686, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.402601], + [9.212686, 45.407097], + [9.217182, 45.407097], + [9.217182, 45.402601], + [9.212686, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.407097], + [9.212686, 45.411594], + [9.217182, 45.411594], + [9.217182, 45.407097], + [9.212686, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.411594], + [9.212686, 45.416091], + [9.217182, 45.416091], + [9.217182, 45.411594], + [9.212686, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.416091], + [9.212686, 45.420587], + [9.217182, 45.420587], + [9.217182, 45.416091], + [9.212686, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.420587], + [9.212686, 45.425084], + [9.217182, 45.425084], + [9.217182, 45.420587], + [9.212686, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.425084], + [9.212686, 45.42958], + [9.217182, 45.42958], + [9.217182, 45.425084], + [9.212686, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.42958], + [9.212686, 45.434077], + [9.217182, 45.434077], + [9.217182, 45.42958], + [9.212686, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.434077], + [9.212686, 45.438574], + [9.217182, 45.438574], + [9.217182, 45.434077], + [9.212686, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.438574], + [9.212686, 45.44307], + [9.217182, 45.44307], + [9.217182, 45.438574], + [9.212686, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.44307], + [9.212686, 45.447567], + [9.217182, 45.447567], + [9.217182, 45.44307], + [9.212686, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.447567], + [9.212686, 45.452063], + [9.217182, 45.452063], + [9.217182, 45.447567], + [9.212686, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.452063], + [9.212686, 45.45656], + [9.217182, 45.45656], + [9.217182, 45.452063], + [9.212686, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.45656], + [9.212686, 45.461057], + [9.217182, 45.461057], + [9.217182, 45.45656], + [9.212686, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.461057], + [9.212686, 45.465553], + [9.217182, 45.465553], + [9.217182, 45.461057], + [9.212686, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.465553], + [9.212686, 45.47005], + [9.217182, 45.47005], + [9.217182, 45.465553], + [9.212686, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.47005], + [9.212686, 45.474547], + [9.217182, 45.474547], + [9.217182, 45.47005], + [9.212686, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.474547], + [9.212686, 45.479043], + [9.217182, 45.479043], + [9.217182, 45.474547], + [9.212686, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.479043], + [9.212686, 45.48354], + [9.217182, 45.48354], + [9.217182, 45.479043], + [9.212686, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.48354], + [9.212686, 45.488036], + [9.217182, 45.488036], + [9.217182, 45.48354], + [9.212686, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.488036], + [9.212686, 45.492533], + [9.217182, 45.492533], + [9.217182, 45.488036], + [9.212686, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.492533], + [9.212686, 45.49703], + [9.217182, 45.49703], + [9.217182, 45.492533], + [9.212686, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.49703], + [9.212686, 45.501526], + [9.217182, 45.501526], + [9.217182, 45.49703], + [9.212686, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.501526], + [9.212686, 45.506023], + [9.217182, 45.506023], + [9.217182, 45.501526], + [9.212686, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.506023], + [9.212686, 45.510519], + [9.217182, 45.510519], + [9.217182, 45.506023], + [9.212686, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.510519], + [9.212686, 45.515016], + [9.217182, 45.515016], + [9.217182, 45.510519], + [9.212686, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.515016], + [9.212686, 45.519513], + [9.217182, 45.519513], + [9.217182, 45.515016], + [9.212686, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.519513], + [9.212686, 45.524009], + [9.217182, 45.524009], + [9.217182, 45.519513], + [9.212686, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.524009], + [9.212686, 45.528506], + [9.217182, 45.528506], + [9.217182, 45.524009], + [9.212686, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.528506], + [9.212686, 45.533002], + [9.217182, 45.533002], + [9.217182, 45.528506], + [9.212686, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.533002], + [9.212686, 45.537499], + [9.217182, 45.537499], + [9.217182, 45.533002], + [9.212686, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.537499], + [9.212686, 45.541996], + [9.217182, 45.541996], + [9.217182, 45.537499], + [9.212686, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 39, + "stroke": "#0072db", + "fill": "#0072db", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.541996], + [9.212686, 45.546492], + [9.217182, 45.546492], + [9.217182, 45.541996], + [9.212686, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 38, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.546492], + [9.212686, 45.550989], + [9.217182, 45.550989], + [9.217182, 45.546492], + [9.212686, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.550989], + [9.212686, 45.555485], + [9.217182, 45.555485], + [9.217182, 45.550989], + [9.212686, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.555485], + [9.212686, 45.559982], + [9.217182, 45.559982], + [9.217182, 45.555485], + [9.212686, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.559982], + [9.212686, 45.564479], + [9.217182, 45.564479], + [9.217182, 45.559982], + [9.212686, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.564479], + [9.212686, 45.568975], + [9.217182, 45.568975], + [9.217182, 45.564479], + [9.212686, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.568975], + [9.212686, 45.573472], + [9.217182, 45.573472], + [9.217182, 45.568975], + [9.212686, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.573472], + [9.212686, 45.577968], + [9.217182, 45.577968], + [9.217182, 45.573472], + [9.212686, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.577968], + [9.212686, 45.582465], + [9.217182, 45.582465], + [9.217182, 45.577968], + [9.212686, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.582465], + [9.212686, 45.586962], + [9.217182, 45.586962], + [9.217182, 45.582465], + [9.212686, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.586962], + [9.212686, 45.591458], + [9.217182, 45.591458], + [9.217182, 45.586962], + [9.212686, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.591458], + [9.212686, 45.595955], + [9.217182, 45.595955], + [9.217182, 45.591458], + [9.212686, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.595955], + [9.212686, 45.600451], + [9.217182, 45.600451], + [9.217182, 45.595955], + [9.212686, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.600451], + [9.212686, 45.604948], + [9.217182, 45.604948], + [9.217182, 45.600451], + [9.212686, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.604948], + [9.212686, 45.609445], + [9.217182, 45.609445], + [9.217182, 45.604948], + [9.212686, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.609445], + [9.212686, 45.613941], + [9.217182, 45.613941], + [9.217182, 45.609445], + [9.212686, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.613941], + [9.212686, 45.618438], + [9.217182, 45.618438], + [9.217182, 45.613941], + [9.212686, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.618438], + [9.212686, 45.622934], + [9.217182, 45.622934], + [9.217182, 45.618438], + [9.212686, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.622934], + [9.212686, 45.627431], + [9.217182, 45.627431], + [9.217182, 45.622934], + [9.212686, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.627431], + [9.212686, 45.631928], + [9.217182, 45.631928], + [9.217182, 45.627431], + [9.212686, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.212686, 45.631928], + [9.212686, 45.636424], + [9.217182, 45.636424], + [9.217182, 45.631928], + [9.212686, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.339648], + [9.217182, 45.344145], + [9.221679, 45.344145], + [9.221679, 45.339648], + [9.217182, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.344145], + [9.217182, 45.348642], + [9.221679, 45.348642], + [9.221679, 45.344145], + [9.217182, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.348642], + [9.217182, 45.353138], + [9.221679, 45.353138], + [9.221679, 45.348642], + [9.217182, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.353138], + [9.217182, 45.357635], + [9.221679, 45.357635], + [9.221679, 45.353138], + [9.217182, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.357635], + [9.217182, 45.362131], + [9.221679, 45.362131], + [9.221679, 45.357635], + [9.217182, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.362131], + [9.217182, 45.366628], + [9.221679, 45.366628], + [9.221679, 45.362131], + [9.217182, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.366628], + [9.217182, 45.371125], + [9.221679, 45.371125], + [9.221679, 45.366628], + [9.217182, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.371125], + [9.217182, 45.375621], + [9.221679, 45.375621], + [9.221679, 45.371125], + [9.217182, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.375621], + [9.217182, 45.380118], + [9.221679, 45.380118], + [9.221679, 45.375621], + [9.217182, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.380118], + [9.217182, 45.384614], + [9.221679, 45.384614], + [9.221679, 45.380118], + [9.217182, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.384614], + [9.217182, 45.389111], + [9.221679, 45.389111], + [9.221679, 45.384614], + [9.217182, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.389111], + [9.217182, 45.393608], + [9.221679, 45.393608], + [9.221679, 45.389111], + [9.217182, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.393608], + [9.217182, 45.398104], + [9.221679, 45.398104], + [9.221679, 45.393608], + [9.217182, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.398104], + [9.217182, 45.402601], + [9.221679, 45.402601], + [9.221679, 45.398104], + [9.217182, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.402601], + [9.217182, 45.407097], + [9.221679, 45.407097], + [9.221679, 45.402601], + [9.217182, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.407097], + [9.217182, 45.411594], + [9.221679, 45.411594], + [9.221679, 45.407097], + [9.217182, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.411594], + [9.217182, 45.416091], + [9.221679, 45.416091], + [9.221679, 45.411594], + [9.217182, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.416091], + [9.217182, 45.420587], + [9.221679, 45.420587], + [9.221679, 45.416091], + [9.217182, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.420587], + [9.217182, 45.425084], + [9.221679, 45.425084], + [9.221679, 45.420587], + [9.217182, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.425084], + [9.217182, 45.42958], + [9.221679, 45.42958], + [9.221679, 45.425084], + [9.217182, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.42958], + [9.217182, 45.434077], + [9.221679, 45.434077], + [9.221679, 45.42958], + [9.217182, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.434077], + [9.217182, 45.438574], + [9.221679, 45.438574], + [9.221679, 45.434077], + [9.217182, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.438574], + [9.217182, 45.44307], + [9.221679, 45.44307], + [9.221679, 45.438574], + [9.217182, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.44307], + [9.217182, 45.447567], + [9.221679, 45.447567], + [9.221679, 45.44307], + [9.217182, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.447567], + [9.217182, 45.452063], + [9.221679, 45.452063], + [9.221679, 45.447567], + [9.217182, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.452063], + [9.217182, 45.45656], + [9.221679, 45.45656], + [9.221679, 45.452063], + [9.217182, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.45656], + [9.217182, 45.461057], + [9.221679, 45.461057], + [9.221679, 45.45656], + [9.217182, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.461057], + [9.217182, 45.465553], + [9.221679, 45.465553], + [9.221679, 45.461057], + [9.217182, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.465553], + [9.217182, 45.47005], + [9.221679, 45.47005], + [9.221679, 45.465553], + [9.217182, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.47005], + [9.217182, 45.474547], + [9.221679, 45.474547], + [9.221679, 45.47005], + [9.217182, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.474547], + [9.217182, 45.479043], + [9.221679, 45.479043], + [9.221679, 45.474547], + [9.217182, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.479043], + [9.217182, 45.48354], + [9.221679, 45.48354], + [9.221679, 45.479043], + [9.217182, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.48354], + [9.217182, 45.488036], + [9.221679, 45.488036], + [9.221679, 45.48354], + [9.217182, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.488036], + [9.217182, 45.492533], + [9.221679, 45.492533], + [9.221679, 45.488036], + [9.217182, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.492533], + [9.217182, 45.49703], + [9.221679, 45.49703], + [9.221679, 45.492533], + [9.217182, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.49703], + [9.217182, 45.501526], + [9.221679, 45.501526], + [9.221679, 45.49703], + [9.217182, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.501526], + [9.217182, 45.506023], + [9.221679, 45.506023], + [9.221679, 45.501526], + [9.217182, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.506023], + [9.217182, 45.510519], + [9.221679, 45.510519], + [9.221679, 45.506023], + [9.217182, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.510519], + [9.217182, 45.515016], + [9.221679, 45.515016], + [9.221679, 45.510519], + [9.217182, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.515016], + [9.217182, 45.519513], + [9.221679, 45.519513], + [9.221679, 45.515016], + [9.217182, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.519513], + [9.217182, 45.524009], + [9.221679, 45.524009], + [9.221679, 45.519513], + [9.217182, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.524009], + [9.217182, 45.528506], + [9.221679, 45.528506], + [9.221679, 45.524009], + [9.217182, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.528506], + [9.217182, 45.533002], + [9.221679, 45.533002], + [9.221679, 45.528506], + [9.217182, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.533002], + [9.217182, 45.537499], + [9.221679, 45.537499], + [9.221679, 45.533002], + [9.217182, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.537499], + [9.217182, 45.541996], + [9.221679, 45.541996], + [9.221679, 45.537499], + [9.217182, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.541996], + [9.217182, 45.546492], + [9.221679, 45.546492], + [9.221679, 45.541996], + [9.217182, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 37, + "stroke": "#007df0", + "fill": "#007df0", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.546492], + [9.217182, 45.550989], + [9.221679, 45.550989], + [9.221679, 45.546492], + [9.217182, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.550989], + [9.217182, 45.555485], + [9.221679, 45.555485], + [9.221679, 45.550989], + [9.217182, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.555485], + [9.217182, 45.559982], + [9.221679, 45.559982], + [9.221679, 45.555485], + [9.217182, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.559982], + [9.217182, 45.564479], + [9.221679, 45.564479], + [9.221679, 45.559982], + [9.217182, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.564479], + [9.217182, 45.568975], + [9.221679, 45.568975], + [9.221679, 45.564479], + [9.217182, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.568975], + [9.217182, 45.573472], + [9.221679, 45.573472], + [9.221679, 45.568975], + [9.217182, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.573472], + [9.217182, 45.577968], + [9.221679, 45.577968], + [9.221679, 45.573472], + [9.217182, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.577968], + [9.217182, 45.582465], + [9.221679, 45.582465], + [9.221679, 45.577968], + [9.217182, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.582465], + [9.217182, 45.586962], + [9.221679, 45.586962], + [9.221679, 45.582465], + [9.217182, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.586962], + [9.217182, 45.591458], + [9.221679, 45.591458], + [9.221679, 45.586962], + [9.217182, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.591458], + [9.217182, 45.595955], + [9.221679, 45.595955], + [9.221679, 45.591458], + [9.217182, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.595955], + [9.217182, 45.600451], + [9.221679, 45.600451], + [9.221679, 45.595955], + [9.217182, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.600451], + [9.217182, 45.604948], + [9.221679, 45.604948], + [9.221679, 45.600451], + [9.217182, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.604948], + [9.217182, 45.609445], + [9.221679, 45.609445], + [9.221679, 45.604948], + [9.217182, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.609445], + [9.217182, 45.613941], + [9.221679, 45.613941], + [9.221679, 45.609445], + [9.217182, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.613941], + [9.217182, 45.618438], + [9.221679, 45.618438], + [9.221679, 45.613941], + [9.217182, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.618438], + [9.217182, 45.622934], + [9.221679, 45.622934], + [9.221679, 45.618438], + [9.217182, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.622934], + [9.217182, 45.627431], + [9.221679, 45.627431], + [9.221679, 45.622934], + [9.217182, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.627431], + [9.217182, 45.631928], + [9.221679, 45.631928], + [9.221679, 45.627431], + [9.217182, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.217182, 45.631928], + [9.217182, 45.636424], + [9.221679, 45.636424], + [9.221679, 45.631928], + [9.217182, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.339648], + [9.221679, 45.344145], + [9.226176, 45.344145], + [9.226176, 45.339648], + [9.221679, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.344145], + [9.221679, 45.348642], + [9.226176, 45.348642], + [9.226176, 45.344145], + [9.221679, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.348642], + [9.221679, 45.353138], + [9.226176, 45.353138], + [9.226176, 45.348642], + [9.221679, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.353138], + [9.221679, 45.357635], + [9.226176, 45.357635], + [9.226176, 45.353138], + [9.221679, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.357635], + [9.221679, 45.362131], + [9.226176, 45.362131], + [9.226176, 45.357635], + [9.221679, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.362131], + [9.221679, 45.366628], + [9.226176, 45.366628], + [9.226176, 45.362131], + [9.221679, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.366628], + [9.221679, 45.371125], + [9.226176, 45.371125], + [9.226176, 45.366628], + [9.221679, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.371125], + [9.221679, 45.375621], + [9.226176, 45.375621], + [9.226176, 45.371125], + [9.221679, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.375621], + [9.221679, 45.380118], + [9.226176, 45.380118], + [9.226176, 45.375621], + [9.221679, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.380118], + [9.221679, 45.384614], + [9.226176, 45.384614], + [9.226176, 45.380118], + [9.221679, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.384614], + [9.221679, 45.389111], + [9.226176, 45.389111], + [9.226176, 45.384614], + [9.221679, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.389111], + [9.221679, 45.393608], + [9.226176, 45.393608], + [9.226176, 45.389111], + [9.221679, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.393608], + [9.221679, 45.398104], + [9.226176, 45.398104], + [9.226176, 45.393608], + [9.221679, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.398104], + [9.221679, 45.402601], + [9.226176, 45.402601], + [9.226176, 45.398104], + [9.221679, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.402601], + [9.221679, 45.407097], + [9.226176, 45.407097], + [9.226176, 45.402601], + [9.221679, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.407097], + [9.221679, 45.411594], + [9.226176, 45.411594], + [9.226176, 45.407097], + [9.221679, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.411594], + [9.221679, 45.416091], + [9.226176, 45.416091], + [9.226176, 45.411594], + [9.221679, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.416091], + [9.221679, 45.420587], + [9.226176, 45.420587], + [9.226176, 45.416091], + [9.221679, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.420587], + [9.221679, 45.425084], + [9.226176, 45.425084], + [9.226176, 45.420587], + [9.221679, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.425084], + [9.221679, 45.42958], + [9.226176, 45.42958], + [9.226176, 45.425084], + [9.221679, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.42958], + [9.221679, 45.434077], + [9.226176, 45.434077], + [9.226176, 45.42958], + [9.221679, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.434077], + [9.221679, 45.438574], + [9.226176, 45.438574], + [9.226176, 45.434077], + [9.221679, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.438574], + [9.221679, 45.44307], + [9.226176, 45.44307], + [9.226176, 45.438574], + [9.221679, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.44307], + [9.221679, 45.447567], + [9.226176, 45.447567], + [9.226176, 45.44307], + [9.221679, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.447567], + [9.221679, 45.452063], + [9.226176, 45.452063], + [9.226176, 45.447567], + [9.221679, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.452063], + [9.221679, 45.45656], + [9.226176, 45.45656], + [9.226176, 45.452063], + [9.221679, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.45656], + [9.221679, 45.461057], + [9.226176, 45.461057], + [9.226176, 45.45656], + [9.221679, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.461057], + [9.221679, 45.465553], + [9.226176, 45.465553], + [9.226176, 45.461057], + [9.221679, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.465553], + [9.221679, 45.47005], + [9.226176, 45.47005], + [9.226176, 45.465553], + [9.221679, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.47005], + [9.221679, 45.474547], + [9.226176, 45.474547], + [9.226176, 45.47005], + [9.221679, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.474547], + [9.221679, 45.479043], + [9.226176, 45.479043], + [9.226176, 45.474547], + [9.221679, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.479043], + [9.221679, 45.48354], + [9.226176, 45.48354], + [9.226176, 45.479043], + [9.221679, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.48354], + [9.221679, 45.488036], + [9.226176, 45.488036], + [9.226176, 45.48354], + [9.221679, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.488036], + [9.221679, 45.492533], + [9.226176, 45.492533], + [9.226176, 45.488036], + [9.221679, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.492533], + [9.221679, 45.49703], + [9.226176, 45.49703], + [9.226176, 45.492533], + [9.221679, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.49703], + [9.221679, 45.501526], + [9.226176, 45.501526], + [9.226176, 45.49703], + [9.221679, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.501526], + [9.221679, 45.506023], + [9.226176, 45.506023], + [9.226176, 45.501526], + [9.221679, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.506023], + [9.221679, 45.510519], + [9.226176, 45.510519], + [9.226176, 45.506023], + [9.221679, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.510519], + [9.221679, 45.515016], + [9.226176, 45.515016], + [9.226176, 45.510519], + [9.221679, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.515016], + [9.221679, 45.519513], + [9.226176, 45.519513], + [9.226176, 45.515016], + [9.221679, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.519513], + [9.221679, 45.524009], + [9.226176, 45.524009], + [9.226176, 45.519513], + [9.221679, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.524009], + [9.221679, 45.528506], + [9.226176, 45.528506], + [9.226176, 45.524009], + [9.221679, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.528506], + [9.221679, 45.533002], + [9.226176, 45.533002], + [9.226176, 45.528506], + [9.221679, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.533002], + [9.221679, 45.537499], + [9.226176, 45.537499], + [9.226176, 45.533002], + [9.221679, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.537499], + [9.221679, 45.541996], + [9.226176, 45.541996], + [9.226176, 45.537499], + [9.221679, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.541996], + [9.221679, 45.546492], + [9.226176, 45.546492], + [9.226176, 45.541996], + [9.221679, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 36, + "stroke": "#0082fa", + "fill": "#0082fa", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.546492], + [9.221679, 45.550989], + [9.226176, 45.550989], + [9.226176, 45.546492], + [9.221679, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.550989], + [9.221679, 45.555485], + [9.226176, 45.555485], + [9.226176, 45.550989], + [9.221679, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.555485], + [9.221679, 45.559982], + [9.226176, 45.559982], + [9.226176, 45.555485], + [9.221679, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.559982], + [9.221679, 45.564479], + [9.226176, 45.564479], + [9.226176, 45.559982], + [9.221679, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.564479], + [9.221679, 45.568975], + [9.226176, 45.568975], + [9.226176, 45.564479], + [9.221679, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.568975], + [9.221679, 45.573472], + [9.226176, 45.573472], + [9.226176, 45.568975], + [9.221679, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.573472], + [9.221679, 45.577968], + [9.226176, 45.577968], + [9.226176, 45.573472], + [9.221679, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.577968], + [9.221679, 45.582465], + [9.226176, 45.582465], + [9.226176, 45.577968], + [9.221679, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.582465], + [9.221679, 45.586962], + [9.226176, 45.586962], + [9.226176, 45.582465], + [9.221679, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.586962], + [9.221679, 45.591458], + [9.226176, 45.591458], + [9.226176, 45.586962], + [9.221679, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.591458], + [9.221679, 45.595955], + [9.226176, 45.595955], + [9.226176, 45.591458], + [9.221679, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.595955], + [9.221679, 45.600451], + [9.226176, 45.600451], + [9.226176, 45.595955], + [9.221679, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.600451], + [9.221679, 45.604948], + [9.226176, 45.604948], + [9.226176, 45.600451], + [9.221679, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.604948], + [9.221679, 45.609445], + [9.226176, 45.609445], + [9.226176, 45.604948], + [9.221679, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.609445], + [9.221679, 45.613941], + [9.226176, 45.613941], + [9.226176, 45.609445], + [9.221679, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.613941], + [9.221679, 45.618438], + [9.226176, 45.618438], + [9.226176, 45.613941], + [9.221679, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.618438], + [9.221679, 45.622934], + [9.226176, 45.622934], + [9.226176, 45.618438], + [9.221679, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.622934], + [9.221679, 45.627431], + [9.226176, 45.627431], + [9.226176, 45.622934], + [9.221679, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.627431], + [9.221679, 45.631928], + [9.226176, 45.631928], + [9.226176, 45.627431], + [9.221679, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.221679, 45.631928], + [9.221679, 45.636424], + [9.226176, 45.636424], + [9.226176, 45.631928], + [9.221679, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.339648], + [9.226176, 45.344145], + [9.230672, 45.344145], + [9.230672, 45.339648], + [9.226176, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.344145], + [9.226176, 45.348642], + [9.230672, 45.348642], + [9.230672, 45.344145], + [9.226176, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.348642], + [9.226176, 45.353138], + [9.230672, 45.353138], + [9.230672, 45.348642], + [9.226176, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.353138], + [9.226176, 45.357635], + [9.230672, 45.357635], + [9.230672, 45.353138], + [9.226176, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.357635], + [9.226176, 45.362131], + [9.230672, 45.362131], + [9.230672, 45.357635], + [9.226176, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.362131], + [9.226176, 45.366628], + [9.230672, 45.366628], + [9.230672, 45.362131], + [9.226176, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.366628], + [9.226176, 45.371125], + [9.230672, 45.371125], + [9.230672, 45.366628], + [9.226176, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.371125], + [9.226176, 45.375621], + [9.230672, 45.375621], + [9.230672, 45.371125], + [9.226176, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.375621], + [9.226176, 45.380118], + [9.230672, 45.380118], + [9.230672, 45.375621], + [9.226176, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.380118], + [9.226176, 45.384614], + [9.230672, 45.384614], + [9.230672, 45.380118], + [9.226176, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.384614], + [9.226176, 45.389111], + [9.230672, 45.389111], + [9.230672, 45.384614], + [9.226176, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.389111], + [9.226176, 45.393608], + [9.230672, 45.393608], + [9.230672, 45.389111], + [9.226176, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.393608], + [9.226176, 45.398104], + [9.230672, 45.398104], + [9.230672, 45.393608], + [9.226176, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.398104], + [9.226176, 45.402601], + [9.230672, 45.402601], + [9.230672, 45.398104], + [9.226176, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.402601], + [9.226176, 45.407097], + [9.230672, 45.407097], + [9.230672, 45.402601], + [9.226176, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.407097], + [9.226176, 45.411594], + [9.230672, 45.411594], + [9.230672, 45.407097], + [9.226176, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.411594], + [9.226176, 45.416091], + [9.230672, 45.416091], + [9.230672, 45.411594], + [9.226176, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.416091], + [9.226176, 45.420587], + [9.230672, 45.420587], + [9.230672, 45.416091], + [9.226176, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.420587], + [9.226176, 45.425084], + [9.230672, 45.425084], + [9.230672, 45.420587], + [9.226176, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.425084], + [9.226176, 45.42958], + [9.230672, 45.42958], + [9.230672, 45.425084], + [9.226176, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.42958], + [9.226176, 45.434077], + [9.230672, 45.434077], + [9.230672, 45.42958], + [9.226176, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.434077], + [9.226176, 45.438574], + [9.230672, 45.438574], + [9.230672, 45.434077], + [9.226176, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.438574], + [9.226176, 45.44307], + [9.230672, 45.44307], + [9.230672, 45.438574], + [9.226176, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.44307], + [9.226176, 45.447567], + [9.230672, 45.447567], + [9.230672, 45.44307], + [9.226176, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.447567], + [9.226176, 45.452063], + [9.230672, 45.452063], + [9.230672, 45.447567], + [9.226176, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.452063], + [9.226176, 45.45656], + [9.230672, 45.45656], + [9.230672, 45.452063], + [9.226176, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.45656], + [9.226176, 45.461057], + [9.230672, 45.461057], + [9.230672, 45.45656], + [9.226176, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.461057], + [9.226176, 45.465553], + [9.230672, 45.465553], + [9.230672, 45.461057], + [9.226176, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.465553], + [9.226176, 45.47005], + [9.230672, 45.47005], + [9.230672, 45.465553], + [9.226176, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.47005], + [9.226176, 45.474547], + [9.230672, 45.474547], + [9.230672, 45.47005], + [9.226176, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.474547], + [9.226176, 45.479043], + [9.230672, 45.479043], + [9.230672, 45.474547], + [9.226176, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.479043], + [9.226176, 45.48354], + [9.230672, 45.48354], + [9.230672, 45.479043], + [9.226176, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.48354], + [9.226176, 45.488036], + [9.230672, 45.488036], + [9.230672, 45.48354], + [9.226176, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.488036], + [9.226176, 45.492533], + [9.230672, 45.492533], + [9.230672, 45.488036], + [9.226176, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.492533], + [9.226176, 45.49703], + [9.230672, 45.49703], + [9.230672, 45.492533], + [9.226176, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.49703], + [9.226176, 45.501526], + [9.230672, 45.501526], + [9.230672, 45.49703], + [9.226176, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.501526], + [9.226176, 45.506023], + [9.230672, 45.506023], + [9.230672, 45.501526], + [9.226176, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.506023], + [9.226176, 45.510519], + [9.230672, 45.510519], + [9.230672, 45.506023], + [9.226176, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.510519], + [9.226176, 45.515016], + [9.230672, 45.515016], + [9.230672, 45.510519], + [9.226176, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.515016], + [9.226176, 45.519513], + [9.230672, 45.519513], + [9.230672, 45.515016], + [9.226176, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.519513], + [9.226176, 45.524009], + [9.230672, 45.524009], + [9.230672, 45.519513], + [9.226176, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.524009], + [9.226176, 45.528506], + [9.230672, 45.528506], + [9.230672, 45.524009], + [9.226176, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.528506], + [9.226176, 45.533002], + [9.230672, 45.533002], + [9.230672, 45.528506], + [9.226176, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.533002], + [9.226176, 45.537499], + [9.230672, 45.537499], + [9.230672, 45.533002], + [9.226176, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.537499], + [9.226176, 45.541996], + [9.230672, 45.541996], + [9.230672, 45.537499], + [9.226176, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.541996], + [9.226176, 45.546492], + [9.230672, 45.546492], + [9.230672, 45.541996], + [9.226176, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 35, + "stroke": "#0587ff", + "fill": "#0587ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.546492], + [9.226176, 45.550989], + [9.230672, 45.550989], + [9.230672, 45.546492], + [9.226176, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.550989], + [9.226176, 45.555485], + [9.230672, 45.555485], + [9.230672, 45.550989], + [9.226176, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.555485], + [9.226176, 45.559982], + [9.230672, 45.559982], + [9.230672, 45.555485], + [9.226176, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.559982], + [9.226176, 45.564479], + [9.230672, 45.564479], + [9.230672, 45.559982], + [9.226176, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.564479], + [9.226176, 45.568975], + [9.230672, 45.568975], + [9.230672, 45.564479], + [9.226176, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.568975], + [9.226176, 45.573472], + [9.230672, 45.573472], + [9.230672, 45.568975], + [9.226176, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.573472], + [9.226176, 45.577968], + [9.230672, 45.577968], + [9.230672, 45.573472], + [9.226176, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.577968], + [9.226176, 45.582465], + [9.230672, 45.582465], + [9.230672, 45.577968], + [9.226176, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.582465], + [9.226176, 45.586962], + [9.230672, 45.586962], + [9.230672, 45.582465], + [9.226176, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.586962], + [9.226176, 45.591458], + [9.230672, 45.591458], + [9.230672, 45.586962], + [9.226176, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.591458], + [9.226176, 45.595955], + [9.230672, 45.595955], + [9.230672, 45.591458], + [9.226176, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.595955], + [9.226176, 45.600451], + [9.230672, 45.600451], + [9.230672, 45.595955], + [9.226176, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.600451], + [9.226176, 45.604948], + [9.230672, 45.604948], + [9.230672, 45.600451], + [9.226176, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.604948], + [9.226176, 45.609445], + [9.230672, 45.609445], + [9.230672, 45.604948], + [9.226176, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.609445], + [9.226176, 45.613941], + [9.230672, 45.613941], + [9.230672, 45.609445], + [9.226176, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.613941], + [9.226176, 45.618438], + [9.230672, 45.618438], + [9.230672, 45.613941], + [9.226176, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.618438], + [9.226176, 45.622934], + [9.230672, 45.622934], + [9.230672, 45.618438], + [9.226176, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.622934], + [9.226176, 45.627431], + [9.230672, 45.627431], + [9.230672, 45.622934], + [9.226176, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.627431], + [9.226176, 45.631928], + [9.230672, 45.631928], + [9.230672, 45.627431], + [9.226176, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.226176, 45.631928], + [9.226176, 45.636424], + [9.230672, 45.636424], + [9.230672, 45.631928], + [9.226176, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.339648], + [9.230672, 45.344145], + [9.235169, 45.344145], + [9.235169, 45.339648], + [9.230672, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.344145], + [9.230672, 45.348642], + [9.235169, 45.348642], + [9.235169, 45.344145], + [9.230672, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.348642], + [9.230672, 45.353138], + [9.235169, 45.353138], + [9.235169, 45.348642], + [9.230672, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.353138], + [9.230672, 45.357635], + [9.235169, 45.357635], + [9.235169, 45.353138], + [9.230672, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.357635], + [9.230672, 45.362131], + [9.235169, 45.362131], + [9.235169, 45.357635], + [9.230672, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.362131], + [9.230672, 45.366628], + [9.235169, 45.366628], + [9.235169, 45.362131], + [9.230672, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.366628], + [9.230672, 45.371125], + [9.235169, 45.371125], + [9.235169, 45.366628], + [9.230672, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.371125], + [9.230672, 45.375621], + [9.235169, 45.375621], + [9.235169, 45.371125], + [9.230672, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.375621], + [9.230672, 45.380118], + [9.235169, 45.380118], + [9.235169, 45.375621], + [9.230672, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.380118], + [9.230672, 45.384614], + [9.235169, 45.384614], + [9.235169, 45.380118], + [9.230672, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.384614], + [9.230672, 45.389111], + [9.235169, 45.389111], + [9.235169, 45.384614], + [9.230672, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.389111], + [9.230672, 45.393608], + [9.235169, 45.393608], + [9.235169, 45.389111], + [9.230672, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.393608], + [9.230672, 45.398104], + [9.235169, 45.398104], + [9.235169, 45.393608], + [9.230672, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.398104], + [9.230672, 45.402601], + [9.235169, 45.402601], + [9.235169, 45.398104], + [9.230672, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.402601], + [9.230672, 45.407097], + [9.235169, 45.407097], + [9.235169, 45.402601], + [9.230672, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.407097], + [9.230672, 45.411594], + [9.235169, 45.411594], + [9.235169, 45.407097], + [9.230672, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.411594], + [9.230672, 45.416091], + [9.235169, 45.416091], + [9.235169, 45.411594], + [9.230672, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.416091], + [9.230672, 45.420587], + [9.235169, 45.420587], + [9.235169, 45.416091], + [9.230672, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.420587], + [9.230672, 45.425084], + [9.235169, 45.425084], + [9.235169, 45.420587], + [9.230672, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.425084], + [9.230672, 45.42958], + [9.235169, 45.42958], + [9.235169, 45.425084], + [9.230672, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.42958], + [9.230672, 45.434077], + [9.235169, 45.434077], + [9.235169, 45.42958], + [9.230672, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.434077], + [9.230672, 45.438574], + [9.235169, 45.438574], + [9.235169, 45.434077], + [9.230672, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.438574], + [9.230672, 45.44307], + [9.235169, 45.44307], + [9.235169, 45.438574], + [9.230672, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.44307], + [9.230672, 45.447567], + [9.235169, 45.447567], + [9.235169, 45.44307], + [9.230672, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.447567], + [9.230672, 45.452063], + [9.235169, 45.452063], + [9.235169, 45.447567], + [9.230672, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.452063], + [9.230672, 45.45656], + [9.235169, 45.45656], + [9.235169, 45.452063], + [9.230672, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.45656], + [9.230672, 45.461057], + [9.235169, 45.461057], + [9.235169, 45.45656], + [9.230672, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.461057], + [9.230672, 45.465553], + [9.235169, 45.465553], + [9.235169, 45.461057], + [9.230672, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.465553], + [9.230672, 45.47005], + [9.235169, 45.47005], + [9.235169, 45.465553], + [9.230672, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.47005], + [9.230672, 45.474547], + [9.235169, 45.474547], + [9.235169, 45.47005], + [9.230672, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.474547], + [9.230672, 45.479043], + [9.235169, 45.479043], + [9.235169, 45.474547], + [9.230672, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.479043], + [9.230672, 45.48354], + [9.235169, 45.48354], + [9.235169, 45.479043], + [9.230672, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.48354], + [9.230672, 45.488036], + [9.235169, 45.488036], + [9.235169, 45.48354], + [9.230672, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 16, + "stroke": "#cce7ff", + "fill": "#cce7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.488036], + [9.230672, 45.492533], + [9.235169, 45.492533], + [9.235169, 45.488036], + [9.230672, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 18, + "stroke": "#b8ddff", + "fill": "#b8ddff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.492533], + [9.230672, 45.49703], + [9.235169, 45.49703], + [9.235169, 45.492533], + [9.230672, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.49703], + [9.230672, 45.501526], + [9.235169, 45.501526], + [9.235169, 45.49703], + [9.230672, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.501526], + [9.230672, 45.506023], + [9.235169, 45.506023], + [9.235169, 45.501526], + [9.230672, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.506023], + [9.230672, 45.510519], + [9.235169, 45.510519], + [9.235169, 45.506023], + [9.230672, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.510519], + [9.230672, 45.515016], + [9.235169, 45.515016], + [9.235169, 45.510519], + [9.230672, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.515016], + [9.230672, 45.519513], + [9.235169, 45.519513], + [9.235169, 45.515016], + [9.230672, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.519513], + [9.230672, 45.524009], + [9.235169, 45.524009], + [9.235169, 45.519513], + [9.230672, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.524009], + [9.230672, 45.528506], + [9.235169, 45.528506], + [9.235169, 45.524009], + [9.230672, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.528506], + [9.230672, 45.533002], + [9.235169, 45.533002], + [9.235169, 45.528506], + [9.230672, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.533002], + [9.230672, 45.537499], + [9.235169, 45.537499], + [9.235169, 45.533002], + [9.230672, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.537499], + [9.230672, 45.541996], + [9.235169, 45.541996], + [9.235169, 45.537499], + [9.230672, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.541996], + [9.230672, 45.546492], + [9.235169, 45.546492], + [9.235169, 45.541996], + [9.230672, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.546492], + [9.230672, 45.550989], + [9.235169, 45.550989], + [9.235169, 45.546492], + [9.230672, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 34, + "stroke": "#0f8cff", + "fill": "#0f8cff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.550989], + [9.230672, 45.555485], + [9.235169, 45.555485], + [9.235169, 45.550989], + [9.230672, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.555485], + [9.230672, 45.559982], + [9.235169, 45.559982], + [9.235169, 45.555485], + [9.230672, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.559982], + [9.230672, 45.564479], + [9.235169, 45.564479], + [9.235169, 45.559982], + [9.230672, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.564479], + [9.230672, 45.568975], + [9.235169, 45.568975], + [9.235169, 45.564479], + [9.230672, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.568975], + [9.230672, 45.573472], + [9.235169, 45.573472], + [9.235169, 45.568975], + [9.230672, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.573472], + [9.230672, 45.577968], + [9.235169, 45.577968], + [9.235169, 45.573472], + [9.230672, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.577968], + [9.230672, 45.582465], + [9.235169, 45.582465], + [9.235169, 45.577968], + [9.230672, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.582465], + [9.230672, 45.586962], + [9.235169, 45.586962], + [9.235169, 45.582465], + [9.230672, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.586962], + [9.230672, 45.591458], + [9.235169, 45.591458], + [9.235169, 45.586962], + [9.230672, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.591458], + [9.230672, 45.595955], + [9.235169, 45.595955], + [9.235169, 45.591458], + [9.230672, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.595955], + [9.230672, 45.600451], + [9.235169, 45.600451], + [9.235169, 45.595955], + [9.230672, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.600451], + [9.230672, 45.604948], + [9.235169, 45.604948], + [9.235169, 45.600451], + [9.230672, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.604948], + [9.230672, 45.609445], + [9.235169, 45.609445], + [9.235169, 45.604948], + [9.230672, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.609445], + [9.230672, 45.613941], + [9.235169, 45.613941], + [9.235169, 45.609445], + [9.230672, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.613941], + [9.230672, 45.618438], + [9.235169, 45.618438], + [9.235169, 45.613941], + [9.230672, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.618438], + [9.230672, 45.622934], + [9.235169, 45.622934], + [9.235169, 45.618438], + [9.230672, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.622934], + [9.230672, 45.627431], + [9.235169, 45.627431], + [9.235169, 45.622934], + [9.230672, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.627431], + [9.230672, 45.631928], + [9.235169, 45.631928], + [9.235169, 45.627431], + [9.230672, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.230672, 45.631928], + [9.230672, 45.636424], + [9.235169, 45.636424], + [9.235169, 45.631928], + [9.230672, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.339648], + [9.235169, 45.344145], + [9.239665, 45.344145], + [9.239665, 45.339648], + [9.235169, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.344145], + [9.235169, 45.348642], + [9.239665, 45.348642], + [9.239665, 45.344145], + [9.235169, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.348642], + [9.235169, 45.353138], + [9.239665, 45.353138], + [9.239665, 45.348642], + [9.235169, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.353138], + [9.235169, 45.357635], + [9.239665, 45.357635], + [9.239665, 45.353138], + [9.235169, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.357635], + [9.235169, 45.362131], + [9.239665, 45.362131], + [9.239665, 45.357635], + [9.235169, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.362131], + [9.235169, 45.366628], + [9.239665, 45.366628], + [9.239665, 45.362131], + [9.235169, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.366628], + [9.235169, 45.371125], + [9.239665, 45.371125], + [9.239665, 45.366628], + [9.235169, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.371125], + [9.235169, 45.375621], + [9.239665, 45.375621], + [9.239665, 45.371125], + [9.235169, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.375621], + [9.235169, 45.380118], + [9.239665, 45.380118], + [9.239665, 45.375621], + [9.235169, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.380118], + [9.235169, 45.384614], + [9.239665, 45.384614], + [9.239665, 45.380118], + [9.235169, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.384614], + [9.235169, 45.389111], + [9.239665, 45.389111], + [9.239665, 45.384614], + [9.235169, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.389111], + [9.235169, 45.393608], + [9.239665, 45.393608], + [9.239665, 45.389111], + [9.235169, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.393608], + [9.235169, 45.398104], + [9.239665, 45.398104], + [9.239665, 45.393608], + [9.235169, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.398104], + [9.235169, 45.402601], + [9.239665, 45.402601], + [9.239665, 45.398104], + [9.235169, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.402601], + [9.235169, 45.407097], + [9.239665, 45.407097], + [9.239665, 45.402601], + [9.235169, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.407097], + [9.235169, 45.411594], + [9.239665, 45.411594], + [9.239665, 45.407097], + [9.235169, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.411594], + [9.235169, 45.416091], + [9.239665, 45.416091], + [9.239665, 45.411594], + [9.235169, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.416091], + [9.235169, 45.420587], + [9.239665, 45.420587], + [9.239665, 45.416091], + [9.235169, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.420587], + [9.235169, 45.425084], + [9.239665, 45.425084], + [9.239665, 45.420587], + [9.235169, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.425084], + [9.235169, 45.42958], + [9.239665, 45.42958], + [9.239665, 45.425084], + [9.235169, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.42958], + [9.235169, 45.434077], + [9.239665, 45.434077], + [9.239665, 45.42958], + [9.235169, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.434077], + [9.235169, 45.438574], + [9.239665, 45.438574], + [9.239665, 45.434077], + [9.235169, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.438574], + [9.235169, 45.44307], + [9.239665, 45.44307], + [9.239665, 45.438574], + [9.235169, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.44307], + [9.235169, 45.447567], + [9.239665, 45.447567], + [9.239665, 45.44307], + [9.235169, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.447567], + [9.235169, 45.452063], + [9.239665, 45.452063], + [9.239665, 45.447567], + [9.235169, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.452063], + [9.235169, 45.45656], + [9.239665, 45.45656], + [9.239665, 45.452063], + [9.235169, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.45656], + [9.235169, 45.461057], + [9.239665, 45.461057], + [9.239665, 45.45656], + [9.235169, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.461057], + [9.235169, 45.465553], + [9.239665, 45.465553], + [9.239665, 45.461057], + [9.235169, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.465553], + [9.235169, 45.47005], + [9.239665, 45.47005], + [9.239665, 45.465553], + [9.235169, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.47005], + [9.235169, 45.474547], + [9.239665, 45.474547], + [9.239665, 45.47005], + [9.235169, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.474547], + [9.235169, 45.479043], + [9.239665, 45.479043], + [9.239665, 45.474547], + [9.235169, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.479043], + [9.235169, 45.48354], + [9.239665, 45.48354], + [9.239665, 45.479043], + [9.235169, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.48354], + [9.235169, 45.488036], + [9.239665, 45.488036], + [9.239665, 45.48354], + [9.235169, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 19, + "stroke": "#add8ff", + "fill": "#add8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.488036], + [9.235169, 45.492533], + [9.239665, 45.492533], + [9.239665, 45.488036], + [9.235169, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 20, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.492533], + [9.235169, 45.49703], + [9.239665, 45.49703], + [9.239665, 45.492533], + [9.235169, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.49703], + [9.235169, 45.501526], + [9.239665, 45.501526], + [9.239665, 45.49703], + [9.235169, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.501526], + [9.235169, 45.506023], + [9.239665, 45.506023], + [9.239665, 45.501526], + [9.235169, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.506023], + [9.235169, 45.510519], + [9.239665, 45.510519], + [9.239665, 45.506023], + [9.235169, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.510519], + [9.235169, 45.515016], + [9.239665, 45.515016], + [9.239665, 45.510519], + [9.235169, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.515016], + [9.235169, 45.519513], + [9.239665, 45.519513], + [9.239665, 45.515016], + [9.235169, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.519513], + [9.235169, 45.524009], + [9.239665, 45.524009], + [9.239665, 45.519513], + [9.235169, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.524009], + [9.235169, 45.528506], + [9.239665, 45.528506], + [9.239665, 45.524009], + [9.235169, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.528506], + [9.235169, 45.533002], + [9.239665, 45.533002], + [9.239665, 45.528506], + [9.235169, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.533002], + [9.235169, 45.537499], + [9.239665, 45.537499], + [9.239665, 45.533002], + [9.235169, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.537499], + [9.235169, 45.541996], + [9.239665, 45.541996], + [9.239665, 45.537499], + [9.235169, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.541996], + [9.235169, 45.546492], + [9.239665, 45.546492], + [9.239665, 45.541996], + [9.235169, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.546492], + [9.235169, 45.550989], + [9.239665, 45.550989], + [9.239665, 45.546492], + [9.235169, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.550989], + [9.235169, 45.555485], + [9.239665, 45.555485], + [9.239665, 45.550989], + [9.235169, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.555485], + [9.235169, 45.559982], + [9.239665, 45.559982], + [9.239665, 45.555485], + [9.235169, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.559982], + [9.235169, 45.564479], + [9.239665, 45.564479], + [9.239665, 45.559982], + [9.235169, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.564479], + [9.235169, 45.568975], + [9.239665, 45.568975], + [9.239665, 45.564479], + [9.235169, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.568975], + [9.235169, 45.573472], + [9.239665, 45.573472], + [9.239665, 45.568975], + [9.235169, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.573472], + [9.235169, 45.577968], + [9.239665, 45.577968], + [9.239665, 45.573472], + [9.235169, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.577968], + [9.235169, 45.582465], + [9.239665, 45.582465], + [9.239665, 45.577968], + [9.235169, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.582465], + [9.235169, 45.586962], + [9.239665, 45.586962], + [9.239665, 45.582465], + [9.235169, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.586962], + [9.235169, 45.591458], + [9.239665, 45.591458], + [9.239665, 45.586962], + [9.235169, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.591458], + [9.235169, 45.595955], + [9.239665, 45.595955], + [9.239665, 45.591458], + [9.235169, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.595955], + [9.235169, 45.600451], + [9.239665, 45.600451], + [9.239665, 45.595955], + [9.235169, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.600451], + [9.235169, 45.604948], + [9.239665, 45.604948], + [9.239665, 45.600451], + [9.235169, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.604948], + [9.235169, 45.609445], + [9.239665, 45.609445], + [9.239665, 45.604948], + [9.235169, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.609445], + [9.235169, 45.613941], + [9.239665, 45.613941], + [9.239665, 45.609445], + [9.235169, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.613941], + [9.235169, 45.618438], + [9.239665, 45.618438], + [9.239665, 45.613941], + [9.235169, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.618438], + [9.235169, 45.622934], + [9.239665, 45.622934], + [9.239665, 45.618438], + [9.235169, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.622934], + [9.235169, 45.627431], + [9.239665, 45.627431], + [9.239665, 45.622934], + [9.235169, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.627431], + [9.235169, 45.631928], + [9.239665, 45.631928], + [9.239665, 45.627431], + [9.235169, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.235169, 45.631928], + [9.235169, 45.636424], + [9.239665, 45.636424], + [9.239665, 45.631928], + [9.235169, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.339648], + [9.239665, 45.344145], + [9.244162, 45.344145], + [9.244162, 45.339648], + [9.239665, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.344145], + [9.239665, 45.348642], + [9.244162, 45.348642], + [9.244162, 45.344145], + [9.239665, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.348642], + [9.239665, 45.353138], + [9.244162, 45.353138], + [9.244162, 45.348642], + [9.239665, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.353138], + [9.239665, 45.357635], + [9.244162, 45.357635], + [9.244162, 45.353138], + [9.239665, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.357635], + [9.239665, 45.362131], + [9.244162, 45.362131], + [9.244162, 45.357635], + [9.239665, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.362131], + [9.239665, 45.366628], + [9.244162, 45.366628], + [9.244162, 45.362131], + [9.239665, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.366628], + [9.239665, 45.371125], + [9.244162, 45.371125], + [9.244162, 45.366628], + [9.239665, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.371125], + [9.239665, 45.375621], + [9.244162, 45.375621], + [9.244162, 45.371125], + [9.239665, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.375621], + [9.239665, 45.380118], + [9.244162, 45.380118], + [9.244162, 45.375621], + [9.239665, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.380118], + [9.239665, 45.384614], + [9.244162, 45.384614], + [9.244162, 45.380118], + [9.239665, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.384614], + [9.239665, 45.389111], + [9.244162, 45.389111], + [9.244162, 45.384614], + [9.239665, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.389111], + [9.239665, 45.393608], + [9.244162, 45.393608], + [9.244162, 45.389111], + [9.239665, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.393608], + [9.239665, 45.398104], + [9.244162, 45.398104], + [9.244162, 45.393608], + [9.239665, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.398104], + [9.239665, 45.402601], + [9.244162, 45.402601], + [9.244162, 45.398104], + [9.239665, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.402601], + [9.239665, 45.407097], + [9.244162, 45.407097], + [9.244162, 45.402601], + [9.239665, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.407097], + [9.239665, 45.411594], + [9.244162, 45.411594], + [9.244162, 45.407097], + [9.239665, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.411594], + [9.239665, 45.416091], + [9.244162, 45.416091], + [9.244162, 45.411594], + [9.239665, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.416091], + [9.239665, 45.420587], + [9.244162, 45.420587], + [9.244162, 45.416091], + [9.239665, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.420587], + [9.239665, 45.425084], + [9.244162, 45.425084], + [9.244162, 45.420587], + [9.239665, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.425084], + [9.239665, 45.42958], + [9.244162, 45.42958], + [9.244162, 45.425084], + [9.239665, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.42958], + [9.239665, 45.434077], + [9.244162, 45.434077], + [9.244162, 45.42958], + [9.239665, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.434077], + [9.239665, 45.438574], + [9.244162, 45.438574], + [9.244162, 45.434077], + [9.239665, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.438574], + [9.239665, 45.44307], + [9.244162, 45.44307], + [9.244162, 45.438574], + [9.239665, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.44307], + [9.239665, 45.447567], + [9.244162, 45.447567], + [9.244162, 45.44307], + [9.239665, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.447567], + [9.239665, 45.452063], + [9.244162, 45.452063], + [9.244162, 45.447567], + [9.239665, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.452063], + [9.239665, 45.45656], + [9.244162, 45.45656], + [9.244162, 45.452063], + [9.239665, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.45656], + [9.239665, 45.461057], + [9.244162, 45.461057], + [9.244162, 45.45656], + [9.239665, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.461057], + [9.239665, 45.465553], + [9.244162, 45.465553], + [9.244162, 45.461057], + [9.239665, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.465553], + [9.239665, 45.47005], + [9.244162, 45.47005], + [9.244162, 45.465553], + [9.239665, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.47005], + [9.239665, 45.474547], + [9.244162, 45.474547], + [9.244162, 45.47005], + [9.239665, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.474547], + [9.239665, 45.479043], + [9.244162, 45.479043], + [9.244162, 45.474547], + [9.239665, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.479043], + [9.239665, 45.48354], + [9.244162, 45.48354], + [9.244162, 45.479043], + [9.239665, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.48354], + [9.239665, 45.488036], + [9.244162, 45.488036], + [9.244162, 45.48354], + [9.239665, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.488036], + [9.239665, 45.492533], + [9.244162, 45.492533], + [9.244162, 45.488036], + [9.239665, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 21, + "stroke": "#99ceff", + "fill": "#99ceff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.492533], + [9.239665, 45.49703], + [9.244162, 45.49703], + [9.244162, 45.492533], + [9.239665, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.49703], + [9.239665, 45.501526], + [9.244162, 45.501526], + [9.244162, 45.49703], + [9.239665, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.501526], + [9.239665, 45.506023], + [9.244162, 45.506023], + [9.244162, 45.501526], + [9.239665, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.506023], + [9.239665, 45.510519], + [9.244162, 45.510519], + [9.244162, 45.506023], + [9.239665, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.510519], + [9.239665, 45.515016], + [9.244162, 45.515016], + [9.244162, 45.510519], + [9.239665, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.515016], + [9.239665, 45.519513], + [9.244162, 45.519513], + [9.244162, 45.515016], + [9.239665, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.519513], + [9.239665, 45.524009], + [9.244162, 45.524009], + [9.244162, 45.519513], + [9.239665, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.524009], + [9.239665, 45.528506], + [9.244162, 45.528506], + [9.244162, 45.524009], + [9.239665, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.528506], + [9.239665, 45.533002], + [9.244162, 45.533002], + [9.244162, 45.528506], + [9.239665, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.533002], + [9.239665, 45.537499], + [9.244162, 45.537499], + [9.244162, 45.533002], + [9.239665, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.537499], + [9.239665, 45.541996], + [9.244162, 45.541996], + [9.244162, 45.537499], + [9.239665, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.541996], + [9.239665, 45.546492], + [9.244162, 45.546492], + [9.244162, 45.541996], + [9.239665, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.546492], + [9.239665, 45.550989], + [9.244162, 45.550989], + [9.244162, 45.546492], + [9.239665, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 33, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.550989], + [9.239665, 45.555485], + [9.244162, 45.555485], + [9.244162, 45.550989], + [9.239665, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.555485], + [9.239665, 45.559982], + [9.244162, 45.559982], + [9.244162, 45.555485], + [9.239665, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.559982], + [9.239665, 45.564479], + [9.244162, 45.564479], + [9.244162, 45.559982], + [9.239665, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.564479], + [9.239665, 45.568975], + [9.244162, 45.568975], + [9.244162, 45.564479], + [9.239665, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.568975], + [9.239665, 45.573472], + [9.244162, 45.573472], + [9.244162, 45.568975], + [9.239665, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.573472], + [9.239665, 45.577968], + [9.244162, 45.577968], + [9.244162, 45.573472], + [9.239665, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.577968], + [9.239665, 45.582465], + [9.244162, 45.582465], + [9.244162, 45.577968], + [9.239665, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.582465], + [9.239665, 45.586962], + [9.244162, 45.586962], + [9.244162, 45.582465], + [9.239665, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.586962], + [9.239665, 45.591458], + [9.244162, 45.591458], + [9.244162, 45.586962], + [9.239665, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.591458], + [9.239665, 45.595955], + [9.244162, 45.595955], + [9.244162, 45.591458], + [9.239665, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.595955], + [9.239665, 45.600451], + [9.244162, 45.600451], + [9.244162, 45.595955], + [9.239665, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.600451], + [9.239665, 45.604948], + [9.244162, 45.604948], + [9.244162, 45.600451], + [9.239665, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.604948], + [9.239665, 45.609445], + [9.244162, 45.609445], + [9.244162, 45.604948], + [9.239665, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.609445], + [9.239665, 45.613941], + [9.244162, 45.613941], + [9.244162, 45.609445], + [9.239665, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.613941], + [9.239665, 45.618438], + [9.244162, 45.618438], + [9.244162, 45.613941], + [9.239665, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.618438], + [9.239665, 45.622934], + [9.244162, 45.622934], + [9.244162, 45.618438], + [9.239665, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.622934], + [9.239665, 45.627431], + [9.244162, 45.627431], + [9.244162, 45.622934], + [9.239665, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.627431], + [9.239665, 45.631928], + [9.244162, 45.631928], + [9.244162, 45.627431], + [9.239665, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.239665, 45.631928], + [9.239665, 45.636424], + [9.244162, 45.636424], + [9.244162, 45.631928], + [9.239665, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.339648], + [9.244162, 45.344145], + [9.248659, 45.344145], + [9.248659, 45.339648], + [9.244162, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.344145], + [9.244162, 45.348642], + [9.248659, 45.348642], + [9.248659, 45.344145], + [9.244162, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.348642], + [9.244162, 45.353138], + [9.248659, 45.353138], + [9.248659, 45.348642], + [9.244162, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.353138], + [9.244162, 45.357635], + [9.248659, 45.357635], + [9.248659, 45.353138], + [9.244162, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.357635], + [9.244162, 45.362131], + [9.248659, 45.362131], + [9.248659, 45.357635], + [9.244162, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.362131], + [9.244162, 45.366628], + [9.248659, 45.366628], + [9.248659, 45.362131], + [9.244162, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.366628], + [9.244162, 45.371125], + [9.248659, 45.371125], + [9.248659, 45.366628], + [9.244162, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.371125], + [9.244162, 45.375621], + [9.248659, 45.375621], + [9.248659, 45.371125], + [9.244162, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.375621], + [9.244162, 45.380118], + [9.248659, 45.380118], + [9.248659, 45.375621], + [9.244162, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.380118], + [9.244162, 45.384614], + [9.248659, 45.384614], + [9.248659, 45.380118], + [9.244162, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.384614], + [9.244162, 45.389111], + [9.248659, 45.389111], + [9.248659, 45.384614], + [9.244162, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.389111], + [9.244162, 45.393608], + [9.248659, 45.393608], + [9.248659, 45.389111], + [9.244162, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.393608], + [9.244162, 45.398104], + [9.248659, 45.398104], + [9.248659, 45.393608], + [9.244162, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.398104], + [9.244162, 45.402601], + [9.248659, 45.402601], + [9.248659, 45.398104], + [9.244162, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.402601], + [9.244162, 45.407097], + [9.248659, 45.407097], + [9.248659, 45.402601], + [9.244162, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.407097], + [9.244162, 45.411594], + [9.248659, 45.411594], + [9.248659, 45.407097], + [9.244162, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.411594], + [9.244162, 45.416091], + [9.248659, 45.416091], + [9.248659, 45.411594], + [9.244162, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.416091], + [9.244162, 45.420587], + [9.248659, 45.420587], + [9.248659, 45.416091], + [9.244162, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.420587], + [9.244162, 45.425084], + [9.248659, 45.425084], + [9.248659, 45.420587], + [9.244162, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.425084], + [9.244162, 45.42958], + [9.248659, 45.42958], + [9.248659, 45.425084], + [9.244162, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.42958], + [9.244162, 45.434077], + [9.248659, 45.434077], + [9.248659, 45.42958], + [9.244162, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.434077], + [9.244162, 45.438574], + [9.248659, 45.438574], + [9.248659, 45.434077], + [9.244162, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.438574], + [9.244162, 45.44307], + [9.248659, 45.44307], + [9.248659, 45.438574], + [9.244162, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.44307], + [9.244162, 45.447567], + [9.248659, 45.447567], + [9.248659, 45.44307], + [9.244162, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.447567], + [9.244162, 45.452063], + [9.248659, 45.452063], + [9.248659, 45.447567], + [9.244162, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.452063], + [9.244162, 45.45656], + [9.248659, 45.45656], + [9.248659, 45.452063], + [9.244162, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.45656], + [9.244162, 45.461057], + [9.248659, 45.461057], + [9.248659, 45.45656], + [9.244162, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.461057], + [9.244162, 45.465553], + [9.248659, 45.465553], + [9.248659, 45.461057], + [9.244162, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.465553], + [9.244162, 45.47005], + [9.248659, 45.47005], + [9.248659, 45.465553], + [9.244162, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.47005], + [9.244162, 45.474547], + [9.248659, 45.474547], + [9.248659, 45.47005], + [9.244162, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.474547], + [9.244162, 45.479043], + [9.248659, 45.479043], + [9.248659, 45.474547], + [9.244162, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.479043], + [9.244162, 45.48354], + [9.248659, 45.48354], + [9.248659, 45.479043], + [9.244162, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.48354], + [9.244162, 45.488036], + [9.248659, 45.488036], + [9.248659, 45.48354], + [9.244162, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.488036], + [9.244162, 45.492533], + [9.248659, 45.492533], + [9.248659, 45.488036], + [9.244162, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.492533], + [9.244162, 45.49703], + [9.248659, 45.49703], + [9.248659, 45.492533], + [9.244162, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.49703], + [9.244162, 45.501526], + [9.248659, 45.501526], + [9.248659, 45.49703], + [9.244162, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.501526], + [9.244162, 45.506023], + [9.248659, 45.506023], + [9.248659, 45.501526], + [9.244162, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.506023], + [9.244162, 45.510519], + [9.248659, 45.510519], + [9.248659, 45.506023], + [9.244162, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.510519], + [9.244162, 45.515016], + [9.248659, 45.515016], + [9.248659, 45.510519], + [9.244162, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.515016], + [9.244162, 45.519513], + [9.248659, 45.519513], + [9.248659, 45.515016], + [9.244162, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.519513], + [9.244162, 45.524009], + [9.248659, 45.524009], + [9.248659, 45.519513], + [9.244162, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.524009], + [9.244162, 45.528506], + [9.248659, 45.528506], + [9.248659, 45.524009], + [9.244162, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.528506], + [9.244162, 45.533002], + [9.248659, 45.533002], + [9.248659, 45.528506], + [9.244162, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.533002], + [9.244162, 45.537499], + [9.248659, 45.537499], + [9.248659, 45.533002], + [9.244162, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.537499], + [9.244162, 45.541996], + [9.248659, 45.541996], + [9.248659, 45.537499], + [9.244162, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.541996], + [9.244162, 45.546492], + [9.248659, 45.546492], + [9.248659, 45.541996], + [9.244162, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.546492], + [9.244162, 45.550989], + [9.248659, 45.550989], + [9.248659, 45.546492], + [9.244162, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.550989], + [9.244162, 45.555485], + [9.248659, 45.555485], + [9.248659, 45.550989], + [9.244162, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.555485], + [9.244162, 45.559982], + [9.248659, 45.559982], + [9.248659, 45.555485], + [9.244162, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.559982], + [9.244162, 45.564479], + [9.248659, 45.564479], + [9.248659, 45.559982], + [9.244162, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 32, + "stroke": "#2496ff", + "fill": "#2496ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.564479], + [9.244162, 45.568975], + [9.248659, 45.568975], + [9.248659, 45.564479], + [9.244162, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.568975], + [9.244162, 45.573472], + [9.248659, 45.573472], + [9.248659, 45.568975], + [9.244162, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.573472], + [9.244162, 45.577968], + [9.248659, 45.577968], + [9.248659, 45.573472], + [9.244162, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.577968], + [9.244162, 45.582465], + [9.248659, 45.582465], + [9.248659, 45.577968], + [9.244162, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.582465], + [9.244162, 45.586962], + [9.248659, 45.586962], + [9.248659, 45.582465], + [9.244162, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.586962], + [9.244162, 45.591458], + [9.248659, 45.591458], + [9.248659, 45.586962], + [9.244162, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.591458], + [9.244162, 45.595955], + [9.248659, 45.595955], + [9.248659, 45.591458], + [9.244162, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.595955], + [9.244162, 45.600451], + [9.248659, 45.600451], + [9.248659, 45.595955], + [9.244162, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.600451], + [9.244162, 45.604948], + [9.248659, 45.604948], + [9.248659, 45.600451], + [9.244162, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.604948], + [9.244162, 45.609445], + [9.248659, 45.609445], + [9.248659, 45.604948], + [9.244162, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.609445], + [9.244162, 45.613941], + [9.248659, 45.613941], + [9.248659, 45.609445], + [9.244162, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.613941], + [9.244162, 45.618438], + [9.248659, 45.618438], + [9.248659, 45.613941], + [9.244162, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.618438], + [9.244162, 45.622934], + [9.248659, 45.622934], + [9.248659, 45.618438], + [9.244162, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.622934], + [9.244162, 45.627431], + [9.248659, 45.627431], + [9.248659, 45.622934], + [9.244162, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.627431], + [9.244162, 45.631928], + [9.248659, 45.631928], + [9.248659, 45.627431], + [9.244162, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.244162, 45.631928], + [9.244162, 45.636424], + [9.248659, 45.636424], + [9.248659, 45.631928], + [9.244162, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.339648], + [9.248659, 45.344145], + [9.253155, 45.344145], + [9.253155, 45.339648], + [9.248659, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.344145], + [9.248659, 45.348642], + [9.253155, 45.348642], + [9.253155, 45.344145], + [9.248659, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.348642], + [9.248659, 45.353138], + [9.253155, 45.353138], + [9.253155, 45.348642], + [9.248659, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.353138], + [9.248659, 45.357635], + [9.253155, 45.357635], + [9.253155, 45.353138], + [9.248659, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.357635], + [9.248659, 45.362131], + [9.253155, 45.362131], + [9.253155, 45.357635], + [9.248659, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.362131], + [9.248659, 45.366628], + [9.253155, 45.366628], + [9.253155, 45.362131], + [9.248659, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.366628], + [9.248659, 45.371125], + [9.253155, 45.371125], + [9.253155, 45.366628], + [9.248659, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.371125], + [9.248659, 45.375621], + [9.253155, 45.375621], + [9.253155, 45.371125], + [9.248659, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.375621], + [9.248659, 45.380118], + [9.253155, 45.380118], + [9.253155, 45.375621], + [9.248659, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.380118], + [9.248659, 45.384614], + [9.253155, 45.384614], + [9.253155, 45.380118], + [9.248659, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.384614], + [9.248659, 45.389111], + [9.253155, 45.389111], + [9.253155, 45.384614], + [9.248659, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.389111], + [9.248659, 45.393608], + [9.253155, 45.393608], + [9.253155, 45.389111], + [9.248659, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.393608], + [9.248659, 45.398104], + [9.253155, 45.398104], + [9.253155, 45.393608], + [9.248659, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.398104], + [9.248659, 45.402601], + [9.253155, 45.402601], + [9.253155, 45.398104], + [9.248659, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.402601], + [9.248659, 45.407097], + [9.253155, 45.407097], + [9.253155, 45.402601], + [9.248659, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.407097], + [9.248659, 45.411594], + [9.253155, 45.411594], + [9.253155, 45.407097], + [9.248659, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.411594], + [9.248659, 45.416091], + [9.253155, 45.416091], + [9.253155, 45.411594], + [9.248659, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.416091], + [9.248659, 45.420587], + [9.253155, 45.420587], + [9.253155, 45.416091], + [9.248659, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.420587], + [9.248659, 45.425084], + [9.253155, 45.425084], + [9.253155, 45.420587], + [9.248659, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.425084], + [9.248659, 45.42958], + [9.253155, 45.42958], + [9.253155, 45.425084], + [9.248659, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.42958], + [9.248659, 45.434077], + [9.253155, 45.434077], + [9.253155, 45.42958], + [9.248659, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.434077], + [9.248659, 45.438574], + [9.253155, 45.438574], + [9.253155, 45.434077], + [9.248659, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.438574], + [9.248659, 45.44307], + [9.253155, 45.44307], + [9.253155, 45.438574], + [9.248659, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.44307], + [9.248659, 45.447567], + [9.253155, 45.447567], + [9.253155, 45.44307], + [9.248659, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.447567], + [9.248659, 45.452063], + [9.253155, 45.452063], + [9.253155, 45.447567], + [9.248659, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.452063], + [9.248659, 45.45656], + [9.253155, 45.45656], + [9.253155, 45.452063], + [9.248659, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.45656], + [9.248659, 45.461057], + [9.253155, 45.461057], + [9.253155, 45.45656], + [9.248659, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.461057], + [9.248659, 45.465553], + [9.253155, 45.465553], + [9.253155, 45.461057], + [9.248659, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.465553], + [9.248659, 45.47005], + [9.253155, 45.47005], + [9.253155, 45.465553], + [9.248659, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.47005], + [9.248659, 45.474547], + [9.253155, 45.474547], + [9.253155, 45.47005], + [9.248659, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.474547], + [9.248659, 45.479043], + [9.253155, 45.479043], + [9.253155, 45.474547], + [9.248659, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.479043], + [9.248659, 45.48354], + [9.253155, 45.48354], + [9.253155, 45.479043], + [9.248659, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.48354], + [9.248659, 45.488036], + [9.253155, 45.488036], + [9.253155, 45.48354], + [9.248659, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 22, + "stroke": "#8fc9ff", + "fill": "#8fc9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.488036], + [9.248659, 45.492533], + [9.253155, 45.492533], + [9.253155, 45.488036], + [9.248659, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.492533], + [9.248659, 45.49703], + [9.253155, 45.49703], + [9.253155, 45.492533], + [9.248659, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.49703], + [9.248659, 45.501526], + [9.253155, 45.501526], + [9.253155, 45.49703], + [9.248659, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.501526], + [9.248659, 45.506023], + [9.253155, 45.506023], + [9.253155, 45.501526], + [9.248659, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.506023], + [9.248659, 45.510519], + [9.253155, 45.510519], + [9.253155, 45.506023], + [9.248659, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.510519], + [9.248659, 45.515016], + [9.253155, 45.515016], + [9.253155, 45.510519], + [9.248659, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.515016], + [9.248659, 45.519513], + [9.253155, 45.519513], + [9.253155, 45.515016], + [9.248659, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.519513], + [9.248659, 45.524009], + [9.253155, 45.524009], + [9.253155, 45.519513], + [9.248659, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.524009], + [9.248659, 45.528506], + [9.253155, 45.528506], + [9.253155, 45.524009], + [9.248659, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.528506], + [9.248659, 45.533002], + [9.253155, 45.533002], + [9.253155, 45.528506], + [9.248659, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.533002], + [9.248659, 45.537499], + [9.253155, 45.537499], + [9.253155, 45.533002], + [9.248659, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.537499], + [9.248659, 45.541996], + [9.253155, 45.541996], + [9.253155, 45.537499], + [9.248659, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.541996], + [9.248659, 45.546492], + [9.253155, 45.546492], + [9.253155, 45.541996], + [9.248659, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.546492], + [9.248659, 45.550989], + [9.253155, 45.550989], + [9.253155, 45.546492], + [9.248659, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.550989], + [9.248659, 45.555485], + [9.253155, 45.555485], + [9.253155, 45.550989], + [9.248659, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.555485], + [9.248659, 45.559982], + [9.253155, 45.559982], + [9.253155, 45.555485], + [9.248659, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.559982], + [9.248659, 45.564479], + [9.253155, 45.564479], + [9.253155, 45.559982], + [9.248659, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.564479], + [9.248659, 45.568975], + [9.253155, 45.568975], + [9.253155, 45.564479], + [9.248659, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.568975], + [9.248659, 45.573472], + [9.253155, 45.573472], + [9.253155, 45.568975], + [9.248659, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.573472], + [9.248659, 45.577968], + [9.253155, 45.577968], + [9.253155, 45.573472], + [9.248659, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.577968], + [9.248659, 45.582465], + [9.253155, 45.582465], + [9.253155, 45.577968], + [9.248659, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.582465], + [9.248659, 45.586962], + [9.253155, 45.586962], + [9.253155, 45.582465], + [9.248659, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.586962], + [9.248659, 45.591458], + [9.253155, 45.591458], + [9.253155, 45.586962], + [9.248659, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.591458], + [9.248659, 45.595955], + [9.253155, 45.595955], + [9.253155, 45.591458], + [9.248659, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.595955], + [9.248659, 45.600451], + [9.253155, 45.600451], + [9.253155, 45.595955], + [9.248659, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.600451], + [9.248659, 45.604948], + [9.253155, 45.604948], + [9.253155, 45.600451], + [9.248659, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.604948], + [9.248659, 45.609445], + [9.253155, 45.609445], + [9.253155, 45.604948], + [9.248659, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.609445], + [9.248659, 45.613941], + [9.253155, 45.613941], + [9.253155, 45.609445], + [9.248659, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.613941], + [9.248659, 45.618438], + [9.253155, 45.618438], + [9.253155, 45.613941], + [9.248659, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.618438], + [9.248659, 45.622934], + [9.253155, 45.622934], + [9.253155, 45.618438], + [9.248659, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.622934], + [9.248659, 45.627431], + [9.253155, 45.627431], + [9.253155, 45.622934], + [9.248659, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.627431], + [9.248659, 45.631928], + [9.253155, 45.631928], + [9.253155, 45.627431], + [9.248659, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.248659, 45.631928], + [9.248659, 45.636424], + [9.253155, 45.636424], + [9.253155, 45.631928], + [9.248659, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.339648], + [9.253155, 45.344145], + [9.257652, 45.344145], + [9.257652, 45.339648], + [9.253155, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.344145], + [9.253155, 45.348642], + [9.257652, 45.348642], + [9.257652, 45.344145], + [9.253155, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.348642], + [9.253155, 45.353138], + [9.257652, 45.353138], + [9.257652, 45.348642], + [9.253155, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.353138], + [9.253155, 45.357635], + [9.257652, 45.357635], + [9.257652, 45.353138], + [9.253155, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.357635], + [9.253155, 45.362131], + [9.257652, 45.362131], + [9.257652, 45.357635], + [9.253155, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.362131], + [9.253155, 45.366628], + [9.257652, 45.366628], + [9.257652, 45.362131], + [9.253155, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.366628], + [9.253155, 45.371125], + [9.257652, 45.371125], + [9.257652, 45.366628], + [9.253155, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.371125], + [9.253155, 45.375621], + [9.257652, 45.375621], + [9.257652, 45.371125], + [9.253155, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.375621], + [9.253155, 45.380118], + [9.257652, 45.380118], + [9.257652, 45.375621], + [9.253155, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.380118], + [9.253155, 45.384614], + [9.257652, 45.384614], + [9.257652, 45.380118], + [9.253155, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.384614], + [9.253155, 45.389111], + [9.257652, 45.389111], + [9.257652, 45.384614], + [9.253155, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.389111], + [9.253155, 45.393608], + [9.257652, 45.393608], + [9.257652, 45.389111], + [9.253155, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.393608], + [9.253155, 45.398104], + [9.257652, 45.398104], + [9.257652, 45.393608], + [9.253155, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.398104], + [9.253155, 45.402601], + [9.257652, 45.402601], + [9.257652, 45.398104], + [9.253155, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.402601], + [9.253155, 45.407097], + [9.257652, 45.407097], + [9.257652, 45.402601], + [9.253155, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.407097], + [9.253155, 45.411594], + [9.257652, 45.411594], + [9.257652, 45.407097], + [9.253155, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.411594], + [9.253155, 45.416091], + [9.257652, 45.416091], + [9.257652, 45.411594], + [9.253155, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.416091], + [9.253155, 45.420587], + [9.257652, 45.420587], + [9.257652, 45.416091], + [9.253155, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.420587], + [9.253155, 45.425084], + [9.257652, 45.425084], + [9.257652, 45.420587], + [9.253155, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.425084], + [9.253155, 45.42958], + [9.257652, 45.42958], + [9.257652, 45.425084], + [9.253155, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.42958], + [9.253155, 45.434077], + [9.257652, 45.434077], + [9.257652, 45.42958], + [9.253155, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.434077], + [9.253155, 45.438574], + [9.257652, 45.438574], + [9.257652, 45.434077], + [9.253155, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.438574], + [9.253155, 45.44307], + [9.257652, 45.44307], + [9.257652, 45.438574], + [9.253155, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.44307], + [9.253155, 45.447567], + [9.257652, 45.447567], + [9.257652, 45.44307], + [9.253155, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.447567], + [9.253155, 45.452063], + [9.257652, 45.452063], + [9.257652, 45.447567], + [9.253155, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.452063], + [9.253155, 45.45656], + [9.257652, 45.45656], + [9.257652, 45.452063], + [9.253155, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.45656], + [9.253155, 45.461057], + [9.257652, 45.461057], + [9.257652, 45.45656], + [9.253155, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.461057], + [9.253155, 45.465553], + [9.257652, 45.465553], + [9.257652, 45.461057], + [9.253155, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.465553], + [9.253155, 45.47005], + [9.257652, 45.47005], + [9.257652, 45.465553], + [9.253155, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.47005], + [9.253155, 45.474547], + [9.257652, 45.474547], + [9.257652, 45.47005], + [9.253155, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.474547], + [9.253155, 45.479043], + [9.257652, 45.479043], + [9.257652, 45.474547], + [9.253155, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.479043], + [9.253155, 45.48354], + [9.257652, 45.48354], + [9.257652, 45.479043], + [9.253155, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.48354], + [9.253155, 45.488036], + [9.257652, 45.488036], + [9.257652, 45.48354], + [9.253155, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.488036], + [9.253155, 45.492533], + [9.257652, 45.492533], + [9.257652, 45.488036], + [9.253155, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.492533], + [9.253155, 45.49703], + [9.257652, 45.49703], + [9.257652, 45.492533], + [9.253155, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.49703], + [9.253155, 45.501526], + [9.257652, 45.501526], + [9.257652, 45.49703], + [9.253155, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.501526], + [9.253155, 45.506023], + [9.257652, 45.506023], + [9.257652, 45.501526], + [9.253155, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.506023], + [9.253155, 45.510519], + [9.257652, 45.510519], + [9.257652, 45.506023], + [9.253155, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.510519], + [9.253155, 45.515016], + [9.257652, 45.515016], + [9.257652, 45.510519], + [9.253155, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.515016], + [9.253155, 45.519513], + [9.257652, 45.519513], + [9.257652, 45.515016], + [9.253155, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.519513], + [9.253155, 45.524009], + [9.257652, 45.524009], + [9.257652, 45.519513], + [9.253155, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.524009], + [9.253155, 45.528506], + [9.257652, 45.528506], + [9.257652, 45.524009], + [9.253155, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.528506], + [9.253155, 45.533002], + [9.257652, 45.533002], + [9.257652, 45.528506], + [9.253155, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.533002], + [9.253155, 45.537499], + [9.257652, 45.537499], + [9.257652, 45.533002], + [9.253155, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.537499], + [9.253155, 45.541996], + [9.257652, 45.541996], + [9.257652, 45.537499], + [9.253155, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.541996], + [9.253155, 45.546492], + [9.257652, 45.546492], + [9.257652, 45.541996], + [9.253155, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.546492], + [9.253155, 45.550989], + [9.257652, 45.550989], + [9.257652, 45.546492], + [9.253155, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.550989], + [9.253155, 45.555485], + [9.257652, 45.555485], + [9.257652, 45.550989], + [9.253155, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.555485], + [9.253155, 45.559982], + [9.257652, 45.559982], + [9.257652, 45.555485], + [9.253155, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.559982], + [9.253155, 45.564479], + [9.257652, 45.564479], + [9.257652, 45.559982], + [9.253155, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.564479], + [9.253155, 45.568975], + [9.257652, 45.568975], + [9.257652, 45.564479], + [9.253155, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.568975], + [9.253155, 45.573472], + [9.257652, 45.573472], + [9.257652, 45.568975], + [9.253155, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.573472], + [9.253155, 45.577968], + [9.257652, 45.577968], + [9.257652, 45.573472], + [9.253155, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.577968], + [9.253155, 45.582465], + [9.257652, 45.582465], + [9.257652, 45.577968], + [9.253155, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.582465], + [9.253155, 45.586962], + [9.257652, 45.586962], + [9.257652, 45.582465], + [9.253155, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.586962], + [9.253155, 45.591458], + [9.257652, 45.591458], + [9.257652, 45.586962], + [9.253155, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.591458], + [9.253155, 45.595955], + [9.257652, 45.595955], + [9.257652, 45.591458], + [9.253155, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.595955], + [9.253155, 45.600451], + [9.257652, 45.600451], + [9.257652, 45.595955], + [9.253155, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.600451], + [9.253155, 45.604948], + [9.257652, 45.604948], + [9.257652, 45.600451], + [9.253155, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.604948], + [9.253155, 45.609445], + [9.257652, 45.609445], + [9.257652, 45.604948], + [9.253155, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.609445], + [9.253155, 45.613941], + [9.257652, 45.613941], + [9.257652, 45.609445], + [9.253155, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.613941], + [9.253155, 45.618438], + [9.257652, 45.618438], + [9.257652, 45.613941], + [9.253155, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.618438], + [9.253155, 45.622934], + [9.257652, 45.622934], + [9.257652, 45.618438], + [9.253155, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.622934], + [9.253155, 45.627431], + [9.257652, 45.627431], + [9.257652, 45.622934], + [9.253155, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.627431], + [9.253155, 45.631928], + [9.257652, 45.631928], + [9.257652, 45.627431], + [9.253155, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.253155, 45.631928], + [9.253155, 45.636424], + [9.257652, 45.636424], + [9.257652, 45.631928], + [9.253155, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.339648], + [9.257652, 45.344145], + [9.262148, 45.344145], + [9.262148, 45.339648], + [9.257652, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.344145], + [9.257652, 45.348642], + [9.262148, 45.348642], + [9.262148, 45.344145], + [9.257652, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.348642], + [9.257652, 45.353138], + [9.262148, 45.353138], + [9.262148, 45.348642], + [9.257652, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.353138], + [9.257652, 45.357635], + [9.262148, 45.357635], + [9.262148, 45.353138], + [9.257652, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.357635], + [9.257652, 45.362131], + [9.262148, 45.362131], + [9.262148, 45.357635], + [9.257652, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.362131], + [9.257652, 45.366628], + [9.262148, 45.366628], + [9.262148, 45.362131], + [9.257652, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.366628], + [9.257652, 45.371125], + [9.262148, 45.371125], + [9.262148, 45.366628], + [9.257652, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.371125], + [9.257652, 45.375621], + [9.262148, 45.375621], + [9.262148, 45.371125], + [9.257652, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.375621], + [9.257652, 45.380118], + [9.262148, 45.380118], + [9.262148, 45.375621], + [9.257652, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.380118], + [9.257652, 45.384614], + [9.262148, 45.384614], + [9.262148, 45.380118], + [9.257652, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.384614], + [9.257652, 45.389111], + [9.262148, 45.389111], + [9.262148, 45.384614], + [9.257652, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.389111], + [9.257652, 45.393608], + [9.262148, 45.393608], + [9.262148, 45.389111], + [9.257652, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.393608], + [9.257652, 45.398104], + [9.262148, 45.398104], + [9.262148, 45.393608], + [9.257652, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.398104], + [9.257652, 45.402601], + [9.262148, 45.402601], + [9.262148, 45.398104], + [9.257652, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.402601], + [9.257652, 45.407097], + [9.262148, 45.407097], + [9.262148, 45.402601], + [9.257652, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.407097], + [9.257652, 45.411594], + [9.262148, 45.411594], + [9.262148, 45.407097], + [9.257652, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.411594], + [9.257652, 45.416091], + [9.262148, 45.416091], + [9.262148, 45.411594], + [9.257652, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.416091], + [9.257652, 45.420587], + [9.262148, 45.420587], + [9.262148, 45.416091], + [9.257652, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.420587], + [9.257652, 45.425084], + [9.262148, 45.425084], + [9.262148, 45.420587], + [9.257652, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.425084], + [9.257652, 45.42958], + [9.262148, 45.42958], + [9.262148, 45.425084], + [9.257652, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.42958], + [9.257652, 45.434077], + [9.262148, 45.434077], + [9.262148, 45.42958], + [9.257652, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.434077], + [9.257652, 45.438574], + [9.262148, 45.438574], + [9.262148, 45.434077], + [9.257652, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.438574], + [9.257652, 45.44307], + [9.262148, 45.44307], + [9.262148, 45.438574], + [9.257652, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.44307], + [9.257652, 45.447567], + [9.262148, 45.447567], + [9.262148, 45.44307], + [9.257652, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.447567], + [9.257652, 45.452063], + [9.262148, 45.452063], + [9.262148, 45.447567], + [9.257652, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.452063], + [9.257652, 45.45656], + [9.262148, 45.45656], + [9.262148, 45.452063], + [9.257652, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.45656], + [9.257652, 45.461057], + [9.262148, 45.461057], + [9.262148, 45.45656], + [9.257652, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.461057], + [9.257652, 45.465553], + [9.262148, 45.465553], + [9.262148, 45.461057], + [9.257652, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.465553], + [9.257652, 45.47005], + [9.262148, 45.47005], + [9.262148, 45.465553], + [9.257652, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.47005], + [9.257652, 45.474547], + [9.262148, 45.474547], + [9.262148, 45.47005], + [9.257652, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.474547], + [9.257652, 45.479043], + [9.262148, 45.479043], + [9.262148, 45.474547], + [9.257652, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.479043], + [9.257652, 45.48354], + [9.262148, 45.48354], + [9.262148, 45.479043], + [9.257652, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.48354], + [9.257652, 45.488036], + [9.262148, 45.488036], + [9.262148, 45.48354], + [9.257652, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.488036], + [9.257652, 45.492533], + [9.262148, 45.492533], + [9.262148, 45.488036], + [9.257652, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.492533], + [9.257652, 45.49703], + [9.262148, 45.49703], + [9.262148, 45.492533], + [9.257652, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.49703], + [9.257652, 45.501526], + [9.262148, 45.501526], + [9.262148, 45.49703], + [9.257652, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.501526], + [9.257652, 45.506023], + [9.262148, 45.506023], + [9.262148, 45.501526], + [9.257652, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.506023], + [9.257652, 45.510519], + [9.262148, 45.510519], + [9.262148, 45.506023], + [9.257652, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.510519], + [9.257652, 45.515016], + [9.262148, 45.515016], + [9.262148, 45.510519], + [9.257652, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.515016], + [9.257652, 45.519513], + [9.262148, 45.519513], + [9.262148, 45.515016], + [9.257652, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.519513], + [9.257652, 45.524009], + [9.262148, 45.524009], + [9.262148, 45.519513], + [9.257652, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.524009], + [9.257652, 45.528506], + [9.262148, 45.528506], + [9.262148, 45.524009], + [9.257652, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.528506], + [9.257652, 45.533002], + [9.262148, 45.533002], + [9.262148, 45.528506], + [9.257652, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.533002], + [9.257652, 45.537499], + [9.262148, 45.537499], + [9.262148, 45.533002], + [9.257652, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.537499], + [9.257652, 45.541996], + [9.262148, 45.541996], + [9.262148, 45.537499], + [9.257652, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.541996], + [9.257652, 45.546492], + [9.262148, 45.546492], + [9.262148, 45.541996], + [9.257652, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.546492], + [9.257652, 45.550989], + [9.262148, 45.550989], + [9.262148, 45.546492], + [9.257652, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.550989], + [9.257652, 45.555485], + [9.262148, 45.555485], + [9.262148, 45.550989], + [9.257652, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.555485], + [9.257652, 45.559982], + [9.262148, 45.559982], + [9.262148, 45.555485], + [9.257652, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.559982], + [9.257652, 45.564479], + [9.262148, 45.564479], + [9.262148, 45.559982], + [9.257652, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.564479], + [9.257652, 45.568975], + [9.262148, 45.568975], + [9.262148, 45.564479], + [9.257652, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 31, + "stroke": "#2e9bff", + "fill": "#2e9bff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.568975], + [9.257652, 45.573472], + [9.262148, 45.573472], + [9.262148, 45.568975], + [9.257652, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.573472], + [9.257652, 45.577968], + [9.262148, 45.577968], + [9.262148, 45.573472], + [9.257652, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.577968], + [9.257652, 45.582465], + [9.262148, 45.582465], + [9.262148, 45.577968], + [9.257652, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.582465], + [9.257652, 45.586962], + [9.262148, 45.586962], + [9.262148, 45.582465], + [9.257652, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.586962], + [9.257652, 45.591458], + [9.262148, 45.591458], + [9.262148, 45.586962], + [9.257652, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.591458], + [9.257652, 45.595955], + [9.262148, 45.595955], + [9.262148, 45.591458], + [9.257652, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.595955], + [9.257652, 45.600451], + [9.262148, 45.600451], + [9.262148, 45.595955], + [9.257652, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.600451], + [9.257652, 45.604948], + [9.262148, 45.604948], + [9.262148, 45.600451], + [9.257652, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.604948], + [9.257652, 45.609445], + [9.262148, 45.609445], + [9.262148, 45.604948], + [9.257652, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.609445], + [9.257652, 45.613941], + [9.262148, 45.613941], + [9.262148, 45.609445], + [9.257652, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.613941], + [9.257652, 45.618438], + [9.262148, 45.618438], + [9.262148, 45.613941], + [9.257652, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.618438], + [9.257652, 45.622934], + [9.262148, 45.622934], + [9.262148, 45.618438], + [9.257652, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.622934], + [9.257652, 45.627431], + [9.262148, 45.627431], + [9.262148, 45.622934], + [9.257652, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.627431], + [9.257652, 45.631928], + [9.262148, 45.631928], + [9.262148, 45.627431], + [9.257652, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.257652, 45.631928], + [9.257652, 45.636424], + [9.262148, 45.636424], + [9.262148, 45.631928], + [9.257652, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.339648], + [9.262148, 45.344145], + [9.266645, 45.344145], + [9.266645, 45.339648], + [9.262148, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.344145], + [9.262148, 45.348642], + [9.266645, 45.348642], + [9.266645, 45.344145], + [9.262148, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.348642], + [9.262148, 45.353138], + [9.266645, 45.353138], + [9.266645, 45.348642], + [9.262148, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.353138], + [9.262148, 45.357635], + [9.266645, 45.357635], + [9.266645, 45.353138], + [9.262148, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.357635], + [9.262148, 45.362131], + [9.266645, 45.362131], + [9.266645, 45.357635], + [9.262148, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.362131], + [9.262148, 45.366628], + [9.266645, 45.366628], + [9.266645, 45.362131], + [9.262148, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.366628], + [9.262148, 45.371125], + [9.266645, 45.371125], + [9.266645, 45.366628], + [9.262148, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.371125], + [9.262148, 45.375621], + [9.266645, 45.375621], + [9.266645, 45.371125], + [9.262148, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.375621], + [9.262148, 45.380118], + [9.266645, 45.380118], + [9.266645, 45.375621], + [9.262148, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.380118], + [9.262148, 45.384614], + [9.266645, 45.384614], + [9.266645, 45.380118], + [9.262148, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.384614], + [9.262148, 45.389111], + [9.266645, 45.389111], + [9.266645, 45.384614], + [9.262148, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.389111], + [9.262148, 45.393608], + [9.266645, 45.393608], + [9.266645, 45.389111], + [9.262148, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.393608], + [9.262148, 45.398104], + [9.266645, 45.398104], + [9.266645, 45.393608], + [9.262148, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.398104], + [9.262148, 45.402601], + [9.266645, 45.402601], + [9.266645, 45.398104], + [9.262148, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.402601], + [9.262148, 45.407097], + [9.266645, 45.407097], + [9.266645, 45.402601], + [9.262148, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.407097], + [9.262148, 45.411594], + [9.266645, 45.411594], + [9.266645, 45.407097], + [9.262148, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.411594], + [9.262148, 45.416091], + [9.266645, 45.416091], + [9.266645, 45.411594], + [9.262148, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.416091], + [9.262148, 45.420587], + [9.266645, 45.420587], + [9.266645, 45.416091], + [9.262148, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.420587], + [9.262148, 45.425084], + [9.266645, 45.425084], + [9.266645, 45.420587], + [9.262148, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.425084], + [9.262148, 45.42958], + [9.266645, 45.42958], + [9.266645, 45.425084], + [9.262148, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.42958], + [9.262148, 45.434077], + [9.266645, 45.434077], + [9.266645, 45.42958], + [9.262148, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.434077], + [9.262148, 45.438574], + [9.266645, 45.438574], + [9.266645, 45.434077], + [9.262148, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.438574], + [9.262148, 45.44307], + [9.266645, 45.44307], + [9.266645, 45.438574], + [9.262148, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.44307], + [9.262148, 45.447567], + [9.266645, 45.447567], + [9.266645, 45.44307], + [9.262148, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.447567], + [9.262148, 45.452063], + [9.266645, 45.452063], + [9.266645, 45.447567], + [9.262148, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.452063], + [9.262148, 45.45656], + [9.266645, 45.45656], + [9.266645, 45.452063], + [9.262148, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.45656], + [9.262148, 45.461057], + [9.266645, 45.461057], + [9.266645, 45.45656], + [9.262148, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.461057], + [9.262148, 45.465553], + [9.266645, 45.465553], + [9.266645, 45.461057], + [9.262148, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.465553], + [9.262148, 45.47005], + [9.266645, 45.47005], + [9.266645, 45.465553], + [9.262148, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.47005], + [9.262148, 45.474547], + [9.266645, 45.474547], + [9.266645, 45.47005], + [9.262148, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.474547], + [9.262148, 45.479043], + [9.266645, 45.479043], + [9.266645, 45.474547], + [9.262148, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.479043], + [9.262148, 45.48354], + [9.266645, 45.48354], + [9.266645, 45.479043], + [9.262148, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.48354], + [9.262148, 45.488036], + [9.266645, 45.488036], + [9.266645, 45.48354], + [9.262148, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.488036], + [9.262148, 45.492533], + [9.266645, 45.492533], + [9.266645, 45.488036], + [9.262148, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.492533], + [9.262148, 45.49703], + [9.266645, 45.49703], + [9.266645, 45.492533], + [9.262148, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.49703], + [9.262148, 45.501526], + [9.266645, 45.501526], + [9.266645, 45.49703], + [9.262148, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.501526], + [9.262148, 45.506023], + [9.266645, 45.506023], + [9.266645, 45.501526], + [9.262148, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.506023], + [9.262148, 45.510519], + [9.266645, 45.510519], + [9.266645, 45.506023], + [9.262148, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.510519], + [9.262148, 45.515016], + [9.266645, 45.515016], + [9.266645, 45.510519], + [9.262148, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.515016], + [9.262148, 45.519513], + [9.266645, 45.519513], + [9.266645, 45.515016], + [9.262148, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.519513], + [9.262148, 45.524009], + [9.266645, 45.524009], + [9.266645, 45.519513], + [9.262148, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.524009], + [9.262148, 45.528506], + [9.266645, 45.528506], + [9.266645, 45.524009], + [9.262148, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.528506], + [9.262148, 45.533002], + [9.266645, 45.533002], + [9.266645, 45.528506], + [9.262148, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.533002], + [9.262148, 45.537499], + [9.266645, 45.537499], + [9.266645, 45.533002], + [9.262148, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.537499], + [9.262148, 45.541996], + [9.266645, 45.541996], + [9.266645, 45.537499], + [9.262148, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.541996], + [9.262148, 45.546492], + [9.266645, 45.546492], + [9.266645, 45.541996], + [9.262148, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.546492], + [9.262148, 45.550989], + [9.266645, 45.550989], + [9.266645, 45.546492], + [9.262148, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.550989], + [9.262148, 45.555485], + [9.266645, 45.555485], + [9.266645, 45.550989], + [9.262148, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.555485], + [9.262148, 45.559982], + [9.266645, 45.559982], + [9.266645, 45.555485], + [9.262148, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.559982], + [9.262148, 45.564479], + [9.266645, 45.564479], + [9.266645, 45.559982], + [9.262148, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.564479], + [9.262148, 45.568975], + [9.266645, 45.568975], + [9.266645, 45.564479], + [9.262148, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.568975], + [9.262148, 45.573472], + [9.266645, 45.573472], + [9.266645, 45.568975], + [9.262148, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.573472], + [9.262148, 45.577968], + [9.266645, 45.577968], + [9.266645, 45.573472], + [9.262148, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.577968], + [9.262148, 45.582465], + [9.266645, 45.582465], + [9.266645, 45.577968], + [9.262148, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.582465], + [9.262148, 45.586962], + [9.266645, 45.586962], + [9.266645, 45.582465], + [9.262148, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.586962], + [9.262148, 45.591458], + [9.266645, 45.591458], + [9.266645, 45.586962], + [9.262148, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.591458], + [9.262148, 45.595955], + [9.266645, 45.595955], + [9.266645, 45.591458], + [9.262148, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.595955], + [9.262148, 45.600451], + [9.266645, 45.600451], + [9.266645, 45.595955], + [9.262148, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.600451], + [9.262148, 45.604948], + [9.266645, 45.604948], + [9.266645, 45.600451], + [9.262148, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.604948], + [9.262148, 45.609445], + [9.266645, 45.609445], + [9.266645, 45.604948], + [9.262148, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.609445], + [9.262148, 45.613941], + [9.266645, 45.613941], + [9.266645, 45.609445], + [9.262148, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.613941], + [9.262148, 45.618438], + [9.266645, 45.618438], + [9.266645, 45.613941], + [9.262148, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.618438], + [9.262148, 45.622934], + [9.266645, 45.622934], + [9.266645, 45.618438], + [9.262148, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.622934], + [9.262148, 45.627431], + [9.266645, 45.627431], + [9.266645, 45.622934], + [9.262148, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.627431], + [9.262148, 45.631928], + [9.266645, 45.631928], + [9.266645, 45.627431], + [9.262148, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.262148, 45.631928], + [9.262148, 45.636424], + [9.266645, 45.636424], + [9.266645, 45.631928], + [9.262148, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.339648], + [9.266645, 45.344145], + [9.271142, 45.344145], + [9.271142, 45.339648], + [9.266645, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.344145], + [9.266645, 45.348642], + [9.271142, 45.348642], + [9.271142, 45.344145], + [9.266645, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.348642], + [9.266645, 45.353138], + [9.271142, 45.353138], + [9.271142, 45.348642], + [9.266645, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.353138], + [9.266645, 45.357635], + [9.271142, 45.357635], + [9.271142, 45.353138], + [9.266645, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.357635], + [9.266645, 45.362131], + [9.271142, 45.362131], + [9.271142, 45.357635], + [9.266645, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.362131], + [9.266645, 45.366628], + [9.271142, 45.366628], + [9.271142, 45.362131], + [9.266645, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.366628], + [9.266645, 45.371125], + [9.271142, 45.371125], + [9.271142, 45.366628], + [9.266645, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.371125], + [9.266645, 45.375621], + [9.271142, 45.375621], + [9.271142, 45.371125], + [9.266645, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.375621], + [9.266645, 45.380118], + [9.271142, 45.380118], + [9.271142, 45.375621], + [9.266645, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.380118], + [9.266645, 45.384614], + [9.271142, 45.384614], + [9.271142, 45.380118], + [9.266645, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.384614], + [9.266645, 45.389111], + [9.271142, 45.389111], + [9.271142, 45.384614], + [9.266645, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.389111], + [9.266645, 45.393608], + [9.271142, 45.393608], + [9.271142, 45.389111], + [9.266645, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.393608], + [9.266645, 45.398104], + [9.271142, 45.398104], + [9.271142, 45.393608], + [9.266645, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.398104], + [9.266645, 45.402601], + [9.271142, 45.402601], + [9.271142, 45.398104], + [9.266645, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.402601], + [9.266645, 45.407097], + [9.271142, 45.407097], + [9.271142, 45.402601], + [9.266645, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.407097], + [9.266645, 45.411594], + [9.271142, 45.411594], + [9.271142, 45.407097], + [9.266645, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.411594], + [9.266645, 45.416091], + [9.271142, 45.416091], + [9.271142, 45.411594], + [9.266645, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.416091], + [9.266645, 45.420587], + [9.271142, 45.420587], + [9.271142, 45.416091], + [9.266645, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.420587], + [9.266645, 45.425084], + [9.271142, 45.425084], + [9.271142, 45.420587], + [9.266645, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.425084], + [9.266645, 45.42958], + [9.271142, 45.42958], + [9.271142, 45.425084], + [9.266645, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.42958], + [9.266645, 45.434077], + [9.271142, 45.434077], + [9.271142, 45.42958], + [9.266645, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.434077], + [9.266645, 45.438574], + [9.271142, 45.438574], + [9.271142, 45.434077], + [9.266645, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.438574], + [9.266645, 45.44307], + [9.271142, 45.44307], + [9.271142, 45.438574], + [9.266645, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.44307], + [9.266645, 45.447567], + [9.271142, 45.447567], + [9.271142, 45.44307], + [9.266645, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.447567], + [9.266645, 45.452063], + [9.271142, 45.452063], + [9.271142, 45.447567], + [9.266645, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.452063], + [9.266645, 45.45656], + [9.271142, 45.45656], + [9.271142, 45.452063], + [9.266645, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.45656], + [9.266645, 45.461057], + [9.271142, 45.461057], + [9.271142, 45.45656], + [9.266645, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.461057], + [9.266645, 45.465553], + [9.271142, 45.465553], + [9.271142, 45.461057], + [9.266645, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.465553], + [9.266645, 45.47005], + [9.271142, 45.47005], + [9.271142, 45.465553], + [9.266645, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.47005], + [9.266645, 45.474547], + [9.271142, 45.474547], + [9.271142, 45.47005], + [9.266645, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.474547], + [9.266645, 45.479043], + [9.271142, 45.479043], + [9.271142, 45.474547], + [9.266645, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.479043], + [9.266645, 45.48354], + [9.271142, 45.48354], + [9.271142, 45.479043], + [9.266645, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.48354], + [9.266645, 45.488036], + [9.271142, 45.488036], + [9.271142, 45.48354], + [9.266645, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.488036], + [9.266645, 45.492533], + [9.271142, 45.492533], + [9.271142, 45.488036], + [9.266645, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.492533], + [9.266645, 45.49703], + [9.271142, 45.49703], + [9.271142, 45.492533], + [9.266645, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.49703], + [9.266645, 45.501526], + [9.271142, 45.501526], + [9.271142, 45.49703], + [9.266645, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.501526], + [9.266645, 45.506023], + [9.271142, 45.506023], + [9.271142, 45.501526], + [9.266645, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.506023], + [9.266645, 45.510519], + [9.271142, 45.510519], + [9.271142, 45.506023], + [9.266645, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.510519], + [9.266645, 45.515016], + [9.271142, 45.515016], + [9.271142, 45.510519], + [9.266645, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.515016], + [9.266645, 45.519513], + [9.271142, 45.519513], + [9.271142, 45.515016], + [9.266645, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.519513], + [9.266645, 45.524009], + [9.271142, 45.524009], + [9.271142, 45.519513], + [9.266645, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.524009], + [9.266645, 45.528506], + [9.271142, 45.528506], + [9.271142, 45.524009], + [9.266645, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.528506], + [9.266645, 45.533002], + [9.271142, 45.533002], + [9.271142, 45.528506], + [9.266645, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.533002], + [9.266645, 45.537499], + [9.271142, 45.537499], + [9.271142, 45.533002], + [9.266645, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.537499], + [9.266645, 45.541996], + [9.271142, 45.541996], + [9.271142, 45.537499], + [9.266645, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.541996], + [9.266645, 45.546492], + [9.271142, 45.546492], + [9.271142, 45.541996], + [9.266645, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.546492], + [9.266645, 45.550989], + [9.271142, 45.550989], + [9.271142, 45.546492], + [9.266645, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.550989], + [9.266645, 45.555485], + [9.271142, 45.555485], + [9.271142, 45.550989], + [9.266645, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.555485], + [9.266645, 45.559982], + [9.271142, 45.559982], + [9.271142, 45.555485], + [9.266645, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.559982], + [9.266645, 45.564479], + [9.271142, 45.564479], + [9.271142, 45.559982], + [9.266645, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.564479], + [9.266645, 45.568975], + [9.271142, 45.568975], + [9.271142, 45.564479], + [9.266645, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.568975], + [9.266645, 45.573472], + [9.271142, 45.573472], + [9.271142, 45.568975], + [9.266645, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.573472], + [9.266645, 45.577968], + [9.271142, 45.577968], + [9.271142, 45.573472], + [9.266645, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.577968], + [9.266645, 45.582465], + [9.271142, 45.582465], + [9.271142, 45.577968], + [9.266645, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.582465], + [9.266645, 45.586962], + [9.271142, 45.586962], + [9.271142, 45.582465], + [9.266645, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.586962], + [9.266645, 45.591458], + [9.271142, 45.591458], + [9.271142, 45.586962], + [9.266645, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.591458], + [9.266645, 45.595955], + [9.271142, 45.595955], + [9.271142, 45.591458], + [9.266645, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.595955], + [9.266645, 45.600451], + [9.271142, 45.600451], + [9.271142, 45.595955], + [9.266645, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.600451], + [9.266645, 45.604948], + [9.271142, 45.604948], + [9.271142, 45.600451], + [9.266645, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.604948], + [9.266645, 45.609445], + [9.271142, 45.609445], + [9.271142, 45.604948], + [9.266645, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.609445], + [9.266645, 45.613941], + [9.271142, 45.613941], + [9.271142, 45.609445], + [9.266645, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.613941], + [9.266645, 45.618438], + [9.271142, 45.618438], + [9.271142, 45.613941], + [9.266645, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.618438], + [9.266645, 45.622934], + [9.271142, 45.622934], + [9.271142, 45.618438], + [9.266645, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.622934], + [9.266645, 45.627431], + [9.271142, 45.627431], + [9.271142, 45.622934], + [9.266645, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.627431], + [9.266645, 45.631928], + [9.271142, 45.631928], + [9.271142, 45.627431], + [9.266645, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.266645, 45.631928], + [9.266645, 45.636424], + [9.271142, 45.636424], + [9.271142, 45.631928], + [9.266645, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.339648], + [9.271142, 45.344145], + [9.275638, 45.344145], + [9.275638, 45.339648], + [9.271142, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.344145], + [9.271142, 45.348642], + [9.275638, 45.348642], + [9.275638, 45.344145], + [9.271142, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.348642], + [9.271142, 45.353138], + [9.275638, 45.353138], + [9.275638, 45.348642], + [9.271142, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.353138], + [9.271142, 45.357635], + [9.275638, 45.357635], + [9.275638, 45.353138], + [9.271142, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.357635], + [9.271142, 45.362131], + [9.275638, 45.362131], + [9.275638, 45.357635], + [9.271142, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.362131], + [9.271142, 45.366628], + [9.275638, 45.366628], + [9.275638, 45.362131], + [9.271142, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.366628], + [9.271142, 45.371125], + [9.275638, 45.371125], + [9.275638, 45.366628], + [9.271142, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.371125], + [9.271142, 45.375621], + [9.275638, 45.375621], + [9.275638, 45.371125], + [9.271142, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.375621], + [9.271142, 45.380118], + [9.275638, 45.380118], + [9.275638, 45.375621], + [9.271142, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.380118], + [9.271142, 45.384614], + [9.275638, 45.384614], + [9.275638, 45.380118], + [9.271142, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.384614], + [9.271142, 45.389111], + [9.275638, 45.389111], + [9.275638, 45.384614], + [9.271142, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.389111], + [9.271142, 45.393608], + [9.275638, 45.393608], + [9.275638, 45.389111], + [9.271142, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.393608], + [9.271142, 45.398104], + [9.275638, 45.398104], + [9.275638, 45.393608], + [9.271142, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.398104], + [9.271142, 45.402601], + [9.275638, 45.402601], + [9.275638, 45.398104], + [9.271142, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.402601], + [9.271142, 45.407097], + [9.275638, 45.407097], + [9.275638, 45.402601], + [9.271142, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.407097], + [9.271142, 45.411594], + [9.275638, 45.411594], + [9.275638, 45.407097], + [9.271142, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.411594], + [9.271142, 45.416091], + [9.275638, 45.416091], + [9.275638, 45.411594], + [9.271142, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.416091], + [9.271142, 45.420587], + [9.275638, 45.420587], + [9.275638, 45.416091], + [9.271142, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.420587], + [9.271142, 45.425084], + [9.275638, 45.425084], + [9.275638, 45.420587], + [9.271142, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.425084], + [9.271142, 45.42958], + [9.275638, 45.42958], + [9.275638, 45.425084], + [9.271142, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.42958], + [9.271142, 45.434077], + [9.275638, 45.434077], + [9.275638, 45.42958], + [9.271142, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.434077], + [9.271142, 45.438574], + [9.275638, 45.438574], + [9.275638, 45.434077], + [9.271142, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.438574], + [9.271142, 45.44307], + [9.275638, 45.44307], + [9.275638, 45.438574], + [9.271142, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.44307], + [9.271142, 45.447567], + [9.275638, 45.447567], + [9.275638, 45.44307], + [9.271142, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.447567], + [9.271142, 45.452063], + [9.275638, 45.452063], + [9.275638, 45.447567], + [9.271142, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.452063], + [9.271142, 45.45656], + [9.275638, 45.45656], + [9.275638, 45.452063], + [9.271142, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.45656], + [9.271142, 45.461057], + [9.275638, 45.461057], + [9.275638, 45.45656], + [9.271142, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.461057], + [9.271142, 45.465553], + [9.275638, 45.465553], + [9.275638, 45.461057], + [9.271142, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.465553], + [9.271142, 45.47005], + [9.275638, 45.47005], + [9.275638, 45.465553], + [9.271142, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.47005], + [9.271142, 45.474547], + [9.275638, 45.474547], + [9.275638, 45.47005], + [9.271142, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.474547], + [9.271142, 45.479043], + [9.275638, 45.479043], + [9.275638, 45.474547], + [9.271142, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.479043], + [9.271142, 45.48354], + [9.275638, 45.48354], + [9.275638, 45.479043], + [9.271142, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.48354], + [9.271142, 45.488036], + [9.275638, 45.488036], + [9.275638, 45.48354], + [9.271142, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.488036], + [9.271142, 45.492533], + [9.275638, 45.492533], + [9.275638, 45.488036], + [9.271142, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.492533], + [9.271142, 45.49703], + [9.275638, 45.49703], + [9.275638, 45.492533], + [9.271142, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.49703], + [9.271142, 45.501526], + [9.275638, 45.501526], + [9.275638, 45.49703], + [9.271142, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.501526], + [9.271142, 45.506023], + [9.275638, 45.506023], + [9.275638, 45.501526], + [9.271142, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.506023], + [9.271142, 45.510519], + [9.275638, 45.510519], + [9.275638, 45.506023], + [9.271142, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.510519], + [9.271142, 45.515016], + [9.275638, 45.515016], + [9.275638, 45.510519], + [9.271142, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.515016], + [9.271142, 45.519513], + [9.275638, 45.519513], + [9.275638, 45.515016], + [9.271142, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.519513], + [9.271142, 45.524009], + [9.275638, 45.524009], + [9.275638, 45.519513], + [9.271142, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.524009], + [9.271142, 45.528506], + [9.275638, 45.528506], + [9.275638, 45.524009], + [9.271142, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.528506], + [9.271142, 45.533002], + [9.275638, 45.533002], + [9.275638, 45.528506], + [9.271142, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.533002], + [9.271142, 45.537499], + [9.275638, 45.537499], + [9.275638, 45.533002], + [9.271142, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.537499], + [9.271142, 45.541996], + [9.275638, 45.541996], + [9.275638, 45.537499], + [9.271142, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.541996], + [9.271142, 45.546492], + [9.275638, 45.546492], + [9.275638, 45.541996], + [9.271142, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.546492], + [9.271142, 45.550989], + [9.275638, 45.550989], + [9.275638, 45.546492], + [9.271142, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.550989], + [9.271142, 45.555485], + [9.275638, 45.555485], + [9.275638, 45.550989], + [9.271142, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.555485], + [9.271142, 45.559982], + [9.275638, 45.559982], + [9.275638, 45.555485], + [9.271142, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.559982], + [9.271142, 45.564479], + [9.275638, 45.564479], + [9.275638, 45.559982], + [9.271142, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.564479], + [9.271142, 45.568975], + [9.275638, 45.568975], + [9.275638, 45.564479], + [9.271142, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.568975], + [9.271142, 45.573472], + [9.275638, 45.573472], + [9.275638, 45.568975], + [9.271142, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.573472], + [9.271142, 45.577968], + [9.275638, 45.577968], + [9.275638, 45.573472], + [9.271142, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.577968], + [9.271142, 45.582465], + [9.275638, 45.582465], + [9.275638, 45.577968], + [9.271142, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.582465], + [9.271142, 45.586962], + [9.275638, 45.586962], + [9.275638, 45.582465], + [9.271142, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.586962], + [9.271142, 45.591458], + [9.275638, 45.591458], + [9.275638, 45.586962], + [9.271142, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.591458], + [9.271142, 45.595955], + [9.275638, 45.595955], + [9.275638, 45.591458], + [9.271142, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.595955], + [9.271142, 45.600451], + [9.275638, 45.600451], + [9.275638, 45.595955], + [9.271142, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.600451], + [9.271142, 45.604948], + [9.275638, 45.604948], + [9.275638, 45.600451], + [9.271142, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.604948], + [9.271142, 45.609445], + [9.275638, 45.609445], + [9.275638, 45.604948], + [9.271142, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.609445], + [9.271142, 45.613941], + [9.275638, 45.613941], + [9.275638, 45.609445], + [9.271142, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.613941], + [9.271142, 45.618438], + [9.275638, 45.618438], + [9.275638, 45.613941], + [9.271142, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.618438], + [9.271142, 45.622934], + [9.275638, 45.622934], + [9.275638, 45.618438], + [9.271142, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.622934], + [9.271142, 45.627431], + [9.275638, 45.627431], + [9.275638, 45.622934], + [9.271142, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.627431], + [9.271142, 45.631928], + [9.275638, 45.631928], + [9.275638, 45.627431], + [9.271142, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.271142, 45.631928], + [9.271142, 45.636424], + [9.275638, 45.636424], + [9.275638, 45.631928], + [9.271142, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.339648], + [9.275638, 45.344145], + [9.280135, 45.344145], + [9.280135, 45.339648], + [9.275638, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.344145], + [9.275638, 45.348642], + [9.280135, 45.348642], + [9.280135, 45.344145], + [9.275638, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.348642], + [9.275638, 45.353138], + [9.280135, 45.353138], + [9.280135, 45.348642], + [9.275638, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.353138], + [9.275638, 45.357635], + [9.280135, 45.357635], + [9.280135, 45.353138], + [9.275638, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.357635], + [9.275638, 45.362131], + [9.280135, 45.362131], + [9.280135, 45.357635], + [9.275638, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.362131], + [9.275638, 45.366628], + [9.280135, 45.366628], + [9.280135, 45.362131], + [9.275638, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.366628], + [9.275638, 45.371125], + [9.280135, 45.371125], + [9.280135, 45.366628], + [9.275638, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.371125], + [9.275638, 45.375621], + [9.280135, 45.375621], + [9.280135, 45.371125], + [9.275638, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.375621], + [9.275638, 45.380118], + [9.280135, 45.380118], + [9.280135, 45.375621], + [9.275638, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.380118], + [9.275638, 45.384614], + [9.280135, 45.384614], + [9.280135, 45.380118], + [9.275638, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.384614], + [9.275638, 45.389111], + [9.280135, 45.389111], + [9.280135, 45.384614], + [9.275638, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.389111], + [9.275638, 45.393608], + [9.280135, 45.393608], + [9.280135, 45.389111], + [9.275638, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.393608], + [9.275638, 45.398104], + [9.280135, 45.398104], + [9.280135, 45.393608], + [9.275638, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.398104], + [9.275638, 45.402601], + [9.280135, 45.402601], + [9.280135, 45.398104], + [9.275638, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.402601], + [9.275638, 45.407097], + [9.280135, 45.407097], + [9.280135, 45.402601], + [9.275638, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.407097], + [9.275638, 45.411594], + [9.280135, 45.411594], + [9.280135, 45.407097], + [9.275638, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.411594], + [9.275638, 45.416091], + [9.280135, 45.416091], + [9.280135, 45.411594], + [9.275638, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.416091], + [9.275638, 45.420587], + [9.280135, 45.420587], + [9.280135, 45.416091], + [9.275638, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.420587], + [9.275638, 45.425084], + [9.280135, 45.425084], + [9.280135, 45.420587], + [9.275638, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.425084], + [9.275638, 45.42958], + [9.280135, 45.42958], + [9.280135, 45.425084], + [9.275638, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.42958], + [9.275638, 45.434077], + [9.280135, 45.434077], + [9.280135, 45.42958], + [9.275638, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.434077], + [9.275638, 45.438574], + [9.280135, 45.438574], + [9.280135, 45.434077], + [9.275638, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.438574], + [9.275638, 45.44307], + [9.280135, 45.44307], + [9.280135, 45.438574], + [9.275638, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.44307], + [9.275638, 45.447567], + [9.280135, 45.447567], + [9.280135, 45.44307], + [9.275638, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.447567], + [9.275638, 45.452063], + [9.280135, 45.452063], + [9.280135, 45.447567], + [9.275638, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.452063], + [9.275638, 45.45656], + [9.280135, 45.45656], + [9.280135, 45.452063], + [9.275638, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.45656], + [9.275638, 45.461057], + [9.280135, 45.461057], + [9.280135, 45.45656], + [9.275638, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.461057], + [9.275638, 45.465553], + [9.280135, 45.465553], + [9.280135, 45.461057], + [9.275638, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.465553], + [9.275638, 45.47005], + [9.280135, 45.47005], + [9.280135, 45.465553], + [9.275638, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.47005], + [9.275638, 45.474547], + [9.280135, 45.474547], + [9.280135, 45.47005], + [9.275638, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.474547], + [9.275638, 45.479043], + [9.280135, 45.479043], + [9.280135, 45.474547], + [9.275638, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.479043], + [9.275638, 45.48354], + [9.280135, 45.48354], + [9.280135, 45.479043], + [9.275638, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.48354], + [9.275638, 45.488036], + [9.280135, 45.488036], + [9.280135, 45.48354], + [9.275638, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.488036], + [9.275638, 45.492533], + [9.280135, 45.492533], + [9.280135, 45.488036], + [9.275638, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.492533], + [9.275638, 45.49703], + [9.280135, 45.49703], + [9.280135, 45.492533], + [9.275638, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.49703], + [9.275638, 45.501526], + [9.280135, 45.501526], + [9.280135, 45.49703], + [9.275638, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.501526], + [9.275638, 45.506023], + [9.280135, 45.506023], + [9.280135, 45.501526], + [9.275638, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.506023], + [9.275638, 45.510519], + [9.280135, 45.510519], + [9.280135, 45.506023], + [9.275638, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.510519], + [9.275638, 45.515016], + [9.280135, 45.515016], + [9.280135, 45.510519], + [9.275638, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.515016], + [9.275638, 45.519513], + [9.280135, 45.519513], + [9.280135, 45.515016], + [9.275638, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.519513], + [9.275638, 45.524009], + [9.280135, 45.524009], + [9.280135, 45.519513], + [9.275638, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.524009], + [9.275638, 45.528506], + [9.280135, 45.528506], + [9.280135, 45.524009], + [9.275638, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.528506], + [9.275638, 45.533002], + [9.280135, 45.533002], + [9.280135, 45.528506], + [9.275638, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.533002], + [9.275638, 45.537499], + [9.280135, 45.537499], + [9.280135, 45.533002], + [9.275638, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.537499], + [9.275638, 45.541996], + [9.280135, 45.541996], + [9.280135, 45.537499], + [9.275638, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.541996], + [9.275638, 45.546492], + [9.280135, 45.546492], + [9.280135, 45.541996], + [9.275638, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.546492], + [9.275638, 45.550989], + [9.280135, 45.550989], + [9.280135, 45.546492], + [9.275638, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.550989], + [9.275638, 45.555485], + [9.280135, 45.555485], + [9.280135, 45.550989], + [9.275638, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.555485], + [9.275638, 45.559982], + [9.280135, 45.559982], + [9.280135, 45.555485], + [9.275638, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.559982], + [9.275638, 45.564479], + [9.280135, 45.564479], + [9.280135, 45.559982], + [9.275638, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.564479], + [9.275638, 45.568975], + [9.280135, 45.568975], + [9.280135, 45.564479], + [9.275638, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.568975], + [9.275638, 45.573472], + [9.280135, 45.573472], + [9.280135, 45.568975], + [9.275638, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.573472], + [9.275638, 45.577968], + [9.280135, 45.577968], + [9.280135, 45.573472], + [9.275638, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.577968], + [9.275638, 45.582465], + [9.280135, 45.582465], + [9.280135, 45.577968], + [9.275638, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 30, + "stroke": "#38a0ff", + "fill": "#38a0ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.582465], + [9.275638, 45.586962], + [9.280135, 45.586962], + [9.280135, 45.582465], + [9.275638, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.586962], + [9.275638, 45.591458], + [9.280135, 45.591458], + [9.280135, 45.586962], + [9.275638, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.591458], + [9.275638, 45.595955], + [9.280135, 45.595955], + [9.280135, 45.591458], + [9.275638, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.595955], + [9.275638, 45.600451], + [9.280135, 45.600451], + [9.280135, 45.595955], + [9.275638, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.600451], + [9.275638, 45.604948], + [9.280135, 45.604948], + [9.280135, 45.600451], + [9.275638, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.604948], + [9.275638, 45.609445], + [9.280135, 45.609445], + [9.280135, 45.604948], + [9.275638, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.609445], + [9.275638, 45.613941], + [9.280135, 45.613941], + [9.280135, 45.609445], + [9.275638, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.613941], + [9.275638, 45.618438], + [9.280135, 45.618438], + [9.280135, 45.613941], + [9.275638, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.618438], + [9.275638, 45.622934], + [9.280135, 45.622934], + [9.280135, 45.618438], + [9.275638, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.622934], + [9.275638, 45.627431], + [9.280135, 45.627431], + [9.280135, 45.622934], + [9.275638, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.627431], + [9.275638, 45.631928], + [9.280135, 45.631928], + [9.280135, 45.627431], + [9.275638, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.275638, 45.631928], + [9.275638, 45.636424], + [9.280135, 45.636424], + [9.280135, 45.631928], + [9.275638, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.339648], + [9.280135, 45.344145], + [9.284631, 45.344145], + [9.284631, 45.339648], + [9.280135, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.344145], + [9.280135, 45.348642], + [9.284631, 45.348642], + [9.284631, 45.344145], + [9.280135, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.348642], + [9.280135, 45.353138], + [9.284631, 45.353138], + [9.284631, 45.348642], + [9.280135, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.353138], + [9.280135, 45.357635], + [9.284631, 45.357635], + [9.284631, 45.353138], + [9.280135, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.357635], + [9.280135, 45.362131], + [9.284631, 45.362131], + [9.284631, 45.357635], + [9.280135, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.362131], + [9.280135, 45.366628], + [9.284631, 45.366628], + [9.284631, 45.362131], + [9.280135, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.366628], + [9.280135, 45.371125], + [9.284631, 45.371125], + [9.284631, 45.366628], + [9.280135, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.371125], + [9.280135, 45.375621], + [9.284631, 45.375621], + [9.284631, 45.371125], + [9.280135, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.375621], + [9.280135, 45.380118], + [9.284631, 45.380118], + [9.284631, 45.375621], + [9.280135, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.380118], + [9.280135, 45.384614], + [9.284631, 45.384614], + [9.284631, 45.380118], + [9.280135, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.384614], + [9.280135, 45.389111], + [9.284631, 45.389111], + [9.284631, 45.384614], + [9.280135, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.389111], + [9.280135, 45.393608], + [9.284631, 45.393608], + [9.284631, 45.389111], + [9.280135, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.393608], + [9.280135, 45.398104], + [9.284631, 45.398104], + [9.284631, 45.393608], + [9.280135, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.398104], + [9.280135, 45.402601], + [9.284631, 45.402601], + [9.284631, 45.398104], + [9.280135, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.402601], + [9.280135, 45.407097], + [9.284631, 45.407097], + [9.284631, 45.402601], + [9.280135, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.407097], + [9.280135, 45.411594], + [9.284631, 45.411594], + [9.284631, 45.407097], + [9.280135, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.411594], + [9.280135, 45.416091], + [9.284631, 45.416091], + [9.284631, 45.411594], + [9.280135, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.416091], + [9.280135, 45.420587], + [9.284631, 45.420587], + [9.284631, 45.416091], + [9.280135, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.420587], + [9.280135, 45.425084], + [9.284631, 45.425084], + [9.284631, 45.420587], + [9.280135, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.425084], + [9.280135, 45.42958], + [9.284631, 45.42958], + [9.284631, 45.425084], + [9.280135, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.42958], + [9.280135, 45.434077], + [9.284631, 45.434077], + [9.284631, 45.42958], + [9.280135, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.434077], + [9.280135, 45.438574], + [9.284631, 45.438574], + [9.284631, 45.434077], + [9.280135, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.438574], + [9.280135, 45.44307], + [9.284631, 45.44307], + [9.284631, 45.438574], + [9.280135, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.44307], + [9.280135, 45.447567], + [9.284631, 45.447567], + [9.284631, 45.44307], + [9.280135, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.447567], + [9.280135, 45.452063], + [9.284631, 45.452063], + [9.284631, 45.447567], + [9.280135, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.452063], + [9.280135, 45.45656], + [9.284631, 45.45656], + [9.284631, 45.452063], + [9.280135, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.45656], + [9.280135, 45.461057], + [9.284631, 45.461057], + [9.284631, 45.45656], + [9.280135, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.461057], + [9.280135, 45.465553], + [9.284631, 45.465553], + [9.284631, 45.461057], + [9.280135, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.465553], + [9.280135, 45.47005], + [9.284631, 45.47005], + [9.284631, 45.465553], + [9.280135, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.47005], + [9.280135, 45.474547], + [9.284631, 45.474547], + [9.284631, 45.47005], + [9.280135, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.474547], + [9.280135, 45.479043], + [9.284631, 45.479043], + [9.284631, 45.474547], + [9.280135, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.479043], + [9.280135, 45.48354], + [9.284631, 45.48354], + [9.284631, 45.479043], + [9.280135, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.48354], + [9.280135, 45.488036], + [9.284631, 45.488036], + [9.284631, 45.48354], + [9.280135, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.488036], + [9.280135, 45.492533], + [9.284631, 45.492533], + [9.284631, 45.488036], + [9.280135, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.492533], + [9.280135, 45.49703], + [9.284631, 45.49703], + [9.284631, 45.492533], + [9.280135, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.49703], + [9.280135, 45.501526], + [9.284631, 45.501526], + [9.284631, 45.49703], + [9.280135, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.501526], + [9.280135, 45.506023], + [9.284631, 45.506023], + [9.284631, 45.501526], + [9.280135, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.506023], + [9.280135, 45.510519], + [9.284631, 45.510519], + [9.284631, 45.506023], + [9.280135, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.510519], + [9.280135, 45.515016], + [9.284631, 45.515016], + [9.284631, 45.510519], + [9.280135, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.515016], + [9.280135, 45.519513], + [9.284631, 45.519513], + [9.284631, 45.515016], + [9.280135, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.519513], + [9.280135, 45.524009], + [9.284631, 45.524009], + [9.284631, 45.519513], + [9.280135, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.524009], + [9.280135, 45.528506], + [9.284631, 45.528506], + [9.284631, 45.524009], + [9.280135, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.528506], + [9.280135, 45.533002], + [9.284631, 45.533002], + [9.284631, 45.528506], + [9.280135, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.533002], + [9.280135, 45.537499], + [9.284631, 45.537499], + [9.284631, 45.533002], + [9.280135, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.537499], + [9.280135, 45.541996], + [9.284631, 45.541996], + [9.284631, 45.537499], + [9.280135, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.541996], + [9.280135, 45.546492], + [9.284631, 45.546492], + [9.284631, 45.541996], + [9.280135, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.546492], + [9.280135, 45.550989], + [9.284631, 45.550989], + [9.284631, 45.546492], + [9.280135, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.550989], + [9.280135, 45.555485], + [9.284631, 45.555485], + [9.284631, 45.550989], + [9.280135, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.555485], + [9.280135, 45.559982], + [9.284631, 45.559982], + [9.284631, 45.555485], + [9.280135, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.559982], + [9.280135, 45.564479], + [9.284631, 45.564479], + [9.284631, 45.559982], + [9.280135, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.564479], + [9.280135, 45.568975], + [9.284631, 45.568975], + [9.284631, 45.564479], + [9.280135, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.568975], + [9.280135, 45.573472], + [9.284631, 45.573472], + [9.284631, 45.568975], + [9.280135, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.573472], + [9.280135, 45.577968], + [9.284631, 45.577968], + [9.284631, 45.573472], + [9.280135, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.577968], + [9.280135, 45.582465], + [9.284631, 45.582465], + [9.284631, 45.577968], + [9.280135, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.582465], + [9.280135, 45.586962], + [9.284631, 45.586962], + [9.284631, 45.582465], + [9.280135, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.586962], + [9.280135, 45.591458], + [9.284631, 45.591458], + [9.284631, 45.586962], + [9.280135, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.591458], + [9.280135, 45.595955], + [9.284631, 45.595955], + [9.284631, 45.591458], + [9.280135, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.595955], + [9.280135, 45.600451], + [9.284631, 45.600451], + [9.284631, 45.595955], + [9.280135, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.600451], + [9.280135, 45.604948], + [9.284631, 45.604948], + [9.284631, 45.600451], + [9.280135, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.604948], + [9.280135, 45.609445], + [9.284631, 45.609445], + [9.284631, 45.604948], + [9.280135, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.609445], + [9.280135, 45.613941], + [9.284631, 45.613941], + [9.284631, 45.609445], + [9.280135, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.613941], + [9.280135, 45.618438], + [9.284631, 45.618438], + [9.284631, 45.613941], + [9.280135, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.618438], + [9.280135, 45.622934], + [9.284631, 45.622934], + [9.284631, 45.618438], + [9.280135, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.622934], + [9.280135, 45.627431], + [9.284631, 45.627431], + [9.284631, 45.622934], + [9.280135, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.627431], + [9.280135, 45.631928], + [9.284631, 45.631928], + [9.284631, 45.627431], + [9.280135, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.280135, 45.631928], + [9.280135, 45.636424], + [9.284631, 45.636424], + [9.284631, 45.631928], + [9.280135, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.339648], + [9.284631, 45.344145], + [9.289128, 45.344145], + [9.289128, 45.339648], + [9.284631, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.344145], + [9.284631, 45.348642], + [9.289128, 45.348642], + [9.289128, 45.344145], + [9.284631, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.348642], + [9.284631, 45.353138], + [9.289128, 45.353138], + [9.289128, 45.348642], + [9.284631, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.353138], + [9.284631, 45.357635], + [9.289128, 45.357635], + [9.289128, 45.353138], + [9.284631, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.357635], + [9.284631, 45.362131], + [9.289128, 45.362131], + [9.289128, 45.357635], + [9.284631, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.362131], + [9.284631, 45.366628], + [9.289128, 45.366628], + [9.289128, 45.362131], + [9.284631, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.366628], + [9.284631, 45.371125], + [9.289128, 45.371125], + [9.289128, 45.366628], + [9.284631, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.371125], + [9.284631, 45.375621], + [9.289128, 45.375621], + [9.289128, 45.371125], + [9.284631, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.375621], + [9.284631, 45.380118], + [9.289128, 45.380118], + [9.289128, 45.375621], + [9.284631, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.380118], + [9.284631, 45.384614], + [9.289128, 45.384614], + [9.289128, 45.380118], + [9.284631, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.384614], + [9.284631, 45.389111], + [9.289128, 45.389111], + [9.289128, 45.384614], + [9.284631, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.389111], + [9.284631, 45.393608], + [9.289128, 45.393608], + [9.289128, 45.389111], + [9.284631, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.393608], + [9.284631, 45.398104], + [9.289128, 45.398104], + [9.289128, 45.393608], + [9.284631, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.398104], + [9.284631, 45.402601], + [9.289128, 45.402601], + [9.289128, 45.398104], + [9.284631, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.402601], + [9.284631, 45.407097], + [9.289128, 45.407097], + [9.289128, 45.402601], + [9.284631, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.407097], + [9.284631, 45.411594], + [9.289128, 45.411594], + [9.289128, 45.407097], + [9.284631, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.411594], + [9.284631, 45.416091], + [9.289128, 45.416091], + [9.289128, 45.411594], + [9.284631, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.416091], + [9.284631, 45.420587], + [9.289128, 45.420587], + [9.289128, 45.416091], + [9.284631, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.420587], + [9.284631, 45.425084], + [9.289128, 45.425084], + [9.289128, 45.420587], + [9.284631, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.425084], + [9.284631, 45.42958], + [9.289128, 45.42958], + [9.289128, 45.425084], + [9.284631, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.42958], + [9.284631, 45.434077], + [9.289128, 45.434077], + [9.289128, 45.42958], + [9.284631, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.434077], + [9.284631, 45.438574], + [9.289128, 45.438574], + [9.289128, 45.434077], + [9.284631, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.438574], + [9.284631, 45.44307], + [9.289128, 45.44307], + [9.289128, 45.438574], + [9.284631, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.44307], + [9.284631, 45.447567], + [9.289128, 45.447567], + [9.289128, 45.44307], + [9.284631, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.447567], + [9.284631, 45.452063], + [9.289128, 45.452063], + [9.289128, 45.447567], + [9.284631, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.452063], + [9.284631, 45.45656], + [9.289128, 45.45656], + [9.289128, 45.452063], + [9.284631, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.45656], + [9.284631, 45.461057], + [9.289128, 45.461057], + [9.289128, 45.45656], + [9.284631, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.461057], + [9.284631, 45.465553], + [9.289128, 45.465553], + [9.289128, 45.461057], + [9.284631, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.465553], + [9.284631, 45.47005], + [9.289128, 45.47005], + [9.289128, 45.465553], + [9.284631, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.47005], + [9.284631, 45.474547], + [9.289128, 45.474547], + [9.289128, 45.47005], + [9.284631, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.474547], + [9.284631, 45.479043], + [9.289128, 45.479043], + [9.289128, 45.474547], + [9.284631, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.479043], + [9.284631, 45.48354], + [9.289128, 45.48354], + [9.289128, 45.479043], + [9.284631, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.48354], + [9.284631, 45.488036], + [9.289128, 45.488036], + [9.289128, 45.48354], + [9.284631, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.488036], + [9.284631, 45.492533], + [9.289128, 45.492533], + [9.289128, 45.488036], + [9.284631, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.492533], + [9.284631, 45.49703], + [9.289128, 45.49703], + [9.289128, 45.492533], + [9.284631, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.49703], + [9.284631, 45.501526], + [9.289128, 45.501526], + [9.289128, 45.49703], + [9.284631, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.501526], + [9.284631, 45.506023], + [9.289128, 45.506023], + [9.289128, 45.501526], + [9.284631, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.506023], + [9.284631, 45.510519], + [9.289128, 45.510519], + [9.289128, 45.506023], + [9.284631, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.510519], + [9.284631, 45.515016], + [9.289128, 45.515016], + [9.289128, 45.510519], + [9.284631, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.515016], + [9.284631, 45.519513], + [9.289128, 45.519513], + [9.289128, 45.515016], + [9.284631, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.519513], + [9.284631, 45.524009], + [9.289128, 45.524009], + [9.289128, 45.519513], + [9.284631, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.524009], + [9.284631, 45.528506], + [9.289128, 45.528506], + [9.289128, 45.524009], + [9.284631, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.528506], + [9.284631, 45.533002], + [9.289128, 45.533002], + [9.289128, 45.528506], + [9.284631, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.533002], + [9.284631, 45.537499], + [9.289128, 45.537499], + [9.289128, 45.533002], + [9.284631, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.537499], + [9.284631, 45.541996], + [9.289128, 45.541996], + [9.289128, 45.537499], + [9.284631, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.541996], + [9.284631, 45.546492], + [9.289128, 45.546492], + [9.289128, 45.541996], + [9.284631, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.546492], + [9.284631, 45.550989], + [9.289128, 45.550989], + [9.289128, 45.546492], + [9.284631, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.550989], + [9.284631, 45.555485], + [9.289128, 45.555485], + [9.289128, 45.550989], + [9.284631, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.555485], + [9.284631, 45.559982], + [9.289128, 45.559982], + [9.289128, 45.555485], + [9.284631, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.559982], + [9.284631, 45.564479], + [9.289128, 45.564479], + [9.289128, 45.559982], + [9.284631, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.564479], + [9.284631, 45.568975], + [9.289128, 45.568975], + [9.289128, 45.564479], + [9.284631, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.568975], + [9.284631, 45.573472], + [9.289128, 45.573472], + [9.289128, 45.568975], + [9.284631, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.573472], + [9.284631, 45.577968], + [9.289128, 45.577968], + [9.289128, 45.573472], + [9.284631, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.577968], + [9.284631, 45.582465], + [9.289128, 45.582465], + [9.289128, 45.577968], + [9.284631, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.582465], + [9.284631, 45.586962], + [9.289128, 45.586962], + [9.289128, 45.582465], + [9.284631, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.586962], + [9.284631, 45.591458], + [9.289128, 45.591458], + [9.289128, 45.586962], + [9.284631, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.591458], + [9.284631, 45.595955], + [9.289128, 45.595955], + [9.289128, 45.591458], + [9.284631, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.595955], + [9.284631, 45.600451], + [9.289128, 45.600451], + [9.289128, 45.595955], + [9.284631, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.600451], + [9.284631, 45.604948], + [9.289128, 45.604948], + [9.289128, 45.600451], + [9.284631, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.604948], + [9.284631, 45.609445], + [9.289128, 45.609445], + [9.289128, 45.604948], + [9.284631, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.609445], + [9.284631, 45.613941], + [9.289128, 45.613941], + [9.289128, 45.609445], + [9.284631, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.613941], + [9.284631, 45.618438], + [9.289128, 45.618438], + [9.289128, 45.613941], + [9.284631, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.618438], + [9.284631, 45.622934], + [9.289128, 45.622934], + [9.289128, 45.618438], + [9.284631, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.622934], + [9.284631, 45.627431], + [9.289128, 45.627431], + [9.289128, 45.622934], + [9.284631, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.627431], + [9.284631, 45.631928], + [9.289128, 45.631928], + [9.289128, 45.627431], + [9.284631, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.284631, 45.631928], + [9.284631, 45.636424], + [9.289128, 45.636424], + [9.289128, 45.631928], + [9.284631, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.339648], + [9.289128, 45.344145], + [9.293625, 45.344145], + [9.293625, 45.339648], + [9.289128, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.344145], + [9.289128, 45.348642], + [9.293625, 45.348642], + [9.293625, 45.344145], + [9.289128, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.348642], + [9.289128, 45.353138], + [9.293625, 45.353138], + [9.293625, 45.348642], + [9.289128, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.353138], + [9.289128, 45.357635], + [9.293625, 45.357635], + [9.293625, 45.353138], + [9.289128, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.357635], + [9.289128, 45.362131], + [9.293625, 45.362131], + [9.293625, 45.357635], + [9.289128, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.362131], + [9.289128, 45.366628], + [9.293625, 45.366628], + [9.293625, 45.362131], + [9.289128, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.366628], + [9.289128, 45.371125], + [9.293625, 45.371125], + [9.293625, 45.366628], + [9.289128, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.371125], + [9.289128, 45.375621], + [9.293625, 45.375621], + [9.293625, 45.371125], + [9.289128, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.375621], + [9.289128, 45.380118], + [9.293625, 45.380118], + [9.293625, 45.375621], + [9.289128, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.380118], + [9.289128, 45.384614], + [9.293625, 45.384614], + [9.293625, 45.380118], + [9.289128, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.384614], + [9.289128, 45.389111], + [9.293625, 45.389111], + [9.293625, 45.384614], + [9.289128, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.389111], + [9.289128, 45.393608], + [9.293625, 45.393608], + [9.293625, 45.389111], + [9.289128, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.393608], + [9.289128, 45.398104], + [9.293625, 45.398104], + [9.293625, 45.393608], + [9.289128, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.398104], + [9.289128, 45.402601], + [9.293625, 45.402601], + [9.293625, 45.398104], + [9.289128, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.402601], + [9.289128, 45.407097], + [9.293625, 45.407097], + [9.293625, 45.402601], + [9.289128, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.407097], + [9.289128, 45.411594], + [9.293625, 45.411594], + [9.293625, 45.407097], + [9.289128, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.411594], + [9.289128, 45.416091], + [9.293625, 45.416091], + [9.293625, 45.411594], + [9.289128, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.416091], + [9.289128, 45.420587], + [9.293625, 45.420587], + [9.293625, 45.416091], + [9.289128, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.420587], + [9.289128, 45.425084], + [9.293625, 45.425084], + [9.293625, 45.420587], + [9.289128, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.425084], + [9.289128, 45.42958], + [9.293625, 45.42958], + [9.293625, 45.425084], + [9.289128, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.42958], + [9.289128, 45.434077], + [9.293625, 45.434077], + [9.293625, 45.42958], + [9.289128, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.434077], + [9.289128, 45.438574], + [9.293625, 45.438574], + [9.293625, 45.434077], + [9.289128, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.438574], + [9.289128, 45.44307], + [9.293625, 45.44307], + [9.293625, 45.438574], + [9.289128, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.44307], + [9.289128, 45.447567], + [9.293625, 45.447567], + [9.293625, 45.44307], + [9.289128, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.447567], + [9.289128, 45.452063], + [9.293625, 45.452063], + [9.293625, 45.447567], + [9.289128, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.452063], + [9.289128, 45.45656], + [9.293625, 45.45656], + [9.293625, 45.452063], + [9.289128, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.45656], + [9.289128, 45.461057], + [9.293625, 45.461057], + [9.293625, 45.45656], + [9.289128, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.461057], + [9.289128, 45.465553], + [9.293625, 45.465553], + [9.293625, 45.461057], + [9.289128, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.465553], + [9.289128, 45.47005], + [9.293625, 45.47005], + [9.293625, 45.465553], + [9.289128, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.47005], + [9.289128, 45.474547], + [9.293625, 45.474547], + [9.293625, 45.47005], + [9.289128, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.474547], + [9.289128, 45.479043], + [9.293625, 45.479043], + [9.293625, 45.474547], + [9.289128, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.479043], + [9.289128, 45.48354], + [9.293625, 45.48354], + [9.293625, 45.479043], + [9.289128, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.48354], + [9.289128, 45.488036], + [9.293625, 45.488036], + [9.293625, 45.48354], + [9.289128, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.488036], + [9.289128, 45.492533], + [9.293625, 45.492533], + [9.293625, 45.488036], + [9.289128, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.492533], + [9.289128, 45.49703], + [9.293625, 45.49703], + [9.293625, 45.492533], + [9.289128, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.49703], + [9.289128, 45.501526], + [9.293625, 45.501526], + [9.293625, 45.49703], + [9.289128, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.501526], + [9.289128, 45.506023], + [9.293625, 45.506023], + [9.293625, 45.501526], + [9.289128, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.506023], + [9.289128, 45.510519], + [9.293625, 45.510519], + [9.293625, 45.506023], + [9.289128, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.510519], + [9.289128, 45.515016], + [9.293625, 45.515016], + [9.293625, 45.510519], + [9.289128, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.515016], + [9.289128, 45.519513], + [9.293625, 45.519513], + [9.293625, 45.515016], + [9.289128, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.519513], + [9.289128, 45.524009], + [9.293625, 45.524009], + [9.293625, 45.519513], + [9.289128, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.524009], + [9.289128, 45.528506], + [9.293625, 45.528506], + [9.293625, 45.524009], + [9.289128, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.528506], + [9.289128, 45.533002], + [9.293625, 45.533002], + [9.293625, 45.528506], + [9.289128, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.533002], + [9.289128, 45.537499], + [9.293625, 45.537499], + [9.293625, 45.533002], + [9.289128, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.537499], + [9.289128, 45.541996], + [9.293625, 45.541996], + [9.293625, 45.537499], + [9.289128, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.541996], + [9.289128, 45.546492], + [9.293625, 45.546492], + [9.293625, 45.541996], + [9.289128, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.546492], + [9.289128, 45.550989], + [9.293625, 45.550989], + [9.293625, 45.546492], + [9.289128, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.550989], + [9.289128, 45.555485], + [9.293625, 45.555485], + [9.293625, 45.550989], + [9.289128, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.555485], + [9.289128, 45.559982], + [9.293625, 45.559982], + [9.293625, 45.555485], + [9.289128, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.559982], + [9.289128, 45.564479], + [9.293625, 45.564479], + [9.293625, 45.559982], + [9.289128, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.564479], + [9.289128, 45.568975], + [9.293625, 45.568975], + [9.293625, 45.564479], + [9.289128, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.568975], + [9.289128, 45.573472], + [9.293625, 45.573472], + [9.293625, 45.568975], + [9.289128, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.573472], + [9.289128, 45.577968], + [9.293625, 45.577968], + [9.293625, 45.573472], + [9.289128, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.577968], + [9.289128, 45.582465], + [9.293625, 45.582465], + [9.293625, 45.577968], + [9.289128, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.582465], + [9.289128, 45.586962], + [9.293625, 45.586962], + [9.293625, 45.582465], + [9.289128, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.586962], + [9.289128, 45.591458], + [9.293625, 45.591458], + [9.293625, 45.586962], + [9.289128, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.591458], + [9.289128, 45.595955], + [9.293625, 45.595955], + [9.293625, 45.591458], + [9.289128, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.595955], + [9.289128, 45.600451], + [9.293625, 45.600451], + [9.293625, 45.595955], + [9.289128, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.600451], + [9.289128, 45.604948], + [9.293625, 45.604948], + [9.293625, 45.600451], + [9.289128, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.604948], + [9.289128, 45.609445], + [9.293625, 45.609445], + [9.293625, 45.604948], + [9.289128, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.609445], + [9.289128, 45.613941], + [9.293625, 45.613941], + [9.293625, 45.609445], + [9.289128, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.613941], + [9.289128, 45.618438], + [9.293625, 45.618438], + [9.293625, 45.613941], + [9.289128, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.618438], + [9.289128, 45.622934], + [9.293625, 45.622934], + [9.293625, 45.618438], + [9.289128, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.622934], + [9.289128, 45.627431], + [9.293625, 45.627431], + [9.293625, 45.622934], + [9.289128, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.627431], + [9.289128, 45.631928], + [9.293625, 45.631928], + [9.293625, 45.627431], + [9.289128, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.289128, 45.631928], + [9.289128, 45.636424], + [9.293625, 45.636424], + [9.293625, 45.631928], + [9.289128, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.339648], + [9.293625, 45.344145], + [9.298121, 45.344145], + [9.298121, 45.339648], + [9.293625, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.344145], + [9.293625, 45.348642], + [9.298121, 45.348642], + [9.298121, 45.344145], + [9.293625, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.348642], + [9.293625, 45.353138], + [9.298121, 45.353138], + [9.298121, 45.348642], + [9.293625, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.353138], + [9.293625, 45.357635], + [9.298121, 45.357635], + [9.298121, 45.353138], + [9.293625, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.357635], + [9.293625, 45.362131], + [9.298121, 45.362131], + [9.298121, 45.357635], + [9.293625, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.362131], + [9.293625, 45.366628], + [9.298121, 45.366628], + [9.298121, 45.362131], + [9.293625, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.366628], + [9.293625, 45.371125], + [9.298121, 45.371125], + [9.298121, 45.366628], + [9.293625, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.371125], + [9.293625, 45.375621], + [9.298121, 45.375621], + [9.298121, 45.371125], + [9.293625, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.375621], + [9.293625, 45.380118], + [9.298121, 45.380118], + [9.298121, 45.375621], + [9.293625, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.380118], + [9.293625, 45.384614], + [9.298121, 45.384614], + [9.298121, 45.380118], + [9.293625, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.384614], + [9.293625, 45.389111], + [9.298121, 45.389111], + [9.298121, 45.384614], + [9.293625, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.389111], + [9.293625, 45.393608], + [9.298121, 45.393608], + [9.298121, 45.389111], + [9.293625, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.393608], + [9.293625, 45.398104], + [9.298121, 45.398104], + [9.298121, 45.393608], + [9.293625, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.398104], + [9.293625, 45.402601], + [9.298121, 45.402601], + [9.298121, 45.398104], + [9.293625, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.402601], + [9.293625, 45.407097], + [9.298121, 45.407097], + [9.298121, 45.402601], + [9.293625, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.407097], + [9.293625, 45.411594], + [9.298121, 45.411594], + [9.298121, 45.407097], + [9.293625, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.411594], + [9.293625, 45.416091], + [9.298121, 45.416091], + [9.298121, 45.411594], + [9.293625, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.416091], + [9.293625, 45.420587], + [9.298121, 45.420587], + [9.298121, 45.416091], + [9.293625, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.420587], + [9.293625, 45.425084], + [9.298121, 45.425084], + [9.298121, 45.420587], + [9.293625, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.425084], + [9.293625, 45.42958], + [9.298121, 45.42958], + [9.298121, 45.425084], + [9.293625, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.42958], + [9.293625, 45.434077], + [9.298121, 45.434077], + [9.298121, 45.42958], + [9.293625, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.434077], + [9.293625, 45.438574], + [9.298121, 45.438574], + [9.298121, 45.434077], + [9.293625, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.438574], + [9.293625, 45.44307], + [9.298121, 45.44307], + [9.298121, 45.438574], + [9.293625, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.44307], + [9.293625, 45.447567], + [9.298121, 45.447567], + [9.298121, 45.44307], + [9.293625, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.447567], + [9.293625, 45.452063], + [9.298121, 45.452063], + [9.298121, 45.447567], + [9.293625, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.452063], + [9.293625, 45.45656], + [9.298121, 45.45656], + [9.298121, 45.452063], + [9.293625, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.45656], + [9.293625, 45.461057], + [9.298121, 45.461057], + [9.298121, 45.45656], + [9.293625, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.461057], + [9.293625, 45.465553], + [9.298121, 45.465553], + [9.298121, 45.461057], + [9.293625, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.465553], + [9.293625, 45.47005], + [9.298121, 45.47005], + [9.298121, 45.465553], + [9.293625, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.47005], + [9.293625, 45.474547], + [9.298121, 45.474547], + [9.298121, 45.47005], + [9.293625, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.474547], + [9.293625, 45.479043], + [9.298121, 45.479043], + [9.298121, 45.474547], + [9.293625, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.479043], + [9.293625, 45.48354], + [9.298121, 45.48354], + [9.298121, 45.479043], + [9.293625, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.48354], + [9.293625, 45.488036], + [9.298121, 45.488036], + [9.298121, 45.48354], + [9.293625, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.488036], + [9.293625, 45.492533], + [9.298121, 45.492533], + [9.298121, 45.488036], + [9.293625, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.492533], + [9.293625, 45.49703], + [9.298121, 45.49703], + [9.298121, 45.492533], + [9.293625, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.49703], + [9.293625, 45.501526], + [9.298121, 45.501526], + [9.298121, 45.49703], + [9.293625, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.501526], + [9.293625, 45.506023], + [9.298121, 45.506023], + [9.298121, 45.501526], + [9.293625, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.506023], + [9.293625, 45.510519], + [9.298121, 45.510519], + [9.298121, 45.506023], + [9.293625, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.510519], + [9.293625, 45.515016], + [9.298121, 45.515016], + [9.298121, 45.510519], + [9.293625, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.515016], + [9.293625, 45.519513], + [9.298121, 45.519513], + [9.298121, 45.515016], + [9.293625, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.519513], + [9.293625, 45.524009], + [9.298121, 45.524009], + [9.298121, 45.519513], + [9.293625, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.524009], + [9.293625, 45.528506], + [9.298121, 45.528506], + [9.298121, 45.524009], + [9.293625, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.528506], + [9.293625, 45.533002], + [9.298121, 45.533002], + [9.298121, 45.528506], + [9.293625, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.533002], + [9.293625, 45.537499], + [9.298121, 45.537499], + [9.298121, 45.533002], + [9.293625, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.537499], + [9.293625, 45.541996], + [9.298121, 45.541996], + [9.298121, 45.537499], + [9.293625, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.541996], + [9.293625, 45.546492], + [9.298121, 45.546492], + [9.298121, 45.541996], + [9.293625, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.546492], + [9.293625, 45.550989], + [9.298121, 45.550989], + [9.298121, 45.546492], + [9.293625, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.550989], + [9.293625, 45.555485], + [9.298121, 45.555485], + [9.298121, 45.550989], + [9.293625, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.555485], + [9.293625, 45.559982], + [9.298121, 45.559982], + [9.298121, 45.555485], + [9.293625, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.559982], + [9.293625, 45.564479], + [9.298121, 45.564479], + [9.298121, 45.559982], + [9.293625, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.564479], + [9.293625, 45.568975], + [9.298121, 45.568975], + [9.298121, 45.564479], + [9.293625, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.568975], + [9.293625, 45.573472], + [9.298121, 45.573472], + [9.298121, 45.568975], + [9.293625, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.573472], + [9.293625, 45.577968], + [9.298121, 45.577968], + [9.298121, 45.573472], + [9.293625, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.577968], + [9.293625, 45.582465], + [9.298121, 45.582465], + [9.298121, 45.577968], + [9.293625, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.582465], + [9.293625, 45.586962], + [9.298121, 45.586962], + [9.298121, 45.582465], + [9.293625, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.586962], + [9.293625, 45.591458], + [9.298121, 45.591458], + [9.298121, 45.586962], + [9.293625, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.591458], + [9.293625, 45.595955], + [9.298121, 45.595955], + [9.298121, 45.591458], + [9.293625, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.595955], + [9.293625, 45.600451], + [9.298121, 45.600451], + [9.298121, 45.595955], + [9.293625, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.600451], + [9.293625, 45.604948], + [9.298121, 45.604948], + [9.298121, 45.600451], + [9.293625, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.604948], + [9.293625, 45.609445], + [9.298121, 45.609445], + [9.298121, 45.604948], + [9.293625, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.609445], + [9.293625, 45.613941], + [9.298121, 45.613941], + [9.298121, 45.609445], + [9.293625, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.613941], + [9.293625, 45.618438], + [9.298121, 45.618438], + [9.298121, 45.613941], + [9.293625, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.618438], + [9.293625, 45.622934], + [9.298121, 45.622934], + [9.298121, 45.618438], + [9.293625, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.622934], + [9.293625, 45.627431], + [9.298121, 45.627431], + [9.298121, 45.622934], + [9.293625, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.627431], + [9.293625, 45.631928], + [9.298121, 45.631928], + [9.298121, 45.627431], + [9.293625, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.293625, 45.631928], + [9.293625, 45.636424], + [9.298121, 45.636424], + [9.298121, 45.631928], + [9.293625, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.339648], + [9.298121, 45.344145], + [9.302618, 45.344145], + [9.302618, 45.339648], + [9.298121, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.344145], + [9.298121, 45.348642], + [9.302618, 45.348642], + [9.302618, 45.344145], + [9.298121, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.348642], + [9.298121, 45.353138], + [9.302618, 45.353138], + [9.302618, 45.348642], + [9.298121, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.353138], + [9.298121, 45.357635], + [9.302618, 45.357635], + [9.302618, 45.353138], + [9.298121, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.357635], + [9.298121, 45.362131], + [9.302618, 45.362131], + [9.302618, 45.357635], + [9.298121, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.362131], + [9.298121, 45.366628], + [9.302618, 45.366628], + [9.302618, 45.362131], + [9.298121, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.366628], + [9.298121, 45.371125], + [9.302618, 45.371125], + [9.302618, 45.366628], + [9.298121, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.371125], + [9.298121, 45.375621], + [9.302618, 45.375621], + [9.302618, 45.371125], + [9.298121, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.375621], + [9.298121, 45.380118], + [9.302618, 45.380118], + [9.302618, 45.375621], + [9.298121, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.380118], + [9.298121, 45.384614], + [9.302618, 45.384614], + [9.302618, 45.380118], + [9.298121, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.384614], + [9.298121, 45.389111], + [9.302618, 45.389111], + [9.302618, 45.384614], + [9.298121, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.389111], + [9.298121, 45.393608], + [9.302618, 45.393608], + [9.302618, 45.389111], + [9.298121, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.393608], + [9.298121, 45.398104], + [9.302618, 45.398104], + [9.302618, 45.393608], + [9.298121, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 23, + "stroke": "#85c4ff", + "fill": "#85c4ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.398104], + [9.298121, 45.402601], + [9.302618, 45.402601], + [9.302618, 45.398104], + [9.298121, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.402601], + [9.298121, 45.407097], + [9.302618, 45.407097], + [9.302618, 45.402601], + [9.298121, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.407097], + [9.298121, 45.411594], + [9.302618, 45.411594], + [9.302618, 45.407097], + [9.298121, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.411594], + [9.298121, 45.416091], + [9.302618, 45.416091], + [9.302618, 45.411594], + [9.298121, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.416091], + [9.298121, 45.420587], + [9.302618, 45.420587], + [9.302618, 45.416091], + [9.298121, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.420587], + [9.298121, 45.425084], + [9.302618, 45.425084], + [9.302618, 45.420587], + [9.298121, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.425084], + [9.298121, 45.42958], + [9.302618, 45.42958], + [9.302618, 45.425084], + [9.298121, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.42958], + [9.298121, 45.434077], + [9.302618, 45.434077], + [9.302618, 45.42958], + [9.298121, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.434077], + [9.298121, 45.438574], + [9.302618, 45.438574], + [9.302618, 45.434077], + [9.298121, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.438574], + [9.298121, 45.44307], + [9.302618, 45.44307], + [9.302618, 45.438574], + [9.298121, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.44307], + [9.298121, 45.447567], + [9.302618, 45.447567], + [9.302618, 45.44307], + [9.298121, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.447567], + [9.298121, 45.452063], + [9.302618, 45.452063], + [9.302618, 45.447567], + [9.298121, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.452063], + [9.298121, 45.45656], + [9.302618, 45.45656], + [9.302618, 45.452063], + [9.298121, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.45656], + [9.298121, 45.461057], + [9.302618, 45.461057], + [9.302618, 45.45656], + [9.298121, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.461057], + [9.298121, 45.465553], + [9.302618, 45.465553], + [9.302618, 45.461057], + [9.298121, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.465553], + [9.298121, 45.47005], + [9.302618, 45.47005], + [9.302618, 45.465553], + [9.298121, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.47005], + [9.298121, 45.474547], + [9.302618, 45.474547], + [9.302618, 45.47005], + [9.298121, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.474547], + [9.298121, 45.479043], + [9.302618, 45.479043], + [9.302618, 45.474547], + [9.298121, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.479043], + [9.298121, 45.48354], + [9.302618, 45.48354], + [9.302618, 45.479043], + [9.298121, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.48354], + [9.298121, 45.488036], + [9.302618, 45.488036], + [9.302618, 45.48354], + [9.298121, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.488036], + [9.298121, 45.492533], + [9.302618, 45.492533], + [9.302618, 45.488036], + [9.298121, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.492533], + [9.298121, 45.49703], + [9.302618, 45.49703], + [9.302618, 45.492533], + [9.298121, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.49703], + [9.298121, 45.501526], + [9.302618, 45.501526], + [9.302618, 45.49703], + [9.298121, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.501526], + [9.298121, 45.506023], + [9.302618, 45.506023], + [9.302618, 45.501526], + [9.298121, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.506023], + [9.298121, 45.510519], + [9.302618, 45.510519], + [9.302618, 45.506023], + [9.298121, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.510519], + [9.298121, 45.515016], + [9.302618, 45.515016], + [9.302618, 45.510519], + [9.298121, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.515016], + [9.298121, 45.519513], + [9.302618, 45.519513], + [9.302618, 45.515016], + [9.298121, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.519513], + [9.298121, 45.524009], + [9.302618, 45.524009], + [9.302618, 45.519513], + [9.298121, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.524009], + [9.298121, 45.528506], + [9.302618, 45.528506], + [9.302618, 45.524009], + [9.298121, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.528506], + [9.298121, 45.533002], + [9.302618, 45.533002], + [9.302618, 45.528506], + [9.298121, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.533002], + [9.298121, 45.537499], + [9.302618, 45.537499], + [9.302618, 45.533002], + [9.298121, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.537499], + [9.298121, 45.541996], + [9.302618, 45.541996], + [9.302618, 45.537499], + [9.298121, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.541996], + [9.298121, 45.546492], + [9.302618, 45.546492], + [9.302618, 45.541996], + [9.298121, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.546492], + [9.298121, 45.550989], + [9.302618, 45.550989], + [9.302618, 45.546492], + [9.298121, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.550989], + [9.298121, 45.555485], + [9.302618, 45.555485], + [9.302618, 45.550989], + [9.298121, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.555485], + [9.298121, 45.559982], + [9.302618, 45.559982], + [9.302618, 45.555485], + [9.298121, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.559982], + [9.298121, 45.564479], + [9.302618, 45.564479], + [9.302618, 45.559982], + [9.298121, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.564479], + [9.298121, 45.568975], + [9.302618, 45.568975], + [9.302618, 45.564479], + [9.298121, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.568975], + [9.298121, 45.573472], + [9.302618, 45.573472], + [9.302618, 45.568975], + [9.298121, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.573472], + [9.298121, 45.577968], + [9.302618, 45.577968], + [9.302618, 45.573472], + [9.298121, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.577968], + [9.298121, 45.582465], + [9.302618, 45.582465], + [9.302618, 45.577968], + [9.298121, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.582465], + [9.298121, 45.586962], + [9.302618, 45.586962], + [9.302618, 45.582465], + [9.298121, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.586962], + [9.298121, 45.591458], + [9.302618, 45.591458], + [9.302618, 45.586962], + [9.298121, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.591458], + [9.298121, 45.595955], + [9.302618, 45.595955], + [9.302618, 45.591458], + [9.298121, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.595955], + [9.298121, 45.600451], + [9.302618, 45.600451], + [9.302618, 45.595955], + [9.298121, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.600451], + [9.298121, 45.604948], + [9.302618, 45.604948], + [9.302618, 45.600451], + [9.298121, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.604948], + [9.298121, 45.609445], + [9.302618, 45.609445], + [9.302618, 45.604948], + [9.298121, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.609445], + [9.298121, 45.613941], + [9.302618, 45.613941], + [9.302618, 45.609445], + [9.298121, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.613941], + [9.298121, 45.618438], + [9.302618, 45.618438], + [9.302618, 45.613941], + [9.298121, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.618438], + [9.298121, 45.622934], + [9.302618, 45.622934], + [9.302618, 45.618438], + [9.298121, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.622934], + [9.298121, 45.627431], + [9.302618, 45.627431], + [9.302618, 45.622934], + [9.298121, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.627431], + [9.298121, 45.631928], + [9.302618, 45.631928], + [9.302618, 45.627431], + [9.298121, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.298121, 45.631928], + [9.298121, 45.636424], + [9.302618, 45.636424], + [9.302618, 45.631928], + [9.298121, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.339648], + [9.302618, 45.344145], + [9.307114, 45.344145], + [9.307114, 45.339648], + [9.302618, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.344145], + [9.302618, 45.348642], + [9.307114, 45.348642], + [9.307114, 45.344145], + [9.302618, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.348642], + [9.302618, 45.353138], + [9.307114, 45.353138], + [9.307114, 45.348642], + [9.302618, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.353138], + [9.302618, 45.357635], + [9.307114, 45.357635], + [9.307114, 45.353138], + [9.302618, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.357635], + [9.302618, 45.362131], + [9.307114, 45.362131], + [9.307114, 45.357635], + [9.302618, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.362131], + [9.302618, 45.366628], + [9.307114, 45.366628], + [9.307114, 45.362131], + [9.302618, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.366628], + [9.302618, 45.371125], + [9.307114, 45.371125], + [9.307114, 45.366628], + [9.302618, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.371125], + [9.302618, 45.375621], + [9.307114, 45.375621], + [9.307114, 45.371125], + [9.302618, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.375621], + [9.302618, 45.380118], + [9.307114, 45.380118], + [9.307114, 45.375621], + [9.302618, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.380118], + [9.302618, 45.384614], + [9.307114, 45.384614], + [9.307114, 45.380118], + [9.302618, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.384614], + [9.302618, 45.389111], + [9.307114, 45.389111], + [9.307114, 45.384614], + [9.302618, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.389111], + [9.302618, 45.393608], + [9.307114, 45.393608], + [9.307114, 45.389111], + [9.302618, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.393608], + [9.302618, 45.398104], + [9.307114, 45.398104], + [9.307114, 45.393608], + [9.302618, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.398104], + [9.302618, 45.402601], + [9.307114, 45.402601], + [9.307114, 45.398104], + [9.302618, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.402601], + [9.302618, 45.407097], + [9.307114, 45.407097], + [9.307114, 45.402601], + [9.302618, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.407097], + [9.302618, 45.411594], + [9.307114, 45.411594], + [9.307114, 45.407097], + [9.302618, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.411594], + [9.302618, 45.416091], + [9.307114, 45.416091], + [9.307114, 45.411594], + [9.302618, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.416091], + [9.302618, 45.420587], + [9.307114, 45.420587], + [9.307114, 45.416091], + [9.302618, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.420587], + [9.302618, 45.425084], + [9.307114, 45.425084], + [9.307114, 45.420587], + [9.302618, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.425084], + [9.302618, 45.42958], + [9.307114, 45.42958], + [9.307114, 45.425084], + [9.302618, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.42958], + [9.302618, 45.434077], + [9.307114, 45.434077], + [9.307114, 45.42958], + [9.302618, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.434077], + [9.302618, 45.438574], + [9.307114, 45.438574], + [9.307114, 45.434077], + [9.302618, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.438574], + [9.302618, 45.44307], + [9.307114, 45.44307], + [9.307114, 45.438574], + [9.302618, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.44307], + [9.302618, 45.447567], + [9.307114, 45.447567], + [9.307114, 45.44307], + [9.302618, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.447567], + [9.302618, 45.452063], + [9.307114, 45.452063], + [9.307114, 45.447567], + [9.302618, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.452063], + [9.302618, 45.45656], + [9.307114, 45.45656], + [9.307114, 45.452063], + [9.302618, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.45656], + [9.302618, 45.461057], + [9.307114, 45.461057], + [9.307114, 45.45656], + [9.302618, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.461057], + [9.302618, 45.465553], + [9.307114, 45.465553], + [9.307114, 45.461057], + [9.302618, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.465553], + [9.302618, 45.47005], + [9.307114, 45.47005], + [9.307114, 45.465553], + [9.302618, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.47005], + [9.302618, 45.474547], + [9.307114, 45.474547], + [9.307114, 45.47005], + [9.302618, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.474547], + [9.302618, 45.479043], + [9.307114, 45.479043], + [9.307114, 45.474547], + [9.302618, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.479043], + [9.302618, 45.48354], + [9.307114, 45.48354], + [9.307114, 45.479043], + [9.302618, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.48354], + [9.302618, 45.488036], + [9.307114, 45.488036], + [9.307114, 45.48354], + [9.302618, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.488036], + [9.302618, 45.492533], + [9.307114, 45.492533], + [9.307114, 45.488036], + [9.302618, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.492533], + [9.302618, 45.49703], + [9.307114, 45.49703], + [9.307114, 45.492533], + [9.302618, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.49703], + [9.302618, 45.501526], + [9.307114, 45.501526], + [9.307114, 45.49703], + [9.302618, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.501526], + [9.302618, 45.506023], + [9.307114, 45.506023], + [9.307114, 45.501526], + [9.302618, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.506023], + [9.302618, 45.510519], + [9.307114, 45.510519], + [9.307114, 45.506023], + [9.302618, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.510519], + [9.302618, 45.515016], + [9.307114, 45.515016], + [9.307114, 45.510519], + [9.302618, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.515016], + [9.302618, 45.519513], + [9.307114, 45.519513], + [9.307114, 45.515016], + [9.302618, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.519513], + [9.302618, 45.524009], + [9.307114, 45.524009], + [9.307114, 45.519513], + [9.302618, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.524009], + [9.302618, 45.528506], + [9.307114, 45.528506], + [9.307114, 45.524009], + [9.302618, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.528506], + [9.302618, 45.533002], + [9.307114, 45.533002], + [9.307114, 45.528506], + [9.302618, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.533002], + [9.302618, 45.537499], + [9.307114, 45.537499], + [9.307114, 45.533002], + [9.302618, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.537499], + [9.302618, 45.541996], + [9.307114, 45.541996], + [9.307114, 45.537499], + [9.302618, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.541996], + [9.302618, 45.546492], + [9.307114, 45.546492], + [9.307114, 45.541996], + [9.302618, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.546492], + [9.302618, 45.550989], + [9.307114, 45.550989], + [9.307114, 45.546492], + [9.302618, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.550989], + [9.302618, 45.555485], + [9.307114, 45.555485], + [9.307114, 45.550989], + [9.302618, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.555485], + [9.302618, 45.559982], + [9.307114, 45.559982], + [9.307114, 45.555485], + [9.302618, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.559982], + [9.302618, 45.564479], + [9.307114, 45.564479], + [9.307114, 45.559982], + [9.302618, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.564479], + [9.302618, 45.568975], + [9.307114, 45.568975], + [9.307114, 45.564479], + [9.302618, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.568975], + [9.302618, 45.573472], + [9.307114, 45.573472], + [9.307114, 45.568975], + [9.302618, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.573472], + [9.302618, 45.577968], + [9.307114, 45.577968], + [9.307114, 45.573472], + [9.302618, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.577968], + [9.302618, 45.582465], + [9.307114, 45.582465], + [9.307114, 45.577968], + [9.302618, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.582465], + [9.302618, 45.586962], + [9.307114, 45.586962], + [9.307114, 45.582465], + [9.302618, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.586962], + [9.302618, 45.591458], + [9.307114, 45.591458], + [9.307114, 45.586962], + [9.302618, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.591458], + [9.302618, 45.595955], + [9.307114, 45.595955], + [9.307114, 45.591458], + [9.302618, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.595955], + [9.302618, 45.600451], + [9.307114, 45.600451], + [9.307114, 45.595955], + [9.302618, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.600451], + [9.302618, 45.604948], + [9.307114, 45.604948], + [9.307114, 45.600451], + [9.302618, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.604948], + [9.302618, 45.609445], + [9.307114, 45.609445], + [9.307114, 45.604948], + [9.302618, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.609445], + [9.302618, 45.613941], + [9.307114, 45.613941], + [9.307114, 45.609445], + [9.302618, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.613941], + [9.302618, 45.618438], + [9.307114, 45.618438], + [9.307114, 45.613941], + [9.302618, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.618438], + [9.302618, 45.622934], + [9.307114, 45.622934], + [9.307114, 45.618438], + [9.302618, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.622934], + [9.302618, 45.627431], + [9.307114, 45.627431], + [9.307114, 45.622934], + [9.302618, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.627431], + [9.302618, 45.631928], + [9.307114, 45.631928], + [9.307114, 45.627431], + [9.302618, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.302618, 45.631928], + [9.302618, 45.636424], + [9.307114, 45.636424], + [9.307114, 45.631928], + [9.302618, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.339648], + [9.307114, 45.344145], + [9.311611, 45.344145], + [9.311611, 45.339648], + [9.307114, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.344145], + [9.307114, 45.348642], + [9.311611, 45.348642], + [9.311611, 45.344145], + [9.307114, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.348642], + [9.307114, 45.353138], + [9.311611, 45.353138], + [9.311611, 45.348642], + [9.307114, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.353138], + [9.307114, 45.357635], + [9.311611, 45.357635], + [9.311611, 45.353138], + [9.307114, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.357635], + [9.307114, 45.362131], + [9.311611, 45.362131], + [9.311611, 45.357635], + [9.307114, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.362131], + [9.307114, 45.366628], + [9.311611, 45.366628], + [9.311611, 45.362131], + [9.307114, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.366628], + [9.307114, 45.371125], + [9.311611, 45.371125], + [9.311611, 45.366628], + [9.307114, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.371125], + [9.307114, 45.375621], + [9.311611, 45.375621], + [9.311611, 45.371125], + [9.307114, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.375621], + [9.307114, 45.380118], + [9.311611, 45.380118], + [9.311611, 45.375621], + [9.307114, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.380118], + [9.307114, 45.384614], + [9.311611, 45.384614], + [9.311611, 45.380118], + [9.307114, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.384614], + [9.307114, 45.389111], + [9.311611, 45.389111], + [9.311611, 45.384614], + [9.307114, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.389111], + [9.307114, 45.393608], + [9.311611, 45.393608], + [9.311611, 45.389111], + [9.307114, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.393608], + [9.307114, 45.398104], + [9.311611, 45.398104], + [9.311611, 45.393608], + [9.307114, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.398104], + [9.307114, 45.402601], + [9.311611, 45.402601], + [9.311611, 45.398104], + [9.307114, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.402601], + [9.307114, 45.407097], + [9.311611, 45.407097], + [9.311611, 45.402601], + [9.307114, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.407097], + [9.307114, 45.411594], + [9.311611, 45.411594], + [9.311611, 45.407097], + [9.307114, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.411594], + [9.307114, 45.416091], + [9.311611, 45.416091], + [9.311611, 45.411594], + [9.307114, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.416091], + [9.307114, 45.420587], + [9.311611, 45.420587], + [9.311611, 45.416091], + [9.307114, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.420587], + [9.307114, 45.425084], + [9.311611, 45.425084], + [9.311611, 45.420587], + [9.307114, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.425084], + [9.307114, 45.42958], + [9.311611, 45.42958], + [9.311611, 45.425084], + [9.307114, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.42958], + [9.307114, 45.434077], + [9.311611, 45.434077], + [9.311611, 45.42958], + [9.307114, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.434077], + [9.307114, 45.438574], + [9.311611, 45.438574], + [9.311611, 45.434077], + [9.307114, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.438574], + [9.307114, 45.44307], + [9.311611, 45.44307], + [9.311611, 45.438574], + [9.307114, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.44307], + [9.307114, 45.447567], + [9.311611, 45.447567], + [9.311611, 45.44307], + [9.307114, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.447567], + [9.307114, 45.452063], + [9.311611, 45.452063], + [9.311611, 45.447567], + [9.307114, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.452063], + [9.307114, 45.45656], + [9.311611, 45.45656], + [9.311611, 45.452063], + [9.307114, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.45656], + [9.307114, 45.461057], + [9.311611, 45.461057], + [9.311611, 45.45656], + [9.307114, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.461057], + [9.307114, 45.465553], + [9.311611, 45.465553], + [9.311611, 45.461057], + [9.307114, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.465553], + [9.307114, 45.47005], + [9.311611, 45.47005], + [9.311611, 45.465553], + [9.307114, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.47005], + [9.307114, 45.474547], + [9.311611, 45.474547], + [9.311611, 45.47005], + [9.307114, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.474547], + [9.307114, 45.479043], + [9.311611, 45.479043], + [9.311611, 45.474547], + [9.307114, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.479043], + [9.307114, 45.48354], + [9.311611, 45.48354], + [9.311611, 45.479043], + [9.307114, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.48354], + [9.307114, 45.488036], + [9.311611, 45.488036], + [9.311611, 45.48354], + [9.307114, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.488036], + [9.307114, 45.492533], + [9.311611, 45.492533], + [9.311611, 45.488036], + [9.307114, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.492533], + [9.307114, 45.49703], + [9.311611, 45.49703], + [9.311611, 45.492533], + [9.307114, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.49703], + [9.307114, 45.501526], + [9.311611, 45.501526], + [9.311611, 45.49703], + [9.307114, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.501526], + [9.307114, 45.506023], + [9.311611, 45.506023], + [9.311611, 45.501526], + [9.307114, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.506023], + [9.307114, 45.510519], + [9.311611, 45.510519], + [9.311611, 45.506023], + [9.307114, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.510519], + [9.307114, 45.515016], + [9.311611, 45.515016], + [9.311611, 45.510519], + [9.307114, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.515016], + [9.307114, 45.519513], + [9.311611, 45.519513], + [9.311611, 45.515016], + [9.307114, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.519513], + [9.307114, 45.524009], + [9.311611, 45.524009], + [9.311611, 45.519513], + [9.307114, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.524009], + [9.307114, 45.528506], + [9.311611, 45.528506], + [9.311611, 45.524009], + [9.307114, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.528506], + [9.307114, 45.533002], + [9.311611, 45.533002], + [9.311611, 45.528506], + [9.307114, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.533002], + [9.307114, 45.537499], + [9.311611, 45.537499], + [9.311611, 45.533002], + [9.307114, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.537499], + [9.307114, 45.541996], + [9.311611, 45.541996], + [9.311611, 45.537499], + [9.307114, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.541996], + [9.307114, 45.546492], + [9.311611, 45.546492], + [9.311611, 45.541996], + [9.307114, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.546492], + [9.307114, 45.550989], + [9.311611, 45.550989], + [9.311611, 45.546492], + [9.307114, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.550989], + [9.307114, 45.555485], + [9.311611, 45.555485], + [9.311611, 45.550989], + [9.307114, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.555485], + [9.307114, 45.559982], + [9.311611, 45.559982], + [9.311611, 45.555485], + [9.307114, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.559982], + [9.307114, 45.564479], + [9.311611, 45.564479], + [9.311611, 45.559982], + [9.307114, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.564479], + [9.307114, 45.568975], + [9.311611, 45.568975], + [9.311611, 45.564479], + [9.307114, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.568975], + [9.307114, 45.573472], + [9.311611, 45.573472], + [9.311611, 45.568975], + [9.307114, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.573472], + [9.307114, 45.577968], + [9.311611, 45.577968], + [9.311611, 45.573472], + [9.307114, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.577968], + [9.307114, 45.582465], + [9.311611, 45.582465], + [9.311611, 45.577968], + [9.307114, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.582465], + [9.307114, 45.586962], + [9.311611, 45.586962], + [9.311611, 45.582465], + [9.307114, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.586962], + [9.307114, 45.591458], + [9.311611, 45.591458], + [9.311611, 45.586962], + [9.307114, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 29, + "stroke": "#42a5ff", + "fill": "#42a5ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.591458], + [9.307114, 45.595955], + [9.311611, 45.595955], + [9.311611, 45.591458], + [9.307114, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.595955], + [9.307114, 45.600451], + [9.311611, 45.600451], + [9.311611, 45.595955], + [9.307114, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.600451], + [9.307114, 45.604948], + [9.311611, 45.604948], + [9.311611, 45.600451], + [9.307114, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.604948], + [9.307114, 45.609445], + [9.311611, 45.609445], + [9.311611, 45.604948], + [9.307114, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.609445], + [9.307114, 45.613941], + [9.311611, 45.613941], + [9.311611, 45.609445], + [9.307114, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.613941], + [9.307114, 45.618438], + [9.311611, 45.618438], + [9.311611, 45.613941], + [9.307114, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.618438], + [9.307114, 45.622934], + [9.311611, 45.622934], + [9.311611, 45.618438], + [9.307114, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.622934], + [9.307114, 45.627431], + [9.311611, 45.627431], + [9.311611, 45.622934], + [9.307114, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.627431], + [9.307114, 45.631928], + [9.311611, 45.631928], + [9.311611, 45.627431], + [9.307114, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.307114, 45.631928], + [9.307114, 45.636424], + [9.311611, 45.636424], + [9.311611, 45.631928], + [9.307114, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.339648], + [9.311611, 45.344145], + [9.316108, 45.344145], + [9.316108, 45.339648], + [9.311611, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.344145], + [9.311611, 45.348642], + [9.316108, 45.348642], + [9.316108, 45.344145], + [9.311611, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.348642], + [9.311611, 45.353138], + [9.316108, 45.353138], + [9.316108, 45.348642], + [9.311611, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.353138], + [9.311611, 45.357635], + [9.316108, 45.357635], + [9.316108, 45.353138], + [9.311611, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.357635], + [9.311611, 45.362131], + [9.316108, 45.362131], + [9.316108, 45.357635], + [9.311611, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.362131], + [9.311611, 45.366628], + [9.316108, 45.366628], + [9.316108, 45.362131], + [9.311611, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.366628], + [9.311611, 45.371125], + [9.316108, 45.371125], + [9.316108, 45.366628], + [9.311611, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.371125], + [9.311611, 45.375621], + [9.316108, 45.375621], + [9.316108, 45.371125], + [9.311611, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.375621], + [9.311611, 45.380118], + [9.316108, 45.380118], + [9.316108, 45.375621], + [9.311611, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.380118], + [9.311611, 45.384614], + [9.316108, 45.384614], + [9.316108, 45.380118], + [9.311611, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.384614], + [9.311611, 45.389111], + [9.316108, 45.389111], + [9.316108, 45.384614], + [9.311611, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.389111], + [9.311611, 45.393608], + [9.316108, 45.393608], + [9.316108, 45.389111], + [9.311611, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.393608], + [9.311611, 45.398104], + [9.316108, 45.398104], + [9.316108, 45.393608], + [9.311611, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.398104], + [9.311611, 45.402601], + [9.316108, 45.402601], + [9.316108, 45.398104], + [9.311611, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.402601], + [9.311611, 45.407097], + [9.316108, 45.407097], + [9.316108, 45.402601], + [9.311611, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.407097], + [9.311611, 45.411594], + [9.316108, 45.411594], + [9.316108, 45.407097], + [9.311611, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.411594], + [9.311611, 45.416091], + [9.316108, 45.416091], + [9.316108, 45.411594], + [9.311611, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.416091], + [9.311611, 45.420587], + [9.316108, 45.420587], + [9.316108, 45.416091], + [9.311611, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.420587], + [9.311611, 45.425084], + [9.316108, 45.425084], + [9.316108, 45.420587], + [9.311611, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.425084], + [9.311611, 45.42958], + [9.316108, 45.42958], + [9.316108, 45.425084], + [9.311611, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.42958], + [9.311611, 45.434077], + [9.316108, 45.434077], + [9.316108, 45.42958], + [9.311611, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.434077], + [9.311611, 45.438574], + [9.316108, 45.438574], + [9.316108, 45.434077], + [9.311611, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.438574], + [9.311611, 45.44307], + [9.316108, 45.44307], + [9.316108, 45.438574], + [9.311611, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.44307], + [9.311611, 45.447567], + [9.316108, 45.447567], + [9.316108, 45.44307], + [9.311611, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.447567], + [9.311611, 45.452063], + [9.316108, 45.452063], + [9.316108, 45.447567], + [9.311611, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.452063], + [9.311611, 45.45656], + [9.316108, 45.45656], + [9.316108, 45.452063], + [9.311611, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.45656], + [9.311611, 45.461057], + [9.316108, 45.461057], + [9.316108, 45.45656], + [9.311611, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.461057], + [9.311611, 45.465553], + [9.316108, 45.465553], + [9.316108, 45.461057], + [9.311611, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.465553], + [9.311611, 45.47005], + [9.316108, 45.47005], + [9.316108, 45.465553], + [9.311611, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.47005], + [9.311611, 45.474547], + [9.316108, 45.474547], + [9.316108, 45.47005], + [9.311611, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.474547], + [9.311611, 45.479043], + [9.316108, 45.479043], + [9.316108, 45.474547], + [9.311611, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.479043], + [9.311611, 45.48354], + [9.316108, 45.48354], + [9.316108, 45.479043], + [9.311611, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.48354], + [9.311611, 45.488036], + [9.316108, 45.488036], + [9.316108, 45.48354], + [9.311611, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.488036], + [9.311611, 45.492533], + [9.316108, 45.492533], + [9.316108, 45.488036], + [9.311611, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.492533], + [9.311611, 45.49703], + [9.316108, 45.49703], + [9.316108, 45.492533], + [9.311611, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.49703], + [9.311611, 45.501526], + [9.316108, 45.501526], + [9.316108, 45.49703], + [9.311611, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.501526], + [9.311611, 45.506023], + [9.316108, 45.506023], + [9.316108, 45.501526], + [9.311611, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.506023], + [9.311611, 45.510519], + [9.316108, 45.510519], + [9.316108, 45.506023], + [9.311611, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.510519], + [9.311611, 45.515016], + [9.316108, 45.515016], + [9.316108, 45.510519], + [9.311611, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.515016], + [9.311611, 45.519513], + [9.316108, 45.519513], + [9.316108, 45.515016], + [9.311611, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.519513], + [9.311611, 45.524009], + [9.316108, 45.524009], + [9.316108, 45.519513], + [9.311611, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.524009], + [9.311611, 45.528506], + [9.316108, 45.528506], + [9.316108, 45.524009], + [9.311611, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.528506], + [9.311611, 45.533002], + [9.316108, 45.533002], + [9.316108, 45.528506], + [9.311611, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.533002], + [9.311611, 45.537499], + [9.316108, 45.537499], + [9.316108, 45.533002], + [9.311611, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.537499], + [9.311611, 45.541996], + [9.316108, 45.541996], + [9.316108, 45.537499], + [9.311611, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.541996], + [9.311611, 45.546492], + [9.316108, 45.546492], + [9.316108, 45.541996], + [9.311611, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.546492], + [9.311611, 45.550989], + [9.316108, 45.550989], + [9.316108, 45.546492], + [9.311611, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.550989], + [9.311611, 45.555485], + [9.316108, 45.555485], + [9.316108, 45.550989], + [9.311611, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.555485], + [9.311611, 45.559982], + [9.316108, 45.559982], + [9.316108, 45.555485], + [9.311611, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.559982], + [9.311611, 45.564479], + [9.316108, 45.564479], + [9.316108, 45.559982], + [9.311611, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.564479], + [9.311611, 45.568975], + [9.316108, 45.568975], + [9.316108, 45.564479], + [9.311611, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.568975], + [9.311611, 45.573472], + [9.316108, 45.573472], + [9.316108, 45.568975], + [9.311611, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.573472], + [9.311611, 45.577968], + [9.316108, 45.577968], + [9.316108, 45.573472], + [9.311611, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.577968], + [9.311611, 45.582465], + [9.316108, 45.582465], + [9.316108, 45.577968], + [9.311611, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.582465], + [9.311611, 45.586962], + [9.316108, 45.586962], + [9.316108, 45.582465], + [9.311611, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.586962], + [9.311611, 45.591458], + [9.316108, 45.591458], + [9.316108, 45.586962], + [9.311611, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.591458], + [9.311611, 45.595955], + [9.316108, 45.595955], + [9.316108, 45.591458], + [9.311611, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.595955], + [9.311611, 45.600451], + [9.316108, 45.600451], + [9.316108, 45.595955], + [9.311611, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.600451], + [9.311611, 45.604948], + [9.316108, 45.604948], + [9.316108, 45.600451], + [9.311611, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.604948], + [9.311611, 45.609445], + [9.316108, 45.609445], + [9.316108, 45.604948], + [9.311611, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.609445], + [9.311611, 45.613941], + [9.316108, 45.613941], + [9.316108, 45.609445], + [9.311611, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.613941], + [9.311611, 45.618438], + [9.316108, 45.618438], + [9.316108, 45.613941], + [9.311611, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.618438], + [9.311611, 45.622934], + [9.316108, 45.622934], + [9.316108, 45.618438], + [9.311611, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.622934], + [9.311611, 45.627431], + [9.316108, 45.627431], + [9.316108, 45.622934], + [9.311611, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.627431], + [9.311611, 45.631928], + [9.316108, 45.631928], + [9.316108, 45.627431], + [9.311611, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.311611, 45.631928], + [9.311611, 45.636424], + [9.316108, 45.636424], + [9.316108, 45.631928], + [9.311611, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.339648], + [9.316108, 45.344145], + [9.320604, 45.344145], + [9.320604, 45.339648], + [9.316108, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.344145], + [9.316108, 45.348642], + [9.320604, 45.348642], + [9.320604, 45.344145], + [9.316108, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.348642], + [9.316108, 45.353138], + [9.320604, 45.353138], + [9.320604, 45.348642], + [9.316108, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.353138], + [9.316108, 45.357635], + [9.320604, 45.357635], + [9.320604, 45.353138], + [9.316108, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.357635], + [9.316108, 45.362131], + [9.320604, 45.362131], + [9.320604, 45.357635], + [9.316108, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.362131], + [9.316108, 45.366628], + [9.320604, 45.366628], + [9.320604, 45.362131], + [9.316108, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.366628], + [9.316108, 45.371125], + [9.320604, 45.371125], + [9.320604, 45.366628], + [9.316108, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.371125], + [9.316108, 45.375621], + [9.320604, 45.375621], + [9.320604, 45.371125], + [9.316108, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.375621], + [9.316108, 45.380118], + [9.320604, 45.380118], + [9.320604, 45.375621], + [9.316108, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.380118], + [9.316108, 45.384614], + [9.320604, 45.384614], + [9.320604, 45.380118], + [9.316108, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.384614], + [9.316108, 45.389111], + [9.320604, 45.389111], + [9.320604, 45.384614], + [9.316108, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.389111], + [9.316108, 45.393608], + [9.320604, 45.393608], + [9.320604, 45.389111], + [9.316108, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.393608], + [9.316108, 45.398104], + [9.320604, 45.398104], + [9.320604, 45.393608], + [9.316108, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.398104], + [9.316108, 45.402601], + [9.320604, 45.402601], + [9.320604, 45.398104], + [9.316108, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.402601], + [9.316108, 45.407097], + [9.320604, 45.407097], + [9.320604, 45.402601], + [9.316108, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.407097], + [9.316108, 45.411594], + [9.320604, 45.411594], + [9.320604, 45.407097], + [9.316108, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.411594], + [9.316108, 45.416091], + [9.320604, 45.416091], + [9.320604, 45.411594], + [9.316108, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.416091], + [9.316108, 45.420587], + [9.320604, 45.420587], + [9.320604, 45.416091], + [9.316108, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.420587], + [9.316108, 45.425084], + [9.320604, 45.425084], + [9.320604, 45.420587], + [9.316108, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.425084], + [9.316108, 45.42958], + [9.320604, 45.42958], + [9.320604, 45.425084], + [9.316108, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.42958], + [9.316108, 45.434077], + [9.320604, 45.434077], + [9.320604, 45.42958], + [9.316108, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.434077], + [9.316108, 45.438574], + [9.320604, 45.438574], + [9.320604, 45.434077], + [9.316108, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.438574], + [9.316108, 45.44307], + [9.320604, 45.44307], + [9.320604, 45.438574], + [9.316108, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.44307], + [9.316108, 45.447567], + [9.320604, 45.447567], + [9.320604, 45.44307], + [9.316108, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.447567], + [9.316108, 45.452063], + [9.320604, 45.452063], + [9.320604, 45.447567], + [9.316108, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.452063], + [9.316108, 45.45656], + [9.320604, 45.45656], + [9.320604, 45.452063], + [9.316108, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.45656], + [9.316108, 45.461057], + [9.320604, 45.461057], + [9.320604, 45.45656], + [9.316108, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.461057], + [9.316108, 45.465553], + [9.320604, 45.465553], + [9.320604, 45.461057], + [9.316108, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.465553], + [9.316108, 45.47005], + [9.320604, 45.47005], + [9.320604, 45.465553], + [9.316108, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.47005], + [9.316108, 45.474547], + [9.320604, 45.474547], + [9.320604, 45.47005], + [9.316108, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.474547], + [9.316108, 45.479043], + [9.320604, 45.479043], + [9.320604, 45.474547], + [9.316108, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.479043], + [9.316108, 45.48354], + [9.320604, 45.48354], + [9.320604, 45.479043], + [9.316108, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.48354], + [9.316108, 45.488036], + [9.320604, 45.488036], + [9.320604, 45.48354], + [9.316108, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.488036], + [9.316108, 45.492533], + [9.320604, 45.492533], + [9.320604, 45.488036], + [9.316108, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.492533], + [9.316108, 45.49703], + [9.320604, 45.49703], + [9.320604, 45.492533], + [9.316108, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.49703], + [9.316108, 45.501526], + [9.320604, 45.501526], + [9.320604, 45.49703], + [9.316108, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.501526], + [9.316108, 45.506023], + [9.320604, 45.506023], + [9.320604, 45.501526], + [9.316108, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.506023], + [9.316108, 45.510519], + [9.320604, 45.510519], + [9.320604, 45.506023], + [9.316108, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.510519], + [9.316108, 45.515016], + [9.320604, 45.515016], + [9.320604, 45.510519], + [9.316108, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.515016], + [9.316108, 45.519513], + [9.320604, 45.519513], + [9.320604, 45.515016], + [9.316108, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.519513], + [9.316108, 45.524009], + [9.320604, 45.524009], + [9.320604, 45.519513], + [9.316108, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.524009], + [9.316108, 45.528506], + [9.320604, 45.528506], + [9.320604, 45.524009], + [9.316108, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.528506], + [9.316108, 45.533002], + [9.320604, 45.533002], + [9.320604, 45.528506], + [9.316108, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.533002], + [9.316108, 45.537499], + [9.320604, 45.537499], + [9.320604, 45.533002], + [9.316108, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.537499], + [9.316108, 45.541996], + [9.320604, 45.541996], + [9.320604, 45.537499], + [9.316108, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.541996], + [9.316108, 45.546492], + [9.320604, 45.546492], + [9.320604, 45.541996], + [9.316108, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.546492], + [9.316108, 45.550989], + [9.320604, 45.550989], + [9.320604, 45.546492], + [9.316108, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.550989], + [9.316108, 45.555485], + [9.320604, 45.555485], + [9.320604, 45.550989], + [9.316108, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.555485], + [9.316108, 45.559982], + [9.320604, 45.559982], + [9.320604, 45.555485], + [9.316108, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.559982], + [9.316108, 45.564479], + [9.320604, 45.564479], + [9.320604, 45.559982], + [9.316108, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.564479], + [9.316108, 45.568975], + [9.320604, 45.568975], + [9.320604, 45.564479], + [9.316108, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.568975], + [9.316108, 45.573472], + [9.320604, 45.573472], + [9.320604, 45.568975], + [9.316108, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.573472], + [9.316108, 45.577968], + [9.320604, 45.577968], + [9.320604, 45.573472], + [9.316108, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.577968], + [9.316108, 45.582465], + [9.320604, 45.582465], + [9.320604, 45.577968], + [9.316108, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.582465], + [9.316108, 45.586962], + [9.320604, 45.586962], + [9.320604, 45.582465], + [9.316108, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.586962], + [9.316108, 45.591458], + [9.320604, 45.591458], + [9.320604, 45.586962], + [9.316108, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.591458], + [9.316108, 45.595955], + [9.320604, 45.595955], + [9.320604, 45.591458], + [9.316108, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.595955], + [9.316108, 45.600451], + [9.320604, 45.600451], + [9.320604, 45.595955], + [9.316108, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.600451], + [9.316108, 45.604948], + [9.320604, 45.604948], + [9.320604, 45.600451], + [9.316108, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.604948], + [9.316108, 45.609445], + [9.320604, 45.609445], + [9.320604, 45.604948], + [9.316108, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.609445], + [9.316108, 45.613941], + [9.320604, 45.613941], + [9.320604, 45.609445], + [9.316108, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.613941], + [9.316108, 45.618438], + [9.320604, 45.618438], + [9.320604, 45.613941], + [9.316108, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.618438], + [9.316108, 45.622934], + [9.320604, 45.622934], + [9.320604, 45.618438], + [9.316108, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.622934], + [9.316108, 45.627431], + [9.320604, 45.627431], + [9.320604, 45.622934], + [9.316108, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.627431], + [9.316108, 45.631928], + [9.320604, 45.631928], + [9.320604, 45.627431], + [9.316108, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.316108, 45.631928], + [9.316108, 45.636424], + [9.320604, 45.636424], + [9.320604, 45.631928], + [9.316108, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.339648], + [9.320604, 45.344145], + [9.325101, 45.344145], + [9.325101, 45.339648], + [9.320604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.344145], + [9.320604, 45.348642], + [9.325101, 45.348642], + [9.325101, 45.344145], + [9.320604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.348642], + [9.320604, 45.353138], + [9.325101, 45.353138], + [9.325101, 45.348642], + [9.320604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.353138], + [9.320604, 45.357635], + [9.325101, 45.357635], + [9.325101, 45.353138], + [9.320604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.357635], + [9.320604, 45.362131], + [9.325101, 45.362131], + [9.325101, 45.357635], + [9.320604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.362131], + [9.320604, 45.366628], + [9.325101, 45.366628], + [9.325101, 45.362131], + [9.320604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.366628], + [9.320604, 45.371125], + [9.325101, 45.371125], + [9.325101, 45.366628], + [9.320604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.371125], + [9.320604, 45.375621], + [9.325101, 45.375621], + [9.325101, 45.371125], + [9.320604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.375621], + [9.320604, 45.380118], + [9.325101, 45.380118], + [9.325101, 45.375621], + [9.320604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.380118], + [9.320604, 45.384614], + [9.325101, 45.384614], + [9.325101, 45.380118], + [9.320604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.384614], + [9.320604, 45.389111], + [9.325101, 45.389111], + [9.325101, 45.384614], + [9.320604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.389111], + [9.320604, 45.393608], + [9.325101, 45.393608], + [9.325101, 45.389111], + [9.320604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.393608], + [9.320604, 45.398104], + [9.325101, 45.398104], + [9.325101, 45.393608], + [9.320604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.398104], + [9.320604, 45.402601], + [9.325101, 45.402601], + [9.325101, 45.398104], + [9.320604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.402601], + [9.320604, 45.407097], + [9.325101, 45.407097], + [9.325101, 45.402601], + [9.320604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.407097], + [9.320604, 45.411594], + [9.325101, 45.411594], + [9.325101, 45.407097], + [9.320604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.411594], + [9.320604, 45.416091], + [9.325101, 45.416091], + [9.325101, 45.411594], + [9.320604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.416091], + [9.320604, 45.420587], + [9.325101, 45.420587], + [9.325101, 45.416091], + [9.320604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.420587], + [9.320604, 45.425084], + [9.325101, 45.425084], + [9.325101, 45.420587], + [9.320604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.425084], + [9.320604, 45.42958], + [9.325101, 45.42958], + [9.325101, 45.425084], + [9.320604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.42958], + [9.320604, 45.434077], + [9.325101, 45.434077], + [9.325101, 45.42958], + [9.320604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.434077], + [9.320604, 45.438574], + [9.325101, 45.438574], + [9.325101, 45.434077], + [9.320604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.438574], + [9.320604, 45.44307], + [9.325101, 45.44307], + [9.325101, 45.438574], + [9.320604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.44307], + [9.320604, 45.447567], + [9.325101, 45.447567], + [9.325101, 45.44307], + [9.320604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.447567], + [9.320604, 45.452063], + [9.325101, 45.452063], + [9.325101, 45.447567], + [9.320604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.452063], + [9.320604, 45.45656], + [9.325101, 45.45656], + [9.325101, 45.452063], + [9.320604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.45656], + [9.320604, 45.461057], + [9.325101, 45.461057], + [9.325101, 45.45656], + [9.320604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.461057], + [9.320604, 45.465553], + [9.325101, 45.465553], + [9.325101, 45.461057], + [9.320604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.465553], + [9.320604, 45.47005], + [9.325101, 45.47005], + [9.325101, 45.465553], + [9.320604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.47005], + [9.320604, 45.474547], + [9.325101, 45.474547], + [9.325101, 45.47005], + [9.320604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.474547], + [9.320604, 45.479043], + [9.325101, 45.479043], + [9.325101, 45.474547], + [9.320604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.479043], + [9.320604, 45.48354], + [9.325101, 45.48354], + [9.325101, 45.479043], + [9.320604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.48354], + [9.320604, 45.488036], + [9.325101, 45.488036], + [9.325101, 45.48354], + [9.320604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.488036], + [9.320604, 45.492533], + [9.325101, 45.492533], + [9.325101, 45.488036], + [9.320604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.492533], + [9.320604, 45.49703], + [9.325101, 45.49703], + [9.325101, 45.492533], + [9.320604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.49703], + [9.320604, 45.501526], + [9.325101, 45.501526], + [9.325101, 45.49703], + [9.320604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.501526], + [9.320604, 45.506023], + [9.325101, 45.506023], + [9.325101, 45.501526], + [9.320604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.506023], + [9.320604, 45.510519], + [9.325101, 45.510519], + [9.325101, 45.506023], + [9.320604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.510519], + [9.320604, 45.515016], + [9.325101, 45.515016], + [9.325101, 45.510519], + [9.320604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.515016], + [9.320604, 45.519513], + [9.325101, 45.519513], + [9.325101, 45.515016], + [9.320604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.519513], + [9.320604, 45.524009], + [9.325101, 45.524009], + [9.325101, 45.519513], + [9.320604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.524009], + [9.320604, 45.528506], + [9.325101, 45.528506], + [9.325101, 45.524009], + [9.320604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.528506], + [9.320604, 45.533002], + [9.325101, 45.533002], + [9.325101, 45.528506], + [9.320604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.533002], + [9.320604, 45.537499], + [9.325101, 45.537499], + [9.325101, 45.533002], + [9.320604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.537499], + [9.320604, 45.541996], + [9.325101, 45.541996], + [9.325101, 45.537499], + [9.320604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.541996], + [9.320604, 45.546492], + [9.325101, 45.546492], + [9.325101, 45.541996], + [9.320604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.546492], + [9.320604, 45.550989], + [9.325101, 45.550989], + [9.325101, 45.546492], + [9.320604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.550989], + [9.320604, 45.555485], + [9.325101, 45.555485], + [9.325101, 45.550989], + [9.320604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.555485], + [9.320604, 45.559982], + [9.325101, 45.559982], + [9.325101, 45.555485], + [9.320604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.559982], + [9.320604, 45.564479], + [9.325101, 45.564479], + [9.325101, 45.559982], + [9.320604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.564479], + [9.320604, 45.568975], + [9.325101, 45.568975], + [9.325101, 45.564479], + [9.320604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.568975], + [9.320604, 45.573472], + [9.325101, 45.573472], + [9.325101, 45.568975], + [9.320604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.573472], + [9.320604, 45.577968], + [9.325101, 45.577968], + [9.325101, 45.573472], + [9.320604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.577968], + [9.320604, 45.582465], + [9.325101, 45.582465], + [9.325101, 45.577968], + [9.320604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.582465], + [9.320604, 45.586962], + [9.325101, 45.586962], + [9.325101, 45.582465], + [9.320604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.586962], + [9.320604, 45.591458], + [9.325101, 45.591458], + [9.325101, 45.586962], + [9.320604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.591458], + [9.320604, 45.595955], + [9.325101, 45.595955], + [9.325101, 45.591458], + [9.320604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.595955], + [9.320604, 45.600451], + [9.325101, 45.600451], + [9.325101, 45.595955], + [9.320604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.600451], + [9.320604, 45.604948], + [9.325101, 45.604948], + [9.325101, 45.600451], + [9.320604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.604948], + [9.320604, 45.609445], + [9.325101, 45.609445], + [9.325101, 45.604948], + [9.320604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.609445], + [9.320604, 45.613941], + [9.325101, 45.613941], + [9.325101, 45.609445], + [9.320604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.613941], + [9.320604, 45.618438], + [9.325101, 45.618438], + [9.325101, 45.613941], + [9.320604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.618438], + [9.320604, 45.622934], + [9.325101, 45.622934], + [9.325101, 45.618438], + [9.320604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.622934], + [9.320604, 45.627431], + [9.325101, 45.627431], + [9.325101, 45.622934], + [9.320604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.627431], + [9.320604, 45.631928], + [9.325101, 45.631928], + [9.325101, 45.627431], + [9.320604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.320604, 45.631928], + [9.320604, 45.636424], + [9.325101, 45.636424], + [9.325101, 45.631928], + [9.320604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.339648], + [9.325101, 45.344145], + [9.329597, 45.344145], + [9.329597, 45.339648], + [9.325101, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.344145], + [9.325101, 45.348642], + [9.329597, 45.348642], + [9.329597, 45.344145], + [9.325101, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.348642], + [9.325101, 45.353138], + [9.329597, 45.353138], + [9.329597, 45.348642], + [9.325101, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.353138], + [9.325101, 45.357635], + [9.329597, 45.357635], + [9.329597, 45.353138], + [9.325101, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.357635], + [9.325101, 45.362131], + [9.329597, 45.362131], + [9.329597, 45.357635], + [9.325101, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.362131], + [9.325101, 45.366628], + [9.329597, 45.366628], + [9.329597, 45.362131], + [9.325101, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.366628], + [9.325101, 45.371125], + [9.329597, 45.371125], + [9.329597, 45.366628], + [9.325101, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.371125], + [9.325101, 45.375621], + [9.329597, 45.375621], + [9.329597, 45.371125], + [9.325101, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.375621], + [9.325101, 45.380118], + [9.329597, 45.380118], + [9.329597, 45.375621], + [9.325101, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.380118], + [9.325101, 45.384614], + [9.329597, 45.384614], + [9.329597, 45.380118], + [9.325101, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.384614], + [9.325101, 45.389111], + [9.329597, 45.389111], + [9.329597, 45.384614], + [9.325101, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.389111], + [9.325101, 45.393608], + [9.329597, 45.393608], + [9.329597, 45.389111], + [9.325101, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.393608], + [9.325101, 45.398104], + [9.329597, 45.398104], + [9.329597, 45.393608], + [9.325101, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.398104], + [9.325101, 45.402601], + [9.329597, 45.402601], + [9.329597, 45.398104], + [9.325101, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.402601], + [9.325101, 45.407097], + [9.329597, 45.407097], + [9.329597, 45.402601], + [9.325101, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.407097], + [9.325101, 45.411594], + [9.329597, 45.411594], + [9.329597, 45.407097], + [9.325101, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.411594], + [9.325101, 45.416091], + [9.329597, 45.416091], + [9.329597, 45.411594], + [9.325101, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.416091], + [9.325101, 45.420587], + [9.329597, 45.420587], + [9.329597, 45.416091], + [9.325101, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.420587], + [9.325101, 45.425084], + [9.329597, 45.425084], + [9.329597, 45.420587], + [9.325101, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.425084], + [9.325101, 45.42958], + [9.329597, 45.42958], + [9.329597, 45.425084], + [9.325101, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.42958], + [9.325101, 45.434077], + [9.329597, 45.434077], + [9.329597, 45.42958], + [9.325101, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.434077], + [9.325101, 45.438574], + [9.329597, 45.438574], + [9.329597, 45.434077], + [9.325101, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.438574], + [9.325101, 45.44307], + [9.329597, 45.44307], + [9.329597, 45.438574], + [9.325101, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.44307], + [9.325101, 45.447567], + [9.329597, 45.447567], + [9.329597, 45.44307], + [9.325101, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.447567], + [9.325101, 45.452063], + [9.329597, 45.452063], + [9.329597, 45.447567], + [9.325101, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.452063], + [9.325101, 45.45656], + [9.329597, 45.45656], + [9.329597, 45.452063], + [9.325101, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.45656], + [9.325101, 45.461057], + [9.329597, 45.461057], + [9.329597, 45.45656], + [9.325101, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.461057], + [9.325101, 45.465553], + [9.329597, 45.465553], + [9.329597, 45.461057], + [9.325101, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.465553], + [9.325101, 45.47005], + [9.329597, 45.47005], + [9.329597, 45.465553], + [9.325101, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.47005], + [9.325101, 45.474547], + [9.329597, 45.474547], + [9.329597, 45.47005], + [9.325101, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.474547], + [9.325101, 45.479043], + [9.329597, 45.479043], + [9.329597, 45.474547], + [9.325101, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.479043], + [9.325101, 45.48354], + [9.329597, 45.48354], + [9.329597, 45.479043], + [9.325101, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.48354], + [9.325101, 45.488036], + [9.329597, 45.488036], + [9.329597, 45.48354], + [9.325101, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.488036], + [9.325101, 45.492533], + [9.329597, 45.492533], + [9.329597, 45.488036], + [9.325101, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.492533], + [9.325101, 45.49703], + [9.329597, 45.49703], + [9.329597, 45.492533], + [9.325101, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.49703], + [9.325101, 45.501526], + [9.329597, 45.501526], + [9.329597, 45.49703], + [9.325101, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.501526], + [9.325101, 45.506023], + [9.329597, 45.506023], + [9.329597, 45.501526], + [9.325101, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.506023], + [9.325101, 45.510519], + [9.329597, 45.510519], + [9.329597, 45.506023], + [9.325101, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.510519], + [9.325101, 45.515016], + [9.329597, 45.515016], + [9.329597, 45.510519], + [9.325101, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.515016], + [9.325101, 45.519513], + [9.329597, 45.519513], + [9.329597, 45.515016], + [9.325101, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.519513], + [9.325101, 45.524009], + [9.329597, 45.524009], + [9.329597, 45.519513], + [9.325101, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.524009], + [9.325101, 45.528506], + [9.329597, 45.528506], + [9.329597, 45.524009], + [9.325101, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.528506], + [9.325101, 45.533002], + [9.329597, 45.533002], + [9.329597, 45.528506], + [9.325101, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.533002], + [9.325101, 45.537499], + [9.329597, 45.537499], + [9.329597, 45.533002], + [9.325101, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.537499], + [9.325101, 45.541996], + [9.329597, 45.541996], + [9.329597, 45.537499], + [9.325101, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.541996], + [9.325101, 45.546492], + [9.329597, 45.546492], + [9.329597, 45.541996], + [9.325101, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.546492], + [9.325101, 45.550989], + [9.329597, 45.550989], + [9.329597, 45.546492], + [9.325101, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.550989], + [9.325101, 45.555485], + [9.329597, 45.555485], + [9.329597, 45.550989], + [9.325101, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.555485], + [9.325101, 45.559982], + [9.329597, 45.559982], + [9.329597, 45.555485], + [9.325101, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.559982], + [9.325101, 45.564479], + [9.329597, 45.564479], + [9.329597, 45.559982], + [9.325101, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.564479], + [9.325101, 45.568975], + [9.329597, 45.568975], + [9.329597, 45.564479], + [9.325101, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.568975], + [9.325101, 45.573472], + [9.329597, 45.573472], + [9.329597, 45.568975], + [9.325101, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.573472], + [9.325101, 45.577968], + [9.329597, 45.577968], + [9.329597, 45.573472], + [9.325101, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.577968], + [9.325101, 45.582465], + [9.329597, 45.582465], + [9.329597, 45.577968], + [9.325101, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.582465], + [9.325101, 45.586962], + [9.329597, 45.586962], + [9.329597, 45.582465], + [9.325101, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.586962], + [9.325101, 45.591458], + [9.329597, 45.591458], + [9.329597, 45.586962], + [9.325101, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.591458], + [9.325101, 45.595955], + [9.329597, 45.595955], + [9.329597, 45.591458], + [9.325101, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.595955], + [9.325101, 45.600451], + [9.329597, 45.600451], + [9.329597, 45.595955], + [9.325101, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.600451], + [9.325101, 45.604948], + [9.329597, 45.604948], + [9.329597, 45.600451], + [9.325101, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.604948], + [9.325101, 45.609445], + [9.329597, 45.609445], + [9.329597, 45.604948], + [9.325101, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.609445], + [9.325101, 45.613941], + [9.329597, 45.613941], + [9.329597, 45.609445], + [9.325101, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.613941], + [9.325101, 45.618438], + [9.329597, 45.618438], + [9.329597, 45.613941], + [9.325101, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.618438], + [9.325101, 45.622934], + [9.329597, 45.622934], + [9.329597, 45.618438], + [9.325101, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.622934], + [9.325101, 45.627431], + [9.329597, 45.627431], + [9.329597, 45.622934], + [9.325101, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.627431], + [9.325101, 45.631928], + [9.329597, 45.631928], + [9.329597, 45.627431], + [9.325101, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.325101, 45.631928], + [9.325101, 45.636424], + [9.329597, 45.636424], + [9.329597, 45.631928], + [9.325101, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.339648], + [9.329597, 45.344145], + [9.334094, 45.344145], + [9.334094, 45.339648], + [9.329597, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.344145], + [9.329597, 45.348642], + [9.334094, 45.348642], + [9.334094, 45.344145], + [9.329597, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.348642], + [9.329597, 45.353138], + [9.334094, 45.353138], + [9.334094, 45.348642], + [9.329597, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.353138], + [9.329597, 45.357635], + [9.334094, 45.357635], + [9.334094, 45.353138], + [9.329597, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.357635], + [9.329597, 45.362131], + [9.334094, 45.362131], + [9.334094, 45.357635], + [9.329597, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.362131], + [9.329597, 45.366628], + [9.334094, 45.366628], + [9.334094, 45.362131], + [9.329597, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.366628], + [9.329597, 45.371125], + [9.334094, 45.371125], + [9.334094, 45.366628], + [9.329597, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.371125], + [9.329597, 45.375621], + [9.334094, 45.375621], + [9.334094, 45.371125], + [9.329597, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.375621], + [9.329597, 45.380118], + [9.334094, 45.380118], + [9.334094, 45.375621], + [9.329597, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.380118], + [9.329597, 45.384614], + [9.334094, 45.384614], + [9.334094, 45.380118], + [9.329597, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.384614], + [9.329597, 45.389111], + [9.334094, 45.389111], + [9.334094, 45.384614], + [9.329597, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.389111], + [9.329597, 45.393608], + [9.334094, 45.393608], + [9.334094, 45.389111], + [9.329597, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.393608], + [9.329597, 45.398104], + [9.334094, 45.398104], + [9.334094, 45.393608], + [9.329597, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.398104], + [9.329597, 45.402601], + [9.334094, 45.402601], + [9.334094, 45.398104], + [9.329597, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.402601], + [9.329597, 45.407097], + [9.334094, 45.407097], + [9.334094, 45.402601], + [9.329597, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.407097], + [9.329597, 45.411594], + [9.334094, 45.411594], + [9.334094, 45.407097], + [9.329597, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.411594], + [9.329597, 45.416091], + [9.334094, 45.416091], + [9.334094, 45.411594], + [9.329597, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.416091], + [9.329597, 45.420587], + [9.334094, 45.420587], + [9.334094, 45.416091], + [9.329597, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.420587], + [9.329597, 45.425084], + [9.334094, 45.425084], + [9.334094, 45.420587], + [9.329597, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.425084], + [9.329597, 45.42958], + [9.334094, 45.42958], + [9.334094, 45.425084], + [9.329597, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.42958], + [9.329597, 45.434077], + [9.334094, 45.434077], + [9.334094, 45.42958], + [9.329597, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.434077], + [9.329597, 45.438574], + [9.334094, 45.438574], + [9.334094, 45.434077], + [9.329597, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.438574], + [9.329597, 45.44307], + [9.334094, 45.44307], + [9.334094, 45.438574], + [9.329597, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.44307], + [9.329597, 45.447567], + [9.334094, 45.447567], + [9.334094, 45.44307], + [9.329597, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.447567], + [9.329597, 45.452063], + [9.334094, 45.452063], + [9.334094, 45.447567], + [9.329597, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.452063], + [9.329597, 45.45656], + [9.334094, 45.45656], + [9.334094, 45.452063], + [9.329597, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.45656], + [9.329597, 45.461057], + [9.334094, 45.461057], + [9.334094, 45.45656], + [9.329597, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.461057], + [9.329597, 45.465553], + [9.334094, 45.465553], + [9.334094, 45.461057], + [9.329597, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.465553], + [9.329597, 45.47005], + [9.334094, 45.47005], + [9.334094, 45.465553], + [9.329597, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.47005], + [9.329597, 45.474547], + [9.334094, 45.474547], + [9.334094, 45.47005], + [9.329597, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.474547], + [9.329597, 45.479043], + [9.334094, 45.479043], + [9.334094, 45.474547], + [9.329597, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.479043], + [9.329597, 45.48354], + [9.334094, 45.48354], + [9.334094, 45.479043], + [9.329597, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.48354], + [9.329597, 45.488036], + [9.334094, 45.488036], + [9.334094, 45.48354], + [9.329597, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.488036], + [9.329597, 45.492533], + [9.334094, 45.492533], + [9.334094, 45.488036], + [9.329597, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.492533], + [9.329597, 45.49703], + [9.334094, 45.49703], + [9.334094, 45.492533], + [9.329597, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.49703], + [9.329597, 45.501526], + [9.334094, 45.501526], + [9.334094, 45.49703], + [9.329597, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.501526], + [9.329597, 45.506023], + [9.334094, 45.506023], + [9.334094, 45.501526], + [9.329597, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.506023], + [9.329597, 45.510519], + [9.334094, 45.510519], + [9.334094, 45.506023], + [9.329597, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.510519], + [9.329597, 45.515016], + [9.334094, 45.515016], + [9.334094, 45.510519], + [9.329597, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.515016], + [9.329597, 45.519513], + [9.334094, 45.519513], + [9.334094, 45.515016], + [9.329597, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.519513], + [9.329597, 45.524009], + [9.334094, 45.524009], + [9.334094, 45.519513], + [9.329597, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.524009], + [9.329597, 45.528506], + [9.334094, 45.528506], + [9.334094, 45.524009], + [9.329597, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.528506], + [9.329597, 45.533002], + [9.334094, 45.533002], + [9.334094, 45.528506], + [9.329597, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.533002], + [9.329597, 45.537499], + [9.334094, 45.537499], + [9.334094, 45.533002], + [9.329597, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.537499], + [9.329597, 45.541996], + [9.334094, 45.541996], + [9.334094, 45.537499], + [9.329597, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.541996], + [9.329597, 45.546492], + [9.334094, 45.546492], + [9.334094, 45.541996], + [9.329597, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.546492], + [9.329597, 45.550989], + [9.334094, 45.550989], + [9.334094, 45.546492], + [9.329597, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.550989], + [9.329597, 45.555485], + [9.334094, 45.555485], + [9.334094, 45.550989], + [9.329597, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.555485], + [9.329597, 45.559982], + [9.334094, 45.559982], + [9.334094, 45.555485], + [9.329597, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.559982], + [9.329597, 45.564479], + [9.334094, 45.564479], + [9.334094, 45.559982], + [9.329597, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.564479], + [9.329597, 45.568975], + [9.334094, 45.568975], + [9.334094, 45.564479], + [9.329597, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.568975], + [9.329597, 45.573472], + [9.334094, 45.573472], + [9.334094, 45.568975], + [9.329597, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.573472], + [9.329597, 45.577968], + [9.334094, 45.577968], + [9.334094, 45.573472], + [9.329597, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.577968], + [9.329597, 45.582465], + [9.334094, 45.582465], + [9.334094, 45.577968], + [9.329597, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.582465], + [9.329597, 45.586962], + [9.334094, 45.586962], + [9.334094, 45.582465], + [9.329597, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.586962], + [9.329597, 45.591458], + [9.334094, 45.591458], + [9.334094, 45.586962], + [9.329597, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.591458], + [9.329597, 45.595955], + [9.334094, 45.595955], + [9.334094, 45.591458], + [9.329597, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.595955], + [9.329597, 45.600451], + [9.334094, 45.600451], + [9.334094, 45.595955], + [9.329597, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.600451], + [9.329597, 45.604948], + [9.334094, 45.604948], + [9.334094, 45.600451], + [9.329597, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.604948], + [9.329597, 45.609445], + [9.334094, 45.609445], + [9.334094, 45.604948], + [9.329597, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.609445], + [9.329597, 45.613941], + [9.334094, 45.613941], + [9.334094, 45.609445], + [9.329597, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.613941], + [9.329597, 45.618438], + [9.334094, 45.618438], + [9.334094, 45.613941], + [9.329597, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.618438], + [9.329597, 45.622934], + [9.334094, 45.622934], + [9.334094, 45.618438], + [9.329597, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.622934], + [9.329597, 45.627431], + [9.334094, 45.627431], + [9.334094, 45.622934], + [9.329597, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.627431], + [9.329597, 45.631928], + [9.334094, 45.631928], + [9.334094, 45.627431], + [9.329597, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.329597, 45.631928], + [9.329597, 45.636424], + [9.334094, 45.636424], + [9.334094, 45.631928], + [9.329597, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.339648], + [9.334094, 45.344145], + [9.338591, 45.344145], + [9.338591, 45.339648], + [9.334094, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.344145], + [9.334094, 45.348642], + [9.338591, 45.348642], + [9.338591, 45.344145], + [9.334094, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.348642], + [9.334094, 45.353138], + [9.338591, 45.353138], + [9.338591, 45.348642], + [9.334094, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.353138], + [9.334094, 45.357635], + [9.338591, 45.357635], + [9.338591, 45.353138], + [9.334094, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.357635], + [9.334094, 45.362131], + [9.338591, 45.362131], + [9.338591, 45.357635], + [9.334094, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.362131], + [9.334094, 45.366628], + [9.338591, 45.366628], + [9.338591, 45.362131], + [9.334094, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.366628], + [9.334094, 45.371125], + [9.338591, 45.371125], + [9.338591, 45.366628], + [9.334094, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.371125], + [9.334094, 45.375621], + [9.338591, 45.375621], + [9.338591, 45.371125], + [9.334094, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.375621], + [9.334094, 45.380118], + [9.338591, 45.380118], + [9.338591, 45.375621], + [9.334094, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.380118], + [9.334094, 45.384614], + [9.338591, 45.384614], + [9.338591, 45.380118], + [9.334094, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.384614], + [9.334094, 45.389111], + [9.338591, 45.389111], + [9.338591, 45.384614], + [9.334094, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.389111], + [9.334094, 45.393608], + [9.338591, 45.393608], + [9.338591, 45.389111], + [9.334094, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.393608], + [9.334094, 45.398104], + [9.338591, 45.398104], + [9.338591, 45.393608], + [9.334094, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.398104], + [9.334094, 45.402601], + [9.338591, 45.402601], + [9.338591, 45.398104], + [9.334094, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.402601], + [9.334094, 45.407097], + [9.338591, 45.407097], + [9.338591, 45.402601], + [9.334094, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.407097], + [9.334094, 45.411594], + [9.338591, 45.411594], + [9.338591, 45.407097], + [9.334094, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.411594], + [9.334094, 45.416091], + [9.338591, 45.416091], + [9.338591, 45.411594], + [9.334094, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.416091], + [9.334094, 45.420587], + [9.338591, 45.420587], + [9.338591, 45.416091], + [9.334094, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.420587], + [9.334094, 45.425084], + [9.338591, 45.425084], + [9.338591, 45.420587], + [9.334094, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.425084], + [9.334094, 45.42958], + [9.338591, 45.42958], + [9.338591, 45.425084], + [9.334094, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.42958], + [9.334094, 45.434077], + [9.338591, 45.434077], + [9.338591, 45.42958], + [9.334094, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.434077], + [9.334094, 45.438574], + [9.338591, 45.438574], + [9.338591, 45.434077], + [9.334094, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.438574], + [9.334094, 45.44307], + [9.338591, 45.44307], + [9.338591, 45.438574], + [9.334094, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.44307], + [9.334094, 45.447567], + [9.338591, 45.447567], + [9.338591, 45.44307], + [9.334094, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.447567], + [9.334094, 45.452063], + [9.338591, 45.452063], + [9.338591, 45.447567], + [9.334094, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.452063], + [9.334094, 45.45656], + [9.338591, 45.45656], + [9.338591, 45.452063], + [9.334094, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.45656], + [9.334094, 45.461057], + [9.338591, 45.461057], + [9.338591, 45.45656], + [9.334094, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.461057], + [9.334094, 45.465553], + [9.338591, 45.465553], + [9.338591, 45.461057], + [9.334094, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.465553], + [9.334094, 45.47005], + [9.338591, 45.47005], + [9.338591, 45.465553], + [9.334094, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.47005], + [9.334094, 45.474547], + [9.338591, 45.474547], + [9.338591, 45.47005], + [9.334094, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.474547], + [9.334094, 45.479043], + [9.338591, 45.479043], + [9.338591, 45.474547], + [9.334094, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.479043], + [9.334094, 45.48354], + [9.338591, 45.48354], + [9.338591, 45.479043], + [9.334094, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.48354], + [9.334094, 45.488036], + [9.338591, 45.488036], + [9.338591, 45.48354], + [9.334094, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.488036], + [9.334094, 45.492533], + [9.338591, 45.492533], + [9.338591, 45.488036], + [9.334094, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.492533], + [9.334094, 45.49703], + [9.338591, 45.49703], + [9.338591, 45.492533], + [9.334094, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.49703], + [9.334094, 45.501526], + [9.338591, 45.501526], + [9.338591, 45.49703], + [9.334094, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.501526], + [9.334094, 45.506023], + [9.338591, 45.506023], + [9.338591, 45.501526], + [9.334094, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.506023], + [9.334094, 45.510519], + [9.338591, 45.510519], + [9.338591, 45.506023], + [9.334094, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.510519], + [9.334094, 45.515016], + [9.338591, 45.515016], + [9.338591, 45.510519], + [9.334094, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.515016], + [9.334094, 45.519513], + [9.338591, 45.519513], + [9.338591, 45.515016], + [9.334094, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.519513], + [9.334094, 45.524009], + [9.338591, 45.524009], + [9.338591, 45.519513], + [9.334094, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.524009], + [9.334094, 45.528506], + [9.338591, 45.528506], + [9.338591, 45.524009], + [9.334094, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.528506], + [9.334094, 45.533002], + [9.338591, 45.533002], + [9.338591, 45.528506], + [9.334094, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.533002], + [9.334094, 45.537499], + [9.338591, 45.537499], + [9.338591, 45.533002], + [9.334094, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.537499], + [9.334094, 45.541996], + [9.338591, 45.541996], + [9.338591, 45.537499], + [9.334094, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.541996], + [9.334094, 45.546492], + [9.338591, 45.546492], + [9.338591, 45.541996], + [9.334094, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.546492], + [9.334094, 45.550989], + [9.338591, 45.550989], + [9.338591, 45.546492], + [9.334094, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.550989], + [9.334094, 45.555485], + [9.338591, 45.555485], + [9.338591, 45.550989], + [9.334094, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.555485], + [9.334094, 45.559982], + [9.338591, 45.559982], + [9.338591, 45.555485], + [9.334094, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.559982], + [9.334094, 45.564479], + [9.338591, 45.564479], + [9.338591, 45.559982], + [9.334094, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.564479], + [9.334094, 45.568975], + [9.338591, 45.568975], + [9.338591, 45.564479], + [9.334094, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.568975], + [9.334094, 45.573472], + [9.338591, 45.573472], + [9.338591, 45.568975], + [9.334094, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.573472], + [9.334094, 45.577968], + [9.338591, 45.577968], + [9.338591, 45.573472], + [9.334094, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.577968], + [9.334094, 45.582465], + [9.338591, 45.582465], + [9.338591, 45.577968], + [9.334094, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.582465], + [9.334094, 45.586962], + [9.338591, 45.586962], + [9.338591, 45.582465], + [9.334094, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.586962], + [9.334094, 45.591458], + [9.338591, 45.591458], + [9.338591, 45.586962], + [9.334094, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.591458], + [9.334094, 45.595955], + [9.338591, 45.595955], + [9.338591, 45.591458], + [9.334094, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.595955], + [9.334094, 45.600451], + [9.338591, 45.600451], + [9.338591, 45.595955], + [9.334094, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.600451], + [9.334094, 45.604948], + [9.338591, 45.604948], + [9.338591, 45.600451], + [9.334094, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.604948], + [9.334094, 45.609445], + [9.338591, 45.609445], + [9.338591, 45.604948], + [9.334094, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.609445], + [9.334094, 45.613941], + [9.338591, 45.613941], + [9.338591, 45.609445], + [9.334094, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.613941], + [9.334094, 45.618438], + [9.338591, 45.618438], + [9.338591, 45.613941], + [9.334094, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.618438], + [9.334094, 45.622934], + [9.338591, 45.622934], + [9.338591, 45.618438], + [9.334094, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.622934], + [9.334094, 45.627431], + [9.338591, 45.627431], + [9.338591, 45.622934], + [9.334094, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.627431], + [9.334094, 45.631928], + [9.338591, 45.631928], + [9.338591, 45.627431], + [9.334094, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.334094, 45.631928], + [9.334094, 45.636424], + [9.338591, 45.636424], + [9.338591, 45.631928], + [9.334094, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.339648], + [9.338591, 45.344145], + [9.343087, 45.344145], + [9.343087, 45.339648], + [9.338591, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.344145], + [9.338591, 45.348642], + [9.343087, 45.348642], + [9.343087, 45.344145], + [9.338591, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.348642], + [9.338591, 45.353138], + [9.343087, 45.353138], + [9.343087, 45.348642], + [9.338591, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.353138], + [9.338591, 45.357635], + [9.343087, 45.357635], + [9.343087, 45.353138], + [9.338591, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.357635], + [9.338591, 45.362131], + [9.343087, 45.362131], + [9.343087, 45.357635], + [9.338591, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.362131], + [9.338591, 45.366628], + [9.343087, 45.366628], + [9.343087, 45.362131], + [9.338591, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.366628], + [9.338591, 45.371125], + [9.343087, 45.371125], + [9.343087, 45.366628], + [9.338591, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.371125], + [9.338591, 45.375621], + [9.343087, 45.375621], + [9.343087, 45.371125], + [9.338591, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.375621], + [9.338591, 45.380118], + [9.343087, 45.380118], + [9.343087, 45.375621], + [9.338591, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.380118], + [9.338591, 45.384614], + [9.343087, 45.384614], + [9.343087, 45.380118], + [9.338591, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.384614], + [9.338591, 45.389111], + [9.343087, 45.389111], + [9.343087, 45.384614], + [9.338591, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.389111], + [9.338591, 45.393608], + [9.343087, 45.393608], + [9.343087, 45.389111], + [9.338591, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.393608], + [9.338591, 45.398104], + [9.343087, 45.398104], + [9.343087, 45.393608], + [9.338591, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.398104], + [9.338591, 45.402601], + [9.343087, 45.402601], + [9.343087, 45.398104], + [9.338591, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.402601], + [9.338591, 45.407097], + [9.343087, 45.407097], + [9.343087, 45.402601], + [9.338591, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.407097], + [9.338591, 45.411594], + [9.343087, 45.411594], + [9.343087, 45.407097], + [9.338591, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.411594], + [9.338591, 45.416091], + [9.343087, 45.416091], + [9.343087, 45.411594], + [9.338591, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.416091], + [9.338591, 45.420587], + [9.343087, 45.420587], + [9.343087, 45.416091], + [9.338591, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.420587], + [9.338591, 45.425084], + [9.343087, 45.425084], + [9.343087, 45.420587], + [9.338591, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.425084], + [9.338591, 45.42958], + [9.343087, 45.42958], + [9.343087, 45.425084], + [9.338591, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.42958], + [9.338591, 45.434077], + [9.343087, 45.434077], + [9.343087, 45.42958], + [9.338591, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.434077], + [9.338591, 45.438574], + [9.343087, 45.438574], + [9.343087, 45.434077], + [9.338591, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.438574], + [9.338591, 45.44307], + [9.343087, 45.44307], + [9.343087, 45.438574], + [9.338591, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.44307], + [9.338591, 45.447567], + [9.343087, 45.447567], + [9.343087, 45.44307], + [9.338591, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.447567], + [9.338591, 45.452063], + [9.343087, 45.452063], + [9.343087, 45.447567], + [9.338591, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.452063], + [9.338591, 45.45656], + [9.343087, 45.45656], + [9.343087, 45.452063], + [9.338591, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.45656], + [9.338591, 45.461057], + [9.343087, 45.461057], + [9.343087, 45.45656], + [9.338591, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.461057], + [9.338591, 45.465553], + [9.343087, 45.465553], + [9.343087, 45.461057], + [9.338591, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.465553], + [9.338591, 45.47005], + [9.343087, 45.47005], + [9.343087, 45.465553], + [9.338591, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.47005], + [9.338591, 45.474547], + [9.343087, 45.474547], + [9.343087, 45.47005], + [9.338591, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.474547], + [9.338591, 45.479043], + [9.343087, 45.479043], + [9.343087, 45.474547], + [9.338591, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.479043], + [9.338591, 45.48354], + [9.343087, 45.48354], + [9.343087, 45.479043], + [9.338591, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.48354], + [9.338591, 45.488036], + [9.343087, 45.488036], + [9.343087, 45.48354], + [9.338591, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.488036], + [9.338591, 45.492533], + [9.343087, 45.492533], + [9.343087, 45.488036], + [9.338591, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.492533], + [9.338591, 45.49703], + [9.343087, 45.49703], + [9.343087, 45.492533], + [9.338591, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.49703], + [9.338591, 45.501526], + [9.343087, 45.501526], + [9.343087, 45.49703], + [9.338591, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.501526], + [9.338591, 45.506023], + [9.343087, 45.506023], + [9.343087, 45.501526], + [9.338591, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.506023], + [9.338591, 45.510519], + [9.343087, 45.510519], + [9.343087, 45.506023], + [9.338591, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.510519], + [9.338591, 45.515016], + [9.343087, 45.515016], + [9.343087, 45.510519], + [9.338591, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.515016], + [9.338591, 45.519513], + [9.343087, 45.519513], + [9.343087, 45.515016], + [9.338591, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.519513], + [9.338591, 45.524009], + [9.343087, 45.524009], + [9.343087, 45.519513], + [9.338591, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.524009], + [9.338591, 45.528506], + [9.343087, 45.528506], + [9.343087, 45.524009], + [9.338591, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.528506], + [9.338591, 45.533002], + [9.343087, 45.533002], + [9.343087, 45.528506], + [9.338591, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.533002], + [9.338591, 45.537499], + [9.343087, 45.537499], + [9.343087, 45.533002], + [9.338591, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.537499], + [9.338591, 45.541996], + [9.343087, 45.541996], + [9.343087, 45.537499], + [9.338591, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.541996], + [9.338591, 45.546492], + [9.343087, 45.546492], + [9.343087, 45.541996], + [9.338591, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.546492], + [9.338591, 45.550989], + [9.343087, 45.550989], + [9.343087, 45.546492], + [9.338591, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.550989], + [9.338591, 45.555485], + [9.343087, 45.555485], + [9.343087, 45.550989], + [9.338591, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.555485], + [9.338591, 45.559982], + [9.343087, 45.559982], + [9.343087, 45.555485], + [9.338591, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.559982], + [9.338591, 45.564479], + [9.343087, 45.564479], + [9.343087, 45.559982], + [9.338591, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.564479], + [9.338591, 45.568975], + [9.343087, 45.568975], + [9.343087, 45.564479], + [9.338591, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.568975], + [9.338591, 45.573472], + [9.343087, 45.573472], + [9.343087, 45.568975], + [9.338591, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.573472], + [9.338591, 45.577968], + [9.343087, 45.577968], + [9.343087, 45.573472], + [9.338591, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.577968], + [9.338591, 45.582465], + [9.343087, 45.582465], + [9.343087, 45.577968], + [9.338591, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.582465], + [9.338591, 45.586962], + [9.343087, 45.586962], + [9.343087, 45.582465], + [9.338591, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.586962], + [9.338591, 45.591458], + [9.343087, 45.591458], + [9.343087, 45.586962], + [9.338591, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.591458], + [9.338591, 45.595955], + [9.343087, 45.595955], + [9.343087, 45.591458], + [9.338591, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.595955], + [9.338591, 45.600451], + [9.343087, 45.600451], + [9.343087, 45.595955], + [9.338591, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.600451], + [9.338591, 45.604948], + [9.343087, 45.604948], + [9.343087, 45.600451], + [9.338591, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.604948], + [9.338591, 45.609445], + [9.343087, 45.609445], + [9.343087, 45.604948], + [9.338591, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.609445], + [9.338591, 45.613941], + [9.343087, 45.613941], + [9.343087, 45.609445], + [9.338591, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.613941], + [9.338591, 45.618438], + [9.343087, 45.618438], + [9.343087, 45.613941], + [9.338591, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.618438], + [9.338591, 45.622934], + [9.343087, 45.622934], + [9.343087, 45.618438], + [9.338591, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.622934], + [9.338591, 45.627431], + [9.343087, 45.627431], + [9.343087, 45.622934], + [9.338591, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.627431], + [9.338591, 45.631928], + [9.343087, 45.631928], + [9.343087, 45.627431], + [9.338591, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.338591, 45.631928], + [9.338591, 45.636424], + [9.343087, 45.636424], + [9.343087, 45.631928], + [9.338591, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.339648], + [9.343087, 45.344145], + [9.347584, 45.344145], + [9.347584, 45.339648], + [9.343087, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.344145], + [9.343087, 45.348642], + [9.347584, 45.348642], + [9.347584, 45.344145], + [9.343087, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.348642], + [9.343087, 45.353138], + [9.347584, 45.353138], + [9.347584, 45.348642], + [9.343087, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.353138], + [9.343087, 45.357635], + [9.347584, 45.357635], + [9.347584, 45.353138], + [9.343087, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.357635], + [9.343087, 45.362131], + [9.347584, 45.362131], + [9.347584, 45.357635], + [9.343087, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.362131], + [9.343087, 45.366628], + [9.347584, 45.366628], + [9.347584, 45.362131], + [9.343087, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.366628], + [9.343087, 45.371125], + [9.347584, 45.371125], + [9.347584, 45.366628], + [9.343087, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.371125], + [9.343087, 45.375621], + [9.347584, 45.375621], + [9.347584, 45.371125], + [9.343087, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.375621], + [9.343087, 45.380118], + [9.347584, 45.380118], + [9.347584, 45.375621], + [9.343087, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.380118], + [9.343087, 45.384614], + [9.347584, 45.384614], + [9.347584, 45.380118], + [9.343087, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.384614], + [9.343087, 45.389111], + [9.347584, 45.389111], + [9.347584, 45.384614], + [9.343087, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.389111], + [9.343087, 45.393608], + [9.347584, 45.393608], + [9.347584, 45.389111], + [9.343087, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.393608], + [9.343087, 45.398104], + [9.347584, 45.398104], + [9.347584, 45.393608], + [9.343087, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.398104], + [9.343087, 45.402601], + [9.347584, 45.402601], + [9.347584, 45.398104], + [9.343087, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.402601], + [9.343087, 45.407097], + [9.347584, 45.407097], + [9.347584, 45.402601], + [9.343087, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.407097], + [9.343087, 45.411594], + [9.347584, 45.411594], + [9.347584, 45.407097], + [9.343087, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.411594], + [9.343087, 45.416091], + [9.347584, 45.416091], + [9.347584, 45.411594], + [9.343087, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.416091], + [9.343087, 45.420587], + [9.347584, 45.420587], + [9.347584, 45.416091], + [9.343087, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.420587], + [9.343087, 45.425084], + [9.347584, 45.425084], + [9.347584, 45.420587], + [9.343087, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.425084], + [9.343087, 45.42958], + [9.347584, 45.42958], + [9.347584, 45.425084], + [9.343087, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.42958], + [9.343087, 45.434077], + [9.347584, 45.434077], + [9.347584, 45.42958], + [9.343087, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.434077], + [9.343087, 45.438574], + [9.347584, 45.438574], + [9.347584, 45.434077], + [9.343087, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.438574], + [9.343087, 45.44307], + [9.347584, 45.44307], + [9.347584, 45.438574], + [9.343087, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.44307], + [9.343087, 45.447567], + [9.347584, 45.447567], + [9.347584, 45.44307], + [9.343087, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.447567], + [9.343087, 45.452063], + [9.347584, 45.452063], + [9.347584, 45.447567], + [9.343087, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.452063], + [9.343087, 45.45656], + [9.347584, 45.45656], + [9.347584, 45.452063], + [9.343087, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.45656], + [9.343087, 45.461057], + [9.347584, 45.461057], + [9.347584, 45.45656], + [9.343087, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.461057], + [9.343087, 45.465553], + [9.347584, 45.465553], + [9.347584, 45.461057], + [9.343087, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.465553], + [9.343087, 45.47005], + [9.347584, 45.47005], + [9.347584, 45.465553], + [9.343087, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.47005], + [9.343087, 45.474547], + [9.347584, 45.474547], + [9.347584, 45.47005], + [9.343087, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.474547], + [9.343087, 45.479043], + [9.347584, 45.479043], + [9.347584, 45.474547], + [9.343087, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.479043], + [9.343087, 45.48354], + [9.347584, 45.48354], + [9.347584, 45.479043], + [9.343087, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.48354], + [9.343087, 45.488036], + [9.347584, 45.488036], + [9.347584, 45.48354], + [9.343087, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.488036], + [9.343087, 45.492533], + [9.347584, 45.492533], + [9.347584, 45.488036], + [9.343087, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.492533], + [9.343087, 45.49703], + [9.347584, 45.49703], + [9.347584, 45.492533], + [9.343087, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.49703], + [9.343087, 45.501526], + [9.347584, 45.501526], + [9.347584, 45.49703], + [9.343087, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.501526], + [9.343087, 45.506023], + [9.347584, 45.506023], + [9.347584, 45.501526], + [9.343087, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.506023], + [9.343087, 45.510519], + [9.347584, 45.510519], + [9.347584, 45.506023], + [9.343087, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.510519], + [9.343087, 45.515016], + [9.347584, 45.515016], + [9.347584, 45.510519], + [9.343087, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.515016], + [9.343087, 45.519513], + [9.347584, 45.519513], + [9.347584, 45.515016], + [9.343087, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.519513], + [9.343087, 45.524009], + [9.347584, 45.524009], + [9.347584, 45.519513], + [9.343087, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.524009], + [9.343087, 45.528506], + [9.347584, 45.528506], + [9.347584, 45.524009], + [9.343087, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.528506], + [9.343087, 45.533002], + [9.347584, 45.533002], + [9.347584, 45.528506], + [9.343087, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.533002], + [9.343087, 45.537499], + [9.347584, 45.537499], + [9.347584, 45.533002], + [9.343087, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.537499], + [9.343087, 45.541996], + [9.347584, 45.541996], + [9.347584, 45.537499], + [9.343087, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.541996], + [9.343087, 45.546492], + [9.347584, 45.546492], + [9.347584, 45.541996], + [9.343087, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.546492], + [9.343087, 45.550989], + [9.347584, 45.550989], + [9.347584, 45.546492], + [9.343087, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.550989], + [9.343087, 45.555485], + [9.347584, 45.555485], + [9.347584, 45.550989], + [9.343087, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.555485], + [9.343087, 45.559982], + [9.347584, 45.559982], + [9.347584, 45.555485], + [9.343087, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.559982], + [9.343087, 45.564479], + [9.347584, 45.564479], + [9.347584, 45.559982], + [9.343087, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.564479], + [9.343087, 45.568975], + [9.347584, 45.568975], + [9.347584, 45.564479], + [9.343087, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.568975], + [9.343087, 45.573472], + [9.347584, 45.573472], + [9.347584, 45.568975], + [9.343087, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.573472], + [9.343087, 45.577968], + [9.347584, 45.577968], + [9.347584, 45.573472], + [9.343087, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.577968], + [9.343087, 45.582465], + [9.347584, 45.582465], + [9.347584, 45.577968], + [9.343087, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.582465], + [9.343087, 45.586962], + [9.347584, 45.586962], + [9.347584, 45.582465], + [9.343087, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.586962], + [9.343087, 45.591458], + [9.347584, 45.591458], + [9.347584, 45.586962], + [9.343087, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.591458], + [9.343087, 45.595955], + [9.347584, 45.595955], + [9.347584, 45.591458], + [9.343087, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.595955], + [9.343087, 45.600451], + [9.347584, 45.600451], + [9.347584, 45.595955], + [9.343087, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.600451], + [9.343087, 45.604948], + [9.347584, 45.604948], + [9.347584, 45.600451], + [9.343087, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.604948], + [9.343087, 45.609445], + [9.347584, 45.609445], + [9.347584, 45.604948], + [9.343087, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.609445], + [9.343087, 45.613941], + [9.347584, 45.613941], + [9.347584, 45.609445], + [9.343087, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.613941], + [9.343087, 45.618438], + [9.347584, 45.618438], + [9.347584, 45.613941], + [9.343087, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.618438], + [9.343087, 45.622934], + [9.347584, 45.622934], + [9.347584, 45.618438], + [9.343087, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.622934], + [9.343087, 45.627431], + [9.347584, 45.627431], + [9.347584, 45.622934], + [9.343087, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.627431], + [9.343087, 45.631928], + [9.347584, 45.631928], + [9.347584, 45.627431], + [9.343087, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.343087, 45.631928], + [9.343087, 45.636424], + [9.347584, 45.636424], + [9.347584, 45.631928], + [9.343087, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.339648], + [9.347584, 45.344145], + [9.35208, 45.344145], + [9.35208, 45.339648], + [9.347584, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.344145], + [9.347584, 45.348642], + [9.35208, 45.348642], + [9.35208, 45.344145], + [9.347584, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.348642], + [9.347584, 45.353138], + [9.35208, 45.353138], + [9.35208, 45.348642], + [9.347584, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.353138], + [9.347584, 45.357635], + [9.35208, 45.357635], + [9.35208, 45.353138], + [9.347584, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.357635], + [9.347584, 45.362131], + [9.35208, 45.362131], + [9.35208, 45.357635], + [9.347584, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.362131], + [9.347584, 45.366628], + [9.35208, 45.366628], + [9.35208, 45.362131], + [9.347584, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.366628], + [9.347584, 45.371125], + [9.35208, 45.371125], + [9.35208, 45.366628], + [9.347584, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.371125], + [9.347584, 45.375621], + [9.35208, 45.375621], + [9.35208, 45.371125], + [9.347584, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.375621], + [9.347584, 45.380118], + [9.35208, 45.380118], + [9.35208, 45.375621], + [9.347584, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.380118], + [9.347584, 45.384614], + [9.35208, 45.384614], + [9.35208, 45.380118], + [9.347584, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.384614], + [9.347584, 45.389111], + [9.35208, 45.389111], + [9.35208, 45.384614], + [9.347584, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.389111], + [9.347584, 45.393608], + [9.35208, 45.393608], + [9.35208, 45.389111], + [9.347584, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.393608], + [9.347584, 45.398104], + [9.35208, 45.398104], + [9.35208, 45.393608], + [9.347584, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.398104], + [9.347584, 45.402601], + [9.35208, 45.402601], + [9.35208, 45.398104], + [9.347584, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.402601], + [9.347584, 45.407097], + [9.35208, 45.407097], + [9.35208, 45.402601], + [9.347584, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.407097], + [9.347584, 45.411594], + [9.35208, 45.411594], + [9.35208, 45.407097], + [9.347584, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.411594], + [9.347584, 45.416091], + [9.35208, 45.416091], + [9.35208, 45.411594], + [9.347584, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.416091], + [9.347584, 45.420587], + [9.35208, 45.420587], + [9.35208, 45.416091], + [9.347584, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.420587], + [9.347584, 45.425084], + [9.35208, 45.425084], + [9.35208, 45.420587], + [9.347584, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.425084], + [9.347584, 45.42958], + [9.35208, 45.42958], + [9.35208, 45.425084], + [9.347584, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.42958], + [9.347584, 45.434077], + [9.35208, 45.434077], + [9.35208, 45.42958], + [9.347584, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.434077], + [9.347584, 45.438574], + [9.35208, 45.438574], + [9.35208, 45.434077], + [9.347584, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.438574], + [9.347584, 45.44307], + [9.35208, 45.44307], + [9.35208, 45.438574], + [9.347584, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.44307], + [9.347584, 45.447567], + [9.35208, 45.447567], + [9.35208, 45.44307], + [9.347584, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.447567], + [9.347584, 45.452063], + [9.35208, 45.452063], + [9.35208, 45.447567], + [9.347584, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.452063], + [9.347584, 45.45656], + [9.35208, 45.45656], + [9.35208, 45.452063], + [9.347584, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.45656], + [9.347584, 45.461057], + [9.35208, 45.461057], + [9.35208, 45.45656], + [9.347584, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.461057], + [9.347584, 45.465553], + [9.35208, 45.465553], + [9.35208, 45.461057], + [9.347584, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.465553], + [9.347584, 45.47005], + [9.35208, 45.47005], + [9.35208, 45.465553], + [9.347584, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.47005], + [9.347584, 45.474547], + [9.35208, 45.474547], + [9.35208, 45.47005], + [9.347584, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.474547], + [9.347584, 45.479043], + [9.35208, 45.479043], + [9.35208, 45.474547], + [9.347584, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.479043], + [9.347584, 45.48354], + [9.35208, 45.48354], + [9.35208, 45.479043], + [9.347584, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.48354], + [9.347584, 45.488036], + [9.35208, 45.488036], + [9.35208, 45.48354], + [9.347584, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.488036], + [9.347584, 45.492533], + [9.35208, 45.492533], + [9.35208, 45.488036], + [9.347584, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.492533], + [9.347584, 45.49703], + [9.35208, 45.49703], + [9.35208, 45.492533], + [9.347584, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.49703], + [9.347584, 45.501526], + [9.35208, 45.501526], + [9.35208, 45.49703], + [9.347584, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.501526], + [9.347584, 45.506023], + [9.35208, 45.506023], + [9.35208, 45.501526], + [9.347584, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.506023], + [9.347584, 45.510519], + [9.35208, 45.510519], + [9.35208, 45.506023], + [9.347584, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.510519], + [9.347584, 45.515016], + [9.35208, 45.515016], + [9.35208, 45.510519], + [9.347584, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.515016], + [9.347584, 45.519513], + [9.35208, 45.519513], + [9.35208, 45.515016], + [9.347584, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.519513], + [9.347584, 45.524009], + [9.35208, 45.524009], + [9.35208, 45.519513], + [9.347584, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.524009], + [9.347584, 45.528506], + [9.35208, 45.528506], + [9.35208, 45.524009], + [9.347584, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.528506], + [9.347584, 45.533002], + [9.35208, 45.533002], + [9.35208, 45.528506], + [9.347584, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.533002], + [9.347584, 45.537499], + [9.35208, 45.537499], + [9.35208, 45.533002], + [9.347584, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.537499], + [9.347584, 45.541996], + [9.35208, 45.541996], + [9.35208, 45.537499], + [9.347584, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.541996], + [9.347584, 45.546492], + [9.35208, 45.546492], + [9.35208, 45.541996], + [9.347584, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.546492], + [9.347584, 45.550989], + [9.35208, 45.550989], + [9.35208, 45.546492], + [9.347584, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.550989], + [9.347584, 45.555485], + [9.35208, 45.555485], + [9.35208, 45.550989], + [9.347584, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.555485], + [9.347584, 45.559982], + [9.35208, 45.559982], + [9.35208, 45.555485], + [9.347584, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.559982], + [9.347584, 45.564479], + [9.35208, 45.564479], + [9.35208, 45.559982], + [9.347584, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.564479], + [9.347584, 45.568975], + [9.35208, 45.568975], + [9.35208, 45.564479], + [9.347584, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.568975], + [9.347584, 45.573472], + [9.35208, 45.573472], + [9.35208, 45.568975], + [9.347584, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.573472], + [9.347584, 45.577968], + [9.35208, 45.577968], + [9.35208, 45.573472], + [9.347584, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.577968], + [9.347584, 45.582465], + [9.35208, 45.582465], + [9.35208, 45.577968], + [9.347584, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.582465], + [9.347584, 45.586962], + [9.35208, 45.586962], + [9.35208, 45.582465], + [9.347584, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.586962], + [9.347584, 45.591458], + [9.35208, 45.591458], + [9.35208, 45.586962], + [9.347584, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.591458], + [9.347584, 45.595955], + [9.35208, 45.595955], + [9.35208, 45.591458], + [9.347584, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.595955], + [9.347584, 45.600451], + [9.35208, 45.600451], + [9.35208, 45.595955], + [9.347584, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.600451], + [9.347584, 45.604948], + [9.35208, 45.604948], + [9.35208, 45.600451], + [9.347584, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.604948], + [9.347584, 45.609445], + [9.35208, 45.609445], + [9.35208, 45.604948], + [9.347584, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.609445], + [9.347584, 45.613941], + [9.35208, 45.613941], + [9.35208, 45.609445], + [9.347584, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.613941], + [9.347584, 45.618438], + [9.35208, 45.618438], + [9.35208, 45.613941], + [9.347584, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.618438], + [9.347584, 45.622934], + [9.35208, 45.622934], + [9.35208, 45.618438], + [9.347584, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.622934], + [9.347584, 45.627431], + [9.35208, 45.627431], + [9.35208, 45.622934], + [9.347584, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.627431], + [9.347584, 45.631928], + [9.35208, 45.631928], + [9.35208, 45.627431], + [9.347584, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.347584, 45.631928], + [9.347584, 45.636424], + [9.35208, 45.636424], + [9.35208, 45.631928], + [9.347584, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.339648], + [9.35208, 45.344145], + [9.356577, 45.344145], + [9.356577, 45.339648], + [9.35208, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.344145], + [9.35208, 45.348642], + [9.356577, 45.348642], + [9.356577, 45.344145], + [9.35208, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.348642], + [9.35208, 45.353138], + [9.356577, 45.353138], + [9.356577, 45.348642], + [9.35208, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.353138], + [9.35208, 45.357635], + [9.356577, 45.357635], + [9.356577, 45.353138], + [9.35208, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.357635], + [9.35208, 45.362131], + [9.356577, 45.362131], + [9.356577, 45.357635], + [9.35208, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.362131], + [9.35208, 45.366628], + [9.356577, 45.366628], + [9.356577, 45.362131], + [9.35208, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.366628], + [9.35208, 45.371125], + [9.356577, 45.371125], + [9.356577, 45.366628], + [9.35208, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.371125], + [9.35208, 45.375621], + [9.356577, 45.375621], + [9.356577, 45.371125], + [9.35208, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.375621], + [9.35208, 45.380118], + [9.356577, 45.380118], + [9.356577, 45.375621], + [9.35208, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.380118], + [9.35208, 45.384614], + [9.356577, 45.384614], + [9.356577, 45.380118], + [9.35208, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.384614], + [9.35208, 45.389111], + [9.356577, 45.389111], + [9.356577, 45.384614], + [9.35208, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.389111], + [9.35208, 45.393608], + [9.356577, 45.393608], + [9.356577, 45.389111], + [9.35208, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.393608], + [9.35208, 45.398104], + [9.356577, 45.398104], + [9.356577, 45.393608], + [9.35208, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.398104], + [9.35208, 45.402601], + [9.356577, 45.402601], + [9.356577, 45.398104], + [9.35208, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.402601], + [9.35208, 45.407097], + [9.356577, 45.407097], + [9.356577, 45.402601], + [9.35208, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.407097], + [9.35208, 45.411594], + [9.356577, 45.411594], + [9.356577, 45.407097], + [9.35208, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.411594], + [9.35208, 45.416091], + [9.356577, 45.416091], + [9.356577, 45.411594], + [9.35208, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.416091], + [9.35208, 45.420587], + [9.356577, 45.420587], + [9.356577, 45.416091], + [9.35208, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.420587], + [9.35208, 45.425084], + [9.356577, 45.425084], + [9.356577, 45.420587], + [9.35208, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.425084], + [9.35208, 45.42958], + [9.356577, 45.42958], + [9.356577, 45.425084], + [9.35208, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.42958], + [9.35208, 45.434077], + [9.356577, 45.434077], + [9.356577, 45.42958], + [9.35208, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.434077], + [9.35208, 45.438574], + [9.356577, 45.438574], + [9.356577, 45.434077], + [9.35208, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.438574], + [9.35208, 45.44307], + [9.356577, 45.44307], + [9.356577, 45.438574], + [9.35208, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.44307], + [9.35208, 45.447567], + [9.356577, 45.447567], + [9.356577, 45.44307], + [9.35208, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.447567], + [9.35208, 45.452063], + [9.356577, 45.452063], + [9.356577, 45.447567], + [9.35208, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.452063], + [9.35208, 45.45656], + [9.356577, 45.45656], + [9.356577, 45.452063], + [9.35208, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.45656], + [9.35208, 45.461057], + [9.356577, 45.461057], + [9.356577, 45.45656], + [9.35208, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.461057], + [9.35208, 45.465553], + [9.356577, 45.465553], + [9.356577, 45.461057], + [9.35208, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.465553], + [9.35208, 45.47005], + [9.356577, 45.47005], + [9.356577, 45.465553], + [9.35208, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.47005], + [9.35208, 45.474547], + [9.356577, 45.474547], + [9.356577, 45.47005], + [9.35208, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.474547], + [9.35208, 45.479043], + [9.356577, 45.479043], + [9.356577, 45.474547], + [9.35208, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.479043], + [9.35208, 45.48354], + [9.356577, 45.48354], + [9.356577, 45.479043], + [9.35208, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.48354], + [9.35208, 45.488036], + [9.356577, 45.488036], + [9.356577, 45.48354], + [9.35208, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.488036], + [9.35208, 45.492533], + [9.356577, 45.492533], + [9.356577, 45.488036], + [9.35208, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.492533], + [9.35208, 45.49703], + [9.356577, 45.49703], + [9.356577, 45.492533], + [9.35208, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.49703], + [9.35208, 45.501526], + [9.356577, 45.501526], + [9.356577, 45.49703], + [9.35208, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.501526], + [9.35208, 45.506023], + [9.356577, 45.506023], + [9.356577, 45.501526], + [9.35208, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.506023], + [9.35208, 45.510519], + [9.356577, 45.510519], + [9.356577, 45.506023], + [9.35208, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.510519], + [9.35208, 45.515016], + [9.356577, 45.515016], + [9.356577, 45.510519], + [9.35208, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.515016], + [9.35208, 45.519513], + [9.356577, 45.519513], + [9.356577, 45.515016], + [9.35208, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.519513], + [9.35208, 45.524009], + [9.356577, 45.524009], + [9.356577, 45.519513], + [9.35208, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.524009], + [9.35208, 45.528506], + [9.356577, 45.528506], + [9.356577, 45.524009], + [9.35208, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.528506], + [9.35208, 45.533002], + [9.356577, 45.533002], + [9.356577, 45.528506], + [9.35208, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.533002], + [9.35208, 45.537499], + [9.356577, 45.537499], + [9.356577, 45.533002], + [9.35208, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.537499], + [9.35208, 45.541996], + [9.356577, 45.541996], + [9.356577, 45.537499], + [9.35208, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.541996], + [9.35208, 45.546492], + [9.356577, 45.546492], + [9.356577, 45.541996], + [9.35208, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.546492], + [9.35208, 45.550989], + [9.356577, 45.550989], + [9.356577, 45.546492], + [9.35208, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.550989], + [9.35208, 45.555485], + [9.356577, 45.555485], + [9.356577, 45.550989], + [9.35208, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.555485], + [9.35208, 45.559982], + [9.356577, 45.559982], + [9.356577, 45.555485], + [9.35208, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.559982], + [9.35208, 45.564479], + [9.356577, 45.564479], + [9.356577, 45.559982], + [9.35208, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.564479], + [9.35208, 45.568975], + [9.356577, 45.568975], + [9.356577, 45.564479], + [9.35208, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.568975], + [9.35208, 45.573472], + [9.356577, 45.573472], + [9.356577, 45.568975], + [9.35208, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.573472], + [9.35208, 45.577968], + [9.356577, 45.577968], + [9.356577, 45.573472], + [9.35208, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.577968], + [9.35208, 45.582465], + [9.356577, 45.582465], + [9.356577, 45.577968], + [9.35208, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.582465], + [9.35208, 45.586962], + [9.356577, 45.586962], + [9.356577, 45.582465], + [9.35208, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.586962], + [9.35208, 45.591458], + [9.356577, 45.591458], + [9.356577, 45.586962], + [9.35208, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.591458], + [9.35208, 45.595955], + [9.356577, 45.595955], + [9.356577, 45.591458], + [9.35208, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.595955], + [9.35208, 45.600451], + [9.356577, 45.600451], + [9.356577, 45.595955], + [9.35208, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.600451], + [9.35208, 45.604948], + [9.356577, 45.604948], + [9.356577, 45.600451], + [9.35208, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.604948], + [9.35208, 45.609445], + [9.356577, 45.609445], + [9.356577, 45.604948], + [9.35208, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.609445], + [9.35208, 45.613941], + [9.356577, 45.613941], + [9.356577, 45.609445], + [9.35208, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.613941], + [9.35208, 45.618438], + [9.356577, 45.618438], + [9.356577, 45.613941], + [9.35208, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.618438], + [9.35208, 45.622934], + [9.356577, 45.622934], + [9.356577, 45.618438], + [9.35208, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.622934], + [9.35208, 45.627431], + [9.356577, 45.627431], + [9.356577, 45.622934], + [9.35208, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.627431], + [9.35208, 45.631928], + [9.356577, 45.631928], + [9.356577, 45.627431], + [9.35208, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.35208, 45.631928], + [9.35208, 45.636424], + [9.356577, 45.636424], + [9.356577, 45.631928], + [9.35208, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.339648], + [9.356577, 45.344145], + [9.361074, 45.344145], + [9.361074, 45.339648], + [9.356577, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.344145], + [9.356577, 45.348642], + [9.361074, 45.348642], + [9.361074, 45.344145], + [9.356577, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.348642], + [9.356577, 45.353138], + [9.361074, 45.353138], + [9.361074, 45.348642], + [9.356577, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.353138], + [9.356577, 45.357635], + [9.361074, 45.357635], + [9.361074, 45.353138], + [9.356577, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.357635], + [9.356577, 45.362131], + [9.361074, 45.362131], + [9.361074, 45.357635], + [9.356577, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.362131], + [9.356577, 45.366628], + [9.361074, 45.366628], + [9.361074, 45.362131], + [9.356577, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.366628], + [9.356577, 45.371125], + [9.361074, 45.371125], + [9.361074, 45.366628], + [9.356577, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.371125], + [9.356577, 45.375621], + [9.361074, 45.375621], + [9.361074, 45.371125], + [9.356577, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.375621], + [9.356577, 45.380118], + [9.361074, 45.380118], + [9.361074, 45.375621], + [9.356577, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.380118], + [9.356577, 45.384614], + [9.361074, 45.384614], + [9.361074, 45.380118], + [9.356577, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.384614], + [9.356577, 45.389111], + [9.361074, 45.389111], + [9.361074, 45.384614], + [9.356577, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.389111], + [9.356577, 45.393608], + [9.361074, 45.393608], + [9.361074, 45.389111], + [9.356577, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.393608], + [9.356577, 45.398104], + [9.361074, 45.398104], + [9.361074, 45.393608], + [9.356577, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.398104], + [9.356577, 45.402601], + [9.361074, 45.402601], + [9.361074, 45.398104], + [9.356577, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.402601], + [9.356577, 45.407097], + [9.361074, 45.407097], + [9.361074, 45.402601], + [9.356577, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.407097], + [9.356577, 45.411594], + [9.361074, 45.411594], + [9.361074, 45.407097], + [9.356577, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.411594], + [9.356577, 45.416091], + [9.361074, 45.416091], + [9.361074, 45.411594], + [9.356577, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.416091], + [9.356577, 45.420587], + [9.361074, 45.420587], + [9.361074, 45.416091], + [9.356577, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.420587], + [9.356577, 45.425084], + [9.361074, 45.425084], + [9.361074, 45.420587], + [9.356577, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.425084], + [9.356577, 45.42958], + [9.361074, 45.42958], + [9.361074, 45.425084], + [9.356577, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.42958], + [9.356577, 45.434077], + [9.361074, 45.434077], + [9.361074, 45.42958], + [9.356577, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.434077], + [9.356577, 45.438574], + [9.361074, 45.438574], + [9.361074, 45.434077], + [9.356577, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.438574], + [9.356577, 45.44307], + [9.361074, 45.44307], + [9.361074, 45.438574], + [9.356577, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.44307], + [9.356577, 45.447567], + [9.361074, 45.447567], + [9.361074, 45.44307], + [9.356577, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.447567], + [9.356577, 45.452063], + [9.361074, 45.452063], + [9.361074, 45.447567], + [9.356577, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.452063], + [9.356577, 45.45656], + [9.361074, 45.45656], + [9.361074, 45.452063], + [9.356577, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.45656], + [9.356577, 45.461057], + [9.361074, 45.461057], + [9.361074, 45.45656], + [9.356577, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.461057], + [9.356577, 45.465553], + [9.361074, 45.465553], + [9.361074, 45.461057], + [9.356577, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.465553], + [9.356577, 45.47005], + [9.361074, 45.47005], + [9.361074, 45.465553], + [9.356577, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.47005], + [9.356577, 45.474547], + [9.361074, 45.474547], + [9.361074, 45.47005], + [9.356577, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.474547], + [9.356577, 45.479043], + [9.361074, 45.479043], + [9.361074, 45.474547], + [9.356577, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.479043], + [9.356577, 45.48354], + [9.361074, 45.48354], + [9.361074, 45.479043], + [9.356577, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.48354], + [9.356577, 45.488036], + [9.361074, 45.488036], + [9.361074, 45.48354], + [9.356577, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.488036], + [9.356577, 45.492533], + [9.361074, 45.492533], + [9.361074, 45.488036], + [9.356577, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.492533], + [9.356577, 45.49703], + [9.361074, 45.49703], + [9.361074, 45.492533], + [9.356577, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.49703], + [9.356577, 45.501526], + [9.361074, 45.501526], + [9.361074, 45.49703], + [9.356577, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.501526], + [9.356577, 45.506023], + [9.361074, 45.506023], + [9.361074, 45.501526], + [9.356577, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.506023], + [9.356577, 45.510519], + [9.361074, 45.510519], + [9.361074, 45.506023], + [9.356577, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.510519], + [9.356577, 45.515016], + [9.361074, 45.515016], + [9.361074, 45.510519], + [9.356577, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.515016], + [9.356577, 45.519513], + [9.361074, 45.519513], + [9.361074, 45.515016], + [9.356577, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.519513], + [9.356577, 45.524009], + [9.361074, 45.524009], + [9.361074, 45.519513], + [9.356577, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.524009], + [9.356577, 45.528506], + [9.361074, 45.528506], + [9.361074, 45.524009], + [9.356577, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.528506], + [9.356577, 45.533002], + [9.361074, 45.533002], + [9.361074, 45.528506], + [9.356577, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.533002], + [9.356577, 45.537499], + [9.361074, 45.537499], + [9.361074, 45.533002], + [9.356577, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.537499], + [9.356577, 45.541996], + [9.361074, 45.541996], + [9.361074, 45.537499], + [9.356577, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.541996], + [9.356577, 45.546492], + [9.361074, 45.546492], + [9.361074, 45.541996], + [9.356577, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.546492], + [9.356577, 45.550989], + [9.361074, 45.550989], + [9.361074, 45.546492], + [9.356577, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.550989], + [9.356577, 45.555485], + [9.361074, 45.555485], + [9.361074, 45.550989], + [9.356577, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.555485], + [9.356577, 45.559982], + [9.361074, 45.559982], + [9.361074, 45.555485], + [9.356577, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.559982], + [9.356577, 45.564479], + [9.361074, 45.564479], + [9.361074, 45.559982], + [9.356577, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.564479], + [9.356577, 45.568975], + [9.361074, 45.568975], + [9.361074, 45.564479], + [9.356577, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.568975], + [9.356577, 45.573472], + [9.361074, 45.573472], + [9.361074, 45.568975], + [9.356577, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.573472], + [9.356577, 45.577968], + [9.361074, 45.577968], + [9.361074, 45.573472], + [9.356577, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.577968], + [9.356577, 45.582465], + [9.361074, 45.582465], + [9.361074, 45.577968], + [9.356577, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.582465], + [9.356577, 45.586962], + [9.361074, 45.586962], + [9.361074, 45.582465], + [9.356577, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.586962], + [9.356577, 45.591458], + [9.361074, 45.591458], + [9.361074, 45.586962], + [9.356577, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.591458], + [9.356577, 45.595955], + [9.361074, 45.595955], + [9.361074, 45.591458], + [9.356577, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.595955], + [9.356577, 45.600451], + [9.361074, 45.600451], + [9.361074, 45.595955], + [9.356577, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.600451], + [9.356577, 45.604948], + [9.361074, 45.604948], + [9.361074, 45.600451], + [9.356577, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.604948], + [9.356577, 45.609445], + [9.361074, 45.609445], + [9.361074, 45.604948], + [9.356577, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.609445], + [9.356577, 45.613941], + [9.361074, 45.613941], + [9.361074, 45.609445], + [9.356577, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.613941], + [9.356577, 45.618438], + [9.361074, 45.618438], + [9.361074, 45.613941], + [9.356577, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.618438], + [9.356577, 45.622934], + [9.361074, 45.622934], + [9.361074, 45.618438], + [9.356577, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.622934], + [9.356577, 45.627431], + [9.361074, 45.627431], + [9.361074, 45.622934], + [9.356577, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.627431], + [9.356577, 45.631928], + [9.361074, 45.631928], + [9.361074, 45.627431], + [9.356577, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.356577, 45.631928], + [9.356577, 45.636424], + [9.361074, 45.636424], + [9.361074, 45.631928], + [9.356577, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.339648], + [9.361074, 45.344145], + [9.36557, 45.344145], + [9.36557, 45.339648], + [9.361074, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.344145], + [9.361074, 45.348642], + [9.36557, 45.348642], + [9.36557, 45.344145], + [9.361074, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.348642], + [9.361074, 45.353138], + [9.36557, 45.353138], + [9.36557, 45.348642], + [9.361074, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.353138], + [9.361074, 45.357635], + [9.36557, 45.357635], + [9.36557, 45.353138], + [9.361074, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.357635], + [9.361074, 45.362131], + [9.36557, 45.362131], + [9.36557, 45.357635], + [9.361074, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.362131], + [9.361074, 45.366628], + [9.36557, 45.366628], + [9.36557, 45.362131], + [9.361074, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.366628], + [9.361074, 45.371125], + [9.36557, 45.371125], + [9.36557, 45.366628], + [9.361074, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.371125], + [9.361074, 45.375621], + [9.36557, 45.375621], + [9.36557, 45.371125], + [9.361074, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.375621], + [9.361074, 45.380118], + [9.36557, 45.380118], + [9.36557, 45.375621], + [9.361074, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.380118], + [9.361074, 45.384614], + [9.36557, 45.384614], + [9.36557, 45.380118], + [9.361074, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.384614], + [9.361074, 45.389111], + [9.36557, 45.389111], + [9.36557, 45.384614], + [9.361074, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.389111], + [9.361074, 45.393608], + [9.36557, 45.393608], + [9.36557, 45.389111], + [9.361074, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.393608], + [9.361074, 45.398104], + [9.36557, 45.398104], + [9.36557, 45.393608], + [9.361074, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.398104], + [9.361074, 45.402601], + [9.36557, 45.402601], + [9.36557, 45.398104], + [9.361074, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.402601], + [9.361074, 45.407097], + [9.36557, 45.407097], + [9.36557, 45.402601], + [9.361074, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.407097], + [9.361074, 45.411594], + [9.36557, 45.411594], + [9.36557, 45.407097], + [9.361074, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.411594], + [9.361074, 45.416091], + [9.36557, 45.416091], + [9.36557, 45.411594], + [9.361074, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.416091], + [9.361074, 45.420587], + [9.36557, 45.420587], + [9.36557, 45.416091], + [9.361074, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.420587], + [9.361074, 45.425084], + [9.36557, 45.425084], + [9.36557, 45.420587], + [9.361074, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.425084], + [9.361074, 45.42958], + [9.36557, 45.42958], + [9.36557, 45.425084], + [9.361074, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.42958], + [9.361074, 45.434077], + [9.36557, 45.434077], + [9.36557, 45.42958], + [9.361074, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.434077], + [9.361074, 45.438574], + [9.36557, 45.438574], + [9.36557, 45.434077], + [9.361074, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.438574], + [9.361074, 45.44307], + [9.36557, 45.44307], + [9.36557, 45.438574], + [9.361074, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.44307], + [9.361074, 45.447567], + [9.36557, 45.447567], + [9.36557, 45.44307], + [9.361074, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.447567], + [9.361074, 45.452063], + [9.36557, 45.452063], + [9.36557, 45.447567], + [9.361074, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.452063], + [9.361074, 45.45656], + [9.36557, 45.45656], + [9.36557, 45.452063], + [9.361074, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.45656], + [9.361074, 45.461057], + [9.36557, 45.461057], + [9.36557, 45.45656], + [9.361074, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.461057], + [9.361074, 45.465553], + [9.36557, 45.465553], + [9.36557, 45.461057], + [9.361074, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.465553], + [9.361074, 45.47005], + [9.36557, 45.47005], + [9.36557, 45.465553], + [9.361074, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.47005], + [9.361074, 45.474547], + [9.36557, 45.474547], + [9.36557, 45.47005], + [9.361074, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.474547], + [9.361074, 45.479043], + [9.36557, 45.479043], + [9.36557, 45.474547], + [9.361074, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.479043], + [9.361074, 45.48354], + [9.36557, 45.48354], + [9.36557, 45.479043], + [9.361074, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.48354], + [9.361074, 45.488036], + [9.36557, 45.488036], + [9.36557, 45.48354], + [9.361074, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.488036], + [9.361074, 45.492533], + [9.36557, 45.492533], + [9.36557, 45.488036], + [9.361074, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.492533], + [9.361074, 45.49703], + [9.36557, 45.49703], + [9.36557, 45.492533], + [9.361074, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.49703], + [9.361074, 45.501526], + [9.36557, 45.501526], + [9.36557, 45.49703], + [9.361074, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.501526], + [9.361074, 45.506023], + [9.36557, 45.506023], + [9.36557, 45.501526], + [9.361074, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.506023], + [9.361074, 45.510519], + [9.36557, 45.510519], + [9.36557, 45.506023], + [9.361074, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.510519], + [9.361074, 45.515016], + [9.36557, 45.515016], + [9.36557, 45.510519], + [9.361074, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.515016], + [9.361074, 45.519513], + [9.36557, 45.519513], + [9.36557, 45.515016], + [9.361074, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.519513], + [9.361074, 45.524009], + [9.36557, 45.524009], + [9.36557, 45.519513], + [9.361074, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.524009], + [9.361074, 45.528506], + [9.36557, 45.528506], + [9.36557, 45.524009], + [9.361074, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.528506], + [9.361074, 45.533002], + [9.36557, 45.533002], + [9.36557, 45.528506], + [9.361074, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.533002], + [9.361074, 45.537499], + [9.36557, 45.537499], + [9.36557, 45.533002], + [9.361074, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.537499], + [9.361074, 45.541996], + [9.36557, 45.541996], + [9.36557, 45.537499], + [9.361074, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.541996], + [9.361074, 45.546492], + [9.36557, 45.546492], + [9.36557, 45.541996], + [9.361074, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.546492], + [9.361074, 45.550989], + [9.36557, 45.550989], + [9.36557, 45.546492], + [9.361074, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.550989], + [9.361074, 45.555485], + [9.36557, 45.555485], + [9.36557, 45.550989], + [9.361074, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.555485], + [9.361074, 45.559982], + [9.36557, 45.559982], + [9.36557, 45.555485], + [9.361074, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.559982], + [9.361074, 45.564479], + [9.36557, 45.564479], + [9.36557, 45.559982], + [9.361074, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.564479], + [9.361074, 45.568975], + [9.36557, 45.568975], + [9.36557, 45.564479], + [9.361074, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.568975], + [9.361074, 45.573472], + [9.36557, 45.573472], + [9.36557, 45.568975], + [9.361074, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.573472], + [9.361074, 45.577968], + [9.36557, 45.577968], + [9.36557, 45.573472], + [9.361074, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.577968], + [9.361074, 45.582465], + [9.36557, 45.582465], + [9.36557, 45.577968], + [9.361074, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.582465], + [9.361074, 45.586962], + [9.36557, 45.586962], + [9.36557, 45.582465], + [9.361074, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.586962], + [9.361074, 45.591458], + [9.36557, 45.591458], + [9.36557, 45.586962], + [9.361074, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.591458], + [9.361074, 45.595955], + [9.36557, 45.595955], + [9.36557, 45.591458], + [9.361074, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.595955], + [9.361074, 45.600451], + [9.36557, 45.600451], + [9.36557, 45.595955], + [9.361074, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.600451], + [9.361074, 45.604948], + [9.36557, 45.604948], + [9.36557, 45.600451], + [9.361074, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.604948], + [9.361074, 45.609445], + [9.36557, 45.609445], + [9.36557, 45.604948], + [9.361074, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.609445], + [9.361074, 45.613941], + [9.36557, 45.613941], + [9.36557, 45.609445], + [9.361074, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.613941], + [9.361074, 45.618438], + [9.36557, 45.618438], + [9.36557, 45.613941], + [9.361074, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.618438], + [9.361074, 45.622934], + [9.36557, 45.622934], + [9.36557, 45.618438], + [9.361074, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.622934], + [9.361074, 45.627431], + [9.36557, 45.627431], + [9.36557, 45.622934], + [9.361074, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 28, + "stroke": "#4daaff", + "fill": "#4daaff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.627431], + [9.361074, 45.631928], + [9.36557, 45.631928], + [9.36557, 45.627431], + [9.361074, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.361074, 45.631928], + [9.361074, 45.636424], + [9.36557, 45.636424], + [9.36557, 45.631928], + [9.361074, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.339648], + [9.36557, 45.344145], + [9.370067, 45.344145], + [9.370067, 45.339648], + [9.36557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.344145], + [9.36557, 45.348642], + [9.370067, 45.348642], + [9.370067, 45.344145], + [9.36557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.348642], + [9.36557, 45.353138], + [9.370067, 45.353138], + [9.370067, 45.348642], + [9.36557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.353138], + [9.36557, 45.357635], + [9.370067, 45.357635], + [9.370067, 45.353138], + [9.36557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.357635], + [9.36557, 45.362131], + [9.370067, 45.362131], + [9.370067, 45.357635], + [9.36557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.362131], + [9.36557, 45.366628], + [9.370067, 45.366628], + [9.370067, 45.362131], + [9.36557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.366628], + [9.36557, 45.371125], + [9.370067, 45.371125], + [9.370067, 45.366628], + [9.36557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.371125], + [9.36557, 45.375621], + [9.370067, 45.375621], + [9.370067, 45.371125], + [9.36557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.375621], + [9.36557, 45.380118], + [9.370067, 45.380118], + [9.370067, 45.375621], + [9.36557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.380118], + [9.36557, 45.384614], + [9.370067, 45.384614], + [9.370067, 45.380118], + [9.36557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.384614], + [9.36557, 45.389111], + [9.370067, 45.389111], + [9.370067, 45.384614], + [9.36557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.389111], + [9.36557, 45.393608], + [9.370067, 45.393608], + [9.370067, 45.389111], + [9.36557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.393608], + [9.36557, 45.398104], + [9.370067, 45.398104], + [9.370067, 45.393608], + [9.36557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.398104], + [9.36557, 45.402601], + [9.370067, 45.402601], + [9.370067, 45.398104], + [9.36557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.402601], + [9.36557, 45.407097], + [9.370067, 45.407097], + [9.370067, 45.402601], + [9.36557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.407097], + [9.36557, 45.411594], + [9.370067, 45.411594], + [9.370067, 45.407097], + [9.36557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.411594], + [9.36557, 45.416091], + [9.370067, 45.416091], + [9.370067, 45.411594], + [9.36557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.416091], + [9.36557, 45.420587], + [9.370067, 45.420587], + [9.370067, 45.416091], + [9.36557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.420587], + [9.36557, 45.425084], + [9.370067, 45.425084], + [9.370067, 45.420587], + [9.36557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.425084], + [9.36557, 45.42958], + [9.370067, 45.42958], + [9.370067, 45.425084], + [9.36557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.42958], + [9.36557, 45.434077], + [9.370067, 45.434077], + [9.370067, 45.42958], + [9.36557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.434077], + [9.36557, 45.438574], + [9.370067, 45.438574], + [9.370067, 45.434077], + [9.36557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.438574], + [9.36557, 45.44307], + [9.370067, 45.44307], + [9.370067, 45.438574], + [9.36557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.44307], + [9.36557, 45.447567], + [9.370067, 45.447567], + [9.370067, 45.44307], + [9.36557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.447567], + [9.36557, 45.452063], + [9.370067, 45.452063], + [9.370067, 45.447567], + [9.36557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.452063], + [9.36557, 45.45656], + [9.370067, 45.45656], + [9.370067, 45.452063], + [9.36557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.45656], + [9.36557, 45.461057], + [9.370067, 45.461057], + [9.370067, 45.45656], + [9.36557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.461057], + [9.36557, 45.465553], + [9.370067, 45.465553], + [9.370067, 45.461057], + [9.36557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.465553], + [9.36557, 45.47005], + [9.370067, 45.47005], + [9.370067, 45.465553], + [9.36557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.47005], + [9.36557, 45.474547], + [9.370067, 45.474547], + [9.370067, 45.47005], + [9.36557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.474547], + [9.36557, 45.479043], + [9.370067, 45.479043], + [9.370067, 45.474547], + [9.36557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.479043], + [9.36557, 45.48354], + [9.370067, 45.48354], + [9.370067, 45.479043], + [9.36557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.48354], + [9.36557, 45.488036], + [9.370067, 45.488036], + [9.370067, 45.48354], + [9.36557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.488036], + [9.36557, 45.492533], + [9.370067, 45.492533], + [9.370067, 45.488036], + [9.36557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.492533], + [9.36557, 45.49703], + [9.370067, 45.49703], + [9.370067, 45.492533], + [9.36557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.49703], + [9.36557, 45.501526], + [9.370067, 45.501526], + [9.370067, 45.49703], + [9.36557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.501526], + [9.36557, 45.506023], + [9.370067, 45.506023], + [9.370067, 45.501526], + [9.36557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.506023], + [9.36557, 45.510519], + [9.370067, 45.510519], + [9.370067, 45.506023], + [9.36557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.510519], + [9.36557, 45.515016], + [9.370067, 45.515016], + [9.370067, 45.510519], + [9.36557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.515016], + [9.36557, 45.519513], + [9.370067, 45.519513], + [9.370067, 45.515016], + [9.36557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.519513], + [9.36557, 45.524009], + [9.370067, 45.524009], + [9.370067, 45.519513], + [9.36557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.524009], + [9.36557, 45.528506], + [9.370067, 45.528506], + [9.370067, 45.524009], + [9.36557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.528506], + [9.36557, 45.533002], + [9.370067, 45.533002], + [9.370067, 45.528506], + [9.36557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.533002], + [9.36557, 45.537499], + [9.370067, 45.537499], + [9.370067, 45.533002], + [9.36557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.537499], + [9.36557, 45.541996], + [9.370067, 45.541996], + [9.370067, 45.537499], + [9.36557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.541996], + [9.36557, 45.546492], + [9.370067, 45.546492], + [9.370067, 45.541996], + [9.36557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.546492], + [9.36557, 45.550989], + [9.370067, 45.550989], + [9.370067, 45.546492], + [9.36557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.550989], + [9.36557, 45.555485], + [9.370067, 45.555485], + [9.370067, 45.550989], + [9.36557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.555485], + [9.36557, 45.559982], + [9.370067, 45.559982], + [9.370067, 45.555485], + [9.36557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.559982], + [9.36557, 45.564479], + [9.370067, 45.564479], + [9.370067, 45.559982], + [9.36557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.564479], + [9.36557, 45.568975], + [9.370067, 45.568975], + [9.370067, 45.564479], + [9.36557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.568975], + [9.36557, 45.573472], + [9.370067, 45.573472], + [9.370067, 45.568975], + [9.36557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.573472], + [9.36557, 45.577968], + [9.370067, 45.577968], + [9.370067, 45.573472], + [9.36557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.577968], + [9.36557, 45.582465], + [9.370067, 45.582465], + [9.370067, 45.577968], + [9.36557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.582465], + [9.36557, 45.586962], + [9.370067, 45.586962], + [9.370067, 45.582465], + [9.36557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.586962], + [9.36557, 45.591458], + [9.370067, 45.591458], + [9.370067, 45.586962], + [9.36557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.591458], + [9.36557, 45.595955], + [9.370067, 45.595955], + [9.370067, 45.591458], + [9.36557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.595955], + [9.36557, 45.600451], + [9.370067, 45.600451], + [9.370067, 45.595955], + [9.36557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.600451], + [9.36557, 45.604948], + [9.370067, 45.604948], + [9.370067, 45.600451], + [9.36557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.604948], + [9.36557, 45.609445], + [9.370067, 45.609445], + [9.370067, 45.604948], + [9.36557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.609445], + [9.36557, 45.613941], + [9.370067, 45.613941], + [9.370067, 45.609445], + [9.36557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.613941], + [9.36557, 45.618438], + [9.370067, 45.618438], + [9.370067, 45.613941], + [9.36557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.618438], + [9.36557, 45.622934], + [9.370067, 45.622934], + [9.370067, 45.618438], + [9.36557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.622934], + [9.36557, 45.627431], + [9.370067, 45.627431], + [9.370067, 45.622934], + [9.36557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.627431], + [9.36557, 45.631928], + [9.370067, 45.631928], + [9.370067, 45.627431], + [9.36557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.36557, 45.631928], + [9.36557, 45.636424], + [9.370067, 45.636424], + [9.370067, 45.631928], + [9.36557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.339648], + [9.370067, 45.344145], + [9.374563, 45.344145], + [9.374563, 45.339648], + [9.370067, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.344145], + [9.370067, 45.348642], + [9.374563, 45.348642], + [9.374563, 45.344145], + [9.370067, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.348642], + [9.370067, 45.353138], + [9.374563, 45.353138], + [9.374563, 45.348642], + [9.370067, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.353138], + [9.370067, 45.357635], + [9.374563, 45.357635], + [9.374563, 45.353138], + [9.370067, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.357635], + [9.370067, 45.362131], + [9.374563, 45.362131], + [9.374563, 45.357635], + [9.370067, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.362131], + [9.370067, 45.366628], + [9.374563, 45.366628], + [9.374563, 45.362131], + [9.370067, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.366628], + [9.370067, 45.371125], + [9.374563, 45.371125], + [9.374563, 45.366628], + [9.370067, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.371125], + [9.370067, 45.375621], + [9.374563, 45.375621], + [9.374563, 45.371125], + [9.370067, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.375621], + [9.370067, 45.380118], + [9.374563, 45.380118], + [9.374563, 45.375621], + [9.370067, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.380118], + [9.370067, 45.384614], + [9.374563, 45.384614], + [9.374563, 45.380118], + [9.370067, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.384614], + [9.370067, 45.389111], + [9.374563, 45.389111], + [9.374563, 45.384614], + [9.370067, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.389111], + [9.370067, 45.393608], + [9.374563, 45.393608], + [9.374563, 45.389111], + [9.370067, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.393608], + [9.370067, 45.398104], + [9.374563, 45.398104], + [9.374563, 45.393608], + [9.370067, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.398104], + [9.370067, 45.402601], + [9.374563, 45.402601], + [9.374563, 45.398104], + [9.370067, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.402601], + [9.370067, 45.407097], + [9.374563, 45.407097], + [9.374563, 45.402601], + [9.370067, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.407097], + [9.370067, 45.411594], + [9.374563, 45.411594], + [9.374563, 45.407097], + [9.370067, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.411594], + [9.370067, 45.416091], + [9.374563, 45.416091], + [9.374563, 45.411594], + [9.370067, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.416091], + [9.370067, 45.420587], + [9.374563, 45.420587], + [9.374563, 45.416091], + [9.370067, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.420587], + [9.370067, 45.425084], + [9.374563, 45.425084], + [9.374563, 45.420587], + [9.370067, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.425084], + [9.370067, 45.42958], + [9.374563, 45.42958], + [9.374563, 45.425084], + [9.370067, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.42958], + [9.370067, 45.434077], + [9.374563, 45.434077], + [9.374563, 45.42958], + [9.370067, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.434077], + [9.370067, 45.438574], + [9.374563, 45.438574], + [9.374563, 45.434077], + [9.370067, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.438574], + [9.370067, 45.44307], + [9.374563, 45.44307], + [9.374563, 45.438574], + [9.370067, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.44307], + [9.370067, 45.447567], + [9.374563, 45.447567], + [9.374563, 45.44307], + [9.370067, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.447567], + [9.370067, 45.452063], + [9.374563, 45.452063], + [9.374563, 45.447567], + [9.370067, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.452063], + [9.370067, 45.45656], + [9.374563, 45.45656], + [9.374563, 45.452063], + [9.370067, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.45656], + [9.370067, 45.461057], + [9.374563, 45.461057], + [9.374563, 45.45656], + [9.370067, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.461057], + [9.370067, 45.465553], + [9.374563, 45.465553], + [9.374563, 45.461057], + [9.370067, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.465553], + [9.370067, 45.47005], + [9.374563, 45.47005], + [9.374563, 45.465553], + [9.370067, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.47005], + [9.370067, 45.474547], + [9.374563, 45.474547], + [9.374563, 45.47005], + [9.370067, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.474547], + [9.370067, 45.479043], + [9.374563, 45.479043], + [9.374563, 45.474547], + [9.370067, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.479043], + [9.370067, 45.48354], + [9.374563, 45.48354], + [9.374563, 45.479043], + [9.370067, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.48354], + [9.370067, 45.488036], + [9.374563, 45.488036], + [9.374563, 45.48354], + [9.370067, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.488036], + [9.370067, 45.492533], + [9.374563, 45.492533], + [9.374563, 45.488036], + [9.370067, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.492533], + [9.370067, 45.49703], + [9.374563, 45.49703], + [9.374563, 45.492533], + [9.370067, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.49703], + [9.370067, 45.501526], + [9.374563, 45.501526], + [9.374563, 45.49703], + [9.370067, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.501526], + [9.370067, 45.506023], + [9.374563, 45.506023], + [9.374563, 45.501526], + [9.370067, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.506023], + [9.370067, 45.510519], + [9.374563, 45.510519], + [9.374563, 45.506023], + [9.370067, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.510519], + [9.370067, 45.515016], + [9.374563, 45.515016], + [9.374563, 45.510519], + [9.370067, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.515016], + [9.370067, 45.519513], + [9.374563, 45.519513], + [9.374563, 45.515016], + [9.370067, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.519513], + [9.370067, 45.524009], + [9.374563, 45.524009], + [9.374563, 45.519513], + [9.370067, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.524009], + [9.370067, 45.528506], + [9.374563, 45.528506], + [9.374563, 45.524009], + [9.370067, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.528506], + [9.370067, 45.533002], + [9.374563, 45.533002], + [9.374563, 45.528506], + [9.370067, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.533002], + [9.370067, 45.537499], + [9.374563, 45.537499], + [9.374563, 45.533002], + [9.370067, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.537499], + [9.370067, 45.541996], + [9.374563, 45.541996], + [9.374563, 45.537499], + [9.370067, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.541996], + [9.370067, 45.546492], + [9.374563, 45.546492], + [9.374563, 45.541996], + [9.370067, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.546492], + [9.370067, 45.550989], + [9.374563, 45.550989], + [9.374563, 45.546492], + [9.370067, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.550989], + [9.370067, 45.555485], + [9.374563, 45.555485], + [9.374563, 45.550989], + [9.370067, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.555485], + [9.370067, 45.559982], + [9.374563, 45.559982], + [9.374563, 45.555485], + [9.370067, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.559982], + [9.370067, 45.564479], + [9.374563, 45.564479], + [9.374563, 45.559982], + [9.370067, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.564479], + [9.370067, 45.568975], + [9.374563, 45.568975], + [9.374563, 45.564479], + [9.370067, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.568975], + [9.370067, 45.573472], + [9.374563, 45.573472], + [9.374563, 45.568975], + [9.370067, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.573472], + [9.370067, 45.577968], + [9.374563, 45.577968], + [9.374563, 45.573472], + [9.370067, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.577968], + [9.370067, 45.582465], + [9.374563, 45.582465], + [9.374563, 45.577968], + [9.370067, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.582465], + [9.370067, 45.586962], + [9.374563, 45.586962], + [9.374563, 45.582465], + [9.370067, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.586962], + [9.370067, 45.591458], + [9.374563, 45.591458], + [9.374563, 45.586962], + [9.370067, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.591458], + [9.370067, 45.595955], + [9.374563, 45.595955], + [9.374563, 45.591458], + [9.370067, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.595955], + [9.370067, 45.600451], + [9.374563, 45.600451], + [9.374563, 45.595955], + [9.370067, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.600451], + [9.370067, 45.604948], + [9.374563, 45.604948], + [9.374563, 45.600451], + [9.370067, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.604948], + [9.370067, 45.609445], + [9.374563, 45.609445], + [9.374563, 45.604948], + [9.370067, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.609445], + [9.370067, 45.613941], + [9.374563, 45.613941], + [9.374563, 45.609445], + [9.370067, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.613941], + [9.370067, 45.618438], + [9.374563, 45.618438], + [9.374563, 45.613941], + [9.370067, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.618438], + [9.370067, 45.622934], + [9.374563, 45.622934], + [9.374563, 45.618438], + [9.370067, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.622934], + [9.370067, 45.627431], + [9.374563, 45.627431], + [9.374563, 45.622934], + [9.370067, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.627431], + [9.370067, 45.631928], + [9.374563, 45.631928], + [9.374563, 45.627431], + [9.370067, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.370067, 45.631928], + [9.370067, 45.636424], + [9.374563, 45.636424], + [9.374563, 45.631928], + [9.370067, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.339648], + [9.374563, 45.344145], + [9.37906, 45.344145], + [9.37906, 45.339648], + [9.374563, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.344145], + [9.374563, 45.348642], + [9.37906, 45.348642], + [9.37906, 45.344145], + [9.374563, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.348642], + [9.374563, 45.353138], + [9.37906, 45.353138], + [9.37906, 45.348642], + [9.374563, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.353138], + [9.374563, 45.357635], + [9.37906, 45.357635], + [9.37906, 45.353138], + [9.374563, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.357635], + [9.374563, 45.362131], + [9.37906, 45.362131], + [9.37906, 45.357635], + [9.374563, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.362131], + [9.374563, 45.366628], + [9.37906, 45.366628], + [9.37906, 45.362131], + [9.374563, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.366628], + [9.374563, 45.371125], + [9.37906, 45.371125], + [9.37906, 45.366628], + [9.374563, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.371125], + [9.374563, 45.375621], + [9.37906, 45.375621], + [9.37906, 45.371125], + [9.374563, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.375621], + [9.374563, 45.380118], + [9.37906, 45.380118], + [9.37906, 45.375621], + [9.374563, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.380118], + [9.374563, 45.384614], + [9.37906, 45.384614], + [9.37906, 45.380118], + [9.374563, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.384614], + [9.374563, 45.389111], + [9.37906, 45.389111], + [9.37906, 45.384614], + [9.374563, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.389111], + [9.374563, 45.393608], + [9.37906, 45.393608], + [9.37906, 45.389111], + [9.374563, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.393608], + [9.374563, 45.398104], + [9.37906, 45.398104], + [9.37906, 45.393608], + [9.374563, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.398104], + [9.374563, 45.402601], + [9.37906, 45.402601], + [9.37906, 45.398104], + [9.374563, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.402601], + [9.374563, 45.407097], + [9.37906, 45.407097], + [9.37906, 45.402601], + [9.374563, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.407097], + [9.374563, 45.411594], + [9.37906, 45.411594], + [9.37906, 45.407097], + [9.374563, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.411594], + [9.374563, 45.416091], + [9.37906, 45.416091], + [9.37906, 45.411594], + [9.374563, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.416091], + [9.374563, 45.420587], + [9.37906, 45.420587], + [9.37906, 45.416091], + [9.374563, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.420587], + [9.374563, 45.425084], + [9.37906, 45.425084], + [9.37906, 45.420587], + [9.374563, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.425084], + [9.374563, 45.42958], + [9.37906, 45.42958], + [9.37906, 45.425084], + [9.374563, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.42958], + [9.374563, 45.434077], + [9.37906, 45.434077], + [9.37906, 45.42958], + [9.374563, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.434077], + [9.374563, 45.438574], + [9.37906, 45.438574], + [9.37906, 45.434077], + [9.374563, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.438574], + [9.374563, 45.44307], + [9.37906, 45.44307], + [9.37906, 45.438574], + [9.374563, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.44307], + [9.374563, 45.447567], + [9.37906, 45.447567], + [9.37906, 45.44307], + [9.374563, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.447567], + [9.374563, 45.452063], + [9.37906, 45.452063], + [9.37906, 45.447567], + [9.374563, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.452063], + [9.374563, 45.45656], + [9.37906, 45.45656], + [9.37906, 45.452063], + [9.374563, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.45656], + [9.374563, 45.461057], + [9.37906, 45.461057], + [9.37906, 45.45656], + [9.374563, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.461057], + [9.374563, 45.465553], + [9.37906, 45.465553], + [9.37906, 45.461057], + [9.374563, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.465553], + [9.374563, 45.47005], + [9.37906, 45.47005], + [9.37906, 45.465553], + [9.374563, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.47005], + [9.374563, 45.474547], + [9.37906, 45.474547], + [9.37906, 45.47005], + [9.374563, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.474547], + [9.374563, 45.479043], + [9.37906, 45.479043], + [9.37906, 45.474547], + [9.374563, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.479043], + [9.374563, 45.48354], + [9.37906, 45.48354], + [9.37906, 45.479043], + [9.374563, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.48354], + [9.374563, 45.488036], + [9.37906, 45.488036], + [9.37906, 45.48354], + [9.374563, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.488036], + [9.374563, 45.492533], + [9.37906, 45.492533], + [9.37906, 45.488036], + [9.374563, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.492533], + [9.374563, 45.49703], + [9.37906, 45.49703], + [9.37906, 45.492533], + [9.374563, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.49703], + [9.374563, 45.501526], + [9.37906, 45.501526], + [9.37906, 45.49703], + [9.374563, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.501526], + [9.374563, 45.506023], + [9.37906, 45.506023], + [9.37906, 45.501526], + [9.374563, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.506023], + [9.374563, 45.510519], + [9.37906, 45.510519], + [9.37906, 45.506023], + [9.374563, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.510519], + [9.374563, 45.515016], + [9.37906, 45.515016], + [9.37906, 45.510519], + [9.374563, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.515016], + [9.374563, 45.519513], + [9.37906, 45.519513], + [9.37906, 45.515016], + [9.374563, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.519513], + [9.374563, 45.524009], + [9.37906, 45.524009], + [9.37906, 45.519513], + [9.374563, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.524009], + [9.374563, 45.528506], + [9.37906, 45.528506], + [9.37906, 45.524009], + [9.374563, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.528506], + [9.374563, 45.533002], + [9.37906, 45.533002], + [9.37906, 45.528506], + [9.374563, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.533002], + [9.374563, 45.537499], + [9.37906, 45.537499], + [9.37906, 45.533002], + [9.374563, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.537499], + [9.374563, 45.541996], + [9.37906, 45.541996], + [9.37906, 45.537499], + [9.374563, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.541996], + [9.374563, 45.546492], + [9.37906, 45.546492], + [9.37906, 45.541996], + [9.374563, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.546492], + [9.374563, 45.550989], + [9.37906, 45.550989], + [9.37906, 45.546492], + [9.374563, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.550989], + [9.374563, 45.555485], + [9.37906, 45.555485], + [9.37906, 45.550989], + [9.374563, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.555485], + [9.374563, 45.559982], + [9.37906, 45.559982], + [9.37906, 45.555485], + [9.374563, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.559982], + [9.374563, 45.564479], + [9.37906, 45.564479], + [9.37906, 45.559982], + [9.374563, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.564479], + [9.374563, 45.568975], + [9.37906, 45.568975], + [9.37906, 45.564479], + [9.374563, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.568975], + [9.374563, 45.573472], + [9.37906, 45.573472], + [9.37906, 45.568975], + [9.374563, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.573472], + [9.374563, 45.577968], + [9.37906, 45.577968], + [9.37906, 45.573472], + [9.374563, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.577968], + [9.374563, 45.582465], + [9.37906, 45.582465], + [9.37906, 45.577968], + [9.374563, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.582465], + [9.374563, 45.586962], + [9.37906, 45.586962], + [9.37906, 45.582465], + [9.374563, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.586962], + [9.374563, 45.591458], + [9.37906, 45.591458], + [9.37906, 45.586962], + [9.374563, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.591458], + [9.374563, 45.595955], + [9.37906, 45.595955], + [9.37906, 45.591458], + [9.374563, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.595955], + [9.374563, 45.600451], + [9.37906, 45.600451], + [9.37906, 45.595955], + [9.374563, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.600451], + [9.374563, 45.604948], + [9.37906, 45.604948], + [9.37906, 45.600451], + [9.374563, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.604948], + [9.374563, 45.609445], + [9.37906, 45.609445], + [9.37906, 45.604948], + [9.374563, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.609445], + [9.374563, 45.613941], + [9.37906, 45.613941], + [9.37906, 45.609445], + [9.374563, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.613941], + [9.374563, 45.618438], + [9.37906, 45.618438], + [9.37906, 45.613941], + [9.374563, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.618438], + [9.374563, 45.622934], + [9.37906, 45.622934], + [9.37906, 45.618438], + [9.374563, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.622934], + [9.374563, 45.627431], + [9.37906, 45.627431], + [9.37906, 45.622934], + [9.374563, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.627431], + [9.374563, 45.631928], + [9.37906, 45.631928], + [9.37906, 45.627431], + [9.374563, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.374563, 45.631928], + [9.374563, 45.636424], + [9.37906, 45.636424], + [9.37906, 45.631928], + [9.374563, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.339648], + [9.37906, 45.344145], + [9.383557, 45.344145], + [9.383557, 45.339648], + [9.37906, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.344145], + [9.37906, 45.348642], + [9.383557, 45.348642], + [9.383557, 45.344145], + [9.37906, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.348642], + [9.37906, 45.353138], + [9.383557, 45.353138], + [9.383557, 45.348642], + [9.37906, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.353138], + [9.37906, 45.357635], + [9.383557, 45.357635], + [9.383557, 45.353138], + [9.37906, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.357635], + [9.37906, 45.362131], + [9.383557, 45.362131], + [9.383557, 45.357635], + [9.37906, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.362131], + [9.37906, 45.366628], + [9.383557, 45.366628], + [9.383557, 45.362131], + [9.37906, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.366628], + [9.37906, 45.371125], + [9.383557, 45.371125], + [9.383557, 45.366628], + [9.37906, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.371125], + [9.37906, 45.375621], + [9.383557, 45.375621], + [9.383557, 45.371125], + [9.37906, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.375621], + [9.37906, 45.380118], + [9.383557, 45.380118], + [9.383557, 45.375621], + [9.37906, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.380118], + [9.37906, 45.384614], + [9.383557, 45.384614], + [9.383557, 45.380118], + [9.37906, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.384614], + [9.37906, 45.389111], + [9.383557, 45.389111], + [9.383557, 45.384614], + [9.37906, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.389111], + [9.37906, 45.393608], + [9.383557, 45.393608], + [9.383557, 45.389111], + [9.37906, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.393608], + [9.37906, 45.398104], + [9.383557, 45.398104], + [9.383557, 45.393608], + [9.37906, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.398104], + [9.37906, 45.402601], + [9.383557, 45.402601], + [9.383557, 45.398104], + [9.37906, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.402601], + [9.37906, 45.407097], + [9.383557, 45.407097], + [9.383557, 45.402601], + [9.37906, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.407097], + [9.37906, 45.411594], + [9.383557, 45.411594], + [9.383557, 45.407097], + [9.37906, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.411594], + [9.37906, 45.416091], + [9.383557, 45.416091], + [9.383557, 45.411594], + [9.37906, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.416091], + [9.37906, 45.420587], + [9.383557, 45.420587], + [9.383557, 45.416091], + [9.37906, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.420587], + [9.37906, 45.425084], + [9.383557, 45.425084], + [9.383557, 45.420587], + [9.37906, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.425084], + [9.37906, 45.42958], + [9.383557, 45.42958], + [9.383557, 45.425084], + [9.37906, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.42958], + [9.37906, 45.434077], + [9.383557, 45.434077], + [9.383557, 45.42958], + [9.37906, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.434077], + [9.37906, 45.438574], + [9.383557, 45.438574], + [9.383557, 45.434077], + [9.37906, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.438574], + [9.37906, 45.44307], + [9.383557, 45.44307], + [9.383557, 45.438574], + [9.37906, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.44307], + [9.37906, 45.447567], + [9.383557, 45.447567], + [9.383557, 45.44307], + [9.37906, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.447567], + [9.37906, 45.452063], + [9.383557, 45.452063], + [9.383557, 45.447567], + [9.37906, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.452063], + [9.37906, 45.45656], + [9.383557, 45.45656], + [9.383557, 45.452063], + [9.37906, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.45656], + [9.37906, 45.461057], + [9.383557, 45.461057], + [9.383557, 45.45656], + [9.37906, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.461057], + [9.37906, 45.465553], + [9.383557, 45.465553], + [9.383557, 45.461057], + [9.37906, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.465553], + [9.37906, 45.47005], + [9.383557, 45.47005], + [9.383557, 45.465553], + [9.37906, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.47005], + [9.37906, 45.474547], + [9.383557, 45.474547], + [9.383557, 45.47005], + [9.37906, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.474547], + [9.37906, 45.479043], + [9.383557, 45.479043], + [9.383557, 45.474547], + [9.37906, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.479043], + [9.37906, 45.48354], + [9.383557, 45.48354], + [9.383557, 45.479043], + [9.37906, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.48354], + [9.37906, 45.488036], + [9.383557, 45.488036], + [9.383557, 45.48354], + [9.37906, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.488036], + [9.37906, 45.492533], + [9.383557, 45.492533], + [9.383557, 45.488036], + [9.37906, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.492533], + [9.37906, 45.49703], + [9.383557, 45.49703], + [9.383557, 45.492533], + [9.37906, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.49703], + [9.37906, 45.501526], + [9.383557, 45.501526], + [9.383557, 45.49703], + [9.37906, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.501526], + [9.37906, 45.506023], + [9.383557, 45.506023], + [9.383557, 45.501526], + [9.37906, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.506023], + [9.37906, 45.510519], + [9.383557, 45.510519], + [9.383557, 45.506023], + [9.37906, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.510519], + [9.37906, 45.515016], + [9.383557, 45.515016], + [9.383557, 45.510519], + [9.37906, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.515016], + [9.37906, 45.519513], + [9.383557, 45.519513], + [9.383557, 45.515016], + [9.37906, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.519513], + [9.37906, 45.524009], + [9.383557, 45.524009], + [9.383557, 45.519513], + [9.37906, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.524009], + [9.37906, 45.528506], + [9.383557, 45.528506], + [9.383557, 45.524009], + [9.37906, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.528506], + [9.37906, 45.533002], + [9.383557, 45.533002], + [9.383557, 45.528506], + [9.37906, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.533002], + [9.37906, 45.537499], + [9.383557, 45.537499], + [9.383557, 45.533002], + [9.37906, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.537499], + [9.37906, 45.541996], + [9.383557, 45.541996], + [9.383557, 45.537499], + [9.37906, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.541996], + [9.37906, 45.546492], + [9.383557, 45.546492], + [9.383557, 45.541996], + [9.37906, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.546492], + [9.37906, 45.550989], + [9.383557, 45.550989], + [9.383557, 45.546492], + [9.37906, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.550989], + [9.37906, 45.555485], + [9.383557, 45.555485], + [9.383557, 45.550989], + [9.37906, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.555485], + [9.37906, 45.559982], + [9.383557, 45.559982], + [9.383557, 45.555485], + [9.37906, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.559982], + [9.37906, 45.564479], + [9.383557, 45.564479], + [9.383557, 45.559982], + [9.37906, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.564479], + [9.37906, 45.568975], + [9.383557, 45.568975], + [9.383557, 45.564479], + [9.37906, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.568975], + [9.37906, 45.573472], + [9.383557, 45.573472], + [9.383557, 45.568975], + [9.37906, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.573472], + [9.37906, 45.577968], + [9.383557, 45.577968], + [9.383557, 45.573472], + [9.37906, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.577968], + [9.37906, 45.582465], + [9.383557, 45.582465], + [9.383557, 45.577968], + [9.37906, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.582465], + [9.37906, 45.586962], + [9.383557, 45.586962], + [9.383557, 45.582465], + [9.37906, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.586962], + [9.37906, 45.591458], + [9.383557, 45.591458], + [9.383557, 45.586962], + [9.37906, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.591458], + [9.37906, 45.595955], + [9.383557, 45.595955], + [9.383557, 45.591458], + [9.37906, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.595955], + [9.37906, 45.600451], + [9.383557, 45.600451], + [9.383557, 45.595955], + [9.37906, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.600451], + [9.37906, 45.604948], + [9.383557, 45.604948], + [9.383557, 45.600451], + [9.37906, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.604948], + [9.37906, 45.609445], + [9.383557, 45.609445], + [9.383557, 45.604948], + [9.37906, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.609445], + [9.37906, 45.613941], + [9.383557, 45.613941], + [9.383557, 45.609445], + [9.37906, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.613941], + [9.37906, 45.618438], + [9.383557, 45.618438], + [9.383557, 45.613941], + [9.37906, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.618438], + [9.37906, 45.622934], + [9.383557, 45.622934], + [9.383557, 45.618438], + [9.37906, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.622934], + [9.37906, 45.627431], + [9.383557, 45.627431], + [9.383557, 45.622934], + [9.37906, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.627431], + [9.37906, 45.631928], + [9.383557, 45.631928], + [9.383557, 45.627431], + [9.37906, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.37906, 45.631928], + [9.37906, 45.636424], + [9.383557, 45.636424], + [9.383557, 45.631928], + [9.37906, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.339648], + [9.383557, 45.344145], + [9.388053, 45.344145], + [9.388053, 45.339648], + [9.383557, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.344145], + [9.383557, 45.348642], + [9.388053, 45.348642], + [9.388053, 45.344145], + [9.383557, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.348642], + [9.383557, 45.353138], + [9.388053, 45.353138], + [9.388053, 45.348642], + [9.383557, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.353138], + [9.383557, 45.357635], + [9.388053, 45.357635], + [9.388053, 45.353138], + [9.383557, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.357635], + [9.383557, 45.362131], + [9.388053, 45.362131], + [9.388053, 45.357635], + [9.383557, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.362131], + [9.383557, 45.366628], + [9.388053, 45.366628], + [9.388053, 45.362131], + [9.383557, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.366628], + [9.383557, 45.371125], + [9.388053, 45.371125], + [9.388053, 45.366628], + [9.383557, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.371125], + [9.383557, 45.375621], + [9.388053, 45.375621], + [9.388053, 45.371125], + [9.383557, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.375621], + [9.383557, 45.380118], + [9.388053, 45.380118], + [9.388053, 45.375621], + [9.383557, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.380118], + [9.383557, 45.384614], + [9.388053, 45.384614], + [9.388053, 45.380118], + [9.383557, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.384614], + [9.383557, 45.389111], + [9.388053, 45.389111], + [9.388053, 45.384614], + [9.383557, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.389111], + [9.383557, 45.393608], + [9.388053, 45.393608], + [9.388053, 45.389111], + [9.383557, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.393608], + [9.383557, 45.398104], + [9.388053, 45.398104], + [9.388053, 45.393608], + [9.383557, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.398104], + [9.383557, 45.402601], + [9.388053, 45.402601], + [9.388053, 45.398104], + [9.383557, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.402601], + [9.383557, 45.407097], + [9.388053, 45.407097], + [9.388053, 45.402601], + [9.383557, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.407097], + [9.383557, 45.411594], + [9.388053, 45.411594], + [9.388053, 45.407097], + [9.383557, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.411594], + [9.383557, 45.416091], + [9.388053, 45.416091], + [9.388053, 45.411594], + [9.383557, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.416091], + [9.383557, 45.420587], + [9.388053, 45.420587], + [9.388053, 45.416091], + [9.383557, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.420587], + [9.383557, 45.425084], + [9.388053, 45.425084], + [9.388053, 45.420587], + [9.383557, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.425084], + [9.383557, 45.42958], + [9.388053, 45.42958], + [9.388053, 45.425084], + [9.383557, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.42958], + [9.383557, 45.434077], + [9.388053, 45.434077], + [9.388053, 45.42958], + [9.383557, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.434077], + [9.383557, 45.438574], + [9.388053, 45.438574], + [9.388053, 45.434077], + [9.383557, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.438574], + [9.383557, 45.44307], + [9.388053, 45.44307], + [9.388053, 45.438574], + [9.383557, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.44307], + [9.383557, 45.447567], + [9.388053, 45.447567], + [9.388053, 45.44307], + [9.383557, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.447567], + [9.383557, 45.452063], + [9.388053, 45.452063], + [9.388053, 45.447567], + [9.383557, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.452063], + [9.383557, 45.45656], + [9.388053, 45.45656], + [9.388053, 45.452063], + [9.383557, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.45656], + [9.383557, 45.461057], + [9.388053, 45.461057], + [9.388053, 45.45656], + [9.383557, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.461057], + [9.383557, 45.465553], + [9.388053, 45.465553], + [9.388053, 45.461057], + [9.383557, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.465553], + [9.383557, 45.47005], + [9.388053, 45.47005], + [9.388053, 45.465553], + [9.383557, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.47005], + [9.383557, 45.474547], + [9.388053, 45.474547], + [9.388053, 45.47005], + [9.383557, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.474547], + [9.383557, 45.479043], + [9.388053, 45.479043], + [9.388053, 45.474547], + [9.383557, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.479043], + [9.383557, 45.48354], + [9.388053, 45.48354], + [9.388053, 45.479043], + [9.383557, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.48354], + [9.383557, 45.488036], + [9.388053, 45.488036], + [9.388053, 45.48354], + [9.383557, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.488036], + [9.383557, 45.492533], + [9.388053, 45.492533], + [9.388053, 45.488036], + [9.383557, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.492533], + [9.383557, 45.49703], + [9.388053, 45.49703], + [9.388053, 45.492533], + [9.383557, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.49703], + [9.383557, 45.501526], + [9.388053, 45.501526], + [9.388053, 45.49703], + [9.383557, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.501526], + [9.383557, 45.506023], + [9.388053, 45.506023], + [9.388053, 45.501526], + [9.383557, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.506023], + [9.383557, 45.510519], + [9.388053, 45.510519], + [9.388053, 45.506023], + [9.383557, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.510519], + [9.383557, 45.515016], + [9.388053, 45.515016], + [9.388053, 45.510519], + [9.383557, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.515016], + [9.383557, 45.519513], + [9.388053, 45.519513], + [9.388053, 45.515016], + [9.383557, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.519513], + [9.383557, 45.524009], + [9.388053, 45.524009], + [9.388053, 45.519513], + [9.383557, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.524009], + [9.383557, 45.528506], + [9.388053, 45.528506], + [9.388053, 45.524009], + [9.383557, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.528506], + [9.383557, 45.533002], + [9.388053, 45.533002], + [9.388053, 45.528506], + [9.383557, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.533002], + [9.383557, 45.537499], + [9.388053, 45.537499], + [9.388053, 45.533002], + [9.383557, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.537499], + [9.383557, 45.541996], + [9.388053, 45.541996], + [9.388053, 45.537499], + [9.383557, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.541996], + [9.383557, 45.546492], + [9.388053, 45.546492], + [9.388053, 45.541996], + [9.383557, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.546492], + [9.383557, 45.550989], + [9.388053, 45.550989], + [9.388053, 45.546492], + [9.383557, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.550989], + [9.383557, 45.555485], + [9.388053, 45.555485], + [9.388053, 45.550989], + [9.383557, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.555485], + [9.383557, 45.559982], + [9.388053, 45.559982], + [9.388053, 45.555485], + [9.383557, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.559982], + [9.383557, 45.564479], + [9.388053, 45.564479], + [9.388053, 45.559982], + [9.383557, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.564479], + [9.383557, 45.568975], + [9.388053, 45.568975], + [9.388053, 45.564479], + [9.383557, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.568975], + [9.383557, 45.573472], + [9.388053, 45.573472], + [9.388053, 45.568975], + [9.383557, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.573472], + [9.383557, 45.577968], + [9.388053, 45.577968], + [9.388053, 45.573472], + [9.383557, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.577968], + [9.383557, 45.582465], + [9.388053, 45.582465], + [9.388053, 45.577968], + [9.383557, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.582465], + [9.383557, 45.586962], + [9.388053, 45.586962], + [9.388053, 45.582465], + [9.383557, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.586962], + [9.383557, 45.591458], + [9.388053, 45.591458], + [9.388053, 45.586962], + [9.383557, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.591458], + [9.383557, 45.595955], + [9.388053, 45.595955], + [9.388053, 45.591458], + [9.383557, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.595955], + [9.383557, 45.600451], + [9.388053, 45.600451], + [9.388053, 45.595955], + [9.383557, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.600451], + [9.383557, 45.604948], + [9.388053, 45.604948], + [9.388053, 45.600451], + [9.383557, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.604948], + [9.383557, 45.609445], + [9.388053, 45.609445], + [9.388053, 45.604948], + [9.383557, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.609445], + [9.383557, 45.613941], + [9.388053, 45.613941], + [9.388053, 45.609445], + [9.383557, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.613941], + [9.383557, 45.618438], + [9.388053, 45.618438], + [9.388053, 45.613941], + [9.383557, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.618438], + [9.383557, 45.622934], + [9.388053, 45.622934], + [9.388053, 45.618438], + [9.383557, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.622934], + [9.383557, 45.627431], + [9.388053, 45.627431], + [9.388053, 45.622934], + [9.383557, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.627431], + [9.383557, 45.631928], + [9.388053, 45.631928], + [9.388053, 45.627431], + [9.383557, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.383557, 45.631928], + [9.383557, 45.636424], + [9.388053, 45.636424], + [9.388053, 45.631928], + [9.383557, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.339648], + [9.388053, 45.344145], + [9.39255, 45.344145], + [9.39255, 45.339648], + [9.388053, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.344145], + [9.388053, 45.348642], + [9.39255, 45.348642], + [9.39255, 45.344145], + [9.388053, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.348642], + [9.388053, 45.353138], + [9.39255, 45.353138], + [9.39255, 45.348642], + [9.388053, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.353138], + [9.388053, 45.357635], + [9.39255, 45.357635], + [9.39255, 45.353138], + [9.388053, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.357635], + [9.388053, 45.362131], + [9.39255, 45.362131], + [9.39255, 45.357635], + [9.388053, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.362131], + [9.388053, 45.366628], + [9.39255, 45.366628], + [9.39255, 45.362131], + [9.388053, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.366628], + [9.388053, 45.371125], + [9.39255, 45.371125], + [9.39255, 45.366628], + [9.388053, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.371125], + [9.388053, 45.375621], + [9.39255, 45.375621], + [9.39255, 45.371125], + [9.388053, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.375621], + [9.388053, 45.380118], + [9.39255, 45.380118], + [9.39255, 45.375621], + [9.388053, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.380118], + [9.388053, 45.384614], + [9.39255, 45.384614], + [9.39255, 45.380118], + [9.388053, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.384614], + [9.388053, 45.389111], + [9.39255, 45.389111], + [9.39255, 45.384614], + [9.388053, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.389111], + [9.388053, 45.393608], + [9.39255, 45.393608], + [9.39255, 45.389111], + [9.388053, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.393608], + [9.388053, 45.398104], + [9.39255, 45.398104], + [9.39255, 45.393608], + [9.388053, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.398104], + [9.388053, 45.402601], + [9.39255, 45.402601], + [9.39255, 45.398104], + [9.388053, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.402601], + [9.388053, 45.407097], + [9.39255, 45.407097], + [9.39255, 45.402601], + [9.388053, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.407097], + [9.388053, 45.411594], + [9.39255, 45.411594], + [9.39255, 45.407097], + [9.388053, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.411594], + [9.388053, 45.416091], + [9.39255, 45.416091], + [9.39255, 45.411594], + [9.388053, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.416091], + [9.388053, 45.420587], + [9.39255, 45.420587], + [9.39255, 45.416091], + [9.388053, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.420587], + [9.388053, 45.425084], + [9.39255, 45.425084], + [9.39255, 45.420587], + [9.388053, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.425084], + [9.388053, 45.42958], + [9.39255, 45.42958], + [9.39255, 45.425084], + [9.388053, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.42958], + [9.388053, 45.434077], + [9.39255, 45.434077], + [9.39255, 45.42958], + [9.388053, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.434077], + [9.388053, 45.438574], + [9.39255, 45.438574], + [9.39255, 45.434077], + [9.388053, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.438574], + [9.388053, 45.44307], + [9.39255, 45.44307], + [9.39255, 45.438574], + [9.388053, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.44307], + [9.388053, 45.447567], + [9.39255, 45.447567], + [9.39255, 45.44307], + [9.388053, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.447567], + [9.388053, 45.452063], + [9.39255, 45.452063], + [9.39255, 45.447567], + [9.388053, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.452063], + [9.388053, 45.45656], + [9.39255, 45.45656], + [9.39255, 45.452063], + [9.388053, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.45656], + [9.388053, 45.461057], + [9.39255, 45.461057], + [9.39255, 45.45656], + [9.388053, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.461057], + [9.388053, 45.465553], + [9.39255, 45.465553], + [9.39255, 45.461057], + [9.388053, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.465553], + [9.388053, 45.47005], + [9.39255, 45.47005], + [9.39255, 45.465553], + [9.388053, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.47005], + [9.388053, 45.474547], + [9.39255, 45.474547], + [9.39255, 45.47005], + [9.388053, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.474547], + [9.388053, 45.479043], + [9.39255, 45.479043], + [9.39255, 45.474547], + [9.388053, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.479043], + [9.388053, 45.48354], + [9.39255, 45.48354], + [9.39255, 45.479043], + [9.388053, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.48354], + [9.388053, 45.488036], + [9.39255, 45.488036], + [9.39255, 45.48354], + [9.388053, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.488036], + [9.388053, 45.492533], + [9.39255, 45.492533], + [9.39255, 45.488036], + [9.388053, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.492533], + [9.388053, 45.49703], + [9.39255, 45.49703], + [9.39255, 45.492533], + [9.388053, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.49703], + [9.388053, 45.501526], + [9.39255, 45.501526], + [9.39255, 45.49703], + [9.388053, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.501526], + [9.388053, 45.506023], + [9.39255, 45.506023], + [9.39255, 45.501526], + [9.388053, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.506023], + [9.388053, 45.510519], + [9.39255, 45.510519], + [9.39255, 45.506023], + [9.388053, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.510519], + [9.388053, 45.515016], + [9.39255, 45.515016], + [9.39255, 45.510519], + [9.388053, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.515016], + [9.388053, 45.519513], + [9.39255, 45.519513], + [9.39255, 45.515016], + [9.388053, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.519513], + [9.388053, 45.524009], + [9.39255, 45.524009], + [9.39255, 45.519513], + [9.388053, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.524009], + [9.388053, 45.528506], + [9.39255, 45.528506], + [9.39255, 45.524009], + [9.388053, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.528506], + [9.388053, 45.533002], + [9.39255, 45.533002], + [9.39255, 45.528506], + [9.388053, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.533002], + [9.388053, 45.537499], + [9.39255, 45.537499], + [9.39255, 45.533002], + [9.388053, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.537499], + [9.388053, 45.541996], + [9.39255, 45.541996], + [9.39255, 45.537499], + [9.388053, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.541996], + [9.388053, 45.546492], + [9.39255, 45.546492], + [9.39255, 45.541996], + [9.388053, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.546492], + [9.388053, 45.550989], + [9.39255, 45.550989], + [9.39255, 45.546492], + [9.388053, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.550989], + [9.388053, 45.555485], + [9.39255, 45.555485], + [9.39255, 45.550989], + [9.388053, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.555485], + [9.388053, 45.559982], + [9.39255, 45.559982], + [9.39255, 45.555485], + [9.388053, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.559982], + [9.388053, 45.564479], + [9.39255, 45.564479], + [9.39255, 45.559982], + [9.388053, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.564479], + [9.388053, 45.568975], + [9.39255, 45.568975], + [9.39255, 45.564479], + [9.388053, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.568975], + [9.388053, 45.573472], + [9.39255, 45.573472], + [9.39255, 45.568975], + [9.388053, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.573472], + [9.388053, 45.577968], + [9.39255, 45.577968], + [9.39255, 45.573472], + [9.388053, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.577968], + [9.388053, 45.582465], + [9.39255, 45.582465], + [9.39255, 45.577968], + [9.388053, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.582465], + [9.388053, 45.586962], + [9.39255, 45.586962], + [9.39255, 45.582465], + [9.388053, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.586962], + [9.388053, 45.591458], + [9.39255, 45.591458], + [9.39255, 45.586962], + [9.388053, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.591458], + [9.388053, 45.595955], + [9.39255, 45.595955], + [9.39255, 45.591458], + [9.388053, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.595955], + [9.388053, 45.600451], + [9.39255, 45.600451], + [9.39255, 45.595955], + [9.388053, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.600451], + [9.388053, 45.604948], + [9.39255, 45.604948], + [9.39255, 45.600451], + [9.388053, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.604948], + [9.388053, 45.609445], + [9.39255, 45.609445], + [9.39255, 45.604948], + [9.388053, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.609445], + [9.388053, 45.613941], + [9.39255, 45.613941], + [9.39255, 45.609445], + [9.388053, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.613941], + [9.388053, 45.618438], + [9.39255, 45.618438], + [9.39255, 45.613941], + [9.388053, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.618438], + [9.388053, 45.622934], + [9.39255, 45.622934], + [9.39255, 45.618438], + [9.388053, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.622934], + [9.388053, 45.627431], + [9.39255, 45.627431], + [9.39255, 45.622934], + [9.388053, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.627431], + [9.388053, 45.631928], + [9.39255, 45.631928], + [9.39255, 45.627431], + [9.388053, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.388053, 45.631928], + [9.388053, 45.636424], + [9.39255, 45.636424], + [9.39255, 45.631928], + [9.388053, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.339648], + [9.39255, 45.344145], + [9.397046, 45.344145], + [9.397046, 45.339648], + [9.39255, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.344145], + [9.39255, 45.348642], + [9.397046, 45.348642], + [9.397046, 45.344145], + [9.39255, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.348642], + [9.39255, 45.353138], + [9.397046, 45.353138], + [9.397046, 45.348642], + [9.39255, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.353138], + [9.39255, 45.357635], + [9.397046, 45.357635], + [9.397046, 45.353138], + [9.39255, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.357635], + [9.39255, 45.362131], + [9.397046, 45.362131], + [9.397046, 45.357635], + [9.39255, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.362131], + [9.39255, 45.366628], + [9.397046, 45.366628], + [9.397046, 45.362131], + [9.39255, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.366628], + [9.39255, 45.371125], + [9.397046, 45.371125], + [9.397046, 45.366628], + [9.39255, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.371125], + [9.39255, 45.375621], + [9.397046, 45.375621], + [9.397046, 45.371125], + [9.39255, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.375621], + [9.39255, 45.380118], + [9.397046, 45.380118], + [9.397046, 45.375621], + [9.39255, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.380118], + [9.39255, 45.384614], + [9.397046, 45.384614], + [9.397046, 45.380118], + [9.39255, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.384614], + [9.39255, 45.389111], + [9.397046, 45.389111], + [9.397046, 45.384614], + [9.39255, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.389111], + [9.39255, 45.393608], + [9.397046, 45.393608], + [9.397046, 45.389111], + [9.39255, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.393608], + [9.39255, 45.398104], + [9.397046, 45.398104], + [9.397046, 45.393608], + [9.39255, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.398104], + [9.39255, 45.402601], + [9.397046, 45.402601], + [9.397046, 45.398104], + [9.39255, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.402601], + [9.39255, 45.407097], + [9.397046, 45.407097], + [9.397046, 45.402601], + [9.39255, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.407097], + [9.39255, 45.411594], + [9.397046, 45.411594], + [9.397046, 45.407097], + [9.39255, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.411594], + [9.39255, 45.416091], + [9.397046, 45.416091], + [9.397046, 45.411594], + [9.39255, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.416091], + [9.39255, 45.420587], + [9.397046, 45.420587], + [9.397046, 45.416091], + [9.39255, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.420587], + [9.39255, 45.425084], + [9.397046, 45.425084], + [9.397046, 45.420587], + [9.39255, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.425084], + [9.39255, 45.42958], + [9.397046, 45.42958], + [9.397046, 45.425084], + [9.39255, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.42958], + [9.39255, 45.434077], + [9.397046, 45.434077], + [9.397046, 45.42958], + [9.39255, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.434077], + [9.39255, 45.438574], + [9.397046, 45.438574], + [9.397046, 45.434077], + [9.39255, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.438574], + [9.39255, 45.44307], + [9.397046, 45.44307], + [9.397046, 45.438574], + [9.39255, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.44307], + [9.39255, 45.447567], + [9.397046, 45.447567], + [9.397046, 45.44307], + [9.39255, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.447567], + [9.39255, 45.452063], + [9.397046, 45.452063], + [9.397046, 45.447567], + [9.39255, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.452063], + [9.39255, 45.45656], + [9.397046, 45.45656], + [9.397046, 45.452063], + [9.39255, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.45656], + [9.39255, 45.461057], + [9.397046, 45.461057], + [9.397046, 45.45656], + [9.39255, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.461057], + [9.39255, 45.465553], + [9.397046, 45.465553], + [9.397046, 45.461057], + [9.39255, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.465553], + [9.39255, 45.47005], + [9.397046, 45.47005], + [9.397046, 45.465553], + [9.39255, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.47005], + [9.39255, 45.474547], + [9.397046, 45.474547], + [9.397046, 45.47005], + [9.39255, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.474547], + [9.39255, 45.479043], + [9.397046, 45.479043], + [9.397046, 45.474547], + [9.39255, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.479043], + [9.39255, 45.48354], + [9.397046, 45.48354], + [9.397046, 45.479043], + [9.39255, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.48354], + [9.39255, 45.488036], + [9.397046, 45.488036], + [9.397046, 45.48354], + [9.39255, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.488036], + [9.39255, 45.492533], + [9.397046, 45.492533], + [9.397046, 45.488036], + [9.39255, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.492533], + [9.39255, 45.49703], + [9.397046, 45.49703], + [9.397046, 45.492533], + [9.39255, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.49703], + [9.39255, 45.501526], + [9.397046, 45.501526], + [9.397046, 45.49703], + [9.39255, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.501526], + [9.39255, 45.506023], + [9.397046, 45.506023], + [9.397046, 45.501526], + [9.39255, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.506023], + [9.39255, 45.510519], + [9.397046, 45.510519], + [9.397046, 45.506023], + [9.39255, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.510519], + [9.39255, 45.515016], + [9.397046, 45.515016], + [9.397046, 45.510519], + [9.39255, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.515016], + [9.39255, 45.519513], + [9.397046, 45.519513], + [9.397046, 45.515016], + [9.39255, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.519513], + [9.39255, 45.524009], + [9.397046, 45.524009], + [9.397046, 45.519513], + [9.39255, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.524009], + [9.39255, 45.528506], + [9.397046, 45.528506], + [9.397046, 45.524009], + [9.39255, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.528506], + [9.39255, 45.533002], + [9.397046, 45.533002], + [9.397046, 45.528506], + [9.39255, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.533002], + [9.39255, 45.537499], + [9.397046, 45.537499], + [9.397046, 45.533002], + [9.39255, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.537499], + [9.39255, 45.541996], + [9.397046, 45.541996], + [9.397046, 45.537499], + [9.39255, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.541996], + [9.39255, 45.546492], + [9.397046, 45.546492], + [9.397046, 45.541996], + [9.39255, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.546492], + [9.39255, 45.550989], + [9.397046, 45.550989], + [9.397046, 45.546492], + [9.39255, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.550989], + [9.39255, 45.555485], + [9.397046, 45.555485], + [9.397046, 45.550989], + [9.39255, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.555485], + [9.39255, 45.559982], + [9.397046, 45.559982], + [9.397046, 45.555485], + [9.39255, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.559982], + [9.39255, 45.564479], + [9.397046, 45.564479], + [9.397046, 45.559982], + [9.39255, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.564479], + [9.39255, 45.568975], + [9.397046, 45.568975], + [9.397046, 45.564479], + [9.39255, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.568975], + [9.39255, 45.573472], + [9.397046, 45.573472], + [9.397046, 45.568975], + [9.39255, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.573472], + [9.39255, 45.577968], + [9.397046, 45.577968], + [9.397046, 45.573472], + [9.39255, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.577968], + [9.39255, 45.582465], + [9.397046, 45.582465], + [9.397046, 45.577968], + [9.39255, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.582465], + [9.39255, 45.586962], + [9.397046, 45.586962], + [9.397046, 45.582465], + [9.39255, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.586962], + [9.39255, 45.591458], + [9.397046, 45.591458], + [9.397046, 45.586962], + [9.39255, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.591458], + [9.39255, 45.595955], + [9.397046, 45.595955], + [9.397046, 45.591458], + [9.39255, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.595955], + [9.39255, 45.600451], + [9.397046, 45.600451], + [9.397046, 45.595955], + [9.39255, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.600451], + [9.39255, 45.604948], + [9.397046, 45.604948], + [9.397046, 45.600451], + [9.39255, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.604948], + [9.39255, 45.609445], + [9.397046, 45.609445], + [9.397046, 45.604948], + [9.39255, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.609445], + [9.39255, 45.613941], + [9.397046, 45.613941], + [9.397046, 45.609445], + [9.39255, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.613941], + [9.39255, 45.618438], + [9.397046, 45.618438], + [9.397046, 45.613941], + [9.39255, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.618438], + [9.39255, 45.622934], + [9.397046, 45.622934], + [9.397046, 45.618438], + [9.39255, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.622934], + [9.39255, 45.627431], + [9.397046, 45.627431], + [9.397046, 45.622934], + [9.39255, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.627431], + [9.39255, 45.631928], + [9.397046, 45.631928], + [9.397046, 45.627431], + [9.39255, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.39255, 45.631928], + [9.39255, 45.636424], + [9.397046, 45.636424], + [9.397046, 45.631928], + [9.39255, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.339648], + [9.397046, 45.344145], + [9.401543, 45.344145], + [9.401543, 45.339648], + [9.397046, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.344145], + [9.397046, 45.348642], + [9.401543, 45.348642], + [9.401543, 45.344145], + [9.397046, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.348642], + [9.397046, 45.353138], + [9.401543, 45.353138], + [9.401543, 45.348642], + [9.397046, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.353138], + [9.397046, 45.357635], + [9.401543, 45.357635], + [9.401543, 45.353138], + [9.397046, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.357635], + [9.397046, 45.362131], + [9.401543, 45.362131], + [9.401543, 45.357635], + [9.397046, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.362131], + [9.397046, 45.366628], + [9.401543, 45.366628], + [9.401543, 45.362131], + [9.397046, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.366628], + [9.397046, 45.371125], + [9.401543, 45.371125], + [9.401543, 45.366628], + [9.397046, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.371125], + [9.397046, 45.375621], + [9.401543, 45.375621], + [9.401543, 45.371125], + [9.397046, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.375621], + [9.397046, 45.380118], + [9.401543, 45.380118], + [9.401543, 45.375621], + [9.397046, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.380118], + [9.397046, 45.384614], + [9.401543, 45.384614], + [9.401543, 45.380118], + [9.397046, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.384614], + [9.397046, 45.389111], + [9.401543, 45.389111], + [9.401543, 45.384614], + [9.397046, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.389111], + [9.397046, 45.393608], + [9.401543, 45.393608], + [9.401543, 45.389111], + [9.397046, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.393608], + [9.397046, 45.398104], + [9.401543, 45.398104], + [9.401543, 45.393608], + [9.397046, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.398104], + [9.397046, 45.402601], + [9.401543, 45.402601], + [9.401543, 45.398104], + [9.397046, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.402601], + [9.397046, 45.407097], + [9.401543, 45.407097], + [9.401543, 45.402601], + [9.397046, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.407097], + [9.397046, 45.411594], + [9.401543, 45.411594], + [9.401543, 45.407097], + [9.397046, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.411594], + [9.397046, 45.416091], + [9.401543, 45.416091], + [9.401543, 45.411594], + [9.397046, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.416091], + [9.397046, 45.420587], + [9.401543, 45.420587], + [9.401543, 45.416091], + [9.397046, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.420587], + [9.397046, 45.425084], + [9.401543, 45.425084], + [9.401543, 45.420587], + [9.397046, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.425084], + [9.397046, 45.42958], + [9.401543, 45.42958], + [9.401543, 45.425084], + [9.397046, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.42958], + [9.397046, 45.434077], + [9.401543, 45.434077], + [9.401543, 45.42958], + [9.397046, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.434077], + [9.397046, 45.438574], + [9.401543, 45.438574], + [9.401543, 45.434077], + [9.397046, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.438574], + [9.397046, 45.44307], + [9.401543, 45.44307], + [9.401543, 45.438574], + [9.397046, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.44307], + [9.397046, 45.447567], + [9.401543, 45.447567], + [9.401543, 45.44307], + [9.397046, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.447567], + [9.397046, 45.452063], + [9.401543, 45.452063], + [9.401543, 45.447567], + [9.397046, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.452063], + [9.397046, 45.45656], + [9.401543, 45.45656], + [9.401543, 45.452063], + [9.397046, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.45656], + [9.397046, 45.461057], + [9.401543, 45.461057], + [9.401543, 45.45656], + [9.397046, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.461057], + [9.397046, 45.465553], + [9.401543, 45.465553], + [9.401543, 45.461057], + [9.397046, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.465553], + [9.397046, 45.47005], + [9.401543, 45.47005], + [9.401543, 45.465553], + [9.397046, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.47005], + [9.397046, 45.474547], + [9.401543, 45.474547], + [9.401543, 45.47005], + [9.397046, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.474547], + [9.397046, 45.479043], + [9.401543, 45.479043], + [9.401543, 45.474547], + [9.397046, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.479043], + [9.397046, 45.48354], + [9.401543, 45.48354], + [9.401543, 45.479043], + [9.397046, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.48354], + [9.397046, 45.488036], + [9.401543, 45.488036], + [9.401543, 45.48354], + [9.397046, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.488036], + [9.397046, 45.492533], + [9.401543, 45.492533], + [9.401543, 45.488036], + [9.397046, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.492533], + [9.397046, 45.49703], + [9.401543, 45.49703], + [9.401543, 45.492533], + [9.397046, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.49703], + [9.397046, 45.501526], + [9.401543, 45.501526], + [9.401543, 45.49703], + [9.397046, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.501526], + [9.397046, 45.506023], + [9.401543, 45.506023], + [9.401543, 45.501526], + [9.397046, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.506023], + [9.397046, 45.510519], + [9.401543, 45.510519], + [9.401543, 45.506023], + [9.397046, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.510519], + [9.397046, 45.515016], + [9.401543, 45.515016], + [9.401543, 45.510519], + [9.397046, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.515016], + [9.397046, 45.519513], + [9.401543, 45.519513], + [9.401543, 45.515016], + [9.397046, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.519513], + [9.397046, 45.524009], + [9.401543, 45.524009], + [9.401543, 45.519513], + [9.397046, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.524009], + [9.397046, 45.528506], + [9.401543, 45.528506], + [9.401543, 45.524009], + [9.397046, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.528506], + [9.397046, 45.533002], + [9.401543, 45.533002], + [9.401543, 45.528506], + [9.397046, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.533002], + [9.397046, 45.537499], + [9.401543, 45.537499], + [9.401543, 45.533002], + [9.397046, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.537499], + [9.397046, 45.541996], + [9.401543, 45.541996], + [9.401543, 45.537499], + [9.397046, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.541996], + [9.397046, 45.546492], + [9.401543, 45.546492], + [9.401543, 45.541996], + [9.397046, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.546492], + [9.397046, 45.550989], + [9.401543, 45.550989], + [9.401543, 45.546492], + [9.397046, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.550989], + [9.397046, 45.555485], + [9.401543, 45.555485], + [9.401543, 45.550989], + [9.397046, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.555485], + [9.397046, 45.559982], + [9.401543, 45.559982], + [9.401543, 45.555485], + [9.397046, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.559982], + [9.397046, 45.564479], + [9.401543, 45.564479], + [9.401543, 45.559982], + [9.397046, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.564479], + [9.397046, 45.568975], + [9.401543, 45.568975], + [9.401543, 45.564479], + [9.397046, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.568975], + [9.397046, 45.573472], + [9.401543, 45.573472], + [9.401543, 45.568975], + [9.397046, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.573472], + [9.397046, 45.577968], + [9.401543, 45.577968], + [9.401543, 45.573472], + [9.397046, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.577968], + [9.397046, 45.582465], + [9.401543, 45.582465], + [9.401543, 45.577968], + [9.397046, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.582465], + [9.397046, 45.586962], + [9.401543, 45.586962], + [9.401543, 45.582465], + [9.397046, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.586962], + [9.397046, 45.591458], + [9.401543, 45.591458], + [9.401543, 45.586962], + [9.397046, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.591458], + [9.397046, 45.595955], + [9.401543, 45.595955], + [9.401543, 45.591458], + [9.397046, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.595955], + [9.397046, 45.600451], + [9.401543, 45.600451], + [9.401543, 45.595955], + [9.397046, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.600451], + [9.397046, 45.604948], + [9.401543, 45.604948], + [9.401543, 45.600451], + [9.397046, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.604948], + [9.397046, 45.609445], + [9.401543, 45.609445], + [9.401543, 45.604948], + [9.397046, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.609445], + [9.397046, 45.613941], + [9.401543, 45.613941], + [9.401543, 45.609445], + [9.397046, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.613941], + [9.397046, 45.618438], + [9.401543, 45.618438], + [9.401543, 45.613941], + [9.397046, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.618438], + [9.397046, 45.622934], + [9.401543, 45.622934], + [9.401543, 45.618438], + [9.397046, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.622934], + [9.397046, 45.627431], + [9.401543, 45.627431], + [9.401543, 45.622934], + [9.397046, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.627431], + [9.397046, 45.631928], + [9.401543, 45.631928], + [9.401543, 45.627431], + [9.397046, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.397046, 45.631928], + [9.397046, 45.636424], + [9.401543, 45.636424], + [9.401543, 45.631928], + [9.397046, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.339648], + [9.401543, 45.344145], + [9.40604, 45.344145], + [9.40604, 45.339648], + [9.401543, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.344145], + [9.401543, 45.348642], + [9.40604, 45.348642], + [9.40604, 45.344145], + [9.401543, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.348642], + [9.401543, 45.353138], + [9.40604, 45.353138], + [9.40604, 45.348642], + [9.401543, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.353138], + [9.401543, 45.357635], + [9.40604, 45.357635], + [9.40604, 45.353138], + [9.401543, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.357635], + [9.401543, 45.362131], + [9.40604, 45.362131], + [9.40604, 45.357635], + [9.401543, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.362131], + [9.401543, 45.366628], + [9.40604, 45.366628], + [9.40604, 45.362131], + [9.401543, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.366628], + [9.401543, 45.371125], + [9.40604, 45.371125], + [9.40604, 45.366628], + [9.401543, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.371125], + [9.401543, 45.375621], + [9.40604, 45.375621], + [9.40604, 45.371125], + [9.401543, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.375621], + [9.401543, 45.380118], + [9.40604, 45.380118], + [9.40604, 45.375621], + [9.401543, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.380118], + [9.401543, 45.384614], + [9.40604, 45.384614], + [9.40604, 45.380118], + [9.401543, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.384614], + [9.401543, 45.389111], + [9.40604, 45.389111], + [9.40604, 45.384614], + [9.401543, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.389111], + [9.401543, 45.393608], + [9.40604, 45.393608], + [9.40604, 45.389111], + [9.401543, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.393608], + [9.401543, 45.398104], + [9.40604, 45.398104], + [9.40604, 45.393608], + [9.401543, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.398104], + [9.401543, 45.402601], + [9.40604, 45.402601], + [9.40604, 45.398104], + [9.401543, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.402601], + [9.401543, 45.407097], + [9.40604, 45.407097], + [9.40604, 45.402601], + [9.401543, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.407097], + [9.401543, 45.411594], + [9.40604, 45.411594], + [9.40604, 45.407097], + [9.401543, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.411594], + [9.401543, 45.416091], + [9.40604, 45.416091], + [9.40604, 45.411594], + [9.401543, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.416091], + [9.401543, 45.420587], + [9.40604, 45.420587], + [9.40604, 45.416091], + [9.401543, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.420587], + [9.401543, 45.425084], + [9.40604, 45.425084], + [9.40604, 45.420587], + [9.401543, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.425084], + [9.401543, 45.42958], + [9.40604, 45.42958], + [9.40604, 45.425084], + [9.401543, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.42958], + [9.401543, 45.434077], + [9.40604, 45.434077], + [9.40604, 45.42958], + [9.401543, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.434077], + [9.401543, 45.438574], + [9.40604, 45.438574], + [9.40604, 45.434077], + [9.401543, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.438574], + [9.401543, 45.44307], + [9.40604, 45.44307], + [9.40604, 45.438574], + [9.401543, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.44307], + [9.401543, 45.447567], + [9.40604, 45.447567], + [9.40604, 45.44307], + [9.401543, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.447567], + [9.401543, 45.452063], + [9.40604, 45.452063], + [9.40604, 45.447567], + [9.401543, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.452063], + [9.401543, 45.45656], + [9.40604, 45.45656], + [9.40604, 45.452063], + [9.401543, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.45656], + [9.401543, 45.461057], + [9.40604, 45.461057], + [9.40604, 45.45656], + [9.401543, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.461057], + [9.401543, 45.465553], + [9.40604, 45.465553], + [9.40604, 45.461057], + [9.401543, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.465553], + [9.401543, 45.47005], + [9.40604, 45.47005], + [9.40604, 45.465553], + [9.401543, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.47005], + [9.401543, 45.474547], + [9.40604, 45.474547], + [9.40604, 45.47005], + [9.401543, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.474547], + [9.401543, 45.479043], + [9.40604, 45.479043], + [9.40604, 45.474547], + [9.401543, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.479043], + [9.401543, 45.48354], + [9.40604, 45.48354], + [9.40604, 45.479043], + [9.401543, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.48354], + [9.401543, 45.488036], + [9.40604, 45.488036], + [9.40604, 45.48354], + [9.401543, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.488036], + [9.401543, 45.492533], + [9.40604, 45.492533], + [9.40604, 45.488036], + [9.401543, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.492533], + [9.401543, 45.49703], + [9.40604, 45.49703], + [9.40604, 45.492533], + [9.401543, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.49703], + [9.401543, 45.501526], + [9.40604, 45.501526], + [9.40604, 45.49703], + [9.401543, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.501526], + [9.401543, 45.506023], + [9.40604, 45.506023], + [9.40604, 45.501526], + [9.401543, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.506023], + [9.401543, 45.510519], + [9.40604, 45.510519], + [9.40604, 45.506023], + [9.401543, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.510519], + [9.401543, 45.515016], + [9.40604, 45.515016], + [9.40604, 45.510519], + [9.401543, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.515016], + [9.401543, 45.519513], + [9.40604, 45.519513], + [9.40604, 45.515016], + [9.401543, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.519513], + [9.401543, 45.524009], + [9.40604, 45.524009], + [9.40604, 45.519513], + [9.401543, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.524009], + [9.401543, 45.528506], + [9.40604, 45.528506], + [9.40604, 45.524009], + [9.401543, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.528506], + [9.401543, 45.533002], + [9.40604, 45.533002], + [9.40604, 45.528506], + [9.401543, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.533002], + [9.401543, 45.537499], + [9.40604, 45.537499], + [9.40604, 45.533002], + [9.401543, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.537499], + [9.401543, 45.541996], + [9.40604, 45.541996], + [9.40604, 45.537499], + [9.401543, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.541996], + [9.401543, 45.546492], + [9.40604, 45.546492], + [9.40604, 45.541996], + [9.401543, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.546492], + [9.401543, 45.550989], + [9.40604, 45.550989], + [9.40604, 45.546492], + [9.401543, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.550989], + [9.401543, 45.555485], + [9.40604, 45.555485], + [9.40604, 45.550989], + [9.401543, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.555485], + [9.401543, 45.559982], + [9.40604, 45.559982], + [9.40604, 45.555485], + [9.401543, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.559982], + [9.401543, 45.564479], + [9.40604, 45.564479], + [9.40604, 45.559982], + [9.401543, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.564479], + [9.401543, 45.568975], + [9.40604, 45.568975], + [9.40604, 45.564479], + [9.401543, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.568975], + [9.401543, 45.573472], + [9.40604, 45.573472], + [9.40604, 45.568975], + [9.401543, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.573472], + [9.401543, 45.577968], + [9.40604, 45.577968], + [9.40604, 45.573472], + [9.401543, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.577968], + [9.401543, 45.582465], + [9.40604, 45.582465], + [9.40604, 45.577968], + [9.401543, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.582465], + [9.401543, 45.586962], + [9.40604, 45.586962], + [9.40604, 45.582465], + [9.401543, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.586962], + [9.401543, 45.591458], + [9.40604, 45.591458], + [9.40604, 45.586962], + [9.401543, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.591458], + [9.401543, 45.595955], + [9.40604, 45.595955], + [9.40604, 45.591458], + [9.401543, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.595955], + [9.401543, 45.600451], + [9.40604, 45.600451], + [9.40604, 45.595955], + [9.401543, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.600451], + [9.401543, 45.604948], + [9.40604, 45.604948], + [9.40604, 45.600451], + [9.401543, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.604948], + [9.401543, 45.609445], + [9.40604, 45.609445], + [9.40604, 45.604948], + [9.401543, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.609445], + [9.401543, 45.613941], + [9.40604, 45.613941], + [9.40604, 45.609445], + [9.401543, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.613941], + [9.401543, 45.618438], + [9.40604, 45.618438], + [9.40604, 45.613941], + [9.401543, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.618438], + [9.401543, 45.622934], + [9.40604, 45.622934], + [9.40604, 45.618438], + [9.401543, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.622934], + [9.401543, 45.627431], + [9.40604, 45.627431], + [9.40604, 45.622934], + [9.401543, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.627431], + [9.401543, 45.631928], + [9.40604, 45.631928], + [9.40604, 45.627431], + [9.401543, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.401543, 45.631928], + [9.401543, 45.636424], + [9.40604, 45.636424], + [9.40604, 45.631928], + [9.401543, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.339648], + [9.40604, 45.344145], + [9.410536, 45.344145], + [9.410536, 45.339648], + [9.40604, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.344145], + [9.40604, 45.348642], + [9.410536, 45.348642], + [9.410536, 45.344145], + [9.40604, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.348642], + [9.40604, 45.353138], + [9.410536, 45.353138], + [9.410536, 45.348642], + [9.40604, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.353138], + [9.40604, 45.357635], + [9.410536, 45.357635], + [9.410536, 45.353138], + [9.40604, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.357635], + [9.40604, 45.362131], + [9.410536, 45.362131], + [9.410536, 45.357635], + [9.40604, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.362131], + [9.40604, 45.366628], + [9.410536, 45.366628], + [9.410536, 45.362131], + [9.40604, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.366628], + [9.40604, 45.371125], + [9.410536, 45.371125], + [9.410536, 45.366628], + [9.40604, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.371125], + [9.40604, 45.375621], + [9.410536, 45.375621], + [9.410536, 45.371125], + [9.40604, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.375621], + [9.40604, 45.380118], + [9.410536, 45.380118], + [9.410536, 45.375621], + [9.40604, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.380118], + [9.40604, 45.384614], + [9.410536, 45.384614], + [9.410536, 45.380118], + [9.40604, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.384614], + [9.40604, 45.389111], + [9.410536, 45.389111], + [9.410536, 45.384614], + [9.40604, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.389111], + [9.40604, 45.393608], + [9.410536, 45.393608], + [9.410536, 45.389111], + [9.40604, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.393608], + [9.40604, 45.398104], + [9.410536, 45.398104], + [9.410536, 45.393608], + [9.40604, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.398104], + [9.40604, 45.402601], + [9.410536, 45.402601], + [9.410536, 45.398104], + [9.40604, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.402601], + [9.40604, 45.407097], + [9.410536, 45.407097], + [9.410536, 45.402601], + [9.40604, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.407097], + [9.40604, 45.411594], + [9.410536, 45.411594], + [9.410536, 45.407097], + [9.40604, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.411594], + [9.40604, 45.416091], + [9.410536, 45.416091], + [9.410536, 45.411594], + [9.40604, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.416091], + [9.40604, 45.420587], + [9.410536, 45.420587], + [9.410536, 45.416091], + [9.40604, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.420587], + [9.40604, 45.425084], + [9.410536, 45.425084], + [9.410536, 45.420587], + [9.40604, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.425084], + [9.40604, 45.42958], + [9.410536, 45.42958], + [9.410536, 45.425084], + [9.40604, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.42958], + [9.40604, 45.434077], + [9.410536, 45.434077], + [9.410536, 45.42958], + [9.40604, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.434077], + [9.40604, 45.438574], + [9.410536, 45.438574], + [9.410536, 45.434077], + [9.40604, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.438574], + [9.40604, 45.44307], + [9.410536, 45.44307], + [9.410536, 45.438574], + [9.40604, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.44307], + [9.40604, 45.447567], + [9.410536, 45.447567], + [9.410536, 45.44307], + [9.40604, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.447567], + [9.40604, 45.452063], + [9.410536, 45.452063], + [9.410536, 45.447567], + [9.40604, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.452063], + [9.40604, 45.45656], + [9.410536, 45.45656], + [9.410536, 45.452063], + [9.40604, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.45656], + [9.40604, 45.461057], + [9.410536, 45.461057], + [9.410536, 45.45656], + [9.40604, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.461057], + [9.40604, 45.465553], + [9.410536, 45.465553], + [9.410536, 45.461057], + [9.40604, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.465553], + [9.40604, 45.47005], + [9.410536, 45.47005], + [9.410536, 45.465553], + [9.40604, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.47005], + [9.40604, 45.474547], + [9.410536, 45.474547], + [9.410536, 45.47005], + [9.40604, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.474547], + [9.40604, 45.479043], + [9.410536, 45.479043], + [9.410536, 45.474547], + [9.40604, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.479043], + [9.40604, 45.48354], + [9.410536, 45.48354], + [9.410536, 45.479043], + [9.40604, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.48354], + [9.40604, 45.488036], + [9.410536, 45.488036], + [9.410536, 45.48354], + [9.40604, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.488036], + [9.40604, 45.492533], + [9.410536, 45.492533], + [9.410536, 45.488036], + [9.40604, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.492533], + [9.40604, 45.49703], + [9.410536, 45.49703], + [9.410536, 45.492533], + [9.40604, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.49703], + [9.40604, 45.501526], + [9.410536, 45.501526], + [9.410536, 45.49703], + [9.40604, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.501526], + [9.40604, 45.506023], + [9.410536, 45.506023], + [9.410536, 45.501526], + [9.40604, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.506023], + [9.40604, 45.510519], + [9.410536, 45.510519], + [9.410536, 45.506023], + [9.40604, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.510519], + [9.40604, 45.515016], + [9.410536, 45.515016], + [9.410536, 45.510519], + [9.40604, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.515016], + [9.40604, 45.519513], + [9.410536, 45.519513], + [9.410536, 45.515016], + [9.40604, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.519513], + [9.40604, 45.524009], + [9.410536, 45.524009], + [9.410536, 45.519513], + [9.40604, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.524009], + [9.40604, 45.528506], + [9.410536, 45.528506], + [9.410536, 45.524009], + [9.40604, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.528506], + [9.40604, 45.533002], + [9.410536, 45.533002], + [9.410536, 45.528506], + [9.40604, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.533002], + [9.40604, 45.537499], + [9.410536, 45.537499], + [9.410536, 45.533002], + [9.40604, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.537499], + [9.40604, 45.541996], + [9.410536, 45.541996], + [9.410536, 45.537499], + [9.40604, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.541996], + [9.40604, 45.546492], + [9.410536, 45.546492], + [9.410536, 45.541996], + [9.40604, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.546492], + [9.40604, 45.550989], + [9.410536, 45.550989], + [9.410536, 45.546492], + [9.40604, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.550989], + [9.40604, 45.555485], + [9.410536, 45.555485], + [9.410536, 45.550989], + [9.40604, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.555485], + [9.40604, 45.559982], + [9.410536, 45.559982], + [9.410536, 45.555485], + [9.40604, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.559982], + [9.40604, 45.564479], + [9.410536, 45.564479], + [9.410536, 45.559982], + [9.40604, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.564479], + [9.40604, 45.568975], + [9.410536, 45.568975], + [9.410536, 45.564479], + [9.40604, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.568975], + [9.40604, 45.573472], + [9.410536, 45.573472], + [9.410536, 45.568975], + [9.40604, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.573472], + [9.40604, 45.577968], + [9.410536, 45.577968], + [9.410536, 45.573472], + [9.40604, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.577968], + [9.40604, 45.582465], + [9.410536, 45.582465], + [9.410536, 45.577968], + [9.40604, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.582465], + [9.40604, 45.586962], + [9.410536, 45.586962], + [9.410536, 45.582465], + [9.40604, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.586962], + [9.40604, 45.591458], + [9.410536, 45.591458], + [9.410536, 45.586962], + [9.40604, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.591458], + [9.40604, 45.595955], + [9.410536, 45.595955], + [9.410536, 45.591458], + [9.40604, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.595955], + [9.40604, 45.600451], + [9.410536, 45.600451], + [9.410536, 45.595955], + [9.40604, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.600451], + [9.40604, 45.604948], + [9.410536, 45.604948], + [9.410536, 45.600451], + [9.40604, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.604948], + [9.40604, 45.609445], + [9.410536, 45.609445], + [9.410536, 45.604948], + [9.40604, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.609445], + [9.40604, 45.613941], + [9.410536, 45.613941], + [9.410536, 45.609445], + [9.40604, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.613941], + [9.40604, 45.618438], + [9.410536, 45.618438], + [9.410536, 45.613941], + [9.40604, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.618438], + [9.40604, 45.622934], + [9.410536, 45.622934], + [9.410536, 45.618438], + [9.40604, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.622934], + [9.40604, 45.627431], + [9.410536, 45.627431], + [9.410536, 45.622934], + [9.40604, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.627431], + [9.40604, 45.631928], + [9.410536, 45.631928], + [9.410536, 45.627431], + [9.40604, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.40604, 45.631928], + [9.40604, 45.636424], + [9.410536, 45.636424], + [9.410536, 45.631928], + [9.40604, 45.631928] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.339648], + [9.410536, 45.344145], + [9.415033, 45.344145], + [9.415033, 45.339648], + [9.410536, 45.339648] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.344145], + [9.410536, 45.348642], + [9.415033, 45.348642], + [9.415033, 45.344145], + [9.410536, 45.344145] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.348642], + [9.410536, 45.353138], + [9.415033, 45.353138], + [9.415033, 45.348642], + [9.410536, 45.348642] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.353138], + [9.410536, 45.357635], + [9.415033, 45.357635], + [9.415033, 45.353138], + [9.410536, 45.353138] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.357635], + [9.410536, 45.362131], + [9.415033, 45.362131], + [9.415033, 45.357635], + [9.410536, 45.357635] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.362131], + [9.410536, 45.366628], + [9.415033, 45.366628], + [9.415033, 45.362131], + [9.410536, 45.362131] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.366628], + [9.410536, 45.371125], + [9.415033, 45.371125], + [9.415033, 45.366628], + [9.410536, 45.366628] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.371125], + [9.410536, 45.375621], + [9.415033, 45.375621], + [9.415033, 45.371125], + [9.410536, 45.371125] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.375621], + [9.410536, 45.380118], + [9.415033, 45.380118], + [9.415033, 45.375621], + [9.410536, 45.375621] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.380118], + [9.410536, 45.384614], + [9.415033, 45.384614], + [9.415033, 45.380118], + [9.410536, 45.380118] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.384614], + [9.410536, 45.389111], + [9.415033, 45.389111], + [9.415033, 45.384614], + [9.410536, 45.384614] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 24, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.389111], + [9.410536, 45.393608], + [9.415033, 45.393608], + [9.415033, 45.389111], + [9.410536, 45.389111] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.393608], + [9.410536, 45.398104], + [9.415033, 45.398104], + [9.415033, 45.393608], + [9.410536, 45.393608] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.398104], + [9.410536, 45.402601], + [9.415033, 45.402601], + [9.415033, 45.398104], + [9.410536, 45.398104] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.402601], + [9.410536, 45.407097], + [9.415033, 45.407097], + [9.415033, 45.402601], + [9.410536, 45.402601] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.407097], + [9.410536, 45.411594], + [9.415033, 45.411594], + [9.415033, 45.407097], + [9.410536, 45.407097] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.411594], + [9.410536, 45.416091], + [9.415033, 45.416091], + [9.415033, 45.411594], + [9.410536, 45.411594] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.416091], + [9.410536, 45.420587], + [9.415033, 45.420587], + [9.415033, 45.416091], + [9.410536, 45.416091] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.420587], + [9.410536, 45.425084], + [9.415033, 45.425084], + [9.415033, 45.420587], + [9.410536, 45.420587] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.425084], + [9.410536, 45.42958], + [9.415033, 45.42958], + [9.415033, 45.425084], + [9.410536, 45.425084] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.42958], + [9.410536, 45.434077], + [9.415033, 45.434077], + [9.415033, 45.42958], + [9.410536, 45.42958] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.434077], + [9.410536, 45.438574], + [9.415033, 45.438574], + [9.415033, 45.434077], + [9.410536, 45.434077] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.438574], + [9.410536, 45.44307], + [9.415033, 45.44307], + [9.415033, 45.438574], + [9.410536, 45.438574] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.44307], + [9.410536, 45.447567], + [9.415033, 45.447567], + [9.415033, 45.44307], + [9.410536, 45.44307] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.447567], + [9.410536, 45.452063], + [9.415033, 45.452063], + [9.415033, 45.447567], + [9.410536, 45.447567] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.452063], + [9.410536, 45.45656], + [9.415033, 45.45656], + [9.415033, 45.452063], + [9.410536, 45.452063] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.45656], + [9.410536, 45.461057], + [9.415033, 45.461057], + [9.415033, 45.45656], + [9.410536, 45.45656] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.461057], + [9.410536, 45.465553], + [9.415033, 45.465553], + [9.415033, 45.461057], + [9.410536, 45.461057] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.465553], + [9.410536, 45.47005], + [9.415033, 45.47005], + [9.415033, 45.465553], + [9.410536, 45.465553] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.47005], + [9.410536, 45.474547], + [9.415033, 45.474547], + [9.415033, 45.47005], + [9.410536, 45.47005] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.474547], + [9.410536, 45.479043], + [9.415033, 45.479043], + [9.415033, 45.474547], + [9.410536, 45.474547] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 25, + "stroke": "#6bb8ff", + "fill": "#6bb8ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.479043], + [9.410536, 45.48354], + [9.415033, 45.48354], + [9.415033, 45.479043], + [9.410536, 45.479043] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.48354], + [9.410536, 45.488036], + [9.415033, 45.488036], + [9.415033, 45.48354], + [9.410536, 45.48354] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.488036], + [9.410536, 45.492533], + [9.415033, 45.492533], + [9.415033, 45.488036], + [9.410536, 45.488036] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.492533], + [9.410536, 45.49703], + [9.415033, 45.49703], + [9.415033, 45.492533], + [9.410536, 45.492533] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.49703], + [9.410536, 45.501526], + [9.415033, 45.501526], + [9.415033, 45.49703], + [9.410536, 45.49703] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.501526], + [9.410536, 45.506023], + [9.415033, 45.506023], + [9.415033, 45.501526], + [9.410536, 45.501526] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.506023], + [9.410536, 45.510519], + [9.415033, 45.510519], + [9.415033, 45.506023], + [9.410536, 45.506023] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.510519], + [9.410536, 45.515016], + [9.415033, 45.515016], + [9.415033, 45.510519], + [9.410536, 45.510519] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.515016], + [9.410536, 45.519513], + [9.415033, 45.519513], + [9.415033, 45.515016], + [9.410536, 45.515016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.519513], + [9.410536, 45.524009], + [9.415033, 45.524009], + [9.415033, 45.519513], + [9.410536, 45.519513] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.524009], + [9.410536, 45.528506], + [9.415033, 45.528506], + [9.415033, 45.524009], + [9.410536, 45.524009] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.528506], + [9.410536, 45.533002], + [9.415033, 45.533002], + [9.415033, 45.528506], + [9.410536, 45.528506] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.533002], + [9.410536, 45.537499], + [9.415033, 45.537499], + [9.415033, 45.533002], + [9.410536, 45.533002] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.537499], + [9.410536, 45.541996], + [9.415033, 45.541996], + [9.415033, 45.537499], + [9.410536, 45.537499] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.541996], + [9.410536, 45.546492], + [9.415033, 45.546492], + [9.415033, 45.541996], + [9.410536, 45.541996] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 26, + "stroke": "#61b3ff", + "fill": "#61b3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.546492], + [9.410536, 45.550989], + [9.415033, 45.550989], + [9.415033, 45.546492], + [9.410536, 45.546492] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.550989], + [9.410536, 45.555485], + [9.415033, 45.555485], + [9.415033, 45.550989], + [9.410536, 45.550989] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.555485], + [9.410536, 45.559982], + [9.415033, 45.559982], + [9.415033, 45.555485], + [9.410536, 45.555485] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.559982], + [9.410536, 45.564479], + [9.415033, 45.564479], + [9.415033, 45.559982], + [9.410536, 45.559982] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.564479], + [9.410536, 45.568975], + [9.415033, 45.568975], + [9.415033, 45.564479], + [9.410536, 45.564479] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.568975], + [9.410536, 45.573472], + [9.415033, 45.573472], + [9.415033, 45.568975], + [9.410536, 45.568975] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.573472], + [9.410536, 45.577968], + [9.415033, 45.577968], + [9.415033, 45.573472], + [9.410536, 45.573472] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.577968], + [9.410536, 45.582465], + [9.415033, 45.582465], + [9.415033, 45.577968], + [9.410536, 45.577968] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.582465], + [9.410536, 45.586962], + [9.415033, 45.586962], + [9.415033, 45.582465], + [9.410536, 45.582465] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.586962], + [9.410536, 45.591458], + [9.415033, 45.591458], + [9.415033, 45.586962], + [9.410536, 45.586962] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.591458], + [9.410536, 45.595955], + [9.415033, 45.595955], + [9.415033, 45.591458], + [9.410536, 45.591458] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.595955], + [9.410536, 45.600451], + [9.415033, 45.600451], + [9.415033, 45.595955], + [9.410536, 45.595955] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.600451], + [9.410536, 45.604948], + [9.415033, 45.604948], + [9.415033, 45.600451], + [9.410536, 45.600451] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.604948], + [9.410536, 45.609445], + [9.415033, 45.609445], + [9.415033, 45.604948], + [9.410536, 45.604948] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.609445], + [9.410536, 45.613941], + [9.415033, 45.613941], + [9.415033, 45.609445], + [9.410536, 45.609445] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.613941], + [9.410536, 45.618438], + [9.415033, 45.618438], + [9.415033, 45.613941], + [9.410536, 45.613941] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.618438], + [9.410536, 45.622934], + [9.415033, 45.622934], + [9.415033, 45.618438], + [9.410536, 45.618438] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.622934], + [9.410536, 45.627431], + [9.415033, 45.627431], + [9.415033, 45.622934], + [9.410536, 45.622934] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.627431], + [9.410536, 45.631928], + [9.415033, 45.631928], + [9.415033, 45.627431], + [9.410536, 45.627431] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "value": 27, + "stroke": "#57aeff", + "fill": "#57aeff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.410536, 45.631928], + [9.410536, 45.636424], + [9.415033, 45.636424], + [9.415033, 45.631928], + [9.410536, 45.631928] + ] + ] + } + } + ] +} diff --git a/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson new file mode 100644 index 0000000000..3a45ec78b9 --- /dev/null +++ b/packages/turf-interpolate/test/out/hex-zValue-bbox.geojson @@ -0,0 +1,1040 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.373153], + [-6.338615, 53.366886], + [-6.350739, 53.366886], + [-6.3568, 53.373153], + [-6.350739, 53.37942], + [-6.338615, 53.37942], + [-6.332553, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.360619], + [-6.338615, 53.354352], + [-6.350739, 53.354352], + [-6.3568, 53.360619], + [-6.350739, 53.366886], + [-6.338615, 53.366886], + [-6.332553, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.348085], + [-6.338615, 53.341818], + [-6.350739, 53.341818], + [-6.3568, 53.348085], + [-6.350739, 53.354352], + [-6.338615, 53.354352], + [-6.332553, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.335551], + [-6.338615, 53.329284], + [-6.350739, 53.329284], + [-6.3568, 53.335551], + [-6.350739, 53.341818], + [-6.338615, 53.341818], + [-6.332553, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.332553, 53.323016], + [-6.338615, 53.316749], + [-6.350739, 53.316749], + [-6.3568, 53.323016], + [-6.350739, 53.329284], + [-6.338615, 53.329284], + [-6.332553, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.37942], + [-6.32043, 53.373153], + [-6.332553, 53.373153], + [-6.338615, 53.37942], + [-6.332553, 53.385687], + [-6.32043, 53.385687], + [-6.314368, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 3, + "stroke": "#d1e9ff", + "fill": "#d1e9ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.366886], + [-6.32043, 53.360619], + [-6.332553, 53.360619], + [-6.338615, 53.366886], + [-6.332553, 53.373153], + [-6.32043, 53.373153], + [-6.314368, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 2, + "stroke": "#ffffff", + "fill": "#ffffff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.354352], + [-6.32043, 53.348085], + [-6.332553, 53.348085], + [-6.338615, 53.354352], + [-6.332553, 53.360619], + [-6.32043, 53.360619], + [-6.314368, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 4, + "stroke": "#a3d3ff", + "fill": "#a3d3ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.341818], + [-6.32043, 53.335551], + [-6.332553, 53.335551], + [-6.338615, 53.341818], + [-6.332553, 53.348085], + [-6.32043, 53.348085], + [-6.314368, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.314368, 53.329284], + [-6.32043, 53.323016], + [-6.332553, 53.323016], + [-6.338615, 53.329284], + [-6.332553, 53.335551], + [-6.32043, 53.335551], + [-6.314368, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.373153], + [-6.302245, 53.366886], + [-6.314368, 53.366886], + [-6.32043, 53.373153], + [-6.314368, 53.37942], + [-6.302245, 53.37942], + [-6.296183, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.360619], + [-6.302245, 53.354352], + [-6.314368, 53.354352], + [-6.32043, 53.360619], + [-6.314368, 53.366886], + [-6.302245, 53.366886], + [-6.296183, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 5, + "stroke": "#75bdff", + "fill": "#75bdff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.348085], + [-6.302245, 53.341818], + [-6.314368, 53.341818], + [-6.32043, 53.348085], + [-6.314368, 53.354352], + [-6.302245, 53.354352], + [-6.296183, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.335551], + [-6.302245, 53.329284], + [-6.314368, 53.329284], + [-6.32043, 53.335551], + [-6.314368, 53.341818], + [-6.302245, 53.341818], + [-6.296183, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.296183, 53.323016], + [-6.302245, 53.316749], + [-6.314368, 53.316749], + [-6.32043, 53.323016], + [-6.314368, 53.329284], + [-6.302245, 53.329284], + [-6.296183, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.37942], + [-6.28406, 53.373153], + [-6.296183, 53.373153], + [-6.302245, 53.37942], + [-6.296183, 53.385687], + [-6.28406, 53.385687], + [-6.277998, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.366886], + [-6.28406, 53.360619], + [-6.296183, 53.360619], + [-6.302245, 53.366886], + [-6.296183, 53.373153], + [-6.28406, 53.373153], + [-6.277998, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.354352], + [-6.28406, 53.348085], + [-6.296183, 53.348085], + [-6.302245, 53.354352], + [-6.296183, 53.360619], + [-6.28406, 53.360619], + [-6.277998, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.341818], + [-6.28406, 53.335551], + [-6.296183, 53.335551], + [-6.302245, 53.341818], + [-6.296183, 53.348085], + [-6.28406, 53.348085], + [-6.277998, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.277998, 53.329284], + [-6.28406, 53.323016], + [-6.296183, 53.323016], + [-6.302245, 53.329284], + [-6.296183, 53.335551], + [-6.28406, 53.335551], + [-6.277998, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 7, + "stroke": "#1a91ff", + "fill": "#1a91ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.373153], + [-6.265874, 53.366886], + [-6.277998, 53.366886], + [-6.28406, 53.373153], + [-6.277998, 53.37942], + [-6.265874, 53.37942], + [-6.259813, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.360619], + [-6.265874, 53.354352], + [-6.277998, 53.354352], + [-6.28406, 53.360619], + [-6.277998, 53.366886], + [-6.265874, 53.366886], + [-6.259813, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.348085], + [-6.265874, 53.341818], + [-6.277998, 53.341818], + [-6.28406, 53.348085], + [-6.277998, 53.354352], + [-6.265874, 53.354352], + [-6.259813, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.335551], + [-6.265874, 53.329284], + [-6.277998, 53.329284], + [-6.28406, 53.335551], + [-6.277998, 53.341818], + [-6.265874, 53.341818], + [-6.259813, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 12, + "stroke": "#00182e", + "fill": "#00182e", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.259813, 53.323016], + [-6.265874, 53.316749], + [-6.277998, 53.316749], + [-6.28406, 53.323016], + [-6.277998, 53.329284], + [-6.265874, 53.329284], + [-6.259813, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 6, + "stroke": "#47a7ff", + "fill": "#47a7ff", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.37942], + [-6.247689, 53.373153], + [-6.259813, 53.373153], + [-6.265874, 53.37942], + [-6.259813, 53.385687], + [-6.247689, 53.385687], + [-6.241628, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.366886], + [-6.247689, 53.360619], + [-6.259813, 53.360619], + [-6.265874, 53.366886], + [-6.259813, 53.373153], + [-6.247689, 53.373153], + [-6.241628, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.354352], + [-6.247689, 53.348085], + [-6.259813, 53.348085], + [-6.265874, 53.354352], + [-6.259813, 53.360619], + [-6.247689, 53.360619], + [-6.241628, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.341818], + [-6.247689, 53.335551], + [-6.259813, 53.335551], + [-6.265874, 53.341818], + [-6.259813, 53.348085], + [-6.247689, 53.348085], + [-6.241628, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.241628, 53.329284], + [-6.247689, 53.323016], + [-6.259813, 53.323016], + [-6.265874, 53.329284], + [-6.259813, 53.335551], + [-6.247689, 53.335551], + [-6.241628, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.373153], + [-6.229504, 53.366886], + [-6.241628, 53.366886], + [-6.247689, 53.373153], + [-6.241628, 53.37942], + [-6.229504, 53.37942], + [-6.223442, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.360619], + [-6.229504, 53.354352], + [-6.241628, 53.354352], + [-6.247689, 53.360619], + [-6.241628, 53.366886], + [-6.229504, 53.366886], + [-6.223442, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.348085], + [-6.229504, 53.341818], + [-6.241628, 53.341818], + [-6.247689, 53.348085], + [-6.241628, 53.354352], + [-6.229504, 53.354352], + [-6.223442, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.335551], + [-6.229504, 53.329284], + [-6.241628, 53.329284], + [-6.247689, 53.335551], + [-6.241628, 53.341818], + [-6.229504, 53.341818], + [-6.223442, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 13, + "stroke": "#000000", + "fill": "#000000", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.223442, 53.323016], + [-6.229504, 53.316749], + [-6.241628, 53.316749], + [-6.247689, 53.323016], + [-6.241628, 53.329284], + [-6.229504, 53.329284], + [-6.223442, 53.323016] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 8, + "stroke": "#0078e6", + "fill": "#0078e6", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.37942], + [-6.211319, 53.373153], + [-6.223442, 53.373153], + [-6.229504, 53.37942], + [-6.223442, 53.385687], + [-6.211319, 53.385687], + [-6.205257, 53.37942] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.366886], + [-6.211319, 53.360619], + [-6.223442, 53.360619], + [-6.229504, 53.366886], + [-6.223442, 53.373153], + [-6.211319, 53.373153], + [-6.205257, 53.366886] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.354352], + [-6.211319, 53.348085], + [-6.223442, 53.348085], + [-6.229504, 53.354352], + [-6.223442, 53.360619], + [-6.211319, 53.360619], + [-6.205257, 53.354352] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.341818], + [-6.211319, 53.335551], + [-6.223442, 53.335551], + [-6.229504, 53.341818], + [-6.223442, 53.348085], + [-6.211319, 53.348085], + [-6.205257, 53.341818] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.205257, 53.329284], + [-6.211319, 53.323016], + [-6.223442, 53.323016], + [-6.229504, 53.329284], + [-6.223442, 53.335551], + [-6.211319, 53.335551], + [-6.205257, 53.329284] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.373153], + [-6.193134, 53.366886], + [-6.205257, 53.366886], + [-6.211319, 53.373153], + [-6.205257, 53.37942], + [-6.193134, 53.37942], + [-6.187072, 53.373153] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 9, + "stroke": "#0060b8", + "fill": "#0060b8", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.360619], + [-6.193134, 53.354352], + [-6.205257, 53.354352], + [-6.211319, 53.360619], + [-6.205257, 53.366886], + [-6.193134, 53.366886], + [-6.187072, 53.360619] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.348085], + [-6.193134, 53.341818], + [-6.205257, 53.341818], + [-6.211319, 53.348085], + [-6.205257, 53.354352], + [-6.193134, 53.354352], + [-6.187072, 53.348085] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 10, + "stroke": "#00488a", + "fill": "#00488a", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.335551], + [-6.193134, 53.329284], + [-6.205257, 53.329284], + [-6.211319, 53.335551], + [-6.205257, 53.341818], + [-6.193134, 53.341818], + [-6.187072, 53.335551] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "elevation": 11, + "stroke": "#00305c", + "fill": "#00305c", + "fill-opacity": 0.85 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.187072, 53.323016], + [-6.193134, 53.316749], + [-6.205257, 53.316749], + [-6.211319, 53.323016], + [-6.205257, 53.329284], + [-6.193134, 53.329284], + [-6.187072, 53.323016] + ] + ] + } + } + ] +}