From 9a9617ab5303c2b0c3be11238d60345d244a60a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Mon, 30 Sep 2024 10:13:14 +0200 Subject: [PATCH 01/15] Add DEBUG_TOOLBAR_ENABLED setting. (#1669) --- src/bornhack/environment_settings.py.dist | 1 + src/bornhack/environment_settings.py.dist.dev | 1 + src/bornhack/settings.py | 2 +- src/bornhack/urls.py | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bornhack/environment_settings.py.dist b/src/bornhack/environment_settings.py.dist index 1e7bc68fc..e169c6ece 100644 --- a/src/bornhack/environment_settings.py.dist +++ b/src/bornhack/environment_settings.py.dist @@ -16,6 +16,7 @@ DATABASES = { } DEBUG={{ django_debug }} +DEBUG_TOOLBAR_ENABLED={{ django_debug_toolbar_enabled }} # start redirecting to the next camp instead of the previous camp after diff --git a/src/bornhack/environment_settings.py.dist.dev b/src/bornhack/environment_settings.py.dist.dev index 97be3dd37..0d95c21b9 100644 --- a/src/bornhack/environment_settings.py.dist.dev +++ b/src/bornhack/environment_settings.py.dist.dev @@ -23,6 +23,7 @@ DATABASES = { } } DEBUG = True +DEBUG_TOOLBAR_ENABLED = DEBUG CHANNEL_LAYERS = {} ASGI_APPLICATION = "bornhack.routing.application" diff --git a/src/bornhack/settings.py b/src/bornhack/settings.py index 43b8db2c4..1c11a159b 100644 --- a/src/bornhack/settings.py +++ b/src/bornhack/settings.py @@ -145,7 +145,7 @@ CORS_ORIGIN_ALLOW_ALL = True CORS_URLS_REGEX = r"^/api/*$" -if DEBUG: # noqa: F405 +if DEBUG_TOOLBAR_ENABLED: # noqa: F405 EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend" INSTALLED_APPS += ["debug_toolbar"] MIDDLEWARE = ["debug_toolbar.middleware.DebugToolbarMiddleware"] + MIDDLEWARE diff --git a/src/bornhack/urls.py b/src/bornhack/urls.py index 31a3a86a2..8a2a5e3b4 100644 --- a/src/bornhack/urls.py +++ b/src/bornhack/urls.py @@ -188,7 +188,7 @@ ), ] -if settings.DEBUG: +if settings.DEBUG_TOOLBAR_ENABLED: import debug_toolbar urlpatterns = [path("__debug__/", include(debug_toolbar.urls))] + urlpatterns From 887ca76692f2a4a567eea2981be10dd23f374ef4 Mon Sep 17 00:00:00 2001 From: Rudy <387694+zarya@users.noreply.github.com> Date: Tue, 1 Oct 2024 20:54:34 +0200 Subject: [PATCH 02/15] Permissions and Maps refactor (#1663) * WIP: map refresh * WIP: Added initial location support for villages * WIP: Cleaned up some code, hopefully fixed the grid locator lookup now * Fixed layer button came true the dropdown menu * Fixed a few small things, added Facility geojson import * Added import from url to facility backoffice * Cleaned up the import facilities form a bit more, fixed the delete facility template * Prevent remove when there is linked feedback * Fixed bug in villages geojson * Added frontend parts for managing map layers * Added any color to markers, added icon to details, added icon selector * Small Flakening * Moved color functions to there own utils file * Update description on the migration * Bit of cleanup, removed example code for live features * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Removed inline js from facility_lists * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Small thing * Facilities finished removing inline js * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Removed inline js from main map * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Migrated backoffice maps_feature_form.html * More inline js removal * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed C408 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Added missing migrations * Spelling * Update src/backoffice/urls.py * Added mapper permission * Moved to responsible_team over camp for the FK's * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed the last things for teams and added option to make layer invisible but selectable from the layer selector * Removed unused import * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Small bug fix after changin FK, squashed migrations for maps * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Switched permission name to gis team over mapper team * And with the migration * Added icon to fields to import * Shuffled around the JS files, fixed small bugs * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed datafordeler layers * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Set ortophoto default * Fixed small bug, fixed team list to be only the selected years teams * Fixed missing mixin in external layers edit/create view, dont show grid alert if outside of sane grid * use base.html as base template * Fix the 500 on import if create fails * rework map layer features import, rename some views, fix small nits here and there * Set defaults correctly on a feature * Added default values to importer, added warning about overwriting features * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Made village popup more clear being a village * rework view authorisation system to base everything on permissions instead of team memberships, introduce a group 1:1 to Team, make backoffice available to all volunteers, rename team lead to team responsible, much fiddling with mixins and permissions * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * use permissions instead of team lead status * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * make info views use new permissions instead of only permitting team leads, massage general permissions stuff a bit more * permissions belong to the camps.Permission model * make the bootstrap script add team group permissions to the first non-readonly camp created * add/remove team lead permissions as needed * linting * Added map things to bootstrap_devsite * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Check for responsible_team before checking permission set * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Remove CampMixin from Layerview * Fixed maps mixin permission * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Meh forgot to update docstring * add backoffice views to manage team permissions * Added CampViewMixin to the views needing it * add backoffice views to see permissions * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed some bugs in facilities, fixed list of teams in layer view * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * add missing return * unfuck content type * Update src/backoffice/views/maps.py * Update src/utils/color.py --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Thomas Steen Rasmussen Co-authored-by: Thomas Steen Rasmussen --- src/backoffice/forms.py | 44 + src/backoffice/mixins.py | 54 +- src/backoffice/templates/facility_delete.html | 22 + .../templates/facility_detail_backoffice.html | 30 +- src/backoffice/templates/facility_form.html | 4 + .../templates/facility_list_backoffice.html | 39 +- .../templates/facility_type_form.html | 3 + .../facility_type_import_backoffice.html | 50 + .../facility_type_list_backoffice.html | 2 + .../facilityfeedback_backoffice.html | 2 +- src/backoffice/templates/index.html | 97 +- .../templates/invoice_download.html | 2 +- .../templates/maps_external_layer_delete.html | 17 + .../templates/maps_external_layer_form.html | 19 + .../templates/maps_feature_delete.html | 17 + .../templates/maps_feature_form.html | 31 + .../templates/maps_layer_delete.html | 18 + .../maps_layer_feature_list_backoffice.html | 54 + src/backoffice/templates/maps_layer_form.html | 22 + ...maps_layer_import_features_backoffice.html | 46 + .../templates/maps_layer_list_backoffice.html | 78 ++ .../templates/outgoing_email_mass_update.html | 2 +- .../templates/permissions_by_permission.html | 53 + .../templates/permissions_by_user.html | 43 + .../templates/speaker_list_backoffice.html | 2 +- .../templates/team_permissions_index.html | 27 + .../templates/team_permissions_manage.html | 62 ++ src/backoffice/urls.py | 150 ++- src/backoffice/views/__init__.py | 2 + src/backoffice/views/backoffice.py | 37 +- src/backoffice/views/economy.py | 41 - src/backoffice/views/facilities.py | 258 ++++- src/backoffice/views/game.py | 12 +- src/backoffice/views/maps.py | 460 ++++++++ src/backoffice/views/permissions.py | 174 ++++ src/backoffice/views/pos.py | 23 +- src/bornhack/settings.py | 15 + src/bornhack/urls.py | 14 + src/camps/context_processors.py | 16 +- src/camps/middleware.py | 9 +- .../0037_alter_permission_options.py | 17 + .../0038_alter_permission_options.py | 17 + src/camps/models.py | 28 +- .../0041_alter_expense_responsible_team.py | 20 + src/economy/models.py | 2 +- src/events/handler.py | 6 +- src/facilities/admin.py | 1 + src/facilities/mixins.py | 49 +- src/facilities/templates/facility_detail.html | 30 +- .../templates/facility_feedback.html | 2 +- src/facilities/templates/facility_list.html | 40 +- .../templates/facility_type_list.html | 42 +- src/facilities/urls.py | 6 + src/facilities/views.py | 109 ++ src/info/admin.py | 2 +- src/info/templates/info.html | 2 +- src/maps/admin.py | 42 + src/maps/migrations/0001_initial.py | 79 ++ .../0002_feature_layer_and_name_uniq.py | 17 + ..._alter_feature_color_alter_feature_icon.py | 24 + src/maps/mixins.py | 63 ++ src/maps/models.py | 191 ++++ src/maps/templates/maps_map.html | 37 + src/maps/templates/marker.svg | 21 + src/maps/urls.py | 15 + src/maps/views.py | 136 ++- src/people/templates/people.html | 4 +- .../templates/dectregistration_form.html | 2 +- src/phonebook/views.py | 2 +- .../migrations/0011_alter_profile_name.py | 18 + src/profiles/models.py | 2 +- src/profiles/templates/permission_list.html | 30 + src/profiles/templates/profile_base.html | 14 +- src/profiles/templates/profile_detail.html | 2 +- src/profiles/urls.py | 2 + src/profiles/views.py | 34 +- src/requirements/production.txt | 1 + src/shop/tests.py | 20 +- src/static_src/css/bornhack.css | 3 +- .../css/leaflet.awesome-markers.css | 124 +++ src/static_src/css/leaflet.css | 153 +-- src/static_src/images/markers-matte@2x.png | Bin 0 -> 31113 bytes src/static_src/images/markers-plain.png | Bin 0 -> 7946 bytes src/static_src/images/markers-shadow.png | Bin 0 -> 535 bytes src/static_src/images/markers-shadow@2x.png | Bin 0 -> 1469 bytes src/static_src/images/markers-soft.png | Bin 0 -> 41226 bytes src/static_src/images/markers-soft@2x.png | Bin 0 -> 66408 bytes .../backoffice/facility_detail_backoffice.js | 26 + .../js/backoffice/facility_list_backoffice.js | 35 + .../invoice_download.js} | 0 .../maps_layer_import_backoffice.js | 28 + src/static_src/js/facility/facility_detail.js | 29 + src/static_src/js/facility/facility_list.js | 17 + .../js/facility/facility_type_list.js | 22 + src/static_src/js/images/layers-2x.png | Bin 2898 -> 0 bytes src/static_src/js/images/layers.png | Bin 1502 -> 0 bytes src/static_src/js/images/marker-icon-2x.png | Bin 4033 -> 0 bytes src/static_src/js/images/marker-icon.png | Bin 1747 -> 0 bytes src/static_src/js/images/marker-shadow.png | Bin 797 -> 0 bytes src/static_src/js/maps/generic/init_loader.js | 19 + src/static_src/js/{ => maps/generic}/kfmap.js | 0 src/static_src/js/maps/generic/map.js | 220 ++++ .../js/maps/generic/mapProcessing.js | 36 + src/static_src/js/maps/generic/mapVars.js | 95 ++ src/static_src/js/maps/map.js | 73 ++ src/static_src/js/villages/village_detail.js | 24 + src/static_src/js/villages/village_map.js | 26 + src/static_src/json/grid.geojson | 1 + .../vendor/leaflet-fullscreen/LICENSE | 5 + .../Leaflet.fullscreen.min.js | 1 + .../vendor/leaflet-fullscreen/fullscreen.png | Bin 0 -> 299 bytes .../leaflet-fullscreen/fullscreen@2x.png | Bin 0 -> 420 bytes .../leaflet-fullscreen/leaflet.fullscreen.css | 40 + .../leaflet-panel-layers.min.css | 16 + .../leaflet-panel-layers.min.js | 16 + .../{js => vendor/leaflet}/leaflet-1.6.0.js | 0 .../leaflet}/leaflet-color-markers.js | 5 + .../{js => vendor/leaflet}/leaflet-src.js | 0 .../leaflet/leaflet.awesome-markers.min.js | 139 +++ .../{js => vendor/leaflet}/leaflet.js | 0 .../{js => vendor/leaflet}/proj4.js | 0 .../{js => vendor/leaflet}/proj4leaflet.js | 0 .../vendor/universal-icon-picker/LICENSE | 21 + .../vendor/universal-icon-picker/README.md | 277 +++++ .../icons-libraries/font-awesome-5.0.13.json | 980 ++++++++++++++++++ .../assets/images/magnifying-glass-solid.svg | 1 + .../assets/images/star-of-life-solid.svg | 3 + .../assets/images/xmark-solid.svg | 3 + .../assets/js/universal-icon-picker.min.js | 2 + .../js/universal-icon-picker.min.js.map | 1 + .../stylesheets/universal-icon-picker.css | 361 +++++++ .../stylesheets/universal-icon-picker.min.css | 1 + .../vendor/universal-icon-picker/package.json | 28 + src/teams/admin.py | 8 +- src/teams/apps.py | 8 +- src/teams/email.py | 4 +- .../0053_alter_teammember_options_and_more.py | 33 + .../migrations/0054_create_team_groups.py | 33 + src/teams/models.py | 97 +- src/teams/signal_handlers.py | 37 +- src/teams/templates/team_base.html | 6 +- src/teams/templates/team_guide.html | 2 +- src/teams/templates/team_join.html | 2 +- src/teams/templates/team_list.html | 16 +- src/teams/templates/team_members.html | 8 +- src/teams/templates/team_shift_list.html | 4 +- src/teams/templates/team_tasks.html | 4 +- src/teams/templatetags/teams_tags.py | 4 +- src/teams/views/base.py | 6 +- src/teams/views/info.py | 45 +- src/teams/views/members.py | 8 +- src/teams/views/mixins.py | 37 +- src/teams/views/tasks.py | 10 +- src/templates/includes/menuitems.html | 3 +- src/utils/color.py | 24 + src/utils/context_processors.py | 7 + .../management/commands/bootstrap_devsite.py | 135 ++- src/utils/mixins.py | 51 + src/utils/templates/icon_picker_widget.html | 18 + src/utils/widgets.py | 22 + .../migrations/0013_village_location.py | 20 + .../migrations/0014_alter_village_location.py | 20 + src/villages/models.py | 8 + src/villages/templates/village_detail.html | 20 + src/villages/templates/village_form.html | 13 + src/villages/templates/village_list.html | 1 + src/villages/templates/village_map.html | 35 + src/villages/urls.py | 2 + src/villages/views.py | 111 +- 169 files changed, 6203 insertions(+), 670 deletions(-) create mode 100644 src/backoffice/templates/facility_delete.html create mode 100644 src/backoffice/templates/facility_type_import_backoffice.html create mode 100644 src/backoffice/templates/maps_external_layer_delete.html create mode 100644 src/backoffice/templates/maps_external_layer_form.html create mode 100644 src/backoffice/templates/maps_feature_delete.html create mode 100644 src/backoffice/templates/maps_feature_form.html create mode 100644 src/backoffice/templates/maps_layer_delete.html create mode 100644 src/backoffice/templates/maps_layer_feature_list_backoffice.html create mode 100644 src/backoffice/templates/maps_layer_form.html create mode 100644 src/backoffice/templates/maps_layer_import_features_backoffice.html create mode 100644 src/backoffice/templates/maps_layer_list_backoffice.html create mode 100644 src/backoffice/templates/permissions_by_permission.html create mode 100644 src/backoffice/templates/permissions_by_user.html create mode 100644 src/backoffice/templates/team_permissions_index.html create mode 100644 src/backoffice/templates/team_permissions_manage.html create mode 100644 src/backoffice/views/maps.py create mode 100644 src/backoffice/views/permissions.py create mode 100644 src/camps/migrations/0037_alter_permission_options.py create mode 100644 src/camps/migrations/0038_alter_permission_options.py create mode 100644 src/economy/migrations/0041_alter_expense_responsible_team.py create mode 100644 src/maps/admin.py create mode 100644 src/maps/migrations/0001_initial.py create mode 100644 src/maps/migrations/0002_feature_layer_and_name_uniq.py create mode 100644 src/maps/migrations/0003_alter_feature_color_alter_feature_icon.py create mode 100644 src/maps/mixins.py create mode 100644 src/maps/models.py create mode 100644 src/maps/templates/maps_map.html create mode 100644 src/maps/templates/marker.svg create mode 100644 src/profiles/migrations/0011_alter_profile_name.py create mode 100644 src/profiles/templates/permission_list.html create mode 100644 src/static_src/css/leaflet.awesome-markers.css create mode 100644 src/static_src/images/markers-matte@2x.png create mode 100644 src/static_src/images/markers-plain.png create mode 100644 src/static_src/images/markers-shadow.png create mode 100644 src/static_src/images/markers-shadow@2x.png create mode 100644 src/static_src/images/markers-soft.png create mode 100644 src/static_src/images/markers-soft@2x.png create mode 100644 src/static_src/js/backoffice/facility_detail_backoffice.js create mode 100644 src/static_src/js/backoffice/facility_list_backoffice.js rename src/static_src/js/{InvoiceDownloadMultiple.js => backoffice/invoice_download.js} (100%) create mode 100644 src/static_src/js/backoffice/maps_layer_import_backoffice.js create mode 100644 src/static_src/js/facility/facility_detail.js create mode 100644 src/static_src/js/facility/facility_list.js create mode 100644 src/static_src/js/facility/facility_type_list.js delete mode 100644 src/static_src/js/images/layers-2x.png delete mode 100644 src/static_src/js/images/layers.png delete mode 100644 src/static_src/js/images/marker-icon-2x.png delete mode 100644 src/static_src/js/images/marker-icon.png delete mode 100644 src/static_src/js/images/marker-shadow.png create mode 100644 src/static_src/js/maps/generic/init_loader.js rename src/static_src/js/{ => maps/generic}/kfmap.js (100%) create mode 100644 src/static_src/js/maps/generic/map.js create mode 100644 src/static_src/js/maps/generic/mapProcessing.js create mode 100644 src/static_src/js/maps/generic/mapVars.js create mode 100644 src/static_src/js/maps/map.js create mode 100644 src/static_src/js/villages/village_detail.js create mode 100644 src/static_src/js/villages/village_map.js create mode 100644 src/static_src/json/grid.geojson create mode 100644 src/static_src/vendor/leaflet-fullscreen/LICENSE create mode 100644 src/static_src/vendor/leaflet-fullscreen/Leaflet.fullscreen.min.js create mode 100644 src/static_src/vendor/leaflet-fullscreen/fullscreen.png create mode 100644 src/static_src/vendor/leaflet-fullscreen/fullscreen@2x.png create mode 100644 src/static_src/vendor/leaflet-fullscreen/leaflet.fullscreen.css create mode 100644 src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.css create mode 100644 src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.js rename src/static_src/{js => vendor/leaflet}/leaflet-1.6.0.js (100%) rename src/static_src/{js => vendor/leaflet}/leaflet-color-markers.js (96%) rename src/static_src/{js => vendor/leaflet}/leaflet-src.js (100%) create mode 100644 src/static_src/vendor/leaflet/leaflet.awesome-markers.min.js rename src/static_src/{js => vendor/leaflet}/leaflet.js (100%) rename src/static_src/{js => vendor/leaflet}/proj4.js (100%) rename src/static_src/{js => vendor/leaflet}/proj4leaflet.js (100%) create mode 100644 src/static_src/vendor/universal-icon-picker/LICENSE create mode 100644 src/static_src/vendor/universal-icon-picker/README.md create mode 100644 src/static_src/vendor/universal-icon-picker/assets/icons-libraries/font-awesome-5.0.13.json create mode 100644 src/static_src/vendor/universal-icon-picker/assets/images/magnifying-glass-solid.svg create mode 100644 src/static_src/vendor/universal-icon-picker/assets/images/star-of-life-solid.svg create mode 100644 src/static_src/vendor/universal-icon-picker/assets/images/xmark-solid.svg create mode 100644 src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js create mode 100644 src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js.map create mode 100644 src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.css create mode 100644 src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.min.css create mode 100644 src/static_src/vendor/universal-icon-picker/package.json create mode 100644 src/teams/migrations/0053_alter_teammember_options_and_more.py create mode 100644 src/teams/migrations/0054_create_team_groups.py create mode 100644 src/utils/color.py create mode 100644 src/utils/context_processors.py create mode 100644 src/utils/templates/icon_picker_widget.html create mode 100644 src/utils/widgets.py create mode 100644 src/villages/migrations/0013_village_location.py create mode 100644 src/villages/migrations/0014_alter_village_location.py create mode 100644 src/villages/templates/village_map.html diff --git a/src/backoffice/forms.py b/src/backoffice/forms.py index 0f0a0584c..24d3aaa22 100644 --- a/src/backoffice/forms.py +++ b/src/backoffice/forms.py @@ -1,4 +1,6 @@ from django import forms +from django.core.exceptions import ValidationError +import json from django.forms import modelformset_factory from program.models import Event @@ -241,3 +243,45 @@ class PosSalesJSONForm(forms.Form): sales = forms.FileField( help_text="POS sales.json file. Previously imported sales will be skipped and will not create duplicates.", ) + + +class MapLayerFeaturesImportForm(forms.Form): + """Form to import features in a map layer. Only accepts geojson type FeatureCollection.""" + + geojson_data = forms.CharField( + widget=forms.Textarea(), + help_text="The GeoJSON geometries to import.", + ) + + def clean(self): + """Parse geojson and return as dict.""" + cleaned_data = super().clean() + # validate json + try: + geojson = json.loads(cleaned_data["geojson_data"]) + except json.JSONDecodeError: + raise ValidationError("Invalid JSON") + # validate geojson + if "type" not in geojson or geojson["type"] != "FeatureCollection": + raise ValidationError("Invalid GeoJSON - only FeatureCollection supported!") + # all good + return geojson + + +class ManageTeamPermissionsForm(forms.Form): + """The form used in backoffice to manage permissions for a team.""" + + def __init__(self, matrix: dict[str, list[str]], *args, **kwargs): + """Build a form of bool fields for the teams users permissions.""" + super().__init__(*args, **kwargs) + for username in matrix.keys(): + for perm in matrix[username]: + if perm in ["lead", "member"]: + disabled = True + else: + disabled = False + self.fields[f"{username}_{perm}"] = forms.BooleanField( + label=perm, + required=False, + disabled=disabled, + ) diff --git a/src/backoffice/mixins.py b/src/backoffice/mixins.py index 06e396138..62b430b13 100644 --- a/src/backoffice/mixins.py +++ b/src/backoffice/mixins.py @@ -12,7 +12,7 @@ class OrgaTeamPermissionMixin(RaisePermissionRequiredMixin): Permission mixin for views used by Orga Team """ - permission_required = ("camps.backoffice_permission", "camps.orgateam_permission") + permission_required = "camps.orga_team_member" class EconomyTeamPermissionMixin(RaisePermissionRequiredMixin): @@ -20,10 +20,7 @@ class EconomyTeamPermissionMixin(RaisePermissionRequiredMixin): Permission mixin for views used by Economy Team """ - permission_required = ( - "camps.backoffice_permission", - "camps.economyteam_permission", - ) + permission_required = "camps.economy_team_member" class InfoTeamPermissionMixin(RaisePermissionRequiredMixin): @@ -31,7 +28,7 @@ class InfoTeamPermissionMixin(RaisePermissionRequiredMixin): Permission mixin for views used by Info Team/InfoDesk """ - permission_required = ("camps.backoffice_permission", "camps.infoteam_permission") + permission_required = "camps.info_team_member" class ContentTeamPermissionMixin(RaisePermissionRequiredMixin): @@ -39,14 +36,19 @@ class ContentTeamPermissionMixin(RaisePermissionRequiredMixin): Permission mixin for views used by Content Team """ - permission_required = ( - "camps.backoffice_permission", - "camps.contentteam_permission", - ) + permission_required = "camps.content_team_member" + + +class GisTeamPermissionMixin(RaisePermissionRequiredMixin): + """ + Permission mixin for views used by GIS Team + """ + + permission_required = "camps.gis_team_member" class PosViewMixin(CampViewMixin, UserPassesTestMixin): - """A mixin to set self.pos based on pos_slug in url kwargs.""" + """A mixin to set self.pos based on pos_slug in url kwargs, and only permit access for users with pos permission for the team.""" def setup(self, *args, **kwargs): super().setup(*args, **kwargs) @@ -58,20 +60,28 @@ def setup(self, *args, **kwargs): def test_func(self): """ - This view requires two permissions, camps.backoffice_permission and the permission_set for the team in question. + This view requires camps._team_pos permission. """ - if not self.pos.team.permission_set: - raise PermissionDenied("No permissions set defined for this team") - if not self.request.user.has_perm("camps.backoffice_permission"): - raise PermissionDenied("User has no backoffice permission") - - if not self.request.user.has_perm( - "camps.orgateam_permission", - ) and not self.request.user.has_perm("camps." + self.pos.team.permission_set): - raise PermissionDenied("User has no permission for this Pos") - return True + if self.request.user.has_perm(f"camps.{self.pos.team.slug}_team_pos"): + return True + raise PermissionDenied("This PoS user has no permission for this PoS") def get_context_data(self, *args, **kwargs): context = super().get_context_data(*args, **kwargs) context["pos"] = self.pos return context + + +class OrgaOrTeamLeadViewMixin(CampViewMixin, UserPassesTestMixin): + """A mixin for views that should be accessible only to orga and team leads.""" + + def test_func(self): + """ + This view requires camps.orga_team_member or camps._team_lead permission. + """ + if self.request.user.has_perm("camps.orga_team_member"): + return True + for perm in self.request.user.get_all_permissions(): + if perm.startswith("camps.") and perm.endswith("_team_lead"): + return True + raise PermissionDenied("No thanks") diff --git a/src/backoffice/templates/facility_delete.html b/src/backoffice/templates/facility_delete.html new file mode 100644 index 000000000..29174d6c5 --- /dev/null +++ b/src/backoffice/templates/facility_delete.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

Delete Facility {{ facility.name }}?

+
+
+ {% if facility.feedbacks.count > 0 %} +

This Facility has {{ facility.feedbacks.count }} Feedback and can not be deleted

+ {% endif %} +
+ {% csrf_token %} + {% if facility.feedbacks.count == 0 %} + + {% endif %} + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/facility_detail_backoffice.html b/src/backoffice/templates/facility_detail_backoffice.html index 6e392554b..0cb4f7000 100644 --- a/src/backoffice/templates/facility_detail_backoffice.html +++ b/src/backoffice/templates/facility_detail_backoffice.html @@ -5,10 +5,16 @@ {% block extra_head %} {% leaflet_css %} - - - - + + + + + + + + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block title %} @@ -112,7 +118,7 @@

{{ facility.name }} | Facilities | BackOffice

Location - Lat {{ facility.location.y }} Long {{ facility.location.x }}
+ Lat {{ facility.location.y }} Long {{ facility.location.x }} Grid:
@@ -120,17 +126,5 @@

{{ facility.name }} | Facilities | BackOffice

- - - - - + {% endblock %} diff --git a/src/backoffice/templates/facility_form.html b/src/backoffice/templates/facility_form.html index 0e977a82d..b4bbc8c31 100644 --- a/src/backoffice/templates/facility_form.html +++ b/src/backoffice/templates/facility_form.html @@ -7,6 +7,9 @@ {{ form.media }} {% leaflet_css plugins="forms" %} {% leaflet_js plugins="forms" %} + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block content %} @@ -25,4 +28,5 @@

{% if request.resolver_match.url_name == "facility_updat + {% endblock content %} diff --git a/src/backoffice/templates/facility_list_backoffice.html b/src/backoffice/templates/facility_list_backoffice.html index 4d6e39749..f22c8ed65 100644 --- a/src/backoffice/templates/facility_list_backoffice.html +++ b/src/backoffice/templates/facility_list_backoffice.html @@ -8,10 +8,18 @@ {% block extra_head %} {% leaflet_css %} - - - - + + + + + + + + + + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block content %} @@ -41,7 +49,7 @@

Facilities - BackOffice

{% for facility in facility_list %} {{ facility.name }} - {{ facility.facility_type.name }} + {{ facility.facility_type.name }} {{ facility.team.name }} Team {{ facility.description|linebreaksbr|default:"N/A" }} {{ facility.location }} @@ -61,25 +69,6 @@

Facilities - BackOffice

- - - - + {% endblock %} diff --git a/src/backoffice/templates/facility_type_form.html b/src/backoffice/templates/facility_type_form.html index 8031e0a09..a057bb749 100644 --- a/src/backoffice/templates/facility_type_form.html +++ b/src/backoffice/templates/facility_type_form.html @@ -1,5 +1,8 @@ {% extends 'base.html' %} {% load bootstrap3 %} +{% block extra_head %} + {{ form.media }} +{% endblock extra_head %} {% block content %}
diff --git a/src/backoffice/templates/facility_type_import_backoffice.html b/src/backoffice/templates/facility_type_import_backoffice.html new file mode 100644 index 000000000..9183b1979 --- /dev/null +++ b/src/backoffice/templates/facility_type_import_backoffice.html @@ -0,0 +1,50 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load bootstrap3 %} +{% load static %} + +{% block title %} + Import | Facility Types | BackOffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+
+

Import Facility Types - BackOffice

+
+
+

+ Only the properties name and description will be imported! +

+
+ + +
+
+
+ + +
+
+ +
+
+

+
+ {% csrf_token %} + + + {% if error %} +
+

{{ error }}

+
+ {% endif %} + {% buttons %} + + Cancel + {% endbuttons %} +
+
+
+ +{% endblock %} diff --git a/src/backoffice/templates/facility_type_list_backoffice.html b/src/backoffice/templates/facility_type_list_backoffice.html index 713249711..37f376867 100644 --- a/src/backoffice/templates/facility_type_list_backoffice.html +++ b/src/backoffice/templates/facility_type_list_backoffice.html @@ -41,6 +41,8 @@

Facility Types - BackOffice

{{ ft.quickfeedback_options.count }} {{ ft.facilities.count }} + Import + Export Update Delete diff --git a/src/backoffice/templates/facilityfeedback_backoffice.html b/src/backoffice/templates/facilityfeedback_backoffice.html index 1b6c79885..558907405 100644 --- a/src/backoffice/templates/facilityfeedback_backoffice.html +++ b/src/backoffice/templates/facilityfeedback_backoffice.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load bootstrap3 %} {% load bornhack %} diff --git a/src/backoffice/templates/index.html b/src/backoffice/templates/index.html index b601e3ed5..34d5f6ed5 100644 --- a/src/backoffice/templates/index.html +++ b/src/backoffice/templates/index.html @@ -16,39 +16,45 @@

{{ camp.title }} Backoffice

Welcome to the promised land! Please select your desired action below:

-

Facilities

- {% if perms.camps.orgateam_permission %} - -

- Facility Types -

-

- See and manage facility types -

-
- -

- Facilities -

-

- See and manage facilites -

-
- {% endif %} - {% for team in facilityfeedback_teams %} - {% if "camps."|add:team.permission_set in perms %} - + {% if perms.camps.orga_team_member or facilityfeedback_teams or is_team_facilitator %} +

Facilities

+ {% if perms.camps.orga_team_member %} +

- Feedback for {{ team.name }} Team + Facility Types

- See unhandled feedback for facilities managed by {{ team.name }} Team + See and manage facility types

{% endif %} - {% endfor %} - {% if perms.camps.infoteam_permission %} + {% if is_team_facilitator %} + +

+ Facilities +

+

+ See and manage facilites +

+
+ {% endif %} + + {% for team in facilityfeedback_teams %} + {% if team.member_permission_set in perms %} + +

+ Feedback for {{ team.name }} Team +

+

+ See unhandled feedback for facilities managed by {{ team.name }} Team +

+
+ {% endif %} + {% endfor %} + {% endif %} + + {% if perms.camps.info_team_member %}

Info Team

@@ -103,7 +109,7 @@

Shop Ticket Overview

{% endif %} - {% if perms.camps.contentteam_permission %} + {% if perms.camps.content_team_member %}

Content Team

Approve Feedback

@@ -155,7 +161,7 @@

Add Recordings

{% endif %} - {% if perms.camps.orgateam_permission %} + {% if perms.camps.orga_team_member %}

Orga Team

Approve Public Credit Names

@@ -199,12 +205,8 @@

Proxied Content

{% endif %} - {% if perms.camps.economyteam_permission %} + {% if perms.camps.economy_team_member %}

Economy Team

- -

Search

-

-

Chains

Use this view to see the Chains and Credebtors registered in the system.

@@ -258,10 +260,9 @@

Use this view to download multiple invoices and/or orders from the system

- {% endif %} - {% if perms.camps.orgateam_permission or perms.camps.infoteam_permission or perms.camps.barteam_permission %} + {% if perms.camps.orga_team_member or is_team_pos %}

Point of Sale

Point of Sale Locations

@@ -285,7 +286,7 @@

Point of Sale Sales

{% endif %} - {% if perms.camps.gameteam_permission %} + {% if perms.camps.game_team_member %}

Secret Tokens

Tokens

@@ -296,6 +297,30 @@

Token Stats

Use this view to see token find stats

{% endif %} + + {% if perms.camps.gis_team_member or is_team_mapper %} +

Maps

+ +

Layers

+

Use this view to manage map layers.

+
+ {% endif %} + + {% if perms.camps.orga_team_member or is_team_lead %} +

Permissions

+ +

Show Permissions (by User)

+

Use this view to see permissions in a table with a row per user.

+
+ +

Show Permissions (by Permission)

+

Use this view to see permissions in a table with a row per permission.

+
+ +

Manage Team Permissions

+

Use this view to manage team permissions.

+
+ {% endif %}
diff --git a/src/backoffice/templates/invoice_download.html b/src/backoffice/templates/invoice_download.html index 4260c49f6..3183d0ca6 100644 --- a/src/backoffice/templates/invoice_download.html +++ b/src/backoffice/templates/invoice_download.html @@ -4,7 +4,7 @@ {% block extra_head %} {{ invoices|json_script:"invoices" }} - + {% endblock %} {% block title %} diff --git a/src/backoffice/templates/maps_external_layer_delete.html b/src/backoffice/templates/maps_external_layer_delete.html new file mode 100644 index 000000000..ec6a2f183 --- /dev/null +++ b/src/backoffice/templates/maps_external_layer_delete.html @@ -0,0 +1,17 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

Delete external layer {{ external_layer.name }}?

+
+
+
+ {% csrf_token %} + + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/maps_external_layer_form.html b/src/backoffice/templates/maps_external_layer_form.html new file mode 100644 index 000000000..eb466c72f --- /dev/null +++ b/src/backoffice/templates/maps_external_layer_form.html @@ -0,0 +1,19 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

{% if form.instance.pk %}Update{% else %}Create new{% endif %} External Layer

+
+
+

{% if form.instance.pk %}Update{% else %}Create{% endif %} Layer

+
+ {% csrf_token %} + {% bootstrap_form form %} + + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/maps_feature_delete.html b/src/backoffice/templates/maps_feature_delete.html new file mode 100644 index 000000000..47911fbc5 --- /dev/null +++ b/src/backoffice/templates/maps_feature_delete.html @@ -0,0 +1,17 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

Delete feature {{ feature.name }}?

+
+
+
+ {% csrf_token %} + + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/maps_feature_form.html b/src/backoffice/templates/maps_feature_form.html new file mode 100644 index 000000000..4aa05e50a --- /dev/null +++ b/src/backoffice/templates/maps_feature_form.html @@ -0,0 +1,31 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load bootstrap3 %} +{% load static %} + +{% block extra_head %} + {{ form.media }} + {% leaflet_css plugins="forms" %} + {% leaflet_js plugins="forms" %} + {{ mapData|json_script:"mapData" }} + + +{% endblock extra_head %} + +{% block content %} +
+
+

{% if request.resolver_match.url_name == "maps_feature_update" %}Update {{feature.name }} {% else %}Create new feature{% endif %} in {{ layer.name }}

+
+
+

{% if request.resolver_match.url_name == "maps_feature_update" %}Update {{ feature.name }}{% else %}Create feature{% endif %}

+
+ {% csrf_token %} + {% bootstrap_form form %} + + Cancel +
+
+
+ +{% endblock content %} diff --git a/src/backoffice/templates/maps_layer_delete.html b/src/backoffice/templates/maps_layer_delete.html new file mode 100644 index 000000000..0f722e879 --- /dev/null +++ b/src/backoffice/templates/maps_layer_delete.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

Delete Layer {{ layer.name }}?

+
+
+

This layer has {{ layer.features.count }} features which will also be deleted.

+
+ {% csrf_token %} + + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/maps_layer_feature_list_backoffice.html b/src/backoffice/templates/maps_layer_feature_list_backoffice.html new file mode 100644 index 000000000..a81df7c59 --- /dev/null +++ b/src/backoffice/templates/maps_layer_feature_list_backoffice.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load static %} + +{% block title %} + Layer Details | Maps | BackOffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+
+

{{ layer.name }} Features - Layers - BackOffice

+
+
+

The following {{ features.count }} features are defined for layer {{ layer.name }}

+

+ Add Feature + Import + Export + Layers +

+ + + + + + + + + + + + + + + {% for ft in features %} + + + + + + + + + + + {% endfor %} +
NameDescriptionIconURLTopicProcessingGeometriesActions
{{ ft.name }}{{ ft.description|default:"N/A" }}{{ ft.url }}{{ ft.topic }}{{ ft.processing }}{{ ft.geom }} + Update + Delete +
+
+
+{% endblock %} diff --git a/src/backoffice/templates/maps_layer_form.html b/src/backoffice/templates/maps_layer_form.html new file mode 100644 index 000000000..345c56f64 --- /dev/null +++ b/src/backoffice/templates/maps_layer_form.html @@ -0,0 +1,22 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} +{% block extra_head %} + {{ form.media }} +{% endblock extra_head %} + +{% block content %} +
+
+

{% if request.resolver_match.url_name == "maps_layer_update" %}Update{% else %}Create new{% endif %} Layer

+
+
+

{% if request.resolver_match.url_name == "maps_layer_update" %}Update{% else %}Create{% endif %} Layer

+
+ {% csrf_token %} + {% bootstrap_form form %} + + Cancel +
+
+
+{% endblock content %} diff --git a/src/backoffice/templates/maps_layer_import_features_backoffice.html b/src/backoffice/templates/maps_layer_import_features_backoffice.html new file mode 100644 index 000000000..e247e2abf --- /dev/null +++ b/src/backoffice/templates/maps_layer_import_features_backoffice.html @@ -0,0 +1,46 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load bootstrap3 %} +{% load static %} + +{% block title %} + Import Features | Layer | BackOffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+
+

Import Features to map layer {{ layer.name }} - BackOffice

+
+
+

+ Use this view to import/update features in the layer {{ layer.name }}. Only the properties name,description,icon,topic,processing,url will be imported! +

Beware import will overwrite existing features! +

+
+ + +
+
+
+
+ + +
+
+ +
+
+

+
+ {% csrf_token %} + {% bootstrap_form form %} + {% buttons %} + + Cancel + {% endbuttons %} +
+
+
+ +{% endblock %} diff --git a/src/backoffice/templates/maps_layer_list_backoffice.html b/src/backoffice/templates/maps_layer_list_backoffice.html new file mode 100644 index 000000000..add1f69f9 --- /dev/null +++ b/src/backoffice/templates/maps_layer_list_backoffice.html @@ -0,0 +1,78 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load static %} + +{% block title %} + Maps | Layers | BackOffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+
+

Maps - Layers - BackOffice

+
+
+

The following {{ layers.count }} layers are defined for {{ camp.title }}

+

+ Add Layer + Backoffice +

+ + + + + + + + + + + + + {% for ft in layers %} + + + + + + + + + {% endfor %} +
NameDescriptionTeamIconFeaturesActions
{{ ft.name }}{{ ft.description|default:"N/A" }}{{ ft.responsible_team.name|default:"N/A" }}{{ ft.features.count }} + Import + Export + Update + Delete +
+

External Layers

+

+ Add Layer +

+ + + + + + + + + + + + {% for ft in externalLayers %} + + + + + + + + {% endfor %} +
NameDescriptionTeamURLActions
{{ ft.name }}{{ ft.description|default:"N/A" }}{{ ft.responsible_team.name|default:"All" }}{{ ft.url }} + Update + Delete +
+
+
+{% endblock %} diff --git a/src/backoffice/templates/outgoing_email_mass_update.html b/src/backoffice/templates/outgoing_email_mass_update.html index 5c4458938..13f83c341 100644 --- a/src/backoffice/templates/outgoing_email_mass_update.html +++ b/src/backoffice/templates/outgoing_email_mass_update.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load bootstrap3 %} {% load bornhack %} diff --git a/src/backoffice/templates/permissions_by_permission.html b/src/backoffice/templates/permissions_by_permission.html new file mode 100644 index 000000000..db864b886 --- /dev/null +++ b/src/backoffice/templates/permissions_by_permission.html @@ -0,0 +1,53 @@ +{% extends 'base.html' %} +{% load bornhack %} + +{% block title %} + Permissions by Permission | Backoffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+

Permissions by Permission - BackOffice

+
+

A list of user permissions. Permissions not assigned to any users, and users with the is_superuser flag are not included in this table.

+

+ Backoffice +

+ + + + + + + + + + {% for perm, users in object_list %} + {% if users %} + + + + + + {% endif %} + {% endfor %} + +
Permission CodenameDescriptionUsers
camps.{{ perm.codename }}{{ perm.name }} + + + + {% for user in users %} + + + + + + {% endfor %} +
UsernameNamePublic Credit Name
{{ user.username }}{{ user.profile.name }}{{ user.profile.public_credit_name }}
+
+

+ Backoffice +

+
+
+{% endblock content %} diff --git a/src/backoffice/templates/permissions_by_user.html b/src/backoffice/templates/permissions_by_user.html new file mode 100644 index 000000000..d0c9eed46 --- /dev/null +++ b/src/backoffice/templates/permissions_by_user.html @@ -0,0 +1,43 @@ +{% extends 'base.html' %} +{% load bornhack %} + +{% block title %} + Permissions by User | Backoffice | {{ block.super }} +{% endblock %} + +{% block content %} +
+

Permissions by User - BackOffice

+
+

A list of user permissions. Users with no permissions and users with all permissions (the is_superuser flag) are not included in this table.

+

+ Backoffice +

+ + + + + + + + + + + + {% for user in user_list %} + + + + + + + + {% endfor %} + +
UsernameNamePublic Credit NameUser PermissionsGroup Permissions
{{ user.username }}{{ user.profile.name }}{{ user.profile.public_credit_name }}{% for perm in user.get_user_permissions %}{% if perm|slice:"0:6" == "camps." %}{{ perm }}
{% endif %}{% endfor %}
{% for perm in user.get_group_permissions %}{% if perm|slice:"0:6" == "camps." %}{{ perm }}
{% endif %}{% endfor %}
+

+ Backoffice +

+
+
+{% endblock content %} diff --git a/src/backoffice/templates/speaker_list_backoffice.html b/src/backoffice/templates/speaker_list_backoffice.html index 5d0fbc37a..78ec4ce66 100644 --- a/src/backoffice/templates/speaker_list_backoffice.html +++ b/src/backoffice/templates/speaker_list_backoffice.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% block title %} Speaker List | Backoffice | {{ block.super }} diff --git a/src/backoffice/templates/team_permissions_index.html b/src/backoffice/templates/team_permissions_index.html new file mode 100644 index 000000000..9da2cd64b --- /dev/null +++ b/src/backoffice/templates/team_permissions_index.html @@ -0,0 +1,27 @@ +{% extends 'base.html' %} +{% load static %} + +{% block title %} + Team Permissions | Backoffice | {{ block.super }} +{% endblock %} + +{% block content %} + +
+
+

Team Permissions - {{ camp.title }} Backoffice

+
+
+

Please select a team to manage permissions

+

Backoffice

+ +
+
+{% endblock content %} diff --git a/src/backoffice/templates/team_permissions_manage.html b/src/backoffice/templates/team_permissions_manage.html new file mode 100644 index 000000000..aea811beb --- /dev/null +++ b/src/backoffice/templates/team_permissions_manage.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load bootstrap3 %} + +{% block content %} +
+
+

Manage {{ team.name }} Team Permissions

+
+
+

This view makes it possible to grant/revoke permissions for {{ team.name }} Team members. The lead and member permissions are granted through team memberships and can not be changed here.

+

The available permissions are:

+
+
lead
+
The team lead permission enables a user to manage team memberships and permissions. This permission is granted to and removed from team leads automatically when the team membership is updated. Codename camps.{{ team.slug }}_team_lead.
+
member
+
The team member permission grants access to the team area with tasks and the team guide. It also grants access to handle facility feedback in backoffice. Some sections of backoffice and the main site are restricted to users with this permission. Codename camps.{{ team.slug }}_team_member.
+
mapper
+
The team mapper permission grants access to gis/map layer management in backoffice. Codename camps.{{ team.slug }}_team_mapper.
+
facilitator
+
The team facilitator permission grants access to manage facilities in backoffice. Codename camps.{{ team.slug }}_team_facilitator.
+
infopager
+
The team infopager permission grants access to manage infopage sections for the team. Codename camps.{{ team.slug }}_team_infopager.
+
pos
+
The team pos permission grants access to submit point-of-sale reports on behalf of the team. Codename camps.{{ team.slug }}_team_pos.
+

Backoffice

+
+ {% csrf_token %} + + + + + + + {% for perm in perms %} + + {% endfor %} + + + + {% for member in team.approved_members.all %} + + + + + {% for perm in perms %} + {% for field in form.visible_fields %} + {% if field.name == member.username|add:"_"|add:perm %} + + {% endif %} + {% endfor %} + {% endfor %} + + {% endfor %} + +
UsernameNamePublic Credit Name{{ perm }}
{{ member.username }}{{ member.profile.name }}{{ member.profile.public_credit_name }}{{ field }}
+ + Cancel + Backoffice +
+
+
+{% endblock content %} diff --git a/src/backoffice/urls.py b/src/backoffice/urls.py index 44aacb544..510c0e999 100644 --- a/src/backoffice/urls.py +++ b/src/backoffice/urls.py @@ -34,11 +34,12 @@ from .views import CoinifyCSVImportView from .views import CoinifyDashboardView from .views import CoinifyInvoiceListView +from .views import TeamPermissionIndexView +from .views import TeamPermissionManageView from .views import CoinifyPayoutListView from .views import CredebtorDetailView from .views import CreditNoteDownloadView from .views import CreditNoteListView -from .views import economy_search_view from .views import EpayCSVImportView from .views import EpayTransactionListView from .views import EventDeleteView @@ -78,6 +79,7 @@ from .views import FacilityOpeningHoursUpdateView from .views import FacilityTypeCreateView from .views import FacilityTypeDeleteView +from .views import FacilityTypeImportView from .views import FacilityTypeListView from .views import FacilityTypeUpdateView from .views import FacilityUpdateView @@ -86,6 +88,18 @@ from .views import InvoiceListCSVView from .views import InvoiceListView from .views import IrcOverView +from .views import MapExternalLayerCreateView +from .views import MapExternalLayerDeleteView +from .views import MapExternalLayerUpdateView +from .views import MapFeatureCreateView +from .views import MapFeatureDeleteView +from .views import MapFeatureListView +from .views import MapFeatureUpdateView +from .views import MapLayerCreateView +from .views import MapLayerDeleteView +from .views import MapLayerFeaturesImportView +from .views import MapLayerUpdateView +from .views import MapLayerListView from .views import MerchandiseOrdersView from .views import MerchandiseToOrderView from .views import MobilePayCSVImportView @@ -150,6 +164,8 @@ from .views import ZettleDashboardView from .views import ZettleDataImportView from .views import ZettleReceiptListView +from .views import PermissionByUserView +from .views import PermissionByPermissionView app_name = "backoffice" @@ -177,6 +193,11 @@ "/", include( [ + path( + "import/", + FacilityTypeImportView.as_view(), + name="facility_type_import", + ), path( "update/", FacilityTypeUpdateView.as_view(), @@ -193,6 +214,97 @@ ], ), ), + path( + "maps/", + include( + [ + path("", MapLayerListView.as_view(), name="map_layer_list"), + path( + "create/", + MapLayerCreateView.as_view(), + name="map_layer_create", + ), + path( + "external/", + include( + [ + path( + "create/", + MapExternalLayerCreateView.as_view(), + name="map_external_layer_create", + ), + path( + "/", + include( + [ + path( + "delete/", + MapExternalLayerDeleteView.as_view(), + name="map_external_layer_delete", + ), + path( + "update/", + MapExternalLayerUpdateView.as_view(), + name="map_external_layer_update", + ), + ], + ), + ), + ], + ), + ), + path( + "/", + include( + [ + path( + "", + MapFeatureListView.as_view(), + name="map_features_list", + ), + path( + "create/", + MapFeatureCreateView.as_view(), + name="map_feature_create", + ), + path( + "import/", + MapLayerFeaturesImportView.as_view(), + name="map_layer_features_import", + ), + path( + "update/", + MapLayerUpdateView.as_view(), + name="map_layer_update", + ), + path( + "delete/", + MapLayerDeleteView.as_view(), + name="map_layer_delete", + ), + path( + "features//", + include( + [ + path( + "update/", + MapFeatureUpdateView.as_view(), + name="map_feature_update", + ), + path( + "delete/", + MapFeatureDeleteView.as_view(), + name="map_feature_delete", + ), + ], + ), + ), + ], + ), + ), + ], + ), + ), path( "facilities/", include( @@ -751,7 +863,6 @@ "economy/", include( [ - path("search/", economy_search_view, name="economy_search"), # chains & credebtors path( "chains/", @@ -1275,4 +1386,39 @@ ], ), ), + # team permissions + path( + "team_permissions/", + include( + [ + path( + "", + TeamPermissionIndexView.as_view(), + name="team_permission_index", + ), + path( + "/", + TeamPermissionManageView.as_view(), + name="team_permission_manage", + ), + ], + ), + ), + path( + "permissions/", + include( + [ + path( + "by_user/", + PermissionByUserView.as_view(), + name="permission_list_by_user", + ), + path( + "by_permission/", + PermissionByPermissionView.as_view(), + name="permission_list_by_permission", + ), + ], + ), + ), ] diff --git a/src/backoffice/views/__init__.py b/src/backoffice/views/__init__.py index 063945aca..ce05eb7f6 100644 --- a/src/backoffice/views/__init__.py +++ b/src/backoffice/views/__init__.py @@ -6,6 +6,8 @@ from .facilities import * # noqa: F401, F403 from .game import * # noqa: F401, F403 from .infodesk import * # noqa: F401, F403 +from .maps import * # noqa: F401, F403 from .orga import * # noqa: F401, F403 from .pos import * # noqa: F401, F403 from .program import * # noqa: F401, F403 +from .permissions import * # noqa: F401, F403 diff --git a/src/backoffice/views/backoffice.py b/src/backoffice/views/backoffice.py index c7b5386e3..18e250685 100644 --- a/src/backoffice/views/backoffice.py +++ b/src/backoffice/views/backoffice.py @@ -6,7 +6,8 @@ from django.http import HttpResponse from django.views.generic import TemplateView -from ..mixins import RaisePermissionRequiredMixin +from utils.mixins import TeamMemberRequiredMixin +from utils.mixins import RaisePermissionRequiredMixin from camps.mixins import CampViewMixin from facilities.models import FacilityFeedback from teams.models import Team @@ -15,17 +16,28 @@ logger = logging.getLogger("bornhack.%s" % __name__) -class BackofficeIndexView(CampViewMixin, RaisePermissionRequiredMixin, TemplateView): +class BackofficeIndexView(CampViewMixin, TeamMemberRequiredMixin, TemplateView): """ - The Backoffice index view only requires camps.backoffice_permission so we use RaisePermissionRequiredMixin directly + The Backoffice index view is available to anyone who is an approved member of any team for the current camp. """ - permission_required = "camps.backoffice_permission" template_name = "index.html" def get_context_data(self, *args, **kwargs): context = super().get_context_data(*args, **kwargs) + + # get user permissions + perms = self.request.user.get_all_permissions() + + # get slugs for teams the user has member permission for + team_slugs = [ + perm.split(".")[1].split("_")[0] + for perm in perms + if perm.endswith("_team_member") + ] + # generate a list of teams with unhandled facility feedback context["facilityfeedback_teams"] = Team.objects.filter( + slug__in=team_slugs, id__in=set( FacilityFeedback.objects.filter( facility__facility_type__responsible_team__camp=self.camp, @@ -36,6 +48,8 @@ def get_context_data(self, *args, **kwargs): ), ), ) + + # include the number of unread emails context["held_email_count"] = ( OutgoingEmail.objects.filter( hold=True, @@ -47,8 +61,17 @@ def get_context_data(self, *args, **kwargs): ).count() ) - context["camp"] = self.camp - + # add bools for each of settings.BORNHACK_TEAM_PERMISSIONS + for perm in settings.BORNHACK_TEAM_PERMISSIONS.keys(): + # loop over user permissions and set context + for user_perm in perms: + if user_perm.startswith("camps.") and user_perm.endswith( + f"_team_{perm}", + ): + context[f"is_team_{perm}"] = True + break + else: + context[f"is_team_{perm}"] = False return context @@ -58,7 +81,7 @@ class BackofficeProxyView(CampViewMixin, RaisePermissionRequiredMixin, TemplateV Define URLs in settings.BACKOFFICE_PROXY_URLS as a dict of slug: (description, url) pairs """ - permission_required = "camps.backoffice_permission" + permission_required = "camps.orga_team_member" template_name = "backoffice_proxy.html" def dispatch(self, request, *args, **kwargs): diff --git a/src/backoffice/views/economy.py b/src/backoffice/views/economy.py index 1c882e349..b623bb466 100644 --- a/src/backoffice/views/economy.py +++ b/src/backoffice/views/economy.py @@ -2,17 +2,14 @@ import logging import zipfile from io import StringIO -from typing import Union import magic from django.contrib import messages from django.db.models import Count from django.db.models import Q from django.db.models import Sum -from django.http import HttpRequest from django.http import HttpResponse from django.shortcuts import redirect -from django.shortcuts import render from django.urls import reverse from django.views.generic import CreateView from django.views.generic import DeleteView @@ -880,41 +877,3 @@ def get(self, request, *args, **kwargs): response["Content-Disposition"] = f"attachment; filename={filename}" response.write(data) return response - - -EconomyEntity = Union[Expense, Revenue, Reimbursement] - - -def find_economy_entities(*, uuid: str) -> list[EconomyEntity]: - """ - Search for economy entities with the given uuid - """ - entity_models = [ - Expense, - Revenue, - Reimbursement, - ] - - results = [] - - for entity_model in entity_models: - entity_results = entity_model.objects.filter(uuid__icontains=uuid) - results.extend(list(entity_results)) - - return results - - -def economy_search_view(request: HttpRequest, camp_slug: str) -> HttpResponse: - uuid = request.GET.get("uuid", "") - uuid = uuid.strip().lower() - entities = find_economy_entities(uuid=uuid) if uuid else None - context = { - "uuid": uuid, - "entities": entities, - } - - return render( - request=request, - template_name="economy_search.html", - context=context, - ) diff --git a/src/backoffice/views/facilities.py b/src/backoffice/views/facilities.py index daa27bbc8..eccedb2cb 100644 --- a/src/backoffice/views/facilities.py +++ b/src/backoffice/views/facilities.py @@ -1,14 +1,18 @@ +import json import logging -from django.conf import settings from django.contrib import messages -from django.core.exceptions import PermissionDenied +from django.contrib.gis.geos import GEOSGeometry from django.forms import modelformset_factory +from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 from django.shortcuts import redirect +from django.shortcuts import render +from django.templatetags.static import static from django.urls import reverse from django.views.generic import DetailView from django.views.generic import ListView +from django.views.generic.base import View from django.views.generic.edit import CreateView from django.views.generic.edit import DeleteView from django.views.generic.edit import FormView @@ -17,22 +21,108 @@ from ..mixins import OrgaTeamPermissionMixin from ..mixins import RaisePermissionRequiredMixin +from facilities.mixins import FacilityFacilitatorViewMixin from camps.mixins import CampViewMixin from facilities.models import Facility from facilities.models import FacilityFeedback from facilities.models import FacilityOpeningHours from facilities.models import FacilityType from teams.models import Team +from utils.widgets import IconPickerWidget +from utils.mixins import TeamFacilitatorRequiredMixin logger = logging.getLogger("bornhack.%s" % __name__) +# ########### FACILITY TYPES ###################### + + class FacilityTypeListView(CampViewMixin, OrgaTeamPermissionMixin, ListView): model = FacilityType template_name = "facility_type_list_backoffice.html" context_object_name = "facility_type_list" +class FacilityTypeImportView(CampViewMixin, OrgaTeamPermissionMixin, View): + model = FacilityType + template_name = "facility_type_import_backoffice.html" + context_object_name = "facility_type_import" + + def get(self, request, *args, **kwargs): + return render(request, "facility_type_import_backoffice.html") + + def post(self, request, camp_slug, slug): + geojson_data = request.POST.get("geojson_data") + facility_type = get_object_or_404( + FacilityType, + responsible_team__camp=self.camp, + slug=slug, + ) + try: + geojson = json.loads(geojson_data) + except json.JSONDecodeError: + return render( + request, + "facility_type_import_backoffice.html", + {"error": "Invalid GeoJSON data"}, + ) + + # Basic validation, you can add more checks + if "type" not in geojson or geojson["type"] != "FeatureCollection": + return render( + request, + "facility_type_import_backoffice.html", + {"error": "Invalid GeoJSON format"}, + ) + + createdCount = 0 + updateCount = 0 + errorCount = 0 + for feature in geojson["features"]: + try: + geom = GEOSGeometry(json.dumps(feature["geometry"])) + except (TypeError, AttributeError): + errorCount += 1 + continue + props = feature["properties"] + if "description" in props: + if props["description"]: + description = props["description"] + else: + errorCount += 1 + continue + else: + errorCount += 1 + continue + obj, created = Facility.objects.update_or_create( + name=props["name"], + description=description, + facility_type=facility_type, + location=geom, + ) + if created: + createdCount += 1 + else: + updateCount += 1 + if createdCount > 0 or updateCount > 0: + messages.success( + self.request, + "%i features created, %i features updated" + % (createdCount, updateCount), + ) + if errorCount > 0: + messages.error( + self.request, + "%i features with errors not imported" % (errorCount), + ) + return HttpResponseRedirect( + reverse( + "backoffice:facility_type_list", + kwargs={"camp_slug": camp_slug}, + ), + ) + + class FacilityTypeCreateView(CampViewMixin, OrgaTeamPermissionMixin, CreateView): model = FacilityType template_name = "facility_type_form.html" @@ -45,6 +135,11 @@ class FacilityTypeCreateView(CampViewMixin, OrgaTeamPermissionMixin, CreateView) "quickfeedback_options", ] + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + return form + def get_context_data(self, **kwargs): """ Do not show teams that are not part of the current camp in the dropdown @@ -74,6 +169,11 @@ class FacilityTypeUpdateView(CampViewMixin, OrgaTeamPermissionMixin, UpdateView) "quickfeedback_options", ] + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + return form + def get_context_data(self, **kwargs): """ Do not show teams that are not part of the current camp in the dropdown @@ -111,22 +211,77 @@ def get_success_url(self): ) -class FacilityListView(CampViewMixin, OrgaTeamPermissionMixin, ListView): +# ########### FACILITIES ###################### + + +class FacilityListView(TeamFacilitatorRequiredMixin, ListView): model = Facility template_name = "facility_list_backoffice.html" + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + "facility_list": [], + } + for item in context["facility_list"]: + context["mapData"]["facility_list"].append( + { + "url": reverse( + "backoffice:facility_detail", + kwargs={ + "camp_slug": item.camp.slug, + "facility_uuid": item.uuid, + }, + ), + "name": item.name, + "description": item.description, + "location": { + "x": item.location.x, + "y": item.location.y, + }, + "facility_type": { + "icon": item.facility_type.icon, + "marker": item.facility_type.marker, + "team": item.facility_type.responsible_team.name, + }, + }, + ) + return context + -class FacilityDetailView(CampViewMixin, OrgaTeamPermissionMixin, DetailView): +class FacilityDetailView(TeamFacilitatorRequiredMixin, DetailView): model = Facility template_name = "facility_detail_backoffice.html" pk_url_kwarg = "facility_uuid" + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "facility": { + "location": { + "x": context["facility"].location.x, + "y": context["facility"].location.y, + }, + "name": context["facility"].name, + "facility_type": { + "marker": context["facility"].facility_type.marker, + "icon": context["facility"].facility_type.icon, + }, + "description": context["facility"].description, + }, + "grid": static("json/grid.geojson"), + } + return context + def get_queryset(self, *args, **kwargs): qs = super().get_queryset(*args, **kwargs) return qs.prefetch_related("opening_hours") -class FacilityCreateView(CampViewMixin, OrgaTeamPermissionMixin, CreateView): +class FacilityCreateView(CampViewMixin, TeamFacilitatorRequiredMixin, CreateView): model = Facility template_name = "facility_form.html" fields = ["facility_type", "name", "description", "location"] @@ -142,30 +297,68 @@ def get_form(self, *args, **kwargs): def get_context_data(self, **kwargs): """ - Do not show types that are not part of the current camp in the dropdown + Do not show types that are not part of the current camp in the dropdown, + also hide types belonging to teams for which the user has no facilitator permission. + Also get map data. """ context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": True, + "grid": static("json/grid.geojson"), + } + # get the teams the current user has facilitator permission for + perms = self.request.user.get_all_permissions() + team_slugs = [ + perm.split(".")[1].split("_")[0] + for perm in perms + if perm.endswith("_facilitator") + ] + teams = Team.objects.filter(camp=self.camp, slug__in=team_slugs) context["form"].fields["facility_type"].queryset = FacilityType.objects.filter( responsible_team__camp=self.camp, + responsible_team__in=teams, ) return context + def form_valid(self, form): + # does the user have facilitator permission for the team in charge of this facility type? + if ( + form.cleaned_data[ + "facility_type" + ].responsible_team.facilitator_permission_set + not in self.request.user.get_all_permissions() + ): + messages.error("No thanks") + return self.form_invalid(form) + return super().form_valid(form) + def get_success_url(self): messages.success(self.request, "The Facility has been created") return reverse("backoffice:facility_list", kwargs={"camp_slug": self.camp.slug}) -class FacilityUpdateView(CampViewMixin, OrgaTeamPermissionMixin, UpdateView): +class FacilityUpdateView(FacilityFacilitatorViewMixin, UpdateView): + """Update a facility. Requires facilitator permission for the team which is responsible for the facility type.""" + model = Facility template_name = "facility_form.html" pk_url_kwarg = "facility_uuid" - fields = ["facility_type", "name", "description", "location"] + fields = ["name", "description", "location"] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + } + return context def get_form(self, *args, **kwargs): form = super().get_form(*args, **kwargs) form.fields["location"].widget = LeafletWidget( attrs={ "display_raw": "true", + "map_height": "500px", }, ) return form @@ -181,7 +374,9 @@ def get_success_url(self): ) -class FacilityDeleteView(CampViewMixin, OrgaTeamPermissionMixin, DeleteView): +class FacilityDeleteView(FacilityFacilitatorViewMixin, DeleteView): + """Delete a facility. Requires facilitator permission for the team which is responsible for the facility type.""" + model = Facility template_name = "facility_delete.html" pk_url_kwarg = "facility_uuid" @@ -196,17 +391,19 @@ def get_success_url(self): return reverse("backoffice:facility_list", kwargs={"camp_slug": self.camp.slug}) +# ############ FACILITY FEEDBACK ##################### + + class FacilityFeedbackView(CampViewMixin, RaisePermissionRequiredMixin, FormView): + """View to handle facility feedback. Available for anyone with member permission for the team.""" + template_name = "facilityfeedback_backoffice.html" def get_permission_required(self): """ - This view requires two permissions, camps.backoffice_permission and - the permission_set for the team in question. + This view requires the member_permission_set for the team in question. """ - if not self.team.permission_set: - raise PermissionDenied("No permissions set defined for this team") - return ["camps.backoffice_permission", self.team.permission_set] + return [self.team.member_permission_set] def setup(self, *args, **kwargs): super().setup(*args, **kwargs) @@ -252,34 +449,11 @@ def get_success_url(self, *args, **kwargs): ) -class FacilityMixin(CampViewMixin): - def setup(self, *args, **kwargs): - super().setup(*args, **kwargs) - self.facility = get_object_or_404(Facility, uuid=kwargs["facility_uuid"]) - - def get_form(self, *args, **kwargs): - """ - The default range widgets are a bit shit because they eat the help_text and - have no indication of which field is for what. So we add a nice placeholder. - """ - form = super().get_form(*args, **kwargs) - form.fields["when"].widget.widgets[0].attrs = { - "placeholder": f"Open Date and Time (YYYY-MM-DD HH:MM). Active time zone is {settings.TIME_ZONE}.", - } - form.fields["when"].widget.widgets[1].attrs = { - "placeholder": f"Close Date and Time (YYYY-MM-DD HH:MM). Active time zone is {settings.TIME_ZONE}.", - } - return form - - def get_context_data(self, **kwargs): - context = super().get_context_data(**kwargs) - context["facility"] = self.facility - return context +# ############ FACILITY OPENING HOURS ##################### class FacilityOpeningHoursCreateView( - FacilityMixin, - OrgaTeamPermissionMixin, + FacilityFacilitatorViewMixin, CreateView, ): model = FacilityOpeningHours @@ -303,8 +477,7 @@ def form_valid(self, form): class FacilityOpeningHoursUpdateView( - FacilityMixin, - OrgaTeamPermissionMixin, + FacilityFacilitatorViewMixin, UpdateView, ): model = FacilityOpeningHours @@ -320,8 +493,7 @@ def get_success_url(self): class FacilityOpeningHoursDeleteView( - FacilityMixin, - OrgaTeamPermissionMixin, + FacilityFacilitatorViewMixin, DeleteView, ): model = FacilityOpeningHours diff --git a/src/backoffice/views/game.py b/src/backoffice/views/game.py index 846cb7e38..509252629 100644 --- a/src/backoffice/views/game.py +++ b/src/backoffice/views/game.py @@ -29,7 +29,7 @@ class TokenListView(CampViewMixin, RaisePermissionRequiredMixin, ListView): """Show a list of secret tokens for this camp""" - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = Token template_name = "token_list.html" @@ -37,7 +37,7 @@ class TokenListView(CampViewMixin, RaisePermissionRequiredMixin, ListView): class TokenDetailView(CampViewMixin, RaisePermissionRequiredMixin, DetailView): """Show details for a token.""" - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = Token template_name = "token_detail.html" @@ -45,7 +45,7 @@ class TokenDetailView(CampViewMixin, RaisePermissionRequiredMixin, DetailView): class TokenCreateView(CampViewMixin, RaisePermissionRequiredMixin, CreateView): """Create a new Token.""" - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = Token template_name = "token_form.html" fields = ["token", "category", "description", "active", "valid_when"] @@ -65,14 +65,14 @@ def form_valid(self, form): class TokenUpdateView(CampViewMixin, RaisePermissionRequiredMixin, UpdateView): """Update a token.""" - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = Token template_name = "token_form.html" fields = ["token", "category", "description", "active", "valid_when"] class TokenDeleteView(CampViewMixin, RaisePermissionRequiredMixin, DeleteView): - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = Token template_name = "token_delete.html" @@ -91,7 +91,7 @@ def get_success_url(self): class TokenStatsView(CampViewMixin, RaisePermissionRequiredMixin, ListView): """Show stats for token finds for this camp""" - permission_required = ["camps.backoffice_permission", "camps.gameteam_permission"] + permission_required = "camps.game_team_member" model = User template_name = "token_stats.html" diff --git a/src/backoffice/views/maps.py b/src/backoffice/views/maps.py new file mode 100644 index 000000000..3df636cf1 --- /dev/null +++ b/src/backoffice/views/maps.py @@ -0,0 +1,460 @@ +import json +import uuid +import logging + +from django.contrib import messages +from django.contrib.gis.geos import GeometryCollection +from django.contrib.gis.geos import GEOSGeometry +from django.db.models import Q +from django.http import HttpResponseRedirect +from django.urls import reverse +from django.views.generic import ListView +from django.views.generic.edit import CreateView +from django.views.generic.edit import FormView +from django.views.generic.edit import DeleteView +from django.views.generic.edit import UpdateView +from django.templatetags.static import static +from leaflet.forms.widgets import LeafletWidget + +from camps.mixins import CampViewMixin +from ..forms import MapLayerFeaturesImportForm +from maps.models import ExternalLayer +from maps.models import Feature +from maps.models import Layer +from teams.models import Team +from utils.widgets import IconPickerWidget +from utils.mixins import TeamMapperRequiredMixin +from maps.mixins import LayerMapperViewMixin +from maps.mixins import ExternalLayerMapperViewMixin + +logger = logging.getLogger("bornhack.%s" % __name__) + + +# ################# LAYERS ######################## + + +class MapLayerListView(CampViewMixin, TeamMapperRequiredMixin, ListView): + model = Layer + template_name = "maps_layer_list_backoffice.html" + context_object_name = "maps_layer_list" + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["layers"] = Layer.objects.filter( + Q(responsible_team__camp=self.camp) | Q(responsible_team=None), + ) + context["externalLayers"] = ExternalLayer.objects.filter( + Q(responsible_team__camp=self.camp) | Q(responsible_team=None), + ) + return context + + +class MapLayerFeaturesImportView( + CampViewMixin, + LayerMapperViewMixin, + FormView, +): + """Import features into a map layer.""" + + form_class = MapLayerFeaturesImportForm + template_name = "maps_layer_import_features_backoffice.html" + created_count = 0 + updated_count = 0 + error_count = 0 + + def form_valid(self, form): + """Create/update features from the geojson. Show messages and redirect.""" + geojson = form.cleaned_data + self.load_feature_collection(self.layer, geojson) + if self.created_count > 0 or self.updated_count > 0: + messages.success( + self.request, + "%i new features created, %i existing features updated" + % (self.created_count, self.updated_count), + ) + if self.error_count > 0: + messages.error( + self.request, + "%i features with errors not imported" % (self.error_count), + ) + return HttpResponseRedirect( + reverse( + "backoffice:map_features_list", + kwargs={"camp_slug": self.camp.slug, "layer_slug": self.layer.slug}, + ), + ) + + def load_features(self, *features) -> GeometryCollection: + """Loop over features and return as a GeometryCollection.""" + import_features = [] + for feature in features: + try: + f = GEOSGeometry(json.dumps(feature)) + import_features.append(f) + except (TypeError, AttributeError, ValueError): + logger.error(f"Failed to GEOSGeometry: {feature}") + self.error_count += 1 + return + return GeometryCollection(import_features) + + def load_feature_collection(self, layer, geojson): + """Loop over the FeatureCollection geojson and process each feature, depending on type.""" + for feature in geojson["features"]: + if "geometry" not in feature or feature["geometry"] is None: + # TODO: no geometries in this feature, why do we create a Feature object anyway? + geom = GeometryCollection([]) + elif feature["geometry"]["type"] == "GeometryCollection": + # parse GeometryCollection object + geom = self.load_features(*feature["geometry"]["geometries"]) + elif feature["type"] == "Feature": + # parse single feature + geom = self.load_features(feature["geometry"]) + self.create_feature_object( + feature_uuid=feature.get("id"), + props=feature["properties"], + layer=layer, + geom=geom, + ) + + def create_feature_object(self, feature_uuid, props, layer, geom): + """Create or update a Feature object for the given layer with the given geom and props.""" + # do we have an id from the geojson feature? + if feature_uuid: + # we have an id in this geojson feature + try: + # is it a valid uuid? + feature_uuid = uuid.UUID(feature_uuid) + # it is a valid uuid, does it already exist in the db? + if ( + Feature.objects.exclude(layer=layer) + .filter(uuid=feature_uuid) + .exists() + ): + feature_uuid = uuid.uuid4() + # use uuid for lookup + get_args = {"uuid": feature_uuid} + except (ValueError, TypeError, AttributeError): + # not a valid uuid, use name for lookup + get_args = {"name": props.get("name", "unnamed feature")} + else: + get_args = {"name": props.get("name", "unnamed feature")} + + # use layer and uuid/name to select the object + get_args["layer"] = layer + try: + obj, created = Feature.objects.update_or_create( + **get_args, + defaults={ + "layer": layer, + "name": props["name"], + "description": props["description"], + "url": props.get("url", ""), + "topic": props.get("topic", ""), + "processing": props.get("processing", ""), + "color": props.get("color", "#000000FF"), + "icon": props.get("icon", "fas fa-list"), + "geom": geom, + }, + ) + if created: + self.created_count += 1 + else: + self.updated_count += 1 + except AttributeError: + self.error_count += 1 + + +class MapLayerCreateView(CampViewMixin, TeamMapperRequiredMixin, CreateView): + model = Layer + template_name = "maps_layer_form.html" + fields = [ + "name", + "slug", + "description", + "icon", + "invisible", + "group", + "responsible_team", + ] + + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + return form + + def get_context_data(self, **kwargs): + """ + Do not show teams that are not part of the current camp in the dropdown + """ + # get the teams the current user has mapper permission for + perms = self.request.user.get_all_permissions() + team_slugs = [ + perm.split(".")[1].split("_")[0] + for perm in perms + if perm.endswith("_mapper") + ] + teams = Team.objects.filter(camp=self.camp, slug__in=team_slugs) + context = super().get_context_data(**kwargs) + context["form"].fields["responsible_team"].queryset = teams + return context + + def get_success_url(self): + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.camp.slug}, + ) + + +class MapLayerUpdateView(CampViewMixin, LayerMapperViewMixin, UpdateView): + model = Layer + slug_url_kwarg = "layer_slug" + template_name = "maps_layer_form.html" + fields = [ + "name", + "slug", + "description", + "icon", + "invisible", + "group", + "responsible_team", + ] + + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + return form + + def get_context_data(self, **kwargs): + """ + Do not show teams that are not part of the current camp in the dropdown + """ + # get the teams the current user has facilitator permission for + perms = self.request.user.get_all_permissions() + team_slugs = [ + perm.split(".")[1].split("_")[0] + for perm in perms + if perm.endswith("_mapper") + ] + teams = Team.objects.filter(camp=self.camp, slug__in=team_slugs) + context = super().get_context_data(**kwargs) + context["form"].fields["responsible_team"].queryset = teams + return context + + def get_success_url(self): + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.camp.slug}, + ) + + +class MapLayerDeleteView(CampViewMixin, LayerMapperViewMixin, DeleteView): + model = Layer + template_name = "maps_layer_delete.html" + slug_url_kwarg = "layer_slug" + + def delete(self, *args, **kwargs): + for layer in self.get_object().features.all(): + layer.delete() + return super().delete(*args, **kwargs) + + def get_success_url(self): + messages.success(self.request, "The Layer has been deleted") + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.camp.slug}, + ) + + +# ################# FEATURES ####################### + + +class MapFeatureListView(LayerMapperViewMixin, ListView): + model = Feature + template_name = "maps_layer_feature_list_backoffice.html" + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["features"] = Feature.objects.filter(layer=self.layer) + return context + + +class MapFeatureCreateView(LayerMapperViewMixin, CreateView): + model = Feature + template_name = "maps_feature_form.html" + fields = [ + "name", + "description", + "url", + "topic", + "processing", + "icon", + "color", + "layer", + "geom", + ] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = {"grid": static("json/grid.geojson")} + return context + + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + form.fields["layer"].initial = self.layer.pk + form.fields["layer"].disabled = True + form.fields["geom"].widget = LeafletWidget( + attrs={ + "display_raw": "true", + "map_height": "500px", + "geom_type": "GeometryCollection", + }, + ) + return form + + def get_success_url(self): + messages.success(self.request, "The feature has been created") + return reverse( + "backoffice:map_features_list", + kwargs={ + "camp_slug": self.kwargs["camp_slug"], + "layer_slug": self.layer.slug, + }, + ) + + +class MapFeatureUpdateView(LayerMapperViewMixin, UpdateView): + model = Feature + slug_url_kwarg = "feature_uuid" + slug_field = "uuid" + template_name = "maps_feature_form.html" + fields = [ + "name", + "description", + "url", + "topic", + "processing", + "icon", + "color", + "geom", + ] + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = {"grid": static("json/grid.geojson")} + return context + + def get_form(self, *args, **kwargs): + form = super().get_form(*args, **kwargs) + form.fields["icon"].widget = IconPickerWidget() + form.fields["geom"].widget = LeafletWidget( + attrs={ + "display_raw": "true", + "map_height": "500px", + "geom_type": "GeometryCollection", + }, + ) + return form + + def get_success_url(self): + messages.success(self.request, "The feature has been updated") + return reverse( + "backoffice:map_features_list", + kwargs={ + "camp_slug": self.kwargs["camp_slug"], + "layer_slug": self.layer.slug, + }, + ) + + +class MapFeatureDeleteView(LayerMapperViewMixin, DeleteView): + model = Feature + template_name = "maps_feature_delete.html" + slug_url_kwarg = "feature_uuid" + slug_field = "uuid" + + def get_success_url(self): + messages.success(self.request, "The feature has been deleted") + return reverse( + "backoffice:map_features_list", + kwargs={ + "camp_slug": self.kwargs["camp_slug"], + "layer_slug": self.layer.slug, + }, + ) + + +# ################# EXTERNAL LAYERS ################ + + +class MapExternalLayerCreateView(CampViewMixin, TeamMapperRequiredMixin, CreateView): + model = ExternalLayer + template_name = "maps_external_layer_form.html" + fields = [ + "name", + "description", + "responsible_team", + "url", + ] + + def get_context_data(self, **kwargs): + """ + Do not show teams that are not part of the current camp in the dropdown + """ + context = super().get_context_data(**kwargs) + context["form"].fields["responsible_team"].queryset = Team.objects.filter( + camp=self.camp, + ) + return context + + def get_success_url(self): + messages.success(self.request, "The external layer has been created") + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.kwargs["camp_slug"]}, + ) + + +class MapExternalLayerUpdateView(ExternalLayerMapperViewMixin, UpdateView): + model = ExternalLayer + slug_url_kwarg = "external_layer_uuid" + slug_field = "uuid" + template_name = "maps_external_layer_form.html" + fields = [ + "name", + "description", + "responsible_team", + "url", + ] + + def get_context_data(self, **kwargs): + """ + Do not show teams that are not part of the current camp in the dropdown + """ + context = super().get_context_data(**kwargs) + context["form"].fields["responsible_team"].queryset = Team.objects.filter( + camp=self.camp, + ) + return context + + def get_success_url(self): + messages.success(self.request, "The external layer has been updated") + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.kwargs["camp_slug"]}, + ) + + +class MapExternalLayerDeleteView(ExternalLayerMapperViewMixin, DeleteView): + model = ExternalLayer + template_name = "maps_external_layer_delete.html" + slug_url_kwarg = "external_layer_uuid" + slug_field = "uuid" + context_object_name = "external_layer" + + def get_success_url(self): + messages.success(self.request, "The external layer has been deleted") + return reverse( + "backoffice:map_layer_list", + kwargs={"camp_slug": self.kwargs["camp_slug"]}, + ) diff --git a/src/backoffice/views/permissions.py b/src/backoffice/views/permissions.py new file mode 100644 index 000000000..c92ca089d --- /dev/null +++ b/src/backoffice/views/permissions.py @@ -0,0 +1,174 @@ +from django.urls import reverse +from camps.mixins import CampViewMixin +from django.core.exceptions import PermissionDenied +from django.shortcuts import redirect +from django.contrib import messages +from django.contrib.auth.models import Permission +from camps.models import Permission as CampPermission +from django.contrib.contenttypes.models import ContentType +from teams.models import Team +from django.views.generic import ListView, FormView +from ..mixins import OrgaOrTeamLeadViewMixin +from django.contrib.auth.models import User +from ..forms import ManageTeamPermissionsForm +from django.shortcuts import get_object_or_404 +from django.conf import settings + + +class TeamPermissionIndexView(OrgaOrTeamLeadViewMixin, ListView): + model = Team + template_name = "team_permissions_index.html" + + def setup(self, *args, **kwargs): + super().setup(*args, **kwargs) + # get the teams for which this user can manage permissions + self.teams = [] + perms = self.request.user.get_all_permissions() + for team in Team.objects.filter(camp=self.camp): + if ( + f"camps.{team.slug}_team_lead" in perms + or "camps.orga_team_member" in perms + ): + # user can manage perms for this team + if team.approved_members.exists(): + # there is something to manage + self.teams.append(team) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["teams"] = self.teams + return context + + +class TeamPermissionManageView(CampViewMixin, FormView): + """This view is used to see and update team permissions.""" + + template_name = "team_permissions_manage.html" + form_class = ManageTeamPermissionsForm + + def setup(self, *args, **kwargs): + """Get the team object.""" + super().setup(*args, **kwargs) + self.team = get_object_or_404( + Team, + camp=self.camp, + slug=kwargs["team_slug"], + ) + # does the user have permission to manage permissions for this team? + if not self.request.user.has_perm( + f"camps.{self.team.slug}_team_lead", + ) and not self.request.user.has_perm("camps.orga_team_member"): + messages.error(self.request, "No thanks") + raise PermissionDenied() + self.matrix = {} + for member in self.team.approved_members.all(): + self.matrix[member.username] = [] + for perm in settings.BORNHACK_TEAM_PERMISSIONS.keys(): + self.matrix[member.username].append(perm) + + def get_form_kwargs(self): + """Set teams and permissions for the form""" + kwargs = super().get_form_kwargs() + kwargs["matrix"] = self.matrix + return kwargs + + def get_initial(self, *args, **kwargs): + """Populate the form with current permissions""" + initial = super().get_initial(*args, **kwargs) + # loop over users in the matrix + for username in self.matrix.keys(): + user_perms = self.team.approved_members.get( + username=username, + ).get_all_permissions() + # loop over perms and see if user has each + for perm in self.matrix[username]: + if f"camps.{self.team.slug}_team_{perm}" in user_perms: + # default to checked for new speakers + initial[f"{username}_{perm}"] = True + return initial + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["team"] = self.team + context["perms"] = settings.BORNHACK_TEAM_PERMISSIONS.keys() + return context + + def form_valid(self, form): + """Loop over the form fields and add/remove permissions as needed. + + Skipping fields "lead" and "member" as they are handled through memberships. + """ + # the perms that can be managed through this view + perms = [ + perm + for perm in settings.BORNHACK_TEAM_PERMISSIONS.keys() + if perm not in ["lead", "member"] + ] + # loop over perms and build a dict for use later + team_permissions = {} + permission_content_type = ContentType.objects.get_for_model(CampPermission) + for perm in perms: + team_permissions[perm] = Permission.objects.get( + content_type=permission_content_type, + codename=f"{self.team.slug}_team_{perm}", + ) + # loop over form fields + for field in form.cleaned_data.keys(): + username, perm = field.split("_") + if username not in self.matrix.keys(): + # no sneaking in new usernames + continue + if perm not in perms: + # no sneaking in unexpected perms + continue + if form.cleaned_data[field]: + self.team.members.get(username=username).user_permissions.add( + team_permissions[perm], + ) + else: + self.team.members.get(username=username).user_permissions.remove( + team_permissions[perm], + ) + messages.success( + self.request, + f"Updated team permissions for the {self.team.name} Team", + ) + return redirect( + reverse( + "backoffice:team_permission_manage", + kwargs={"camp_slug": self.camp.slug, "team_slug": self.team.slug}, + ), + ) + + +class PermissionByUserView(OrgaOrTeamLeadViewMixin, ListView): + model = User + template_name = "permissions_by_user.html" + + def get_queryset(self, *args, **kwargs): + qs = super().get_queryset(*args, **kwargs) + users = qs.filter(user_permissions__isnull=False) | qs.filter( + groups__permissions__isnull=False, + ) + return users.distinct() + + +class PermissionByPermissionView(OrgaOrTeamLeadViewMixin, ListView): + model = Permission + template_name = "permissions_by_permission.html" + + def get_queryset(self, *args, **kwargs): + qs = super().get_queryset(*args, **kwargs) + perms = [] + permission_content_type = ContentType.objects.get_for_model(CampPermission) + for perm in qs.filter(content_type=permission_content_type): + perms.append( + ( + perm, + User.objects.with_perm( + perm, + backend="django.contrib.auth.backends.ModelBackend", + ).exclude(is_superuser=True), + ), + ) + return perms diff --git a/src/backoffice/views/pos.py b/src/backoffice/views/pos.py index f726e5353..f11cd54a3 100644 --- a/src/backoffice/views/pos.py +++ b/src/backoffice/views/pos.py @@ -1,4 +1,5 @@ import json +from utils.mixins import TeamPosRequiredMixin import logging from django.contrib import messages @@ -18,7 +19,6 @@ from ..forms import PosSalesJSONForm from ..mixins import OrgaTeamPermissionMixin from ..mixins import PosViewMixin -from ..mixins import RaisePermissionRequiredMixin from camps.mixins import CampViewMixin from economy.filters import PosProductCostFilter from economy.filters import PosProductFilter @@ -41,10 +41,9 @@ logger = logging.getLogger("bornhack.%s" % __name__) -class PosListView(CampViewMixin, RaisePermissionRequiredMixin, ListView): - """Show a list of Pos this user has access to (through team memberships).""" +class PosListView(CampViewMixin, TeamPosRequiredMixin, ListView): + """Show a list of Pos this user has access to (through team pos permissions).""" - permission_required = "camps.backoffice_permission" model = Pos template_name = "pos_list.html" @@ -117,9 +116,7 @@ def get_context_data(self, **kwargs): camp=self.camp, name="Orga", ).approved_members.all() - context["form"].fields[ - "pos_responsible" - ].queryset = self.pos.team.responsible_members.all() + context["form"].fields["pos_responsible"].queryset = self.pos.team.leads.all() return context def form_valid(self, form): @@ -171,9 +168,7 @@ def get_context_data(self, **kwargs): camp=self.camp, name="Orga", ).approved_members.all() - context["form"].fields[ - "pos_responsible" - ].queryset = self.pos.team.responsible_members.all() + context["form"].fields["pos_responsible"].queryset = self.pos.team.leads.all() return context @@ -275,7 +270,7 @@ def setup(self, *args, **kwargs): class PosTransactionListView( CampViewMixin, - OrgaTeamPermissionMixin, + TeamPosRequiredMixin, SingleTableMixin, FilterView, ): @@ -311,7 +306,7 @@ def get_context_data(self, *args, **kwargs): class PosSaleListView( CampViewMixin, - OrgaTeamPermissionMixin, + TeamPosRequiredMixin, SingleTableMixin, FilterView, ): @@ -359,7 +354,7 @@ def form_valid(self, form): class PosProductListView( CampViewMixin, - OrgaTeamPermissionMixin, + TeamPosRequiredMixin, SingleTableMixin, FilterView, ): @@ -429,7 +424,7 @@ def get_context_data(self, **kwargs): class PosProductCostListView( CampViewMixin, - OrgaTeamPermissionMixin, + TeamPosRequiredMixin, SingleTableMixin, FilterView, ): diff --git a/src/bornhack/settings.py b/src/bornhack/settings.py index 1c11a159b..6c0279322 100644 --- a/src/bornhack/settings.py +++ b/src/bornhack/settings.py @@ -27,6 +27,7 @@ "django.contrib.staticfiles", "django.contrib.sites", "django.contrib.gis", + "colorfield", "channels", "corsheaders", "profiles", @@ -96,6 +97,7 @@ "django.contrib.messages.context_processors.messages", "shop.context_processors.current_order", "camps.context_processors.camp", + "utils.context_processors.is_volunteer", ], }, }, @@ -194,6 +196,8 @@ GRAPHENE = {"SCHEMA": "bornhack.schema.schema"} LEAFLET_CONFIG = { + "DEFAULT_CENTER": (55.38723, 9.94080), + "DEFAULT_ZOOM": 17, "PLUGINS": {"forms": {"auto-include": True}}, } @@ -229,3 +233,14 @@ TIME_FORMAT = "H:i" WEASYPRINT_BASEURL = "/" + +# all these permissions are created for each team, +# for example bar_team_lead, bar_team_member, etc. +BORNHACK_TEAM_PERMISSIONS = { + "lead": "Team lead - members and permissions management", + "member": "Team member", + "mapper": "Team mapper - layers and feature management", + "facilitator": "Team facilitator - facilities management", + "infopager": "Team infopager - infopage management", + "pos": "Team Pos - Point-of-sale report submission", +} diff --git a/src/bornhack/urls.py b/src/bornhack/urls.py index 8a2a5e3b4..30607a1d3 100644 --- a/src/bornhack/urls.py +++ b/src/bornhack/urls.py @@ -14,13 +14,16 @@ from contact.views import ContactView from feedback.views import FeedbackCreate from info.views import CampInfoView +from maps.views import MapView from people.views import PeopleView from sponsors.views import AllSponsorsView from sponsors.views import SponsorsView from villages.views import VillageCreateView from villages.views import VillageDeleteView from villages.views import VillageDetailView +from villages.views import VillageListGeoJSONView from villages.views import VillageListView +from villages.views import VillageMapView from villages.views import VillageUpdateView # require 2fa token entry (if enabled on admin account) when logging into /admin by using allauth login form @@ -145,6 +148,7 @@ path("info/", CampInfoView.as_view(), name="info"), path("program/", include("program.urls", namespace="program")), path("sponsors/", SponsorsView.as_view(), name="sponsors"), + path("map/", MapView.as_view(), name="maps_map"), path("bar/menu/", MenuView.as_view(), name="menu"), path( "villages/", @@ -156,6 +160,16 @@ VillageCreateView.as_view(), name="village_create", ), + path( + "geojson/", + VillageListGeoJSONView.as_view(), + name="villages_geojson", + ), + path( + "map/", + VillageMapView.as_view(), + name="villages_map", + ), path( "/delete/", VillageDeleteView.as_view(), diff --git a/src/camps/context_processors.py b/src/camps/context_processors.py index cc66670bc..971e67e54 100644 --- a/src/camps/context_processors.py +++ b/src/camps/context_processors.py @@ -3,19 +3,13 @@ def camp(request): """ - if we have a camp_slug url component then get the "current" Camp object. - Return it after adding the slug to request.session along with a "camps" - queryset containing all camps (used to build the menu and such) + If we have a camp in the request object add it to request.session and context. + Also add a "camps" queryset containing all camps (used to build the menu and such) """ - if request.resolver_match and "camp_slug" in request.resolver_match.kwargs: - try: - camp = Camp.objects.get(slug=request.resolver_match.kwargs["camp_slug"]) - request.session["campslug"] = camp.slug - except Camp.DoesNotExist: - request.session["campslug"] = None - camp = None + if hasattr(request, "camp"): + camp = request.camp + request.session["campslug"] = camp.slug else: request.session["campslug"] = None camp = None - return {"camps": Camp.objects.all().order_by("-camp"), "camp": camp} diff --git a/src/camps/middleware.py b/src/camps/middleware.py index 8a89db9c4..ebd673c23 100644 --- a/src/camps/middleware.py +++ b/src/camps/middleware.py @@ -1,17 +1,22 @@ +"""Add camp as an attribute on the request object.""" + from django.shortcuts import get_object_or_404 class RequestCampMiddleware: """Add camp as an attribute on the request object.""" - def __init__(self, get_response): + def __init__(self, get_response) -> None: + """Boilerplate.""" self.get_response = get_response def __call__(self, request): + """Boilerplate.""" response = self.get_response(request) return response - def process_view(self, request, view_func, view_args, view_kwargs): + def process_view(self, request, view_func, view_args, view_kwargs) -> None: + """Check url kwargs for a camp_slug and add camp to request object where relevant.""" from camps.models import Camp if ( diff --git a/src/camps/migrations/0037_alter_permission_options.py b/src/camps/migrations/0037_alter_permission_options.py new file mode 100644 index 000000000..26833e1f3 --- /dev/null +++ b/src/camps/migrations/0037_alter_permission_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.16 on 2024-09-23 06:46 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('camps', '0036_camp_economy_team'), + ] + + operations = [ + migrations.AlterModelOptions( + name='permission', + options={'default_permissions': (), 'managed': False, 'permissions': (('backoffice_permission', 'BackOffice access'), ('badgeteam_permission', 'Badge Team permissions set'), ('barteam_permission', 'Bar Team permissions set'), ('certteam_permission', 'CERT Team permissions set'), ('constructionteam_permission', 'Construction Team permissions set'), ('contentteam_permission', 'Content Team permissions set'), ('economyteam_permission', 'Economy Team permissions set'), ('foodareateam_permission', 'Foodarea Team permissions set'), ('gameteam_permission', 'Game Team permissions set'), ('infoteam_permission', 'Info Team permissions set'), ('lightteam_permission', 'Light Team permissions set'), ('logisticsteam_permission', 'Logistics Team permissions set'), ('metricsteam_permission', 'Metrics Team permissions set'), ('nocteam_permission', 'NOC Team permissions set'), ('orgateam_permission', 'Orga Team permissions set'), ('pocteam_permission', 'POC Team permissions set'), ('prteam_permission', 'PR Team permissions set'), ('phototeam_permission', 'Photo Team permissions set'), ('powerteam_permission', 'Power Team permissions set'), ('rocteam_permission', 'ROC Team permissions set'), ('sanitationteam_permission', 'Sanitation Team permissions set'), ('shuttleteam_permission', 'Shuttle Team permissions set'), ('sponsorsteam_permission', 'Sponsors Team permissions set'), ('sysadminteam_permission', 'Sysadmin Team permissions set'), ('videoteam_permission', 'Video Team permissions set'), ('websiteteam_permission', 'Website Team permissions set'), ('wellnessteam_permission', 'Wellness Team permissions set'), ('expense_create_permission', 'Expense Create permission'), ('revenue_create_permission', 'Revenue Create permission'), ('gisteam_permission', 'GIS Team permission set'), ('team_gis_permission', 'Permission to modify team GIS data'))}, + ), + ] diff --git a/src/camps/migrations/0038_alter_permission_options.py b/src/camps/migrations/0038_alter_permission_options.py new file mode 100644 index 000000000..ddc57299b --- /dev/null +++ b/src/camps/migrations/0038_alter_permission_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.16 on 2024-09-29 11:39 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('camps', '0037_alter_permission_options'), + ] + + operations = [ + migrations.AlterModelOptions( + name='permission', + options={'default_permissions': (), 'managed': False, 'permissions': (('expense_create_permission', 'Expense Create permission'), ('revenue_create_permission', 'Revenue Create permission'))}, + ), + ] diff --git a/src/camps/models.py b/src/camps/models.py index 33c2cd81b..2638261f2 100644 --- a/src/camps/models.py +++ b/src/camps/models.py @@ -25,33 +25,7 @@ class Meta: managed = False default_permissions = () permissions = ( - ("backoffice_permission", "BackOffice access"), - ("badgeteam_permission", "Badge Team permissions set"), - ("barteam_permission", "Bar Team permissions set"), - ("certteam_permission", "CERT Team permissions set"), - ("constructionteam_permission", "Construction Team permissions set"), - ("contentteam_permission", "Content Team permissions set"), - ("economyteam_permission", "Economy Team permissions set"), - ("foodareateam_permission", "Foodarea Team permissions set"), - ("gameteam_permission", "Game Team permissions set"), - ("infoteam_permission", "Info Team permissions set"), - ("lightteam_permission", "Light Team permissions set"), - ("logisticsteam_permission", "Logistics Team permissions set"), - ("metricsteam_permission", "Metrics Team permissions set"), - ("nocteam_permission", "NOC Team permissions set"), - ("orgateam_permission", "Orga Team permissions set"), - ("pocteam_permission", "POC Team permissions set"), - ("prteam_permission", "PR Team permissions set"), - ("phototeam_permission", "Photo Team permissions set"), - ("powerteam_permission", "Power Team permissions set"), - ("rocteam_permission", "ROC Team permissions set"), - ("sanitationteam_permission", "Sanitation Team permissions set"), - ("shuttleteam_permission", "Shuttle Team permissions set"), - ("sponsorsteam_permission", "Sponsors Team permissions set"), - ("sysadminteam_permission", "Sysadmin Team permissions set"), - ("videoteam_permission", "Video Team permissions set"), - ("websiteteam_permission", "Website Team permissions set"), - ("wellnessteam_permission", "Wellness Team permissions set"), + # economy ("expense_create_permission", "Expense Create permission"), ("revenue_create_permission", "Revenue Create permission"), ) diff --git a/src/economy/migrations/0041_alter_expense_responsible_team.py b/src/economy/migrations/0041_alter_expense_responsible_team.py new file mode 100644 index 000000000..7e2bfe6ee --- /dev/null +++ b/src/economy/migrations/0041_alter_expense_responsible_team.py @@ -0,0 +1,20 @@ +# Generated by Django 4.2.16 on 2024-09-28 09:06 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('teams', '0054_create_team_groups'), + ('economy', '0040_alter_posproduct_expenses'), + ] + + operations = [ + migrations.AlterField( + model_name='expense', + name='responsible_team', + field=models.ForeignKey(help_text='The team to which this Expense belongs. A team lead will need to approve the expense. When in doubt pick the Orga team.', on_delete=django.db.models.deletion.PROTECT, related_name='expenses', to='teams.team'), + ), + ] diff --git a/src/economy/models.py b/src/economy/models.py index 4687ef84a..e269f1940 100644 --- a/src/economy/models.py +++ b/src/economy/models.py @@ -387,7 +387,7 @@ class Expense(ExportModelOperationsMixin("expense"), CampRelatedModel, UUIDModel "teams.Team", on_delete=models.PROTECT, related_name="expenses", - help_text="The team to which this Expense belongs. A team responsible will need to approve the expense. When in doubt pick the Economy team.", + help_text="The team to which this Expense belongs. A team lead will need to approve the expense. When in doubt pick the Orga team.", ) approved = models.BooleanField( diff --git a/src/events/handler.py b/src/events/handler.py index 67a4db2f1..e853b0a55 100644 --- a/src/events/handler.py +++ b/src/events/handler.py @@ -88,7 +88,7 @@ def team_email_notification( ): """ Sends email notifications for events to team mailinglists (if possible, - otherwise directly to the team responsibles) + otherwise directly to the team leads) """ if not email_template or not email_formatdict or not eventtype.email_notification: # no email message found, or email notifications are not enabled for this event type @@ -98,8 +98,8 @@ def team_email_notification( # send notification to the team mailing list recipient_list = [team.mailing_list] else: - # no team mailinglist, send to the team responsibles instead - recipient_list = [resp.email for resp in team.responsible_members.all()] + # no team mailinglist, send to the team leads instead + recipient_list = [resp.email for resp in team.leads.all()] # TODO: actually send the email here logger.debug(f"sending test email to {recipient_list}") diff --git a/src/facilities/admin.py b/src/facilities/admin.py index 0372d5f1b..bab0ba22d 100644 --- a/src/facilities/admin.py +++ b/src/facilities/admin.py @@ -23,6 +23,7 @@ class FacilityTypeAdmin(admin.ModelAdmin): @admin.register(Facility) class FacilityAdmin(LeafletGeoAdmin): + display_raw = True save_as = True list_display = [ "name", diff --git a/src/facilities/mixins.py b/src/facilities/mixins.py index d539bd367..a90088e8e 100644 --- a/src/facilities/mixins.py +++ b/src/facilities/mixins.py @@ -1,4 +1,7 @@ +from django.core.exceptions import PermissionDenied +from django.contrib import messages from django.shortcuts import get_object_or_404 +from django.conf import settings from .models import Facility from .models import FacilityType @@ -24,20 +27,44 @@ def get_context_data(self, *args, **kwargs): return context -class FacilityViewMixin(FacilityTypeViewMixin): - """ - A mixin to get the Facility object based on facility_uuid in url kwargs - """ +class FacilityViewMixin(CampViewMixin): + """Mixin shared between views dealing with a facility.""" def setup(self, *args, **kwargs): + """Get facility from kwargs.""" super().setup(*args, **kwargs) - self.facility = get_object_or_404( - Facility, - facility_type=self.facility_type, - uuid=self.kwargs["facility_uuid"], - ) + self.facility = get_object_or_404(Facility, uuid=kwargs["facility_uuid"]) - def get_context_data(self, *args, **kwargs): - context = super().get_context_data(*args, **kwargs) + def get_form(self, *args, **kwargs): + """ + The default range widgets are a bit shit because they eat the help_text and + have no indication of which field is for what. So we add a nice placeholder. + """ + form = super().get_form(*args, **kwargs) + if "when" in form.fields: + form.fields["when"].widget.widgets[0].attrs = { + "placeholder": f"Open Date and Time (YYYY-MM-DD HH:MM). Active time zone is {settings.TIME_ZONE}.", + } + form.fields["when"].widget.widgets[1].attrs = { + "placeholder": f"Close Date and Time (YYYY-MM-DD HH:MM). Active time zone is {settings.TIME_ZONE}.", + } + return form + + def get_context_data(self, **kwargs): + """Add facility to context.""" + context = super().get_context_data(**kwargs) context["facility"] = self.facility return context + + +class FacilityFacilitatorViewMixin(FacilityViewMixin): + """Mixins for views only available to users with facilitator permission for the team responsible for the facility type.""" + + def setup(self, request, *args, **kwargs): + super().setup(request, *args, **kwargs) + if ( + self.facility.facility_type.responsible_team.facilitator_permission_set + not in request.user.get_all_permissions() + ): + messages.error(request, "No thanks") + raise PermissionDenied() diff --git a/src/facilities/templates/facility_detail.html b/src/facilities/templates/facility_detail.html index 23e9debf3..5725699a0 100644 --- a/src/facilities/templates/facility_detail.html +++ b/src/facilities/templates/facility_detail.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load leaflet_tags %} {% load static %} {% load commonmark %} @@ -6,10 +6,16 @@ {% block extra_head %} {% leaflet_css %} - - - - + + + + + + + + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block title %} @@ -84,17 +90,5 @@

Feedback QR Code

- - - - + {% endblock %} diff --git a/src/facilities/templates/facility_feedback.html b/src/facilities/templates/facility_feedback.html index 070d3a2f8..ef96db933 100644 --- a/src/facilities/templates/facility_feedback.html +++ b/src/facilities/templates/facility_feedback.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load bootstrap3 %} {% load bornhack %} diff --git a/src/facilities/templates/facility_list.html b/src/facilities/templates/facility_list.html index 3f13d211f..6a18114b6 100644 --- a/src/facilities/templates/facility_list.html +++ b/src/facilities/templates/facility_list.html @@ -1,13 +1,21 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load leaflet_tags %} {% load static %} {% block extra_head %} {% leaflet_css %} - - - - + + + + + + + + + + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block title %} @@ -45,25 +53,5 @@

Back to facility type list - - - - + {% endblock %} diff --git a/src/facilities/templates/facility_type_list.html b/src/facilities/templates/facility_type_list.html index 08f82146e..39148ebd2 100644 --- a/src/facilities/templates/facility_type_list.html +++ b/src/facilities/templates/facility_type_list.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load leaflet_tags %} {% load static %} @@ -8,10 +8,18 @@ {% block extra_head %} {% leaflet_css %} - - - - + + + + + + + + + + {{ mapData|json_script:"mapData" }} + + {% endblock extra_head %} {% block content %} @@ -36,27 +44,5 @@

- - - - + {% endblock %} diff --git a/src/facilities/urls.py b/src/facilities/urls.py index 3eace108c..609e87c31 100644 --- a/src/facilities/urls.py +++ b/src/facilities/urls.py @@ -3,6 +3,7 @@ from .views import FacilityDetailView from .views import FacilityFeedbackView +from .views import FacilityListGeoJSONView from .views import FacilityListView from .views import FacilityTypeListView @@ -14,6 +15,11 @@ include( [ path("", FacilityListView.as_view(), name="facility_list"), + path( + "geojson/", + FacilityListGeoJSONView.as_view(), + name="facility_list_geojson", + ), path( "/", include( diff --git a/src/facilities/views.py b/src/facilities/views.py index 04b76079d..ffb69ad93 100644 --- a/src/facilities/views.py +++ b/src/facilities/views.py @@ -1,10 +1,12 @@ from django import forms from django.contrib import messages from django.shortcuts import redirect +from django.templatetags.static import static from django.urls import reverse from django.views.generic import DetailView from django.views.generic import ListView from django.views.generic.edit import CreateView +from jsonview.views import JsonView from .mixins import FacilityTypeViewMixin from .mixins import FacilityViewMixin @@ -18,11 +20,95 @@ class FacilityTypeListView(CampViewMixin, ListView): model = FacilityType template_name = "facility_type_list.html" + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + "facilitytypeList": list(context["facilitytype_list"].values()), + } + for facility in context["mapData"]["facilitytypeList"]: + facility["url"] = reverse( + "facilities:facility_list_geojson", + kwargs={ + "camp_slug": self.camp.slug, + "facility_type_slug": facility["slug"], + }, + ) + return context + + +class FacilityListGeoJSONView(CampViewMixin, JsonView): + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["type"] = "FeatureCollection" + context["features"] = self.dump_features() + return context + + def dump_features(self) -> list[object]: + output = [] + for ft in FacilityType.objects.filter( + responsible_team__camp=self.camp, + slug=self.kwargs["facility_type_slug"], + ): + for facility in Facility.objects.filter(facility_type=ft.pk): + entry = { + "type": "Feature", + "id": facility.pk, + "geometry": { + "type": "Point", + "coordinates": [facility.location.x, facility.location.y], + }, + "properties": { + "name": facility.name, + "marker": facility.facility_type.marker, + "icon": facility.facility_type.icon, + "description": facility.description, + "team": facility.facility_type.responsible_team.name, + "uuid": facility.uuid, + "type": ft.name, + "detail_url": reverse( + "facilities:facility_detail", + kwargs={ + "camp_slug": facility.camp.slug, + "facility_type_slug": facility.facility_type.slug, + "facility_uuid": facility.uuid, + }, + ), + "feedback_url": reverse( + "facilities:facility_feedback", + kwargs={ + "camp_slug": facility.camp.slug, + "facility_type_slug": facility.facility_type.slug, + "facility_uuid": facility.uuid, + }, + ), + }, + } + output.append(entry) + return list(output) + class FacilityListView(FacilityTypeViewMixin, ListView): model = Facility template_name = "facility_list.html" + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + "name": context["facilitytype"].name, + "url": reverse( + "facilities:facility_list_geojson", + kwargs={ + "camp_slug": context["facilitytype"].responsible_team.camp.slug, + "facility_type_slug": context["facilitytype"].slug, + }, + ), + } + return context + def get_queryset(self, *args, **kwargs): qs = super().get_queryset(*args, **kwargs) return qs.filter(facility_type=self.facility_type) @@ -33,6 +119,29 @@ class FacilityDetailView(FacilityTypeViewMixin, DetailView): template_name = "facility_detail.html" pk_url_kwarg = "facility_uuid" + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["mapData"] = { + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + "name": context["facility"].name, + "description": context["facility"].description, + "team": context["facility"].facility_type.responsible_team.name, + "icon": context["facility"].facility_type.icon, + "marker": context["facility"].facility_type.marker, + "x": context["facility"].location.x, + "y": context["facility"].location.y, + "feedbackUrl": reverse( + "facilities:facility_feedback", + kwargs={ + "camp_slug": context["facility"].camp.slug, + "facility_type_slug": context["facilitytype"].slug, + "facility_uuid": context["facility"].uuid, + }, + ), + } + return context + def get_queryset(self, *args, **kwargs): qs = super().get_queryset(*args, **kwargs) return qs.prefetch_related("opening_hours") diff --git a/src/info/admin.py b/src/info/admin.py index 37fcb989a..e6cb43620 100644 --- a/src/info/admin.py +++ b/src/info/admin.py @@ -22,6 +22,6 @@ class InfoItemInlineAdmin(admin.StackedInline): class InfoCategoryAdmin(admin.ModelAdmin): save_as = True list_filter = ["team__camp"] - list_display = ["headline"] + list_display = ["headline", "team"] search_fields = ["headline", "body"] inlines = [InfoItemInlineAdmin] diff --git a/src/info/templates/info.html b/src/info/templates/info.html index cd3e935ec..91688e3c1 100644 --- a/src/info/templates/info.html +++ b/src/info/templates/info.html @@ -59,7 +59,7 @@

{{ item.headline }} - {% if request.user in category.team.responsible_members.all %} + {% if category.team.infopager_permission_set in perms %} Edit diff --git a/src/maps/admin.py b/src/maps/admin.py new file mode 100644 index 000000000..f4b5c1009 --- /dev/null +++ b/src/maps/admin.py @@ -0,0 +1,42 @@ +from django.contrib import admin +from leaflet.admin import LeafletGeoAdmin + +from .models import ExternalLayer +from .models import Feature +from .models import Group +from .models import Layer + + +@admin.register(Feature) +class FeatureAdmin(LeafletGeoAdmin, admin.ModelAdmin): + display_raw = True + save_as = True + list_display = [ + "name", + "description", + ] + list_filter = [ + "layer", + ] + + def get_queryset(self, request): + self.request = request + return super().get_queryset(request) + + +@admin.register(Layer) +class LayerAdmin(admin.ModelAdmin): + save_as = True + list_display = ["name", "slug"] + + +@admin.register(ExternalLayer) +class ExternalLayerAdmin(admin.ModelAdmin): + save_as = True + list_display = ["name"] + + +@admin.register(Group) +class GroupAdmin(admin.ModelAdmin): + save_as = True + list_display = ["name"] diff --git a/src/maps/migrations/0001_initial.py b/src/maps/migrations/0001_initial.py new file mode 100644 index 000000000..0166502de --- /dev/null +++ b/src/maps/migrations/0001_initial.py @@ -0,0 +1,79 @@ +# Generated by Django 4.2.16 on 2024-09-23 06:02 + +import colorfield.fields +import django.contrib.gis.db.models.fields +from django.db import migrations, models +import django.db.models.deletion +import django_prometheus.models +import uuid + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('teams', '0052_team_permission_set'), + ] + + operations = [ + migrations.CreateModel( + name='Group', + fields=[ + ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), + ('name', models.CharField(help_text='Name or description of this group', max_length=100)), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='Layer', + fields=[ + ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), + ('name', models.CharField(help_text='Name or description of this layer', max_length=100)), + ('slug', models.SlugField(blank=True, help_text='The url slug for this layer. Leave blank to autogenerate one.', unique=True)), + ('description', models.TextField(help_text='Description of this layer')), + ('icon', models.CharField(blank=True, default='list', help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.", max_length=100)), + ('invisible', models.BooleanField(default=False, help_text='Is the layer invisible in the map view?')), + ('group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='layers', to='maps.group')), + ('responsible_team', models.ForeignKey(blank=True, help_text='The Team responsible for this Layer.', null=True, on_delete=django.db.models.deletion.PROTECT, to='teams.team')), + ], + options={ + 'abstract': False, + }, + bases=(django_prometheus.models.ExportModelOperationsMixin('layer'), models.Model), + ), + migrations.CreateModel( + name='Feature', + fields=[ + ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), + ('name', models.CharField(help_text='Name or description of this feature', max_length=100)), + ('description', models.TextField(help_text='Description of this feature')), + ('geom', django.contrib.gis.db.models.fields.GeometryCollectionField(help_text='Geometric data', srid=4326)), + ('color', colorfield.fields.ColorField(default='#FFFFFFFF', image_field=None, max_length=25, samples=None)), + ('icon', models.CharField(blank=True, default='list', help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.", max_length=100)), + ('url', models.URLField(blank=True)), + ('topic', models.CharField(blank=True, help_text='Name of the topic to update this feature', max_length=200)), + ('processing', models.CharField(blank=True, help_text='Name of javascript function call for processing data from the topic', max_length=100)), + ('layer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='features', to='maps.layer')), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='ExternalLayer', + fields=[ + ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), + ('name', models.CharField(help_text='Name or description of this layer', max_length=100)), + ('slug', models.SlugField(blank=True, help_text='The url slug for this layer. Leave blank to autogenerate one.', unique=True)), + ('description', models.TextField(help_text='Description of this layer')), + ('url', models.URLField(help_text='URL of the GEOJSON layer', max_length=255)), + ('responsible_team', models.ForeignKey(blank=True, help_text='The Team responsible for this Layer.', null=True, on_delete=django.db.models.deletion.PROTECT, to='teams.team')), + ], + options={ + 'abstract': False, + }, + ), + ] diff --git a/src/maps/migrations/0002_feature_layer_and_name_uniq.py b/src/maps/migrations/0002_feature_layer_and_name_uniq.py new file mode 100644 index 000000000..331f56235 --- /dev/null +++ b/src/maps/migrations/0002_feature_layer_and_name_uniq.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.16 on 2024-09-25 15:30 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('maps', '0001_initial'), + ] + + operations = [ + migrations.AddConstraint( + model_name='feature', + constraint=models.UniqueConstraint(fields=('layer', 'name'), name='layer_and_name_uniq'), + ), + ] diff --git a/src/maps/migrations/0003_alter_feature_color_alter_feature_icon.py b/src/maps/migrations/0003_alter_feature_color_alter_feature_icon.py new file mode 100644 index 000000000..fcf0fb777 --- /dev/null +++ b/src/maps/migrations/0003_alter_feature_color_alter_feature_icon.py @@ -0,0 +1,24 @@ +# Generated by Django 4.2.16 on 2024-09-25 18:31 + +import colorfield.fields +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('maps', '0002_feature_layer_and_name_uniq'), + ] + + operations = [ + migrations.AlterField( + model_name='feature', + name='color', + field=colorfield.fields.ColorField(default='#000000FF', image_field=None, max_length=25, samples=None), + ), + migrations.AlterField( + model_name='feature', + name='icon', + field=models.CharField(blank=True, default='fab fa-list', help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.", max_length=100), + ), + ] diff --git a/src/maps/mixins.py b/src/maps/mixins.py new file mode 100644 index 000000000..ea7cdca6f --- /dev/null +++ b/src/maps/mixins.py @@ -0,0 +1,63 @@ +from django.core.exceptions import PermissionDenied +from django.contrib import messages +from django.shortcuts import get_object_or_404 + +from .models import Layer +from .models import ExternalLayer +from camps.mixins import CampViewMixin + + +class LayerViewMixin: + """A mixin to get the Layer object based on layer_slug in url kwargs.""" + + def setup(self, *args, **kwargs): + super().setup(*args, **kwargs) + self.layer = get_object_or_404(Layer, slug=self.kwargs["layer_slug"]) + + def get_context_data(self, *args, **kwargs): + context = super().get_context_data(*args, **kwargs) + context["layer"] = self.layer + return context + + +class LayerMapperViewMixin(LayerViewMixin): + """A mixin for views only available to users with mapper permission for the team responsible for the layer and/or Mapper team permission.""" + + def setup(self, request, *args, **kwargs): + super().setup(request, *args, **kwargs) + if ( + self.layer.responsible_team + and self.layer.responsible_team.mapper_permission_set + in request.user.get_all_permissions() + ) or self.request.user.has_perm("camps.gis_team_member"): + return + else: + messages.error(request, "No thanks") + raise PermissionDenied() + + +class ExternalLayerViewMixin(CampViewMixin): + """A mixin to get the ExternalLayer object based on external_layer_uuid in url kwargs.""" + + def setup(self, *args, **kwargs): + super().setup(*args, **kwargs) + self.layer = get_object_or_404( + ExternalLayer, + slug=self.kwargs["external_layer_uuid"], + ) + + +class ExternalLayerMapperViewMixin(ExternalLayerViewMixin): + """A mixin for views only available to users with mapper permission for the team responsible for the layer and/or Mapper team permission.""" + + def setup(self, request, *args, **kwargs): + super().setup(request, *args, **kwargs) + if ( + self.layer.responsible_team + and self.layer.responsible_team.mapper_permission_set + in request.user.get_all_permissions() + ) or self.request.user.has_perm("camps.gis_team_member"): + return + else: + messages.error(request, "No thanks") + raise PermissionDenied() diff --git a/src/maps/models.py b/src/maps/models.py new file mode 100644 index 000000000..321e0a643 --- /dev/null +++ b/src/maps/models.py @@ -0,0 +1,191 @@ +import logging + +from colorfield.fields import ColorField +from django.contrib.gis.db.models import GeometryCollectionField +from django.db import models +from django_prometheus.models import ExportModelOperationsMixin + +from utils.models import UUIDModel +from utils.slugs import unique_slugify + +logger = logging.getLogger("bornhack.%s" % __name__) + + +class Group(UUIDModel): + """A group of Layers.""" + + name = models.CharField( + max_length=100, + help_text="Name or description of this group", + ) + + def __str__(self): + return str(self.name) + + +class Layer(ExportModelOperationsMixin("layer"), UUIDModel): + """ + Layers are groups of Features + """ + + name = models.CharField( + max_length=100, + help_text="Name or description of this layer", + ) + + slug = models.SlugField( + blank=True, + unique=True, + help_text="The url slug for this layer. Leave blank to autogenerate one.", + ) + + description = models.TextField(help_text="Description of this layer") + + icon = models.CharField( + max_length=100, + default="list", + blank=True, + help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.", + ) + + invisible = models.BooleanField( + default=False, + help_text="Is the layer invisible in the map view?", + ) + + group = models.ForeignKey( + Group, + on_delete=models.CASCADE, + related_name="layers", + ) + + responsible_team = models.ForeignKey( + "teams.Team", + on_delete=models.PROTECT, + help_text="The Team responsible for this Layer.", + null=True, + blank=True, + ) + + @property + def camp(self): + return self.responsible_team.camp + + def __str__(self): + return str(self.name) + + def save(self, **kwargs): + self.slug = unique_slugify( + str(self.name), + slugs_in_use=self.__class__.objects.all().values_list( + "slug", + flat=True, + ), + ) + super().save(**kwargs) + + +class Feature(UUIDModel): + """ + Features are elements to put on a map which can consist of polygons, lines, points, etc. + """ + + name = models.CharField( + max_length=100, + help_text="Name or description of this feature", + ) + + description = models.TextField(help_text="Description of this feature") + + geom = GeometryCollectionField( + help_text="Geometric data", + ) + + color = ColorField(format="hexa", default="#000000FF") + + icon = models.CharField( + max_length=100, + default="fab fa-list", + blank=True, + help_text="Name of the fontawesome icon to use, including the 'fab fa-' or 'fas fa-' part.", + ) + + url = models.URLField(blank=True) + + topic = models.CharField( + max_length=200, + help_text="Name of the topic to update this feature", + blank=True, + ) + + processing = models.CharField( + max_length=100, + help_text="Name of javascript function call for processing data from the topic", + blank=True, + ) + + layer = models.ForeignKey( + Layer, + on_delete=models.CASCADE, + related_name="features", + ) + + class Meta: + constraints = [ + models.UniqueConstraint( + fields=["layer", "name"], + name="layer_and_name_uniq", + ), + ] + + def __str__(self): + return str(self.name) + + @property + def camp(self): + return self.layer.team.camp + + +class ExternalLayer(UUIDModel): + name = models.CharField( + max_length=100, + help_text="Name or description of this layer", + ) + + slug = models.SlugField( + blank=True, + unique=True, + help_text="The url slug for this layer. Leave blank to autogenerate one.", + ) + + description = models.TextField(help_text="Description of this layer") + + url = models.URLField( + max_length=255, + help_text="URL of the GEOJSON layer", + ) + + responsible_team = models.ForeignKey( + "teams.Team", + on_delete=models.PROTECT, + help_text="The Team responsible for this Layer.", + null=True, + blank=True, + ) + + @property + def camp(self): + return self.responsible_team.camp + + def __str__(self): + return str(self.name) + + def save(self, **kwargs): + self.slug = unique_slugify( + str(self.name), + slugs_in_use=self.__class__.objects.all().values_list( + "slug", + flat=True, + ), + ) + super().save(**kwargs) diff --git a/src/maps/templates/maps_map.html b/src/maps/templates/maps_map.html new file mode 100644 index 000000000..ad084818d --- /dev/null +++ b/src/maps/templates/maps_map.html @@ -0,0 +1,37 @@ +{% extends 'base.html' %} +{% load leaflet_tags %} +{% load static %} + +{% block title %} + Map | {{ block.super }} +{% endblock %} + +{% block extra_head %} + {% leaflet_css %} + + + + + + + + + + + + {{ mapData|json_script:"mapData" }} + + + +{% endblock extra_head %} + +{% block content %} +
+
+

Map

+
+
+
+
+ +{% endblock %} diff --git a/src/maps/templates/marker.svg b/src/maps/templates/marker.svg new file mode 100644 index 000000000..165c56795 --- /dev/null +++ b/src/maps/templates/marker.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/src/maps/urls.py b/src/maps/urls.py index 81a62a5a7..aba7ed3e5 100644 --- a/src/maps/urls.py +++ b/src/maps/urls.py @@ -1,9 +1,24 @@ +from django.urls import include +from django.urls import path from django.urls import re_path +from .views import LayerGeoJSONView +from .views import MapMarkerView from .views import MapProxyView +from .views import MapView app_name = "maps" urlpatterns = [ + path("map/", MapView.as_view(), name="map"), + path("marker//", MapMarkerView.as_view(), name="marker"), + path( + "/", + include( + [ + path("geojson/", LayerGeoJSONView.as_view(), name="map_layer_geojson"), + ], + ), + ), re_path("kfproxy/(?P.*)", MapProxyView.as_view(), name="proxy"), ] diff --git a/src/maps/views.py b/src/maps/views.py index f6df7dc01..4ea35e3c8 100644 --- a/src/maps/views.py +++ b/src/maps/views.py @@ -1,12 +1,28 @@ +import json import logging import re import requests from django.conf import settings from django.core.exceptions import PermissionDenied +from django.core.serializers import serialize +from django.db.models import Q from django.http import HttpResponse +from django.templatetags.static import static +from django.urls import reverse from django.views.generic import View - +from django.views.generic.base import TemplateView +from jsonview.views import JsonView +from PIL import ImageColor + +from .mixins import LayerViewMixin +from .models import ExternalLayer +from .models import Feature +from .models import Layer +from camps.mixins import CampViewMixin +from facilities.models import FacilityType +from utils.color import adjust_color +from utils.color import is_dark logger = logging.getLogger("bornhack.%s" % __name__) @@ -15,6 +31,123 @@ class MissingCredentials(Exception): pass +class MapMarkerView(TemplateView): + """ + View for generating the coloured marker + """ + + template_name = "marker.svg" + + @property + def color(self): + return ImageColor.getrgb("#" + self.kwargs["color"]) + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["stroke1"] = self.color + context["stroke0"] = ( + adjust_color(self.color, -0.4) + if is_dark(self.color) + else adjust_color(self.color) + ) + context["fill0"] = ( + adjust_color(self.color, -0.4) + if is_dark(self.color) + else adjust_color(self.color) + ) + context["fill1"] = self.color + return context + + def render_to_response(self, context, **kwargs): + return super().render_to_response( + context, + content_type="image/svg+xml", + **kwargs, + ) + + +class MapView(CampViewMixin, TemplateView): + """ + Global map view + """ + + template_name = "maps_map.html" + context_object_name = "maps_map" + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context["facilitytype_list"] = FacilityType.objects.filter( + responsible_team__camp=self.camp, + ) + context["layers"] = Layer.objects.filter( + Q(responsible_team__camp=self.camp) | Q(responsible_team=None), + ) + context["externalLayers"] = ExternalLayer.objects.filter( + Q(responsible_team__camp=self.camp) | Q(responsible_team=None), + ) + context["mapData"] = { + "facilitytype_list": list(context["facilitytype_list"].values()), + "layers": list( + context["layers"].values( + "description", + "name", + "slug", + "uuid", + "icon", + "invisible", + "group__name", + ), + ), + "externalLayers": list(context["externalLayers"].values()), + "villages": reverse( + "villages_geojson", + kwargs={"camp_slug": self.camp.slug}, + ), + "loggedIn": self.request.user.is_authenticated, + "grid": static("json/grid.geojson"), + } + for facility in context["mapData"]["facilitytype_list"]: + facility["url"] = reverse( + "facilities:facility_list_geojson", + kwargs={ + "camp_slug": self.camp.slug, + "facility_type_slug": facility["slug"], + }, + ) + for layer in context["mapData"]["layers"]: + layer["url"] = reverse( + "maps:map_layer_geojson", + kwargs={"layer_slug": layer["slug"]}, + ) + return context + + +class LayerGeoJSONView(LayerViewMixin, JsonView): + """ + GeoJSON export view + """ + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + context = json.loads( + serialize( + "geojson", + Feature.objects.filter(layer=self.layer.uuid), + geometry_field="geom", + fields=[ + "name", + "description", + "color", + "url", + "icon", + "topic", + "processing", + ], + ), + ) + return context + + class MapProxyView(View): """ Proxy for Datafordeler map service. Created so we can show maps without @@ -24,6 +157,7 @@ class MapProxyView(View): PROXY_URL = "/maps/kfproxy" VALID_ENDPOINTS = [ "/GeoDanmarkOrto/orto_foraar_wmts/1.0.0/WMTS", + "/GeoDanmarkOrto/orto_foraar/1.0.0/WMS", "/Dkskaermkort/topo_skaermkort/1.0.0/wms", "/DHMNedboer/dhm/1.0.0/wms", ] diff --git a/src/people/templates/people.html b/src/people/templates/people.html index c4fb228cc..2f57ed67a 100644 --- a/src/people/templates/people.html +++ b/src/people/templates/people.html @@ -21,7 +21,7 @@

The People of BornHack

Team Name - Team Responsible + Team Leads Team Members @@ -32,7 +32,7 @@

The People of BornHack

{{ team.name }} Team - {% for resp in team.responsible_members.all %} + {% for resp in team.leads.all %} {{ resp.profile.get_public_credit_name }}
{% endfor %} diff --git a/src/phonebook/templates/dectregistration_form.html b/src/phonebook/templates/dectregistration_form.html index a8be5e829..676e23904 100644 --- a/src/phonebook/templates/dectregistration_form.html +++ b/src/phonebook/templates/dectregistration_form.html @@ -1,4 +1,4 @@ -{% extends 'program_base.html' %} +{% extends 'base.html' %} {% load bootstrap3 %} {% block title %} diff --git a/src/phonebook/views.py b/src/phonebook/views.py index 1a48c1623..092e4395a 100644 --- a/src/phonebook/views.py +++ b/src/phonebook/views.py @@ -35,7 +35,7 @@ class DectExportJsonView( def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) team = Team.objects.get(name="POC", camp=self.camp) - poc = self.request.user in team.responsible_members + poc = self.request.user in team.leads context["phonebook"] = self.dump_phonebook(poc=poc) return context diff --git a/src/profiles/migrations/0011_alter_profile_name.py b/src/profiles/migrations/0011_alter_profile_name.py new file mode 100644 index 000000000..0f96b9541 --- /dev/null +++ b/src/profiles/migrations/0011_alter_profile_name.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.16 on 2024-09-28 09:06 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('profiles', '0010_auto_20180411_2305'), + ] + + operations = [ + migrations.AlterField( + model_name='profile', + name='name', + field=models.CharField(blank=True, default='', help_text='Your name or handle (only visible to team leads and orga)', max_length=200), + ), + ] diff --git a/src/profiles/models.py b/src/profiles/models.py index 083c0dae1..f3a868c46 100644 --- a/src/profiles/models.py +++ b/src/profiles/models.py @@ -23,7 +23,7 @@ class Meta: max_length=200, default="", blank=True, - help_text="Your name or handle (only visible to team responsible and organisers)", + help_text="Your name or handle (only visible to team leads and orga)", ) description = models.TextField( diff --git a/src/profiles/templates/permission_list.html b/src/profiles/templates/permission_list.html new file mode 100644 index 000000000..0141099e7 --- /dev/null +++ b/src/profiles/templates/permission_list.html @@ -0,0 +1,30 @@ +{% extends 'profile_base.html' %} + +{% block title %} + Your permissions | {{ block.super }} +{% endblock %} + +{% block profile_content %} +
+
+

Your permissions

+
+
+

This table shows all permissions for your BornHack user {{ request.user.username }}.

+

Permissions come from team memberships or they can be assigned directly to your user. Additional permissions can be granted by a team lead or orga member.

+ {% if request.user.is_superuser %}

Note: Your account is a superuser account so you have all possible permissions in the system. Orga responsibly! <3

{% endif %} + + + + + + {% for perm in permissions %} + + + + + {% endfor %} +
CodenameDescription
{{ perm.content_type.app_label }}.{{ perm.codename }}{{ perm.name }}
+
+
+{% endblock profile_content %} diff --git a/src/profiles/templates/profile_base.html b/src/profiles/templates/profile_base.html index 99c60edf5..7873aa266 100644 --- a/src/profiles/templates/profile_base.html +++ b/src/profiles/templates/profile_base.html @@ -83,10 +83,18 @@

Your BornHack Account

-
-

You are logged in as {{ request.user.email }}

- + {% url 'profiles:permissions_list' as profile_permissions_url %} +
  • + + Permissions + +
  • + +
    + +

    You are logged in as username {{ request.user.username }} with email {{ request.user.email }}

    +
    diff --git a/src/profiles/templates/profile_detail.html b/src/profiles/templates/profile_detail.html index bc312129b..b5054cf9f 100644 --- a/src/profiles/templates/profile_detail.html +++ b/src/profiles/templates/profile_detail.html @@ -12,7 +12,7 @@

    Attention!

    You have not written anything in your "description".

    - If you intend to join one or more teams you can use the profile to help the team responsible understand who you are and what you have to offer. Please also include availability if you are not joining us for the entire week. + If you intend to join one or more teams you can use the profile to help the team leads understand who you are and what you have to offer. Please also include availability if you are not joining us for the entire week.

    {% endif %} diff --git a/src/profiles/urls.py b/src/profiles/urls.py index 36347197b..d3bc8c5c0 100644 --- a/src/profiles/urls.py +++ b/src/profiles/urls.py @@ -3,10 +3,12 @@ from .views import ProfileApiView from .views import ProfileDetail from .views import ProfileUpdate +from .views import ProfilePermissionList app_name = "profiles" urlpatterns = [ path("", ProfileDetail.as_view(), name="detail"), path("edit/", ProfileUpdate.as_view(), name="update"), path("api/", ProfileApiView.as_view(), name="api"), + path("permissions/", ProfilePermissionList.as_view(), name="permissions_list"), ] diff --git a/src/profiles/views.py b/src/profiles/views.py index ead578568..b7e083d09 100644 --- a/src/profiles/views.py +++ b/src/profiles/views.py @@ -1,31 +1,34 @@ +from django.db.models import Q from django.contrib import messages +from django.contrib.auth.models import Permission from django.contrib.auth.mixins import LoginRequiredMixin from django.urls import reverse_lazy from django.views.generic import DetailView +from django.views.generic import ListView from django.views.generic import UpdateView from jsonview.views import JsonView from oauth2_provider.views.generic import ScopedProtectedResourceView -from . import models +from .models import Profile class ProfileDetail(LoginRequiredMixin, DetailView): - model = models.Profile + model = Profile template_name = "profile_detail.html" active_menu = "profile" def get_object(self, queryset=None): - return models.Profile.objects.get(user=self.request.user) + return Profile.objects.get(user=self.request.user) class ProfileUpdate(LoginRequiredMixin, UpdateView): - model = models.Profile + model = Profile fields = ["name", "description", "public_credit_name", "nickserv_username"] success_url = reverse_lazy("profiles:detail") template_name = "profile_form.html" def get_object(self, queryset=None): - return models.Profile.objects.get(user=self.request.user) + return Profile.objects.get(user=self.request.user) def form_valid(self, form, **kwargs): if ( @@ -57,3 +60,24 @@ def get_context_data(self, **kwargs): for team in self.request.user.teams.all() ] return context + + +class ProfilePermissionList(LoginRequiredMixin, ListView): + model = Permission + template_name = "permission_list.html" + context_object_name = "permissions" + + def get_queryset(self, *args, **kwargs): + perms = self.request.user.get_all_permissions() + query = Q() + for perm in perms: + app_label, codename = perm.split(".") + query |= Q(content_type__app_label=app_label, codename=codename) + perms = ( + Permission.objects.filter(content_type__app_label="camps") + .filter(query) + .exclude( + codename__in=["add_camp", "change_camp", "delete_camp", "view_camp"], + ) + ) + return perms diff --git a/src/requirements/production.txt b/src/requirements/production.txt index cc4dedd2a..35094ee79 100644 --- a/src/requirements/production.txt +++ b/src/requirements/production.txt @@ -19,6 +19,7 @@ django-prometheus==2.3.1 django-reversion==5.0.12 django-tables2==2.7.0 django-taggit==5.0.1 +django-colorfield==0.11.0 future==1.0.0 html5lib==1.1 icalendar==5.0.12 diff --git a/src/shop/tests.py b/src/shop/tests.py index 05cfbb325..e9c294373 100644 --- a/src/shop/tests.py +++ b/src/shop/tests.py @@ -1,4 +1,5 @@ from typing import Optional +from django.contrib.contenttypes.models import ContentType from django.contrib.auth.models import Permission from django.contrib.auth.models import User @@ -18,12 +19,15 @@ from .models import RefundEnum from camps.factories import CampFactory from camps.models import Camp +from camps.models import Permission as CampPermission from economy.factories import PosFactory from shop.forms import OrderProductRelationForm from tickets.factories import TicketTypeFactory from tickets.models import ShopTicket from tickets.models import TicketGroup from utils.factories import UserFactory +from teams.models import Team +from teams.models import TeamMember class ProductAvailabilityTest(TestCase): @@ -582,12 +586,20 @@ class TestRefund(TestCase): def setUpTestData(cls): cls.user = UserFactory() cls.info_user = UserFactory(username="info") - backoffice_permission = Permission.objects.get(codename="backoffice_permission") - infoteam_permission = Permission.objects.get(codename="infoteam_permission") - cls.info_user.user_permissions.set([backoffice_permission, infoteam_permission]) cls.camp = CampFactory() - + infoteam = Team.objects.create( + name="Info", + description="Info team", + camp=cls.camp, + ) + permission_content_type = ContentType.objects.get_for_model(CampPermission) + permission = Permission.objects.get( + content_type=permission_content_type, + codename="info_team_member", + ) + infoteam.group.permissions.add(permission) + TeamMember.objects.create(user=cls.info_user, team=infoteam, approved=True) cls.bundle_product = ProductFactory() cls.sub_product = ProductFactory(ticket_type=TicketTypeFactory()) SubProductRelationFactory( diff --git a/src/static_src/css/bornhack.css b/src/static_src/css/bornhack.css index bf9504fce..b0c5c7f40 100644 --- a/src/static_src/css/bornhack.css +++ b/src/static_src/css/bornhack.css @@ -15,6 +15,7 @@ a, a:active, a:focus { /* Z-index */ /* Bootstrap values .dropdown-backdrop { z-index: 990; } +.dropdown-menu { z-index: 990; } .navbar-static-top, .dropdown-menu { z-index: 1000; } .navbar-fixed-top, .navbar-fixed-bottom { z-index: 1030; } .modal-backdrop { z-index: 1040; } @@ -348,7 +349,7 @@ body.bar-menu { /* hide map in forms until we can show a real leaflet map */ div #id_location-map { - display: none; + display: block; } diff --git a/src/static_src/css/leaflet.awesome-markers.css b/src/static_src/css/leaflet.awesome-markers.css new file mode 100644 index 000000000..37725c34e --- /dev/null +++ b/src/static_src/css/leaflet.awesome-markers.css @@ -0,0 +1,124 @@ +/* +Author: L. Voogdt +License: MIT +Version: 1.0 +*/ + +/* Marker setup */ +.awesome-marker { + background: url('../images/markers-soft.png') no-repeat 0 0; + width: 35px; + height: 46px; + position:absolute; + left:0; + top:0; + display: block; + text-align: center; +} + +.awesome-marker-shadow { + background: url('../images/markers-shadow.png') no-repeat 0 0; + width: 36px; + height: 16px; +} + +/* Retina displays */ +@media (min--moz-device-pixel-ratio: 1.5),(-o-min-device-pixel-ratio: 3/2), +(-webkit-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5),(min-resolution: 1.5dppx) { + .awesome-marker { + background-image: url('../images/markers-soft@2x.png'); + background-size: 720px 46px; + } + .awesome-marker-shadow { + background-image: url('../images/markers-shadow@2x.png'); + background-size: 35px 16px; + } +} + +.awesome-marker i { + color: #333; + margin-top: 10px; + display: inline-block; + font-size: 14px; +} + +.awesome-marker .icon-white { + color: #fff; +} + +/* Colors */ +.awesome-marker-icon-red { + background-position: 0 0; +} + +.awesome-marker-icon-darkred { + background-position: -180px 0; +} + +.awesome-marker-icon-lightred { + background-position: -360px 0; +} + +.awesome-marker-icon-orange { + background-position: -36px 0; +} + +.awesome-marker-icon-beige { + background-position: -396px 0; +} + +.awesome-marker-icon-green { + background-position: -72px 0; +} + +.awesome-marker-icon-darkgreen { + background-position: -252px 0; +} + +.awesome-marker-icon-lightgreen { + background-position: -432px 0; +} + +.awesome-marker-icon-blue { + background-position: -108px 0; +} + +.awesome-marker-icon-darkblue { + background-position: -216px 0; +} + +.awesome-marker-icon-lightblue { + background-position: -468px 0; +} + +.awesome-marker-icon-purple { + background-position: -144px 0; +} + +.awesome-marker-icon-darkpurple { + background-position: -288px 0; +} + +.awesome-marker-icon-pink { + background-position: -504px 0; +} + +.awesome-marker-icon-cadetblue { + background-position: -324px 0; +} + +.awesome-marker-icon-white { + background-position: -574px 0; +} + +.awesome-marker-icon-gray { + background-position: -648px 0; +} + +.awesome-marker-icon-lightgray { + background-position: -612px 0; +} + +.awesome-marker-icon-black { + background-position: -682px 0; +} diff --git a/src/static_src/css/leaflet.css b/src/static_src/css/leaflet.css index dea175f0f..76139d234 100644 --- a/src/static_src/css/leaflet.css +++ b/src/static_src/css/leaflet.css @@ -87,7 +87,7 @@ .leaflet-top, .leaflet-bottom { position: absolute; - z-index: 1000; + z-index: 800; pointer-events: none; } .leaflet-top { @@ -271,117 +271,6 @@ } -/* layers control */ - -.leaflet-control-layers { - box-shadow: 0 1px 5px rgba(0,0,0,0.4); - background: #fff; - border-radius: 5px; - } -.leaflet-control-layers-toggle { - background-image: url(images/layers.png); - width: 36px; - height: 36px; - } -.leaflet-retina .leaflet-control-layers-toggle { - background-image: url(images/layers-2x.png); - background-size: 26px 26px; - } -.leaflet-touch .leaflet-control-layers-toggle { - width: 44px; - height: 44px; - } -.leaflet-control-layers .leaflet-control-layers-list, -.leaflet-control-layers-expanded .leaflet-control-layers-toggle { - display: none; - } -.leaflet-control-layers-expanded .leaflet-control-layers-list { - display: block; - position: relative; - } -.leaflet-control-layers-expanded { - padding: 6px 10px 6px 6px; - color: #333; - background: #fff; - } -.leaflet-control-layers-selector { - margin-top: 2px; - position: relative; - top: 1px; - } -.leaflet-control-layers label { - display: block; - } -.leaflet-control-layers-separator { - height: 0; - border-top: 1px solid #ddd; - margin: 5px -10px 5px -6px; - } - - -/* attribution and scale controls */ - -.leaflet-container .leaflet-control-attribution { - background: #fff; - background: rgba(255, 255, 255, 0.7); - margin: 0; - } -.leaflet-control-attribution, -.leaflet-control-scale-line { - padding: 0 5px; - color: #333; - } -.leaflet-control-attribution a { - text-decoration: none; - } -.leaflet-control-attribution a:hover { - text-decoration: underline; - } -.leaflet-container .leaflet-control-attribution, -.leaflet-container .leaflet-control-scale { - font-size: 11px; - } -.leaflet-left .leaflet-control-scale { - margin-left: 5px; - } -.leaflet-bottom .leaflet-control-scale { - margin-bottom: 5px; - } -.leaflet-control-scale-line { - border: 2px solid #777; - border-top: none; - line-height: 1.1; - padding: 2px 5px 1px; - font-size: 11px; - white-space: nowrap; - overflow: hidden; - -moz-box-sizing: content-box; - box-sizing: content-box; - - background: #fff; - background: rgba(255, 255, 255, 0.5); - } -.leaflet-control-scale-line:not(:first-child) { - border-top: 2px solid #777; - border-bottom: none; - margin-top: -2px; - } -.leaflet-control-scale-line:not(:first-child):not(:last-child) { - border-bottom: 2px solid #777; - } - -.leaflet-touch .leaflet-control-attribution, -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - box-shadow: none; - } -.leaflet-touch .leaflet-control-layers, -.leaflet-touch .leaflet-bar { - border: 2px solid rgba(0,0,0,0.2); - background-clip: padding-box; - } - - /* popup */ .leaflet-popup { @@ -400,28 +289,7 @@ .leaflet-popup-content p { margin: 18px 0; } -.leaflet-popup-tip-container { - margin: 0 auto; - width: 40px; - height: 20px; - position: relative; - overflow: hidden; - } -.leaflet-popup-tip { - width: 17px; - height: 17px; - padding: 1px; - - margin: -10px auto 0; - - -webkit-transform: rotate(45deg); - -moz-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); - } -.leaflet-popup-content-wrapper, -.leaflet-popup-tip { +.leaflet-popup-content-wrapper { background: white; box-shadow: 0 3px 14px rgba(0,0,0,0.4); @@ -452,23 +320,6 @@ .leaflet-oldie .leaflet-popup-content-wrapper { zoom: 1; } -.leaflet-oldie .leaflet-popup-tip { - width: 24px; - margin: 0 auto; - - -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; - filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); - } -.leaflet-oldie .leaflet-popup-tip-container { - margin-top: -1px; - } - -.leaflet-oldie .leaflet-control-zoom, -.leaflet-oldie .leaflet-control-layers, -.leaflet-oldie .leaflet-popup-content-wrapper, -.leaflet-oldie .leaflet-popup-tip { - border: 1px solid #999; - } /* div icon */ diff --git a/src/static_src/images/markers-matte@2x.png b/src/static_src/images/markers-matte@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c981244dd3bba2fa7eb186253fdad64d8a2fdc06 GIT binary patch literal 31113 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 O1I&%BPZk-vNBs{Ev@NLs literal 0 HcmV?d00001 diff --git a/src/static_src/images/markers-shadow.png b/src/static_src/images/markers-shadow.png new file mode 100644 index 0000000000000000000000000000000000000000..33cf95504706aa9d06ad40dbcd2fa168cbd43d13 GIT binary patch literal 535 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 aAw|UvuR9IAZi0KdKr~f#RX!_ONBti%eZQ*! literal 0 HcmV?d00001 diff --git a/src/static_src/images/markers-soft@2x.png b/src/static_src/images/markers-soft@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..540ce63759f8a8c7c46d136c14a4392c5802d635 GIT binary patch literal 66408 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.facility.name}

    ${mapData.facility.description}

    `).addTo(mapObject.map); +// max zoom since we have only one marker +mapObject.map.setView(marker.getLatLng(), 20); diff --git a/src/static_src/js/backoffice/facility_list_backoffice.js b/src/static_src/js/backoffice/facility_list_backoffice.js new file mode 100644 index 000000000..de2a55089 --- /dev/null +++ b/src/static_src/js/backoffice/facility_list_backoffice.js @@ -0,0 +1,35 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = mapData.loggedIn; +const mapObject = new BHMap("map"); + + +mapObject.setDefaultView(); +mapObject.map.addControl(new L.Control.Fullscreen({ + pseudoFullscreen: true, +})); +mapObject.loadLayer(mapData.grid, "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false); + +mapData['facility_list'].forEach(function (facility) { + let authContent = ""; + if (mapData.loggedIn) + authContent = `

    Details

    `; + L.marker([ + facility.location.y, + facility.location.x + ], { + icon: L.AwesomeMarkers.icon({ + icon: facility.facility_type.icon, + markerColor: iconColors[facility.facility_type.marker], + prefix: 'fa', + }) + }).bindPopup(`${facility.name}

    ${facility.description}

    Responsible team: ${facility.facility_type.team} Team

    ${authContent}`).addTo(mapObject.map); +}); diff --git a/src/static_src/js/InvoiceDownloadMultiple.js b/src/static_src/js/backoffice/invoice_download.js similarity index 100% rename from src/static_src/js/InvoiceDownloadMultiple.js rename to src/static_src/js/backoffice/invoice_download.js diff --git a/src/static_src/js/backoffice/maps_layer_import_backoffice.js b/src/static_src/js/backoffice/maps_layer_import_backoffice.js new file mode 100644 index 000000000..f04cb8c3e --- /dev/null +++ b/src/static_src/js/backoffice/maps_layer_import_backoffice.js @@ -0,0 +1,28 @@ +$(function() { + document.getElementById("importURLFetch").onclick = function () { + const url = document.getElementById('importURL').value; + fetch(url) + .then(r => r.text()) + .then(r => { + document.getElementById('id_geojson_data').value = r; + }) + }; + document.getElementById('selectFiles').onchange = function() { + var files = document.getElementById('selectFiles').files; + if (files.length <= 0) { + return false; + } + var fr = new FileReader(); + fr.onload = function(e) { + var result = {}; + try { + result = JSON.parse(e.target.result); + } catch(e) { + alert(e); + } + var formatted = JSON.stringify(result); + document.getElementById('id_geojson_data').value = formatted; + } + fr.readAsText(files.item(0)); + }; +}); diff --git a/src/static_src/js/facility/facility_detail.js b/src/static_src/js/facility/facility_detail.js new file mode 100644 index 000000000..61e9e4366 --- /dev/null +++ b/src/static_src/js/facility/facility_detail.js @@ -0,0 +1,29 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = mapData['loggedIn'] +const mapObject = new BHMap("map"); + +mapObject.setDefaultView(); +mapObject.loadLayer(mapData['grid'], "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false); + + +var marker = L.marker([mapData.y, mapData.x], {icon: L.AwesomeMarkers.icon({ + icon: mapData.icon.replace('fas fa-',''), + markerColor: mapData.marker.replace('Icon',''), + prefix: 'fa', +})}); +let feedback = ""; +if (mapData.loggedIn) { + feedback=`

    Feedback

    `; +} +marker.bindPopup(`${mapData.name}

    ${mapData.description}

    Responsible team: ${mapData.team} Team

    ${feedback}`).addTo(mapObject.map); +// max zoom since we have only one marker +mapObject.map.setView(marker.getLatLng(), 20); diff --git a/src/static_src/js/facility/facility_list.js b/src/static_src/js/facility/facility_list.js new file mode 100644 index 000000000..56deee41a --- /dev/null +++ b/src/static_src/js/facility/facility_list.js @@ -0,0 +1,17 @@ +const frontendData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = frontendData['loggedIn'] +const mapObject = new BHMap("map"); +mapObject.setDefaultView(); +mapObject.map.addControl(new L.Control.Fullscreen({ + pseudoFullscreen: true, +})); +mapObject.loadLayer(frontendData['grid'], "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false, () => { mapObject.loadLayer(frontendData['url'], frontendData['name'], facilityOptions) }); diff --git a/src/static_src/js/facility/facility_type_list.js b/src/static_src/js/facility/facility_type_list.js new file mode 100644 index 000000000..847bed4d3 --- /dev/null +++ b/src/static_src/js/facility/facility_type_list.js @@ -0,0 +1,22 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = mapData['loggedIn'] +const mapObject = new BHMap("map"); +mapObject.setDefaultView(); +mapObject.map.addControl(new L.Control.Fullscreen({ + pseudoFullscreen: true, +})); +mapObject.loadLayer(mapData['grid'], "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false, gridLoaded()); +function gridLoaded() { + mapData['facilitytypeList'].forEach(function (feature, index) { + mapObject.loadLayer(feature.url, "feature.name", facilityOptions); + }) +} diff --git a/src/static_src/js/images/layers-2x.png b/src/static_src/js/images/layers-2x.png deleted file mode 100644 index a2cf7f9efef65d2e021f382f47ef50d51d51a0df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2898 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 diff --git a/src/static_src/js/images/marker-shadow.png b/src/static_src/js/images/marker-shadow.png deleted file mode 100644 index d1e773c715a9b508ebea055c4bb4b0a2ad7f6e52..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 797 zcmV+&1LFLNP)oNwbRQ6Eq$4M3RDU@$ z<4cV9zWLV=bA&uX9wCpA{{f^4$D#k>GcX53-UQqf>_LzMU@frMz|MwbfQGbY0?ccG zBj_wh0?6Tv;HWR0`x;m^Bm<;sCm_85SGspFBn6|A!tDh$nR`wGorGkyL7j?F3#OJq zIswLIz;iF7f|LMnF(pXPAY*GYpsw%&e_WjlnV`C$6@#Q7GZu1$Q8>&p8=(iJj8o|T~0u%hM*Yg_d(Av{WS$h&pM%nlEAonVL0;DkN|xc zn)9F+aMDk#VtAMb0c=kIb1pU-$e4$3pwo&qVh(Umlw3_IU_dFcFe(In6*x}D4LHLhFZ4N=V2ZR+>XHU5D&uY$npJ7Eu?{iAK>UxC?4uyg4+iD z!nst**H%2zhOBxc7C7Tv{f^`%hqT1KpU@Vf6+C2|bGaR(1~TU5D-1;&HXT~PMc2Lu z{Q%^i6vvox&EMFT7I_)R$xq1779I8kE@?|D*cLWnP0a@a)xJA`o*^$^V(yN)b`kV7 z=o@jbFF4j{KeuQh 13) + zoomlevel = 13; + return zoomlevel + }, + }).addTo(this.map); + + this.baseLayers['Regular Map'] = L.tileLayer.wms('/maps/kfproxy/Dkskaermkort/topo_skaermkort/1.0.0/wms', { + version: '1.3.0', + layers: 'dtk_skaermkort', + format: 'image/png', + attribution: this.myAttributionText + }); + + this.baseLayers['Hillshade Map'] = L.tileLayer.wms('/maps/kfproxy/DHMNedboer/dhm/1.0.0/wms', { + version: '1.3.0', + layers: 'dhm_terraen_skyggekort', + format: 'image/png', + attribution: this.myAttributionText + }); + + this.baseLayers['OSS (external)'] = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: 'Map data © OpenStreetMap contributors', + maxZoom: 18, + }); + + this.baseLayers['Google Sat (external)'] = L.tileLayer('https://www.google.cn/maps/vt?lyrs=s@189&gl=cn&x={x}&y={y}&z={z}', { + opacity: 1.0, + minZoom: 1, + maxZoom: 28, + minNativeZoom: 0, + maxNativeZoom: 18 + }); + + var venuepolygons = [ + [[54, 7], [54, 16], [58, 16], [58, 7]], // full map + [[55.39019, 9.93918],[55.39007, 9.93991], [55.39001, 9.94075], [55.39002, 9.94119], [55.38997, 9.94154], [55.38983, 9.94355], [55.38983, 9.94383], [55.38973, 9.94474], [55.38953, 9.94742], [55.38946, 9.94739], [55.38955, 9.94587], [55.38956, 9.94503], [55.38952, 9.94435], [ 55.38941, 9.94359], [55.38377, 9.94072], [55.38462, 9.93793], [55.3847, 9.93778], [55.38499, 9.93675]], // hylkedam hole + ]; + //this.overlays['Venue Overlay'] = L.polygon(venuepolygons, {color: 'red'}).addTo(this.map); + if (L.Control.PanelLayers) { + console.log("PanelLayers loaded"); + const baseLayers = Object.entries(this.baseLayers).map(([name, layer]) => ({ + name, + layer + })); + const overLayers = Object.entries(this.overlays).map(([name, layer]) => ({ + name, + layer, + })); + this.controls = new L.Control.PanelLayers(baseLayers, [ + { + "group": "Generic", + "layers": overLayers, + "collapsed": true, + }, + { + "group": "External", + "layers": [], + "collapsed": true, + } + ], { + selectorGroup: true, + collapsibleGroups: true, + compact: true, + //collapsed: true, + }); + this.map.addControl(this.controls); + } else { + this.controls = L.control.layers(this.baseLayers, this.overlays).addTo(this.map); + } + if (typeof MapProcessing !== 'undefined') { + this.processing = new MapProcessing(); + } + } + + //Set the default view of the map + setDefaultView() { + this.map.setView([55.38723, 9.94080], 17); + } + + //Load a layer and add it to overlay/map + loadLayer(url, name, options, active=true, callback=function(){}, group=null, icon=undefined ) { + this.loadShapefile(url).then(json => { + if (active) + this.layers[name] = L.geoJson(json, options).addTo(this.map); + else + this.layers[name] = L.geoJson(json, options); + if (L.Control.PanelLayers) { + this.controls.addOverlay({ + name: name, + layer: this.layers[name], + icon: (icon?``:undefined), + }, name, group) + } else { + this.controls.addOverlay(this.layers[name], name); + } + callback(json); + }); + } + + async loadShapefile(url) { + let shape_obj = await (await fetch(url)).json(); + return shape_obj + } + + // Find the grid locator by lat lng + findGridLoc(lat, lon) { + const m1 = L.latLng([lat, lon]); + if (this.layers['Grid squares'] && this.layers['Grid squares']._layers) { + for (var i in this.layers['Grid squares']._layers) { + if (this.findGridLocEach(this.layers['Grid squares']._layers[i], m1)) { + return this.layers['Grid squares']._layers[i]; + } + } + } + } + + findGridLocEach(e, m1) { + if (e.getBounds().contains(m1)) { + this.resetStyle(); + this.selectedLayer = e; + return e; + } + } + + // Find the grid locator by name + findGridName(fullgrid) { + this.resetStyle(); + let regex = /^([A-Z]+)([0-9]+)/g; + const reggrid = regex.exec(fullgrid); + const col = this.cols.indexOf(reggrid[1]) + 2; + const row = Number(reggrid[2]) + 1 + this.layers['Grid squares'].eachLayer(layer => this.findGridEach(layer, col, row)); + return this.selectedLayer; + } + + findGridEach(layer, col, row) { + if (Number(layer.feature.properties.col_index) == col && Number(layer.feature.properties.row_index) == row) { + this.selectedLayer = layer; + return layer; + } + } + + resetStyle() { + if (this.selectedLayer) { + this.selectedLayer.setStyle({fillOpacity: 0.0}); + this.selectedLayer = undefined; + } + } + + onEachGrid(_feature, layer) { + layer.on('click', layer => this.onEachGridClick(layer)); + } + + onEachGridClick(e) { + this.resetStyle(); + this.selectedLayer = e.target; + this.onGridClick(e); + } + + onEachMqttFeature(_feature, layer) { + layer.on('click', function (e) { + console.log(e); + }); + } + + onMqtt(topic, payload) { + if (this.processing !== undefined) { + this.map.eachLayer(layer => this.onMqttLayer(topic, payload, layer)); + } + } + + onMqttLayer(topic, payload, layer) { + if (layer.feature && layer.feature.properties.topic && layer.feature.properties.topic === topic) { + if (this.processing[layer.feature.properties.processing]) { + if (layer.feature.geometry.type === 'GeometryCollection') { + layer.eachLayer(feature => this.onMqttLayerFeature(topic, payload, layer, feature)); + } + this.processing[layer.feature.properties.processing](topic, payload, layer); + } + } + } + + onMqttLayerFeature(topic, payload, layer, feature) { + this.processing[layer.feature.properties.processing](topic, payload, feature); + } +} diff --git a/src/static_src/js/maps/generic/mapProcessing.js b/src/static_src/js/maps/generic/mapProcessing.js new file mode 100644 index 000000000..84620ecf0 --- /dev/null +++ b/src/static_src/js/maps/generic/mapProcessing.js @@ -0,0 +1,36 @@ +class MapProcessing { + constructor() { + console.log("Loaded Map Processing"); + } + trafficlight(_topic, payload, layer){ + var icon = new L.Icon({ + iconUrl: '/maps/marker/'+(payload.value === "red"?"FF0000":"00FF00")+'/', + iconSize: [25, 41], + iconAnchor: [12, 41], + popupAnchor: [1, -34], + shadowSize: [41, 41] + }); + if (layer.setIcon) { + layer.setIcon(icon); + layer.bindTooltip(payload.value); + layer.openTooltip(); + } + } + noisesensor(_topic, payload, layer) { + var hue = ((1 - payload.avg / 100) * 120).toString(10); + var color = ["hsl(", hue, ",100%,50%)"].join(""); + if (layer.setStyle && layer.feature) { + layer.setStyle({ + radius: Number(payload.avg), + fillColor: color + }) + layer.bindPopup(layer.feature.properties.name + ": " + payload.avg + " dB", { + maxHeight: 400 + }); + } + } + golfcar(_topic, payload, layer) { + if (layer.setLatLng) + layer.setLatLng([payload.lat, payload.lng]) + } +} diff --git a/src/static_src/js/maps/generic/mapVars.js b/src/static_src/js/maps/generic/mapVars.js new file mode 100644 index 000000000..0fd57c339 --- /dev/null +++ b/src/static_src/js/maps/generic/mapVars.js @@ -0,0 +1,95 @@ +const iconColors = { + blueIcon: 'blue', + goldIcon: 'cadetblue', + redIcon: 'red', + greenIcon: 'green', + orangeIcon: 'orange', + yellowIcon: 'cadetblue', + violetIcon: 'darkpurple', + greyIcon: 'darkgreen', + blackIcon: 'blue', +} + +const iconColorsHex = { + blueIcon: '#2A81CB', + goldIcon: '#FFD326', + redIcon: '#CB2B3E', + greenIcon: '#2AAD27', + orangeIcon: '#CB8427', + yellowIcon: '#CAC428', + violetIcon: '#9C2BCB', + greyIcon: '#7B7B7B', + blackIcon: '#3D3D3D', +} + +const facilityOptions = { + onEachFeature: function(feature, layer) { + + const gridLayer = mapObject.findGridLoc(feature.geometry.coordinates[1], feature.geometry.coordinates[0]); + let grid = ""; + if (gridLayer !== undefined && gridLayer.feature) + grid = `

    Grid: ${mapObject.cols[gridLayer.feature.properties.col_index - 2]}${(gridLayer.feature.properties.row_index - 1)}

    `; + let icon = ``; + const content = `${feature.properties.name}${icon}

    ${feature.properties.description}

    Responsible team: ${feature.properties.team} Team

    ${grid}` + const authContent = `

    Details Feedback

    ` + if (loggedIn) + layer.bindPopup(content + authContent, { maxHeight: 400}); + else + layer.bindPopup(content, { maxHeight: 400}); + layer.setIcon(L.AwesomeMarkers.icon({ + icon: feature.properties.icon, + color: iconColorsHex[feature.properties.marker], + markerColor: iconColors[feature.properties.marker], + prefix: 'fa', + })) + } +} + +const villageOptions = { + onEachFeature: function(feature, layer) { + const gridLayer = mapObject.findGridLoc(feature.geometry.coordinates[1],feature.geometry.coordinates[0]); + let grid = ""; + if (gridLayer !== undefined && gridLayer.feature) + grid = `

    Grid: ${mapObject.cols[gridLayer.feature.properties.col_index - 2]}${(gridLayer.feature.properties.row_index - 1)}

    `; + const content = `${feature.properties.name}

    ${feature.properties.description}

    ${grid}

    Village Details

    `; + layer.bindPopup(content, { maxHeight: 400}); + layer.setIcon(L.AwesomeMarkers.icon({ + icon: "fa fa-campground", + markerColor: "green", + color: iconColorsHex['greenIcon'], + prefix: 'fa', + })) + } +} + +const genericLayerOptions = { + onEachFeature: function(feature, layer) { + const icon = ``; + const content = `${feature.properties.name} ${icon}

    ${feature.properties.description}

    `; + layer.bindPopup(content, { maxHeight: 400}); + } +} + +const popOptions = { + onEachFeature: function(feature, layer) { + const content = `${feature.properties['name']}` + layer.bindPopup(content, { maxHeight: 400}); + } +} + +const connectionOptions = { + style: { + opacity: 1, + color: 'rgba(213,180,60,1.0)', + dashArray: '', + lineCap: 'square', + lineJoin: 'bevel', + weight: 8.0, + fillOpacity: 0, + interactive: true, + }, + onEachFeature: function(feature, layer) { + const content = `${feature.properties['name']}
    From: ${feature.properties['POP_A']}
    To: ${feature.properties['POP_B']}` + layer.bindPopup(content, { maxHeight: 400}); + } +} diff --git a/src/static_src/js/maps/map.js b/src/static_src/js/maps/map.js new file mode 100644 index 000000000..2929ab9a7 --- /dev/null +++ b/src/static_src/js/maps/map.js @@ -0,0 +1,73 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = mapData['loggedIn'] +const mapObject = new BHMap("map"); +mapObject.setDefaultView(); +mapObject.map.addControl(new L.Control.Fullscreen({ + pseudoFullscreen: true, +})); +mapObject.loadLayer(mapData['grid'], "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false, gridLoaded(), "Generic", "fas fa-border-all"); +function gridLoaded() { + console.log("Loaded grid layer"); + mapData['facilitytype_list'].forEach(function (item) { + mapObject.loadLayer(item.url, item.name, facilityOptions, true, function(){}, "Facilities", item.icon); + }) + mapData['layers'].forEach(function (item) { + mapObject.loadLayer(item.url, item.name, { + onEachFeature: function(feature, layer) { + let icon = ``; + let content = `${feature.properties.name}${icon}

    ${feature.properties.description}

    `; + if (feature.properties.url) + content += `

    Details

    ` + + layer.bindPopup(content, { maxHeight: 400}); + if (feature.properties.color !== "#FFFFFFFF") { + layer.setStyle({ + color: feature.properties.color + }) + } + if (layer.feature.geometry.type === 'GeometryCollection') { + layer.eachLayer(function(l) { + if(l._latlng && l.setIcon){ + l.setIcon(L.AwesomeMarkers.icon({ + icon: feature.properties.icon, + color: feature.properties.color, + markerColor: iconColors[feature.properties.marker], + prefix: 'fa', + })) + } + }) + } + }, + pointToLayer: function(feature, latlng) { + if (feature.properties.processing == "noisesensor") + return new L.CircleMarker(latlng, { + radius: 25, + color: '#FF0000' + }); + else + return L.marker(latlng) + }, + style: { + color: "{{ layer.color }}" + } + }, !item.invisible, function(){}, item.group__name, item.icon); + }) + mapData['externalLayers'].forEach(function (item) { + mapObject.loadLayer(item.url, item.name, {}, false, function(){}, "External"); + }) + mapObject.loadLayer(mapData.villages, "Villages", villageOptions, true, function(){}, undefined, "fa fa-campground"); +} +mapObject.onGridClick = function (e) { + let center = e.target.getCenter(); + if (mapObject.cols[e.target.feature.properties.col_index - 2] && (e.target.feature.properties.row_index - 1)) + alert(mapObject.cols[e.target.feature.properties.col_index - 2] + (e.target.feature.properties.row_index - 1) + " " + center.lat + "," + center.lng); +} diff --git a/src/static_src/js/villages/village_detail.js b/src/static_src/js/villages/village_detail.js new file mode 100644 index 000000000..d8aefc177 --- /dev/null +++ b/src/static_src/js/villages/village_detail.js @@ -0,0 +1,24 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent + ); +const mapObject = new BHMap("map"); +mapObject.setDefaultView(); +const loggedIn = mapData.loggedIn; +mapObject.loadLayer(mapData.grid, "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false); + +var marker = L.marker([mapData.y, mapData.x], { + icon: L.AwesomeMarkers.icon({ + icon: "fa fa-campground", + markerColor: "green", + prefix: 'fa', + }) +}); +marker.addTo(mapObject.map); +mapObject.map.flyTo(marker.getLatLng(), 17); diff --git a/src/static_src/js/villages/village_map.js b/src/static_src/js/villages/village_map.js new file mode 100644 index 000000000..925e87ace --- /dev/null +++ b/src/static_src/js/villages/village_map.js @@ -0,0 +1,26 @@ +const mapData = JSON.parse( + document.getElementById('mapData').textContent +); +const loggedIn = mapData.loggedIn; +const mapObject = new BHMap("map"); +mapObject.setDefaultView(); +mapObject.map.addControl(new L.Control.Fullscreen({ + pseudoFullscreen: true, +})); +mapObject.loadLayer(mapData.grid, "Grid squares", { + onEachFeature: mapObject.onEachGrid, + style: { + color: "gray", + fillOpacity: 0.0, + weight: 0.5 + }, +}, false, gridLoaded()); +mapObject.onGridClick = function (e) { + e.target.setStyle({fillOpacity: 1.0}); + let center = e.target.getCenter(); + if (mapObject.cols[e.target.feature.properties.col_index - 2] && (e.target.feature.properties.row_index - 1)) + alert(mapObject.cols[e.target.feature.properties.col_index - 2] + (e.target.feature.properties.row_index - 1) + " " + center.lat + "," + center.lng); +} +function gridLoaded() { + mapObject.loadLayer(mapData.url, "Villages", villageOptions, true); +} diff --git a/src/static_src/json/grid.geojson b/src/static_src/json/grid.geojson new file mode 100644 index 000000000..5bacecde5 --- /dev/null +++ b/src/static_src/json/grid.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"Grid squares","features":[{"id":1,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.390089362],[9.936749653,55.390000071],[9.936906858,55.390000071],[9.936906858,55.390089362],[9.936749653,55.390089362]]]},"properties":{"id":1,"top":7437945.5681,"id_0":1,"left":1106153.9115,"Label":null,"right":1106171.4115,"bottom":7437928.0681,"col_index":0,"row_index":0}},{"id":2,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.390000071],[9.936749653,55.38991078],[9.936906858,55.38991078],[9.936906858,55.390000071],[9.936749653,55.390000071]]]},"properties":{"id":2,"top":7437928.0681,"id_0":2,"left":1106153.9115,"Label":null,"right":1106171.4115,"bottom":7437910.5681,"col_index":0,"row_index":1}},{"id":16,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388749984],[9.936749653,55.38866069],[9.936906858,55.38866069],[9.936906858,55.388749984],[9.936749653,55.388749984]]]},"properties":{"id":16,"top":7437683.0681,"id_0":16,"left":1106153.9115,"Label":"14","right":1106171.4115,"bottom":7437665.5681,"col_index":0,"row_index":15}},{"id":17,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38866069],[9.936749653,55.388571396],[9.936906858,55.388571396],[9.936906858,55.38866069],[9.936749653,55.38866069]]]},"properties":{"id":17,"top":7437665.5681,"id_0":17,"left":1106153.9115,"Label":"15","right":1106171.4115,"bottom":7437648.0681,"col_index":0,"row_index":16}},{"id":18,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388571396],[9.936749653,55.388482103],[9.936906858,55.388482103],[9.936906858,55.388571396],[9.936749653,55.388571396]]]},"properties":{"id":18,"top":7437648.0681,"id_0":18,"left":1106153.9115,"Label":"16","right":1106171.4115,"bottom":7437630.5681,"col_index":0,"row_index":17}},{"id":19,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388482103],[9.936749653,55.388392808],[9.936906858,55.388392808],[9.936906858,55.388482103],[9.936749653,55.388482103]]]},"properties":{"id":19,"top":7437630.5681,"id_0":19,"left":1106153.9115,"Label":"17","right":1106171.4115,"bottom":7437613.0681,"col_index":0,"row_index":18}},{"id":20,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388392808],[9.936749653,55.388303514],[9.936906858,55.388303514],[9.936906858,55.388392808],[9.936749653,55.388392808]]]},"properties":{"id":20,"top":7437613.0681,"id_0":20,"left":1106153.9115,"Label":"18","right":1106171.4115,"bottom":7437595.5681,"col_index":0,"row_index":19}},{"id":21,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388303514],[9.936749653,55.38821422],[9.936906858,55.38821422],[9.936906858,55.388303514],[9.936749653,55.388303514]]]},"properties":{"id":21,"top":7437595.5681,"id_0":21,"left":1106153.9115,"Label":"19","right":1106171.4115,"bottom":7437578.0681,"col_index":0,"row_index":20}},{"id":22,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38821422],[9.936749653,55.388124925],[9.936906858,55.388124925],[9.936906858,55.38821422],[9.936749653,55.38821422]]]},"properties":{"id":22,"top":7437578.0681,"id_0":22,"left":1106153.9115,"Label":"20","right":1106171.4115,"bottom":7437560.5681,"col_index":0,"row_index":21}},{"id":23,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388124925],[9.936749653,55.38803563],[9.936906858,55.38803563],[9.936906858,55.388124925],[9.936749653,55.388124925]]]},"properties":{"id":23,"top":7437560.5681,"id_0":23,"left":1106153.9115,"Label":"21","right":1106171.4115,"bottom":7437543.0681,"col_index":0,"row_index":22}},{"id":24,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38803563],[9.936749653,55.387946335],[9.936906858,55.387946335],[9.936906858,55.38803563],[9.936749653,55.38803563]]]},"properties":{"id":24,"top":7437543.0681,"id_0":24,"left":1106153.9115,"Label":"22","right":1106171.4115,"bottom":7437525.5681,"col_index":0,"row_index":23}},{"id":25,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387946335],[9.936749653,55.38785704],[9.936906858,55.38785704],[9.936906858,55.387946335],[9.936749653,55.387946335]]]},"properties":{"id":25,"top":7437525.5681,"id_0":25,"left":1106153.9115,"Label":"23","right":1106171.4115,"bottom":7437508.0681,"col_index":0,"row_index":24}},{"id":26,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38785704],[9.936749653,55.387767744],[9.936906858,55.387767744],[9.936906858,55.38785704],[9.936749653,55.38785704]]]},"properties":{"id":26,"top":7437508.0681,"id_0":26,"left":1106153.9115,"Label":"24","right":1106171.4115,"bottom":7437490.5681,"col_index":0,"row_index":25}},{"id":27,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387767744],[9.936749653,55.387678448],[9.936906858,55.387678448],[9.936906858,55.387767744],[9.936749653,55.387767744]]]},"properties":{"id":27,"top":7437490.5681,"id_0":27,"left":1106153.9115,"Label":"25","right":1106171.4115,"bottom":7437473.0681,"col_index":0,"row_index":26}},{"id":71,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.383838543],[9.936749653,55.383749238],[9.936906858,55.383749238],[9.936906858,55.383838543],[9.936749653,55.383838543]]]},"properties":{"id":71,"top":7436720.5681,"id_0":71,"left":1106153.9115,"Label":null,"right":1106171.4115,"bottom":7436703.0681,"col_index":0,"row_index":70}},{"id":72,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.390089362],[9.936906858,55.390000071],[9.937064063,55.390000071],[9.937064063,55.390089362],[9.936906858,55.390089362]]]},"properties":{"id":72,"top":7437945.5681,"id_0":72,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437928.0681,"col_index":1,"row_index":0}},{"id":73,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.390000071],[9.936906858,55.38991078],[9.937064063,55.38991078],[9.937064063,55.390000071],[9.936906858,55.390000071]]]},"properties":{"id":73,"top":7437928.0681,"id_0":73,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437910.5681,"col_index":1,"row_index":1}},{"id":74,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38991078],[9.936906858,55.38982149],[9.937064063,55.38982149],[9.937064063,55.38991078],[9.936906858,55.38991078]]]},"properties":{"id":74,"top":7437910.5681,"id_0":74,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437893.0681,"col_index":1,"row_index":2}},{"id":75,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38982149],[9.936906858,55.389732199],[9.937064063,55.389732199],[9.937064063,55.38982149],[9.936906858,55.38982149]]]},"properties":{"id":75,"top":7437893.0681,"id_0":75,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437875.5681,"col_index":1,"row_index":3}},{"id":76,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389732199],[9.936906858,55.389642907],[9.937064063,55.389642907],[9.937064063,55.389732199],[9.936906858,55.389732199]]]},"properties":{"id":76,"top":7437875.5681,"id_0":76,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437858.0681,"col_index":1,"row_index":4}},{"id":77,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389642907],[9.936906858,55.389553616],[9.937064063,55.389553616],[9.937064063,55.389642907],[9.936906858,55.389642907]]]},"properties":{"id":77,"top":7437858.0681,"id_0":77,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437840.5681,"col_index":1,"row_index":5}},{"id":78,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389553616],[9.936906858,55.389464324],[9.937064063,55.389464324],[9.937064063,55.389553616],[9.936906858,55.389553616]]]},"properties":{"id":78,"top":7437840.5681,"id_0":78,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437823.0681,"col_index":1,"row_index":6}},{"id":79,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389464324],[9.936906858,55.389375032],[9.937064063,55.389375032],[9.937064063,55.389464324],[9.936906858,55.389464324]]]},"properties":{"id":79,"top":7437823.0681,"id_0":79,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437805.5681,"col_index":1,"row_index":7}},{"id":80,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389375032],[9.936906858,55.38928574],[9.937064063,55.38928574],[9.937064063,55.389375032],[9.936906858,55.389375032]]]},"properties":{"id":80,"top":7437805.5681,"id_0":80,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437788.0681,"col_index":1,"row_index":8}},{"id":81,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38928574],[9.936906858,55.389196448],[9.937064063,55.389196448],[9.937064063,55.38928574],[9.936906858,55.38928574]]]},"properties":{"id":81,"top":7437788.0681,"id_0":81,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437770.5681,"col_index":1,"row_index":9}},{"id":82,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389196448],[9.936906858,55.389107155],[9.937064063,55.389107155],[9.937064063,55.389196448],[9.936906858,55.389196448]]]},"properties":{"id":82,"top":7437770.5681,"id_0":82,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437753.0681,"col_index":1,"row_index":10}},{"id":83,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389107155],[9.936906858,55.389017863],[9.937064063,55.389017863],[9.937064063,55.389107155],[9.936906858,55.389107155]]]},"properties":{"id":83,"top":7437753.0681,"id_0":83,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437735.5681,"col_index":1,"row_index":11}},{"id":84,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.389017863],[9.936906858,55.38892857],[9.937064063,55.38892857],[9.937064063,55.389017863],[9.936906858,55.389017863]]]},"properties":{"id":84,"top":7437735.5681,"id_0":84,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437718.0681,"col_index":1,"row_index":12}},{"id":85,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38892857],[9.936906858,55.388839277],[9.937064063,55.388839277],[9.937064063,55.38892857],[9.936906858,55.38892857]]]},"properties":{"id":85,"top":7437718.0681,"id_0":85,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437700.5681,"col_index":1,"row_index":13}},{"id":86,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388839277],[9.936906858,55.388749984],[9.937064063,55.388749984],[9.937064063,55.388839277],[9.936906858,55.388839277]]]},"properties":{"id":86,"top":7437700.5681,"id_0":86,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437683.0681,"col_index":1,"row_index":14}},{"id":87,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388749984],[9.936906858,55.38866069],[9.937064063,55.38866069],[9.937064063,55.388749984],[9.936906858,55.388749984]]]},"properties":{"id":87,"top":7437683.0681,"id_0":87,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437665.5681,"col_index":1,"row_index":15}},{"id":88,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38866069],[9.936906858,55.388571396],[9.937064063,55.388571396],[9.937064063,55.38866069],[9.936906858,55.38866069]]]},"properties":{"id":88,"top":7437665.5681,"id_0":88,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437648.0681,"col_index":1,"row_index":16}},{"id":89,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388571396],[9.936906858,55.388482103],[9.937064063,55.388482103],[9.937064063,55.388571396],[9.936906858,55.388571396]]]},"properties":{"id":89,"top":7437648.0681,"id_0":89,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437630.5681,"col_index":1,"row_index":17}},{"id":90,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388482103],[9.936906858,55.388392808],[9.937064063,55.388392808],[9.937064063,55.388482103],[9.936906858,55.388482103]]]},"properties":{"id":90,"top":7437630.5681,"id_0":90,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437613.0681,"col_index":1,"row_index":18}},{"id":91,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388392808],[9.936906858,55.388303514],[9.937064063,55.388303514],[9.937064063,55.388392808],[9.936906858,55.388392808]]]},"properties":{"id":91,"top":7437613.0681,"id_0":91,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437595.5681,"col_index":1,"row_index":19}},{"id":92,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388303514],[9.936906858,55.38821422],[9.937064063,55.38821422],[9.937064063,55.388303514],[9.936906858,55.388303514]]]},"properties":{"id":92,"top":7437595.5681,"id_0":92,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437578.0681,"col_index":1,"row_index":20}},{"id":93,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38821422],[9.936906858,55.388124925],[9.937064063,55.388124925],[9.937064063,55.38821422],[9.936906858,55.38821422]]]},"properties":{"id":93,"top":7437578.0681,"id_0":93,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437560.5681,"col_index":1,"row_index":21}},{"id":94,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.388124925],[9.936906858,55.38803563],[9.937064063,55.38803563],[9.937064063,55.388124925],[9.936906858,55.388124925]]]},"properties":{"id":94,"top":7437560.5681,"id_0":94,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437543.0681,"col_index":1,"row_index":22}},{"id":95,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38803563],[9.936906858,55.387946335],[9.937064063,55.387946335],[9.937064063,55.38803563],[9.936906858,55.38803563]]]},"properties":{"id":95,"top":7437543.0681,"id_0":95,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437525.5681,"col_index":1,"row_index":23}},{"id":96,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387946335],[9.936906858,55.38785704],[9.937064063,55.38785704],[9.937064063,55.387946335],[9.936906858,55.387946335]]]},"properties":{"id":96,"top":7437525.5681,"id_0":96,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437508.0681,"col_index":1,"row_index":24}},{"id":97,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38785704],[9.936906858,55.387767744],[9.937064063,55.387767744],[9.937064063,55.38785704],[9.936906858,55.38785704]]]},"properties":{"id":97,"top":7437508.0681,"id_0":97,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437490.5681,"col_index":1,"row_index":25}},{"id":98,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387767744],[9.936906858,55.387678448],[9.937064063,55.387678448],[9.937064063,55.387767744],[9.936906858,55.387767744]]]},"properties":{"id":98,"top":7437490.5681,"id_0":98,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437473.0681,"col_index":1,"row_index":26}},{"id":99,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387678448],[9.936906858,55.387589153],[9.937064063,55.387589153],[9.937064063,55.387678448],[9.936906858,55.387678448]]]},"properties":{"id":99,"top":7437473.0681,"id_0":99,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437455.5681,"col_index":1,"row_index":27}},{"id":100,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387589153],[9.936906858,55.387499856],[9.937064063,55.387499856],[9.937064063,55.387589153],[9.936906858,55.387589153]]]},"properties":{"id":100,"top":7437455.5681,"id_0":100,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437438.0681,"col_index":1,"row_index":28}},{"id":101,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387499856],[9.936906858,55.38741056],[9.937064063,55.38741056],[9.937064063,55.387499856],[9.936906858,55.387499856]]]},"properties":{"id":101,"top":7437438.0681,"id_0":101,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437420.5681,"col_index":1,"row_index":29}},{"id":102,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38741056],[9.936906858,55.387321264],[9.937064063,55.387321264],[9.937064063,55.38741056],[9.936906858,55.38741056]]]},"properties":{"id":102,"top":7437420.5681,"id_0":102,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437403.0681,"col_index":1,"row_index":30}},{"id":103,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387321264],[9.936906858,55.387231967],[9.937064063,55.387231967],[9.937064063,55.387321264],[9.936906858,55.387321264]]]},"properties":{"id":103,"top":7437403.0681,"id_0":103,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437385.5681,"col_index":1,"row_index":31}},{"id":104,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387231967],[9.936906858,55.38714267],[9.937064063,55.38714267],[9.937064063,55.387231967],[9.936906858,55.387231967]]]},"properties":{"id":104,"top":7437385.5681,"id_0":104,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437368.0681,"col_index":1,"row_index":32}},{"id":105,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38714267],[9.936906858,55.387053373],[9.937064063,55.387053373],[9.937064063,55.38714267],[9.936906858,55.38714267]]]},"properties":{"id":105,"top":7437368.0681,"id_0":105,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437350.5681,"col_index":1,"row_index":33}},{"id":106,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.387053373],[9.936906858,55.386964076],[9.937064063,55.386964076],[9.937064063,55.387053373],[9.936906858,55.387053373]]]},"properties":{"id":106,"top":7437350.5681,"id_0":106,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437333.0681,"col_index":1,"row_index":34}},{"id":107,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386964076],[9.936906858,55.386874778],[9.937064063,55.386874778],[9.937064063,55.386964076],[9.936906858,55.386964076]]]},"properties":{"id":107,"top":7437333.0681,"id_0":107,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437315.5681,"col_index":1,"row_index":35}},{"id":108,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386874778],[9.936906858,55.38678548],[9.937064063,55.38678548],[9.937064063,55.386874778],[9.936906858,55.386874778]]]},"properties":{"id":108,"top":7437315.5681,"id_0":108,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437298.0681,"col_index":1,"row_index":36}},{"id":109,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38678548],[9.936906858,55.386696182],[9.937064063,55.386696182],[9.937064063,55.38678548],[9.936906858,55.38678548]]]},"properties":{"id":109,"top":7437298.0681,"id_0":109,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437280.5681,"col_index":1,"row_index":37}},{"id":110,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386696182],[9.936906858,55.386606884],[9.937064063,55.386606884],[9.937064063,55.386696182],[9.936906858,55.386696182]]]},"properties":{"id":110,"top":7437280.5681,"id_0":110,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437263.0681,"col_index":1,"row_index":38}},{"id":111,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386606884],[9.936906858,55.386517586],[9.937064063,55.386517586],[9.937064063,55.386606884],[9.936906858,55.386606884]]]},"properties":{"id":111,"top":7437263.0681,"id_0":111,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437245.5681,"col_index":1,"row_index":39}},{"id":112,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386517586],[9.936906858,55.386428287],[9.937064063,55.386428287],[9.937064063,55.386517586],[9.936906858,55.386517586]]]},"properties":{"id":112,"top":7437245.5681,"id_0":112,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437228.0681,"col_index":1,"row_index":40}},{"id":113,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386428287],[9.936906858,55.386338989],[9.937064063,55.386338989],[9.937064063,55.386428287],[9.936906858,55.386428287]]]},"properties":{"id":113,"top":7437228.0681,"id_0":113,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437210.5681,"col_index":1,"row_index":41}},{"id":114,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386338989],[9.936906858,55.38624969],[9.937064063,55.38624969],[9.937064063,55.386338989],[9.936906858,55.386338989]]]},"properties":{"id":114,"top":7437210.5681,"id_0":114,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437193.0681,"col_index":1,"row_index":42}},{"id":115,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38624969],[9.936906858,55.386160391],[9.937064063,55.386160391],[9.937064063,55.38624969],[9.936906858,55.38624969]]]},"properties":{"id":115,"top":7437193.0681,"id_0":115,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437175.5681,"col_index":1,"row_index":43}},{"id":116,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386160391],[9.936906858,55.386071091],[9.937064063,55.386071091],[9.937064063,55.386160391],[9.936906858,55.386160391]]]},"properties":{"id":116,"top":7437175.5681,"id_0":116,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437158.0681,"col_index":1,"row_index":44}},{"id":117,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.386071091],[9.936906858,55.385981792],[9.937064063,55.385981792],[9.937064063,55.386071091],[9.936906858,55.386071091]]]},"properties":{"id":117,"top":7437158.0681,"id_0":117,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437140.5681,"col_index":1,"row_index":45}},{"id":118,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385981792],[9.936906858,55.385892492],[9.937064063,55.385892492],[9.937064063,55.385981792],[9.936906858,55.385981792]]]},"properties":{"id":118,"top":7437140.5681,"id_0":118,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437123.0681,"col_index":1,"row_index":46}},{"id":119,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385892492],[9.936906858,55.385803192],[9.937064063,55.385803192],[9.937064063,55.385892492],[9.936906858,55.385892492]]]},"properties":{"id":119,"top":7437123.0681,"id_0":119,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437105.5681,"col_index":1,"row_index":47}},{"id":120,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385803192],[9.936906858,55.385713892],[9.937064063,55.385713892],[9.937064063,55.385803192],[9.936906858,55.385803192]]]},"properties":{"id":120,"top":7437105.5681,"id_0":120,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437088.0681,"col_index":1,"row_index":48}},{"id":121,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385713892],[9.936906858,55.385624592],[9.937064063,55.385624592],[9.937064063,55.385713892],[9.936906858,55.385713892]]]},"properties":{"id":121,"top":7437088.0681,"id_0":121,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437070.5681,"col_index":1,"row_index":49}},{"id":122,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385624592],[9.936906858,55.385535291],[9.937064063,55.385535291],[9.937064063,55.385624592],[9.936906858,55.385624592]]]},"properties":{"id":122,"top":7437070.5681,"id_0":122,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437053.0681,"col_index":1,"row_index":50}},{"id":123,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385535291],[9.936906858,55.38544599],[9.937064063,55.38544599],[9.937064063,55.385535291],[9.936906858,55.385535291]]]},"properties":{"id":123,"top":7437053.0681,"id_0":123,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437035.5681,"col_index":1,"row_index":51}},{"id":124,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38544599],[9.936906858,55.385356689],[9.937064063,55.385356689],[9.937064063,55.38544599],[9.936906858,55.38544599]]]},"properties":{"id":124,"top":7437035.5681,"id_0":124,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437018.0681,"col_index":1,"row_index":52}},{"id":125,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385356689],[9.936906858,55.385267388],[9.937064063,55.385267388],[9.937064063,55.385356689],[9.936906858,55.385356689]]]},"properties":{"id":125,"top":7437018.0681,"id_0":125,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7437000.5681,"col_index":1,"row_index":53}},{"id":126,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385267388],[9.936906858,55.385178087],[9.937064063,55.385178087],[9.937064063,55.385267388],[9.936906858,55.385267388]]]},"properties":{"id":126,"top":7437000.5681,"id_0":126,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436983.0681,"col_index":1,"row_index":54}},{"id":127,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385178087],[9.936906858,55.385088785],[9.937064063,55.385088785],[9.937064063,55.385178087],[9.936906858,55.385178087]]]},"properties":{"id":127,"top":7436983.0681,"id_0":127,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436965.5681,"col_index":1,"row_index":55}},{"id":128,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.385088785],[9.936906858,55.384999484],[9.937064063,55.384999484],[9.937064063,55.385088785],[9.936906858,55.385088785]]]},"properties":{"id":128,"top":7436965.5681,"id_0":128,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436948.0681,"col_index":1,"row_index":56}},{"id":129,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384999484],[9.936906858,55.384910182],[9.937064063,55.384910182],[9.937064063,55.384999484],[9.936906858,55.384999484]]]},"properties":{"id":129,"top":7436948.0681,"id_0":129,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436930.5681,"col_index":1,"row_index":57}},{"id":130,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384910182],[9.936906858,55.38482088],[9.937064063,55.38482088],[9.937064063,55.384910182],[9.936906858,55.384910182]]]},"properties":{"id":130,"top":7436930.5681,"id_0":130,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436913.0681,"col_index":1,"row_index":58}},{"id":131,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.38482088],[9.936906858,55.384731577],[9.937064063,55.384731577],[9.937064063,55.38482088],[9.936906858,55.38482088]]]},"properties":{"id":131,"top":7436913.0681,"id_0":131,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436895.5681,"col_index":1,"row_index":59}},{"id":132,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384731577],[9.936906858,55.384642275],[9.937064063,55.384642275],[9.937064063,55.384731577],[9.936906858,55.384731577]]]},"properties":{"id":132,"top":7436895.5681,"id_0":132,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436878.0681,"col_index":1,"row_index":60}},{"id":133,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384642275],[9.936906858,55.384552972],[9.937064063,55.384552972],[9.937064063,55.384642275],[9.936906858,55.384642275]]]},"properties":{"id":133,"top":7436878.0681,"id_0":133,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436860.5681,"col_index":1,"row_index":61}},{"id":134,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384552972],[9.936906858,55.384463669],[9.937064063,55.384463669],[9.937064063,55.384552972],[9.936906858,55.384552972]]]},"properties":{"id":134,"top":7436860.5681,"id_0":134,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436843.0681,"col_index":1,"row_index":62}},{"id":135,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384463669],[9.936906858,55.384374366],[9.937064063,55.384374366],[9.937064063,55.384463669],[9.936906858,55.384463669]]]},"properties":{"id":135,"top":7436843.0681,"id_0":135,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436825.5681,"col_index":1,"row_index":63}},{"id":136,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384374366],[9.936906858,55.384285062],[9.937064063,55.384285062],[9.937064063,55.384374366],[9.936906858,55.384374366]]]},"properties":{"id":136,"top":7436825.5681,"id_0":136,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436808.0681,"col_index":1,"row_index":64}},{"id":137,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384285062],[9.936906858,55.384195759],[9.937064063,55.384195759],[9.937064063,55.384285062],[9.936906858,55.384285062]]]},"properties":{"id":137,"top":7436808.0681,"id_0":137,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436790.5681,"col_index":1,"row_index":65}},{"id":138,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384195759],[9.936906858,55.384106455],[9.937064063,55.384106455],[9.937064063,55.384195759],[9.936906858,55.384195759]]]},"properties":{"id":138,"top":7436790.5681,"id_0":138,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436773.0681,"col_index":1,"row_index":66}},{"id":139,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384106455],[9.936906858,55.384017151],[9.937064063,55.384017151],[9.937064063,55.384106455],[9.936906858,55.384106455]]]},"properties":{"id":139,"top":7436773.0681,"id_0":139,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436755.5681,"col_index":1,"row_index":67}},{"id":140,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.384017151],[9.936906858,55.383927847],[9.937064063,55.383927847],[9.937064063,55.384017151],[9.936906858,55.384017151]]]},"properties":{"id":140,"top":7436755.5681,"id_0":140,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436738.0681,"col_index":1,"row_index":68}},{"id":141,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.383927847],[9.936906858,55.383838543],[9.937064063,55.383838543],[9.937064063,55.383927847],[9.936906858,55.383927847]]]},"properties":{"id":141,"top":7436738.0681,"id_0":141,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436720.5681,"col_index":1,"row_index":69}},{"id":142,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936906858,55.383838543],[9.936906858,55.383749238],[9.937064063,55.383749238],[9.937064063,55.383838543],[9.936906858,55.383838543]]]},"properties":{"id":142,"top":7436720.5681,"id_0":142,"left":1106171.4115,"Label":null,"right":1106188.9115,"bottom":7436703.0681,"col_index":1,"row_index":70}},{"id":144,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.390000071],[9.937064063,55.38991078],[9.937221268,55.38991078],[9.937221268,55.390000071],[9.937064063,55.390000071]]]},"properties":{"id":144,"top":7437928.0681,"id_0":144,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437910.5681,"col_index":2,"row_index":1}},{"id":145,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38991078],[9.937064063,55.38982149],[9.937221268,55.38982149],[9.937221268,55.38991078],[9.937064063,55.38991078]]]},"properties":{"id":145,"top":7437910.5681,"id_0":145,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437893.0681,"col_index":2,"row_index":2}},{"id":146,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38982149],[9.937064063,55.389732199],[9.937221268,55.389732199],[9.937221268,55.38982149],[9.937064063,55.38982149]]]},"properties":{"id":146,"top":7437893.0681,"id_0":146,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437875.5681,"col_index":2,"row_index":3}},{"id":147,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389732199],[9.937064063,55.389642907],[9.937221268,55.389642907],[9.937221268,55.389732199],[9.937064063,55.389732199]]]},"properties":{"id":147,"top":7437875.5681,"id_0":147,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437858.0681,"col_index":2,"row_index":4}},{"id":148,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389642907],[9.937064063,55.389553616],[9.937221268,55.389553616],[9.937221268,55.389642907],[9.937064063,55.389642907]]]},"properties":{"id":148,"top":7437858.0681,"id_0":148,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437840.5681,"col_index":2,"row_index":5}},{"id":149,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389553616],[9.937064063,55.389464324],[9.937221268,55.389464324],[9.937221268,55.389553616],[9.937064063,55.389553616]]]},"properties":{"id":149,"top":7437840.5681,"id_0":149,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437823.0681,"col_index":2,"row_index":6}},{"id":150,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389464324],[9.937064063,55.389375032],[9.937221268,55.389375032],[9.937221268,55.389464324],[9.937064063,55.389464324]]]},"properties":{"id":150,"top":7437823.0681,"id_0":150,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437805.5681,"col_index":2,"row_index":7}},{"id":151,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389375032],[9.937064063,55.38928574],[9.937221268,55.38928574],[9.937221268,55.389375032],[9.937064063,55.389375032]]]},"properties":{"id":151,"top":7437805.5681,"id_0":151,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437788.0681,"col_index":2,"row_index":8}},{"id":152,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38928574],[9.937064063,55.389196448],[9.937221268,55.389196448],[9.937221268,55.38928574],[9.937064063,55.38928574]]]},"properties":{"id":152,"top":7437788.0681,"id_0":152,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437770.5681,"col_index":2,"row_index":9}},{"id":153,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389196448],[9.937064063,55.389107155],[9.937221268,55.389107155],[9.937221268,55.389196448],[9.937064063,55.389196448]]]},"properties":{"id":153,"top":7437770.5681,"id_0":153,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437753.0681,"col_index":2,"row_index":10}},{"id":154,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389107155],[9.937064063,55.389017863],[9.937221268,55.389017863],[9.937221268,55.389107155],[9.937064063,55.389107155]]]},"properties":{"id":154,"top":7437753.0681,"id_0":154,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437735.5681,"col_index":2,"row_index":11}},{"id":155,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.389017863],[9.937064063,55.38892857],[9.937221268,55.38892857],[9.937221268,55.389017863],[9.937064063,55.389017863]]]},"properties":{"id":155,"top":7437735.5681,"id_0":155,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437718.0681,"col_index":2,"row_index":12}},{"id":156,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38892857],[9.937064063,55.388839277],[9.937221268,55.388839277],[9.937221268,55.38892857],[9.937064063,55.38892857]]]},"properties":{"id":156,"top":7437718.0681,"id_0":156,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437700.5681,"col_index":2,"row_index":13}},{"id":157,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388839277],[9.937064063,55.388749984],[9.937221268,55.388749984],[9.937221268,55.388839277],[9.937064063,55.388839277]]]},"properties":{"id":157,"top":7437700.5681,"id_0":157,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437683.0681,"col_index":2,"row_index":14}},{"id":158,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388749984],[9.937064063,55.38866069],[9.937221268,55.38866069],[9.937221268,55.388749984],[9.937064063,55.388749984]]]},"properties":{"id":158,"top":7437683.0681,"id_0":158,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437665.5681,"col_index":2,"row_index":15}},{"id":159,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38866069],[9.937064063,55.388571396],[9.937221268,55.388571396],[9.937221268,55.38866069],[9.937064063,55.38866069]]]},"properties":{"id":159,"top":7437665.5681,"id_0":159,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437648.0681,"col_index":2,"row_index":16}},{"id":160,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388571396],[9.937064063,55.388482103],[9.937221268,55.388482103],[9.937221268,55.388571396],[9.937064063,55.388571396]]]},"properties":{"id":160,"top":7437648.0681,"id_0":160,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437630.5681,"col_index":2,"row_index":17}},{"id":161,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388482103],[9.937064063,55.388392808],[9.937221268,55.388392808],[9.937221268,55.388482103],[9.937064063,55.388482103]]]},"properties":{"id":161,"top":7437630.5681,"id_0":161,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437613.0681,"col_index":2,"row_index":18}},{"id":162,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388392808],[9.937064063,55.388303514],[9.937221268,55.388303514],[9.937221268,55.388392808],[9.937064063,55.388392808]]]},"properties":{"id":162,"top":7437613.0681,"id_0":162,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437595.5681,"col_index":2,"row_index":19}},{"id":163,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388303514],[9.937064063,55.38821422],[9.937221268,55.38821422],[9.937221268,55.388303514],[9.937064063,55.388303514]]]},"properties":{"id":163,"top":7437595.5681,"id_0":163,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437578.0681,"col_index":2,"row_index":20}},{"id":164,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38821422],[9.937064063,55.388124925],[9.937221268,55.388124925],[9.937221268,55.38821422],[9.937064063,55.38821422]]]},"properties":{"id":164,"top":7437578.0681,"id_0":164,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437560.5681,"col_index":2,"row_index":21}},{"id":165,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.388124925],[9.937064063,55.38803563],[9.937221268,55.38803563],[9.937221268,55.388124925],[9.937064063,55.388124925]]]},"properties":{"id":165,"top":7437560.5681,"id_0":165,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437543.0681,"col_index":2,"row_index":22}},{"id":166,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38803563],[9.937064063,55.387946335],[9.937221268,55.387946335],[9.937221268,55.38803563],[9.937064063,55.38803563]]]},"properties":{"id":166,"top":7437543.0681,"id_0":166,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437525.5681,"col_index":2,"row_index":23}},{"id":167,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387946335],[9.937064063,55.38785704],[9.937221268,55.38785704],[9.937221268,55.387946335],[9.937064063,55.387946335]]]},"properties":{"id":167,"top":7437525.5681,"id_0":167,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437508.0681,"col_index":2,"row_index":24}},{"id":168,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38785704],[9.937064063,55.387767744],[9.937221268,55.387767744],[9.937221268,55.38785704],[9.937064063,55.38785704]]]},"properties":{"id":168,"top":7437508.0681,"id_0":168,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437490.5681,"col_index":2,"row_index":25}},{"id":169,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387767744],[9.937064063,55.387678448],[9.937221268,55.387678448],[9.937221268,55.387767744],[9.937064063,55.387767744]]]},"properties":{"id":169,"top":7437490.5681,"id_0":169,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437473.0681,"col_index":2,"row_index":26}},{"id":170,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387678448],[9.937064063,55.387589153],[9.937221268,55.387589153],[9.937221268,55.387678448],[9.937064063,55.387678448]]]},"properties":{"id":170,"top":7437473.0681,"id_0":170,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437455.5681,"col_index":2,"row_index":27}},{"id":171,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387589153],[9.937064063,55.387499856],[9.937221268,55.387499856],[9.937221268,55.387589153],[9.937064063,55.387589153]]]},"properties":{"id":171,"top":7437455.5681,"id_0":171,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437438.0681,"col_index":2,"row_index":28}},{"id":172,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387499856],[9.937064063,55.38741056],[9.937221268,55.38741056],[9.937221268,55.387499856],[9.937064063,55.387499856]]]},"properties":{"id":172,"top":7437438.0681,"id_0":172,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437420.5681,"col_index":2,"row_index":29}},{"id":173,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38741056],[9.937064063,55.387321264],[9.937221268,55.387321264],[9.937221268,55.38741056],[9.937064063,55.38741056]]]},"properties":{"id":173,"top":7437420.5681,"id_0":173,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437403.0681,"col_index":2,"row_index":30}},{"id":174,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387321264],[9.937064063,55.387231967],[9.937221268,55.387231967],[9.937221268,55.387321264],[9.937064063,55.387321264]]]},"properties":{"id":174,"top":7437403.0681,"id_0":174,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437385.5681,"col_index":2,"row_index":31}},{"id":175,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387231967],[9.937064063,55.38714267],[9.937221268,55.38714267],[9.937221268,55.387231967],[9.937064063,55.387231967]]]},"properties":{"id":175,"top":7437385.5681,"id_0":175,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437368.0681,"col_index":2,"row_index":32}},{"id":176,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38714267],[9.937064063,55.387053373],[9.937221268,55.387053373],[9.937221268,55.38714267],[9.937064063,55.38714267]]]},"properties":{"id":176,"top":7437368.0681,"id_0":176,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437350.5681,"col_index":2,"row_index":33}},{"id":177,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.387053373],[9.937064063,55.386964076],[9.937221268,55.386964076],[9.937221268,55.387053373],[9.937064063,55.387053373]]]},"properties":{"id":177,"top":7437350.5681,"id_0":177,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437333.0681,"col_index":2,"row_index":34}},{"id":178,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386964076],[9.937064063,55.386874778],[9.937221268,55.386874778],[9.937221268,55.386964076],[9.937064063,55.386964076]]]},"properties":{"id":178,"top":7437333.0681,"id_0":178,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437315.5681,"col_index":2,"row_index":35}},{"id":179,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386874778],[9.937064063,55.38678548],[9.937221268,55.38678548],[9.937221268,55.386874778],[9.937064063,55.386874778]]]},"properties":{"id":179,"top":7437315.5681,"id_0":179,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437298.0681,"col_index":2,"row_index":36}},{"id":180,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38678548],[9.937064063,55.386696182],[9.937221268,55.386696182],[9.937221268,55.38678548],[9.937064063,55.38678548]]]},"properties":{"id":180,"top":7437298.0681,"id_0":180,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437280.5681,"col_index":2,"row_index":37}},{"id":181,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386696182],[9.937064063,55.386606884],[9.937221268,55.386606884],[9.937221268,55.386696182],[9.937064063,55.386696182]]]},"properties":{"id":181,"top":7437280.5681,"id_0":181,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437263.0681,"col_index":2,"row_index":38}},{"id":182,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386606884],[9.937064063,55.386517586],[9.937221268,55.386517586],[9.937221268,55.386606884],[9.937064063,55.386606884]]]},"properties":{"id":182,"top":7437263.0681,"id_0":182,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437245.5681,"col_index":2,"row_index":39}},{"id":183,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386517586],[9.937064063,55.386428287],[9.937221268,55.386428287],[9.937221268,55.386517586],[9.937064063,55.386517586]]]},"properties":{"id":183,"top":7437245.5681,"id_0":183,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437228.0681,"col_index":2,"row_index":40}},{"id":184,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386428287],[9.937064063,55.386338989],[9.937221268,55.386338989],[9.937221268,55.386428287],[9.937064063,55.386428287]]]},"properties":{"id":184,"top":7437228.0681,"id_0":184,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437210.5681,"col_index":2,"row_index":41}},{"id":185,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386338989],[9.937064063,55.38624969],[9.937221268,55.38624969],[9.937221268,55.386338989],[9.937064063,55.386338989]]]},"properties":{"id":185,"top":7437210.5681,"id_0":185,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437193.0681,"col_index":2,"row_index":42}},{"id":186,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38624969],[9.937064063,55.386160391],[9.937221268,55.386160391],[9.937221268,55.38624969],[9.937064063,55.38624969]]]},"properties":{"id":186,"top":7437193.0681,"id_0":186,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437175.5681,"col_index":2,"row_index":43}},{"id":187,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386160391],[9.937064063,55.386071091],[9.937221268,55.386071091],[9.937221268,55.386160391],[9.937064063,55.386160391]]]},"properties":{"id":187,"top":7437175.5681,"id_0":187,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437158.0681,"col_index":2,"row_index":44}},{"id":188,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.386071091],[9.937064063,55.385981792],[9.937221268,55.385981792],[9.937221268,55.386071091],[9.937064063,55.386071091]]]},"properties":{"id":188,"top":7437158.0681,"id_0":188,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437140.5681,"col_index":2,"row_index":45}},{"id":189,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385981792],[9.937064063,55.385892492],[9.937221268,55.385892492],[9.937221268,55.385981792],[9.937064063,55.385981792]]]},"properties":{"id":189,"top":7437140.5681,"id_0":189,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437123.0681,"col_index":2,"row_index":46}},{"id":190,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385892492],[9.937064063,55.385803192],[9.937221268,55.385803192],[9.937221268,55.385892492],[9.937064063,55.385892492]]]},"properties":{"id":190,"top":7437123.0681,"id_0":190,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437105.5681,"col_index":2,"row_index":47}},{"id":191,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385803192],[9.937064063,55.385713892],[9.937221268,55.385713892],[9.937221268,55.385803192],[9.937064063,55.385803192]]]},"properties":{"id":191,"top":7437105.5681,"id_0":191,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437088.0681,"col_index":2,"row_index":48}},{"id":192,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385713892],[9.937064063,55.385624592],[9.937221268,55.385624592],[9.937221268,55.385713892],[9.937064063,55.385713892]]]},"properties":{"id":192,"top":7437088.0681,"id_0":192,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437070.5681,"col_index":2,"row_index":49}},{"id":193,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385624592],[9.937064063,55.385535291],[9.937221268,55.385535291],[9.937221268,55.385624592],[9.937064063,55.385624592]]]},"properties":{"id":193,"top":7437070.5681,"id_0":193,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437053.0681,"col_index":2,"row_index":50}},{"id":194,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385535291],[9.937064063,55.38544599],[9.937221268,55.38544599],[9.937221268,55.385535291],[9.937064063,55.385535291]]]},"properties":{"id":194,"top":7437053.0681,"id_0":194,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437035.5681,"col_index":2,"row_index":51}},{"id":195,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38544599],[9.937064063,55.385356689],[9.937221268,55.385356689],[9.937221268,55.38544599],[9.937064063,55.38544599]]]},"properties":{"id":195,"top":7437035.5681,"id_0":195,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437018.0681,"col_index":2,"row_index":52}},{"id":196,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385356689],[9.937064063,55.385267388],[9.937221268,55.385267388],[9.937221268,55.385356689],[9.937064063,55.385356689]]]},"properties":{"id":196,"top":7437018.0681,"id_0":196,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7437000.5681,"col_index":2,"row_index":53}},{"id":197,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385267388],[9.937064063,55.385178087],[9.937221268,55.385178087],[9.937221268,55.385267388],[9.937064063,55.385267388]]]},"properties":{"id":197,"top":7437000.5681,"id_0":197,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436983.0681,"col_index":2,"row_index":54}},{"id":198,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385178087],[9.937064063,55.385088785],[9.937221268,55.385088785],[9.937221268,55.385178087],[9.937064063,55.385178087]]]},"properties":{"id":198,"top":7436983.0681,"id_0":198,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436965.5681,"col_index":2,"row_index":55}},{"id":199,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.385088785],[9.937064063,55.384999484],[9.937221268,55.384999484],[9.937221268,55.385088785],[9.937064063,55.385088785]]]},"properties":{"id":199,"top":7436965.5681,"id_0":199,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436948.0681,"col_index":2,"row_index":56}},{"id":200,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384999484],[9.937064063,55.384910182],[9.937221268,55.384910182],[9.937221268,55.384999484],[9.937064063,55.384999484]]]},"properties":{"id":200,"top":7436948.0681,"id_0":200,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436930.5681,"col_index":2,"row_index":57}},{"id":201,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384910182],[9.937064063,55.38482088],[9.937221268,55.38482088],[9.937221268,55.384910182],[9.937064063,55.384910182]]]},"properties":{"id":201,"top":7436930.5681,"id_0":201,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436913.0681,"col_index":2,"row_index":58}},{"id":202,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.38482088],[9.937064063,55.384731577],[9.937221268,55.384731577],[9.937221268,55.38482088],[9.937064063,55.38482088]]]},"properties":{"id":202,"top":7436913.0681,"id_0":202,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436895.5681,"col_index":2,"row_index":59}},{"id":203,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384731577],[9.937064063,55.384642275],[9.937221268,55.384642275],[9.937221268,55.384731577],[9.937064063,55.384731577]]]},"properties":{"id":203,"top":7436895.5681,"id_0":203,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436878.0681,"col_index":2,"row_index":60}},{"id":204,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384642275],[9.937064063,55.384552972],[9.937221268,55.384552972],[9.937221268,55.384642275],[9.937064063,55.384642275]]]},"properties":{"id":204,"top":7436878.0681,"id_0":204,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436860.5681,"col_index":2,"row_index":61}},{"id":205,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384552972],[9.937064063,55.384463669],[9.937221268,55.384463669],[9.937221268,55.384552972],[9.937064063,55.384552972]]]},"properties":{"id":205,"top":7436860.5681,"id_0":205,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436843.0681,"col_index":2,"row_index":62}},{"id":206,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384463669],[9.937064063,55.384374366],[9.937221268,55.384374366],[9.937221268,55.384463669],[9.937064063,55.384463669]]]},"properties":{"id":206,"top":7436843.0681,"id_0":206,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436825.5681,"col_index":2,"row_index":63}},{"id":207,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384374366],[9.937064063,55.384285062],[9.937221268,55.384285062],[9.937221268,55.384374366],[9.937064063,55.384374366]]]},"properties":{"id":207,"top":7436825.5681,"id_0":207,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436808.0681,"col_index":2,"row_index":64}},{"id":208,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384285062],[9.937064063,55.384195759],[9.937221268,55.384195759],[9.937221268,55.384285062],[9.937064063,55.384285062]]]},"properties":{"id":208,"top":7436808.0681,"id_0":208,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436790.5681,"col_index":2,"row_index":65}},{"id":209,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384195759],[9.937064063,55.384106455],[9.937221268,55.384106455],[9.937221268,55.384195759],[9.937064063,55.384195759]]]},"properties":{"id":209,"top":7436790.5681,"id_0":209,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436773.0681,"col_index":2,"row_index":66}},{"id":210,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384106455],[9.937064063,55.384017151],[9.937221268,55.384017151],[9.937221268,55.384106455],[9.937064063,55.384106455]]]},"properties":{"id":210,"top":7436773.0681,"id_0":210,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436755.5681,"col_index":2,"row_index":67}},{"id":211,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.384017151],[9.937064063,55.383927847],[9.937221268,55.383927847],[9.937221268,55.384017151],[9.937064063,55.384017151]]]},"properties":{"id":211,"top":7436755.5681,"id_0":211,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436738.0681,"col_index":2,"row_index":68}},{"id":212,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.383927847],[9.937064063,55.383838543],[9.937221268,55.383838543],[9.937221268,55.383927847],[9.937064063,55.383927847]]]},"properties":{"id":212,"top":7436738.0681,"id_0":212,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436720.5681,"col_index":2,"row_index":69}},{"id":213,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.383838543],[9.937064063,55.383749238],[9.937221268,55.383749238],[9.937221268,55.383838543],[9.937064063,55.383838543]]]},"properties":{"id":213,"top":7436720.5681,"id_0":213,"left":1106188.9115,"Label":null,"right":1106206.4115,"bottom":7436703.0681,"col_index":2,"row_index":70}},{"id":215,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.390000071],[9.937221268,55.38991078],[9.937378474,55.38991078],[9.937378474,55.390000071],[9.937221268,55.390000071]]]},"properties":{"id":215,"top":7437928.0681,"id_0":215,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437910.5681,"col_index":3,"row_index":1}},{"id":216,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38991078],[9.937221268,55.38982149],[9.937378474,55.38982149],[9.937378474,55.38991078],[9.937221268,55.38991078]]]},"properties":{"id":216,"top":7437910.5681,"id_0":216,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437893.0681,"col_index":3,"row_index":2}},{"id":217,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38982149],[9.937221268,55.389732199],[9.937378474,55.389732199],[9.937378474,55.38982149],[9.937221268,55.38982149]]]},"properties":{"id":217,"top":7437893.0681,"id_0":217,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437875.5681,"col_index":3,"row_index":3}},{"id":218,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389732199],[9.937221268,55.389642907],[9.937378474,55.389642907],[9.937378474,55.389732199],[9.937221268,55.389732199]]]},"properties":{"id":218,"top":7437875.5681,"id_0":218,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437858.0681,"col_index":3,"row_index":4}},{"id":219,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389642907],[9.937221268,55.389553616],[9.937378474,55.389553616],[9.937378474,55.389642907],[9.937221268,55.389642907]]]},"properties":{"id":219,"top":7437858.0681,"id_0":219,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437840.5681,"col_index":3,"row_index":5}},{"id":220,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389553616],[9.937221268,55.389464324],[9.937378474,55.389464324],[9.937378474,55.389553616],[9.937221268,55.389553616]]]},"properties":{"id":220,"top":7437840.5681,"id_0":220,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437823.0681,"col_index":3,"row_index":6}},{"id":221,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389464324],[9.937221268,55.389375032],[9.937378474,55.389375032],[9.937378474,55.389464324],[9.937221268,55.389464324]]]},"properties":{"id":221,"top":7437823.0681,"id_0":221,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437805.5681,"col_index":3,"row_index":7}},{"id":222,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389375032],[9.937221268,55.38928574],[9.937378474,55.38928574],[9.937378474,55.389375032],[9.937221268,55.389375032]]]},"properties":{"id":222,"top":7437805.5681,"id_0":222,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437788.0681,"col_index":3,"row_index":8}},{"id":223,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38928574],[9.937221268,55.389196448],[9.937378474,55.389196448],[9.937378474,55.38928574],[9.937221268,55.38928574]]]},"properties":{"id":223,"top":7437788.0681,"id_0":223,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437770.5681,"col_index":3,"row_index":9}},{"id":224,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389196448],[9.937221268,55.389107155],[9.937378474,55.389107155],[9.937378474,55.389196448],[9.937221268,55.389196448]]]},"properties":{"id":224,"top":7437770.5681,"id_0":224,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437753.0681,"col_index":3,"row_index":10}},{"id":225,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389107155],[9.937221268,55.389017863],[9.937378474,55.389017863],[9.937378474,55.389107155],[9.937221268,55.389107155]]]},"properties":{"id":225,"top":7437753.0681,"id_0":225,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437735.5681,"col_index":3,"row_index":11}},{"id":226,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.389017863],[9.937221268,55.38892857],[9.937378474,55.38892857],[9.937378474,55.389017863],[9.937221268,55.389017863]]]},"properties":{"id":226,"top":7437735.5681,"id_0":226,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437718.0681,"col_index":3,"row_index":12}},{"id":227,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38892857],[9.937221268,55.388839277],[9.937378474,55.388839277],[9.937378474,55.38892857],[9.937221268,55.38892857]]]},"properties":{"id":227,"top":7437718.0681,"id_0":227,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437700.5681,"col_index":3,"row_index":13}},{"id":228,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388839277],[9.937221268,55.388749984],[9.937378474,55.388749984],[9.937378474,55.388839277],[9.937221268,55.388839277]]]},"properties":{"id":228,"top":7437700.5681,"id_0":228,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437683.0681,"col_index":3,"row_index":14}},{"id":229,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388749984],[9.937221268,55.38866069],[9.937378474,55.38866069],[9.937378474,55.388749984],[9.937221268,55.388749984]]]},"properties":{"id":229,"top":7437683.0681,"id_0":229,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437665.5681,"col_index":3,"row_index":15}},{"id":230,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38866069],[9.937221268,55.388571396],[9.937378474,55.388571396],[9.937378474,55.38866069],[9.937221268,55.38866069]]]},"properties":{"id":230,"top":7437665.5681,"id_0":230,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437648.0681,"col_index":3,"row_index":16}},{"id":231,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388571396],[9.937221268,55.388482103],[9.937378474,55.388482103],[9.937378474,55.388571396],[9.937221268,55.388571396]]]},"properties":{"id":231,"top":7437648.0681,"id_0":231,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437630.5681,"col_index":3,"row_index":17}},{"id":232,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388482103],[9.937221268,55.388392808],[9.937378474,55.388392808],[9.937378474,55.388482103],[9.937221268,55.388482103]]]},"properties":{"id":232,"top":7437630.5681,"id_0":232,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437613.0681,"col_index":3,"row_index":18}},{"id":233,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388392808],[9.937221268,55.388303514],[9.937378474,55.388303514],[9.937378474,55.388392808],[9.937221268,55.388392808]]]},"properties":{"id":233,"top":7437613.0681,"id_0":233,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437595.5681,"col_index":3,"row_index":19}},{"id":234,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388303514],[9.937221268,55.38821422],[9.937378474,55.38821422],[9.937378474,55.388303514],[9.937221268,55.388303514]]]},"properties":{"id":234,"top":7437595.5681,"id_0":234,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437578.0681,"col_index":3,"row_index":20}},{"id":235,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38821422],[9.937221268,55.388124925],[9.937378474,55.388124925],[9.937378474,55.38821422],[9.937221268,55.38821422]]]},"properties":{"id":235,"top":7437578.0681,"id_0":235,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437560.5681,"col_index":3,"row_index":21}},{"id":236,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.388124925],[9.937221268,55.38803563],[9.937378474,55.38803563],[9.937378474,55.388124925],[9.937221268,55.388124925]]]},"properties":{"id":236,"top":7437560.5681,"id_0":236,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437543.0681,"col_index":3,"row_index":22}},{"id":237,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38803563],[9.937221268,55.387946335],[9.937378474,55.387946335],[9.937378474,55.38803563],[9.937221268,55.38803563]]]},"properties":{"id":237,"top":7437543.0681,"id_0":237,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437525.5681,"col_index":3,"row_index":23}},{"id":238,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387946335],[9.937221268,55.38785704],[9.937378474,55.38785704],[9.937378474,55.387946335],[9.937221268,55.387946335]]]},"properties":{"id":238,"top":7437525.5681,"id_0":238,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437508.0681,"col_index":3,"row_index":24}},{"id":239,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38785704],[9.937221268,55.387767744],[9.937378474,55.387767744],[9.937378474,55.38785704],[9.937221268,55.38785704]]]},"properties":{"id":239,"top":7437508.0681,"id_0":239,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437490.5681,"col_index":3,"row_index":25}},{"id":240,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387767744],[9.937221268,55.387678448],[9.937378474,55.387678448],[9.937378474,55.387767744],[9.937221268,55.387767744]]]},"properties":{"id":240,"top":7437490.5681,"id_0":240,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437473.0681,"col_index":3,"row_index":26}},{"id":241,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387678448],[9.937221268,55.387589153],[9.937378474,55.387589153],[9.937378474,55.387678448],[9.937221268,55.387678448]]]},"properties":{"id":241,"top":7437473.0681,"id_0":241,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437455.5681,"col_index":3,"row_index":27}},{"id":242,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387589153],[9.937221268,55.387499856],[9.937378474,55.387499856],[9.937378474,55.387589153],[9.937221268,55.387589153]]]},"properties":{"id":242,"top":7437455.5681,"id_0":242,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437438.0681,"col_index":3,"row_index":28}},{"id":243,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387499856],[9.937221268,55.38741056],[9.937378474,55.38741056],[9.937378474,55.387499856],[9.937221268,55.387499856]]]},"properties":{"id":243,"top":7437438.0681,"id_0":243,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437420.5681,"col_index":3,"row_index":29}},{"id":244,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38741056],[9.937221268,55.387321264],[9.937378474,55.387321264],[9.937378474,55.38741056],[9.937221268,55.38741056]]]},"properties":{"id":244,"top":7437420.5681,"id_0":244,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437403.0681,"col_index":3,"row_index":30}},{"id":245,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387321264],[9.937221268,55.387231967],[9.937378474,55.387231967],[9.937378474,55.387321264],[9.937221268,55.387321264]]]},"properties":{"id":245,"top":7437403.0681,"id_0":245,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437385.5681,"col_index":3,"row_index":31}},{"id":246,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387231967],[9.937221268,55.38714267],[9.937378474,55.38714267],[9.937378474,55.387231967],[9.937221268,55.387231967]]]},"properties":{"id":246,"top":7437385.5681,"id_0":246,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437368.0681,"col_index":3,"row_index":32}},{"id":247,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38714267],[9.937221268,55.387053373],[9.937378474,55.387053373],[9.937378474,55.38714267],[9.937221268,55.38714267]]]},"properties":{"id":247,"top":7437368.0681,"id_0":247,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437350.5681,"col_index":3,"row_index":33}},{"id":248,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.387053373],[9.937221268,55.386964076],[9.937378474,55.386964076],[9.937378474,55.387053373],[9.937221268,55.387053373]]]},"properties":{"id":248,"top":7437350.5681,"id_0":248,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437333.0681,"col_index":3,"row_index":34}},{"id":249,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386964076],[9.937221268,55.386874778],[9.937378474,55.386874778],[9.937378474,55.386964076],[9.937221268,55.386964076]]]},"properties":{"id":249,"top":7437333.0681,"id_0":249,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437315.5681,"col_index":3,"row_index":35}},{"id":250,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386874778],[9.937221268,55.38678548],[9.937378474,55.38678548],[9.937378474,55.386874778],[9.937221268,55.386874778]]]},"properties":{"id":250,"top":7437315.5681,"id_0":250,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437298.0681,"col_index":3,"row_index":36}},{"id":251,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38678548],[9.937221268,55.386696182],[9.937378474,55.386696182],[9.937378474,55.38678548],[9.937221268,55.38678548]]]},"properties":{"id":251,"top":7437298.0681,"id_0":251,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437280.5681,"col_index":3,"row_index":37}},{"id":252,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386696182],[9.937221268,55.386606884],[9.937378474,55.386606884],[9.937378474,55.386696182],[9.937221268,55.386696182]]]},"properties":{"id":252,"top":7437280.5681,"id_0":252,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437263.0681,"col_index":3,"row_index":38}},{"id":253,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386606884],[9.937221268,55.386517586],[9.937378474,55.386517586],[9.937378474,55.386606884],[9.937221268,55.386606884]]]},"properties":{"id":253,"top":7437263.0681,"id_0":253,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437245.5681,"col_index":3,"row_index":39}},{"id":254,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386517586],[9.937221268,55.386428287],[9.937378474,55.386428287],[9.937378474,55.386517586],[9.937221268,55.386517586]]]},"properties":{"id":254,"top":7437245.5681,"id_0":254,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437228.0681,"col_index":3,"row_index":40}},{"id":255,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386428287],[9.937221268,55.386338989],[9.937378474,55.386338989],[9.937378474,55.386428287],[9.937221268,55.386428287]]]},"properties":{"id":255,"top":7437228.0681,"id_0":255,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437210.5681,"col_index":3,"row_index":41}},{"id":256,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386338989],[9.937221268,55.38624969],[9.937378474,55.38624969],[9.937378474,55.386338989],[9.937221268,55.386338989]]]},"properties":{"id":256,"top":7437210.5681,"id_0":256,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437193.0681,"col_index":3,"row_index":42}},{"id":257,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38624969],[9.937221268,55.386160391],[9.937378474,55.386160391],[9.937378474,55.38624969],[9.937221268,55.38624969]]]},"properties":{"id":257,"top":7437193.0681,"id_0":257,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437175.5681,"col_index":3,"row_index":43}},{"id":258,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386160391],[9.937221268,55.386071091],[9.937378474,55.386071091],[9.937378474,55.386160391],[9.937221268,55.386160391]]]},"properties":{"id":258,"top":7437175.5681,"id_0":258,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437158.0681,"col_index":3,"row_index":44}},{"id":259,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.386071091],[9.937221268,55.385981792],[9.937378474,55.385981792],[9.937378474,55.386071091],[9.937221268,55.386071091]]]},"properties":{"id":259,"top":7437158.0681,"id_0":259,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437140.5681,"col_index":3,"row_index":45}},{"id":260,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385981792],[9.937221268,55.385892492],[9.937378474,55.385892492],[9.937378474,55.385981792],[9.937221268,55.385981792]]]},"properties":{"id":260,"top":7437140.5681,"id_0":260,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437123.0681,"col_index":3,"row_index":46}},{"id":261,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385892492],[9.937221268,55.385803192],[9.937378474,55.385803192],[9.937378474,55.385892492],[9.937221268,55.385892492]]]},"properties":{"id":261,"top":7437123.0681,"id_0":261,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437105.5681,"col_index":3,"row_index":47}},{"id":262,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385803192],[9.937221268,55.385713892],[9.937378474,55.385713892],[9.937378474,55.385803192],[9.937221268,55.385803192]]]},"properties":{"id":262,"top":7437105.5681,"id_0":262,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437088.0681,"col_index":3,"row_index":48}},{"id":263,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385713892],[9.937221268,55.385624592],[9.937378474,55.385624592],[9.937378474,55.385713892],[9.937221268,55.385713892]]]},"properties":{"id":263,"top":7437088.0681,"id_0":263,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437070.5681,"col_index":3,"row_index":49}},{"id":264,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385624592],[9.937221268,55.385535291],[9.937378474,55.385535291],[9.937378474,55.385624592],[9.937221268,55.385624592]]]},"properties":{"id":264,"top":7437070.5681,"id_0":264,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437053.0681,"col_index":3,"row_index":50}},{"id":265,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385535291],[9.937221268,55.38544599],[9.937378474,55.38544599],[9.937378474,55.385535291],[9.937221268,55.385535291]]]},"properties":{"id":265,"top":7437053.0681,"id_0":265,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437035.5681,"col_index":3,"row_index":51}},{"id":266,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38544599],[9.937221268,55.385356689],[9.937378474,55.385356689],[9.937378474,55.38544599],[9.937221268,55.38544599]]]},"properties":{"id":266,"top":7437035.5681,"id_0":266,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437018.0681,"col_index":3,"row_index":52}},{"id":267,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385356689],[9.937221268,55.385267388],[9.937378474,55.385267388],[9.937378474,55.385356689],[9.937221268,55.385356689]]]},"properties":{"id":267,"top":7437018.0681,"id_0":267,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7437000.5681,"col_index":3,"row_index":53}},{"id":268,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385267388],[9.937221268,55.385178087],[9.937378474,55.385178087],[9.937378474,55.385267388],[9.937221268,55.385267388]]]},"properties":{"id":268,"top":7437000.5681,"id_0":268,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436983.0681,"col_index":3,"row_index":54}},{"id":269,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385178087],[9.937221268,55.385088785],[9.937378474,55.385088785],[9.937378474,55.385178087],[9.937221268,55.385178087]]]},"properties":{"id":269,"top":7436983.0681,"id_0":269,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436965.5681,"col_index":3,"row_index":55}},{"id":270,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.385088785],[9.937221268,55.384999484],[9.937378474,55.384999484],[9.937378474,55.385088785],[9.937221268,55.385088785]]]},"properties":{"id":270,"top":7436965.5681,"id_0":270,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436948.0681,"col_index":3,"row_index":56}},{"id":271,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384999484],[9.937221268,55.384910182],[9.937378474,55.384910182],[9.937378474,55.384999484],[9.937221268,55.384999484]]]},"properties":{"id":271,"top":7436948.0681,"id_0":271,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436930.5681,"col_index":3,"row_index":57}},{"id":272,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384910182],[9.937221268,55.38482088],[9.937378474,55.38482088],[9.937378474,55.384910182],[9.937221268,55.384910182]]]},"properties":{"id":272,"top":7436930.5681,"id_0":272,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436913.0681,"col_index":3,"row_index":58}},{"id":273,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.38482088],[9.937221268,55.384731577],[9.937378474,55.384731577],[9.937378474,55.38482088],[9.937221268,55.38482088]]]},"properties":{"id":273,"top":7436913.0681,"id_0":273,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436895.5681,"col_index":3,"row_index":59}},{"id":274,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384731577],[9.937221268,55.384642275],[9.937378474,55.384642275],[9.937378474,55.384731577],[9.937221268,55.384731577]]]},"properties":{"id":274,"top":7436895.5681,"id_0":274,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436878.0681,"col_index":3,"row_index":60}},{"id":275,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384642275],[9.937221268,55.384552972],[9.937378474,55.384552972],[9.937378474,55.384642275],[9.937221268,55.384642275]]]},"properties":{"id":275,"top":7436878.0681,"id_0":275,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436860.5681,"col_index":3,"row_index":61}},{"id":276,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384552972],[9.937221268,55.384463669],[9.937378474,55.384463669],[9.937378474,55.384552972],[9.937221268,55.384552972]]]},"properties":{"id":276,"top":7436860.5681,"id_0":276,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436843.0681,"col_index":3,"row_index":62}},{"id":277,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384463669],[9.937221268,55.384374366],[9.937378474,55.384374366],[9.937378474,55.384463669],[9.937221268,55.384463669]]]},"properties":{"id":277,"top":7436843.0681,"id_0":277,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436825.5681,"col_index":3,"row_index":63}},{"id":278,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384374366],[9.937221268,55.384285062],[9.937378474,55.384285062],[9.937378474,55.384374366],[9.937221268,55.384374366]]]},"properties":{"id":278,"top":7436825.5681,"id_0":278,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436808.0681,"col_index":3,"row_index":64}},{"id":279,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384285062],[9.937221268,55.384195759],[9.937378474,55.384195759],[9.937378474,55.384285062],[9.937221268,55.384285062]]]},"properties":{"id":279,"top":7436808.0681,"id_0":279,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436790.5681,"col_index":3,"row_index":65}},{"id":280,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384195759],[9.937221268,55.384106455],[9.937378474,55.384106455],[9.937378474,55.384195759],[9.937221268,55.384195759]]]},"properties":{"id":280,"top":7436790.5681,"id_0":280,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436773.0681,"col_index":3,"row_index":66}},{"id":281,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384106455],[9.937221268,55.384017151],[9.937378474,55.384017151],[9.937378474,55.384106455],[9.937221268,55.384106455]]]},"properties":{"id":281,"top":7436773.0681,"id_0":281,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436755.5681,"col_index":3,"row_index":67}},{"id":282,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.384017151],[9.937221268,55.383927847],[9.937378474,55.383927847],[9.937378474,55.384017151],[9.937221268,55.384017151]]]},"properties":{"id":282,"top":7436755.5681,"id_0":282,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436738.0681,"col_index":3,"row_index":68}},{"id":283,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.383927847],[9.937221268,55.383838543],[9.937378474,55.383838543],[9.937378474,55.383927847],[9.937221268,55.383927847]]]},"properties":{"id":283,"top":7436738.0681,"id_0":283,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436720.5681,"col_index":3,"row_index":69}},{"id":284,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.383838543],[9.937221268,55.383749238],[9.937378474,55.383749238],[9.937378474,55.383838543],[9.937221268,55.383838543]]]},"properties":{"id":284,"top":7436720.5681,"id_0":284,"left":1106206.4115,"Label":null,"right":1106223.9115,"bottom":7436703.0681,"col_index":3,"row_index":70}},{"id":286,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.390000071],[9.937378474,55.38991078],[9.937535679,55.38991078],[9.937535679,55.390000071],[9.937378474,55.390000071]]]},"properties":{"id":286,"top":7437928.0681,"id_0":286,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437910.5681,"col_index":4,"row_index":1}},{"id":287,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38991078],[9.937378474,55.38982149],[9.937535679,55.38982149],[9.937535679,55.38991078],[9.937378474,55.38991078]]]},"properties":{"id":287,"top":7437910.5681,"id_0":287,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437893.0681,"col_index":4,"row_index":2}},{"id":288,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38982149],[9.937378474,55.389732199],[9.937535679,55.389732199],[9.937535679,55.38982149],[9.937378474,55.38982149]]]},"properties":{"id":288,"top":7437893.0681,"id_0":288,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437875.5681,"col_index":4,"row_index":3}},{"id":289,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389732199],[9.937378474,55.389642907],[9.937535679,55.389642907],[9.937535679,55.389732199],[9.937378474,55.389732199]]]},"properties":{"id":289,"top":7437875.5681,"id_0":289,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437858.0681,"col_index":4,"row_index":4}},{"id":290,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389642907],[9.937378474,55.389553616],[9.937535679,55.389553616],[9.937535679,55.389642907],[9.937378474,55.389642907]]]},"properties":{"id":290,"top":7437858.0681,"id_0":290,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437840.5681,"col_index":4,"row_index":5}},{"id":291,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389553616],[9.937378474,55.389464324],[9.937535679,55.389464324],[9.937535679,55.389553616],[9.937378474,55.389553616]]]},"properties":{"id":291,"top":7437840.5681,"id_0":291,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437823.0681,"col_index":4,"row_index":6}},{"id":292,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389464324],[9.937378474,55.389375032],[9.937535679,55.389375032],[9.937535679,55.389464324],[9.937378474,55.389464324]]]},"properties":{"id":292,"top":7437823.0681,"id_0":292,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437805.5681,"col_index":4,"row_index":7}},{"id":293,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389375032],[9.937378474,55.38928574],[9.937535679,55.38928574],[9.937535679,55.389375032],[9.937378474,55.389375032]]]},"properties":{"id":293,"top":7437805.5681,"id_0":293,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437788.0681,"col_index":4,"row_index":8}},{"id":294,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38928574],[9.937378474,55.389196448],[9.937535679,55.389196448],[9.937535679,55.38928574],[9.937378474,55.38928574]]]},"properties":{"id":294,"top":7437788.0681,"id_0":294,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437770.5681,"col_index":4,"row_index":9}},{"id":295,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389196448],[9.937378474,55.389107155],[9.937535679,55.389107155],[9.937535679,55.389196448],[9.937378474,55.389196448]]]},"properties":{"id":295,"top":7437770.5681,"id_0":295,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437753.0681,"col_index":4,"row_index":10}},{"id":296,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389107155],[9.937378474,55.389017863],[9.937535679,55.389017863],[9.937535679,55.389107155],[9.937378474,55.389107155]]]},"properties":{"id":296,"top":7437753.0681,"id_0":296,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437735.5681,"col_index":4,"row_index":11}},{"id":297,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.389017863],[9.937378474,55.38892857],[9.937535679,55.38892857],[9.937535679,55.389017863],[9.937378474,55.389017863]]]},"properties":{"id":297,"top":7437735.5681,"id_0":297,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437718.0681,"col_index":4,"row_index":12}},{"id":298,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38892857],[9.937378474,55.388839277],[9.937535679,55.388839277],[9.937535679,55.38892857],[9.937378474,55.38892857]]]},"properties":{"id":298,"top":7437718.0681,"id_0":298,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437700.5681,"col_index":4,"row_index":13}},{"id":299,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388839277],[9.937378474,55.388749984],[9.937535679,55.388749984],[9.937535679,55.388839277],[9.937378474,55.388839277]]]},"properties":{"id":299,"top":7437700.5681,"id_0":299,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437683.0681,"col_index":4,"row_index":14}},{"id":300,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388749984],[9.937378474,55.38866069],[9.937535679,55.38866069],[9.937535679,55.388749984],[9.937378474,55.388749984]]]},"properties":{"id":300,"top":7437683.0681,"id_0":300,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437665.5681,"col_index":4,"row_index":15}},{"id":301,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38866069],[9.937378474,55.388571396],[9.937535679,55.388571396],[9.937535679,55.38866069],[9.937378474,55.38866069]]]},"properties":{"id":301,"top":7437665.5681,"id_0":301,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437648.0681,"col_index":4,"row_index":16}},{"id":302,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388571396],[9.937378474,55.388482103],[9.937535679,55.388482103],[9.937535679,55.388571396],[9.937378474,55.388571396]]]},"properties":{"id":302,"top":7437648.0681,"id_0":302,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437630.5681,"col_index":4,"row_index":17}},{"id":303,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388482103],[9.937378474,55.388392808],[9.937535679,55.388392808],[9.937535679,55.388482103],[9.937378474,55.388482103]]]},"properties":{"id":303,"top":7437630.5681,"id_0":303,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437613.0681,"col_index":4,"row_index":18}},{"id":304,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388392808],[9.937378474,55.388303514],[9.937535679,55.388303514],[9.937535679,55.388392808],[9.937378474,55.388392808]]]},"properties":{"id":304,"top":7437613.0681,"id_0":304,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437595.5681,"col_index":4,"row_index":19}},{"id":305,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388303514],[9.937378474,55.38821422],[9.937535679,55.38821422],[9.937535679,55.388303514],[9.937378474,55.388303514]]]},"properties":{"id":305,"top":7437595.5681,"id_0":305,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437578.0681,"col_index":4,"row_index":20}},{"id":306,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38821422],[9.937378474,55.388124925],[9.937535679,55.388124925],[9.937535679,55.38821422],[9.937378474,55.38821422]]]},"properties":{"id":306,"top":7437578.0681,"id_0":306,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437560.5681,"col_index":4,"row_index":21}},{"id":307,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.388124925],[9.937378474,55.38803563],[9.937535679,55.38803563],[9.937535679,55.388124925],[9.937378474,55.388124925]]]},"properties":{"id":307,"top":7437560.5681,"id_0":307,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437543.0681,"col_index":4,"row_index":22}},{"id":308,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38803563],[9.937378474,55.387946335],[9.937535679,55.387946335],[9.937535679,55.38803563],[9.937378474,55.38803563]]]},"properties":{"id":308,"top":7437543.0681,"id_0":308,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437525.5681,"col_index":4,"row_index":23}},{"id":309,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387946335],[9.937378474,55.38785704],[9.937535679,55.38785704],[9.937535679,55.387946335],[9.937378474,55.387946335]]]},"properties":{"id":309,"top":7437525.5681,"id_0":309,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437508.0681,"col_index":4,"row_index":24}},{"id":310,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38785704],[9.937378474,55.387767744],[9.937535679,55.387767744],[9.937535679,55.38785704],[9.937378474,55.38785704]]]},"properties":{"id":310,"top":7437508.0681,"id_0":310,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437490.5681,"col_index":4,"row_index":25}},{"id":311,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387767744],[9.937378474,55.387678448],[9.937535679,55.387678448],[9.937535679,55.387767744],[9.937378474,55.387767744]]]},"properties":{"id":311,"top":7437490.5681,"id_0":311,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437473.0681,"col_index":4,"row_index":26}},{"id":312,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387678448],[9.937378474,55.387589153],[9.937535679,55.387589153],[9.937535679,55.387678448],[9.937378474,55.387678448]]]},"properties":{"id":312,"top":7437473.0681,"id_0":312,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437455.5681,"col_index":4,"row_index":27}},{"id":313,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387589153],[9.937378474,55.387499856],[9.937535679,55.387499856],[9.937535679,55.387589153],[9.937378474,55.387589153]]]},"properties":{"id":313,"top":7437455.5681,"id_0":313,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437438.0681,"col_index":4,"row_index":28}},{"id":314,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387499856],[9.937378474,55.38741056],[9.937535679,55.38741056],[9.937535679,55.387499856],[9.937378474,55.387499856]]]},"properties":{"id":314,"top":7437438.0681,"id_0":314,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437420.5681,"col_index":4,"row_index":29}},{"id":315,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38741056],[9.937378474,55.387321264],[9.937535679,55.387321264],[9.937535679,55.38741056],[9.937378474,55.38741056]]]},"properties":{"id":315,"top":7437420.5681,"id_0":315,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437403.0681,"col_index":4,"row_index":30}},{"id":316,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387321264],[9.937378474,55.387231967],[9.937535679,55.387231967],[9.937535679,55.387321264],[9.937378474,55.387321264]]]},"properties":{"id":316,"top":7437403.0681,"id_0":316,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437385.5681,"col_index":4,"row_index":31}},{"id":317,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387231967],[9.937378474,55.38714267],[9.937535679,55.38714267],[9.937535679,55.387231967],[9.937378474,55.387231967]]]},"properties":{"id":317,"top":7437385.5681,"id_0":317,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437368.0681,"col_index":4,"row_index":32}},{"id":318,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38714267],[9.937378474,55.387053373],[9.937535679,55.387053373],[9.937535679,55.38714267],[9.937378474,55.38714267]]]},"properties":{"id":318,"top":7437368.0681,"id_0":318,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437350.5681,"col_index":4,"row_index":33}},{"id":319,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.387053373],[9.937378474,55.386964076],[9.937535679,55.386964076],[9.937535679,55.387053373],[9.937378474,55.387053373]]]},"properties":{"id":319,"top":7437350.5681,"id_0":319,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437333.0681,"col_index":4,"row_index":34}},{"id":320,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386964076],[9.937378474,55.386874778],[9.937535679,55.386874778],[9.937535679,55.386964076],[9.937378474,55.386964076]]]},"properties":{"id":320,"top":7437333.0681,"id_0":320,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437315.5681,"col_index":4,"row_index":35}},{"id":321,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386874778],[9.937378474,55.38678548],[9.937535679,55.38678548],[9.937535679,55.386874778],[9.937378474,55.386874778]]]},"properties":{"id":321,"top":7437315.5681,"id_0":321,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437298.0681,"col_index":4,"row_index":36}},{"id":322,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38678548],[9.937378474,55.386696182],[9.937535679,55.386696182],[9.937535679,55.38678548],[9.937378474,55.38678548]]]},"properties":{"id":322,"top":7437298.0681,"id_0":322,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437280.5681,"col_index":4,"row_index":37}},{"id":323,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386696182],[9.937378474,55.386606884],[9.937535679,55.386606884],[9.937535679,55.386696182],[9.937378474,55.386696182]]]},"properties":{"id":323,"top":7437280.5681,"id_0":323,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437263.0681,"col_index":4,"row_index":38}},{"id":324,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386606884],[9.937378474,55.386517586],[9.937535679,55.386517586],[9.937535679,55.386606884],[9.937378474,55.386606884]]]},"properties":{"id":324,"top":7437263.0681,"id_0":324,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437245.5681,"col_index":4,"row_index":39}},{"id":325,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386517586],[9.937378474,55.386428287],[9.937535679,55.386428287],[9.937535679,55.386517586],[9.937378474,55.386517586]]]},"properties":{"id":325,"top":7437245.5681,"id_0":325,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437228.0681,"col_index":4,"row_index":40}},{"id":326,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386428287],[9.937378474,55.386338989],[9.937535679,55.386338989],[9.937535679,55.386428287],[9.937378474,55.386428287]]]},"properties":{"id":326,"top":7437228.0681,"id_0":326,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437210.5681,"col_index":4,"row_index":41}},{"id":327,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386338989],[9.937378474,55.38624969],[9.937535679,55.38624969],[9.937535679,55.386338989],[9.937378474,55.386338989]]]},"properties":{"id":327,"top":7437210.5681,"id_0":327,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437193.0681,"col_index":4,"row_index":42}},{"id":328,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38624969],[9.937378474,55.386160391],[9.937535679,55.386160391],[9.937535679,55.38624969],[9.937378474,55.38624969]]]},"properties":{"id":328,"top":7437193.0681,"id_0":328,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437175.5681,"col_index":4,"row_index":43}},{"id":329,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386160391],[9.937378474,55.386071091],[9.937535679,55.386071091],[9.937535679,55.386160391],[9.937378474,55.386160391]]]},"properties":{"id":329,"top":7437175.5681,"id_0":329,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437158.0681,"col_index":4,"row_index":44}},{"id":330,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.386071091],[9.937378474,55.385981792],[9.937535679,55.385981792],[9.937535679,55.386071091],[9.937378474,55.386071091]]]},"properties":{"id":330,"top":7437158.0681,"id_0":330,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437140.5681,"col_index":4,"row_index":45}},{"id":331,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385981792],[9.937378474,55.385892492],[9.937535679,55.385892492],[9.937535679,55.385981792],[9.937378474,55.385981792]]]},"properties":{"id":331,"top":7437140.5681,"id_0":331,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437123.0681,"col_index":4,"row_index":46}},{"id":332,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385892492],[9.937378474,55.385803192],[9.937535679,55.385803192],[9.937535679,55.385892492],[9.937378474,55.385892492]]]},"properties":{"id":332,"top":7437123.0681,"id_0":332,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437105.5681,"col_index":4,"row_index":47}},{"id":333,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385803192],[9.937378474,55.385713892],[9.937535679,55.385713892],[9.937535679,55.385803192],[9.937378474,55.385803192]]]},"properties":{"id":333,"top":7437105.5681,"id_0":333,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437088.0681,"col_index":4,"row_index":48}},{"id":334,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385713892],[9.937378474,55.385624592],[9.937535679,55.385624592],[9.937535679,55.385713892],[9.937378474,55.385713892]]]},"properties":{"id":334,"top":7437088.0681,"id_0":334,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437070.5681,"col_index":4,"row_index":49}},{"id":335,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385624592],[9.937378474,55.385535291],[9.937535679,55.385535291],[9.937535679,55.385624592],[9.937378474,55.385624592]]]},"properties":{"id":335,"top":7437070.5681,"id_0":335,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437053.0681,"col_index":4,"row_index":50}},{"id":336,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385535291],[9.937378474,55.38544599],[9.937535679,55.38544599],[9.937535679,55.385535291],[9.937378474,55.385535291]]]},"properties":{"id":336,"top":7437053.0681,"id_0":336,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437035.5681,"col_index":4,"row_index":51}},{"id":337,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38544599],[9.937378474,55.385356689],[9.937535679,55.385356689],[9.937535679,55.38544599],[9.937378474,55.38544599]]]},"properties":{"id":337,"top":7437035.5681,"id_0":337,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437018.0681,"col_index":4,"row_index":52}},{"id":338,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385356689],[9.937378474,55.385267388],[9.937535679,55.385267388],[9.937535679,55.385356689],[9.937378474,55.385356689]]]},"properties":{"id":338,"top":7437018.0681,"id_0":338,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7437000.5681,"col_index":4,"row_index":53}},{"id":339,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385267388],[9.937378474,55.385178087],[9.937535679,55.385178087],[9.937535679,55.385267388],[9.937378474,55.385267388]]]},"properties":{"id":339,"top":7437000.5681,"id_0":339,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436983.0681,"col_index":4,"row_index":54}},{"id":340,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385178087],[9.937378474,55.385088785],[9.937535679,55.385088785],[9.937535679,55.385178087],[9.937378474,55.385178087]]]},"properties":{"id":340,"top":7436983.0681,"id_0":340,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436965.5681,"col_index":4,"row_index":55}},{"id":341,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.385088785],[9.937378474,55.384999484],[9.937535679,55.384999484],[9.937535679,55.385088785],[9.937378474,55.385088785]]]},"properties":{"id":341,"top":7436965.5681,"id_0":341,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436948.0681,"col_index":4,"row_index":56}},{"id":342,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384999484],[9.937378474,55.384910182],[9.937535679,55.384910182],[9.937535679,55.384999484],[9.937378474,55.384999484]]]},"properties":{"id":342,"top":7436948.0681,"id_0":342,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436930.5681,"col_index":4,"row_index":57}},{"id":343,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384910182],[9.937378474,55.38482088],[9.937535679,55.38482088],[9.937535679,55.384910182],[9.937378474,55.384910182]]]},"properties":{"id":343,"top":7436930.5681,"id_0":343,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436913.0681,"col_index":4,"row_index":58}},{"id":344,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.38482088],[9.937378474,55.384731577],[9.937535679,55.384731577],[9.937535679,55.38482088],[9.937378474,55.38482088]]]},"properties":{"id":344,"top":7436913.0681,"id_0":344,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436895.5681,"col_index":4,"row_index":59}},{"id":345,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384731577],[9.937378474,55.384642275],[9.937535679,55.384642275],[9.937535679,55.384731577],[9.937378474,55.384731577]]]},"properties":{"id":345,"top":7436895.5681,"id_0":345,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436878.0681,"col_index":4,"row_index":60}},{"id":346,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384642275],[9.937378474,55.384552972],[9.937535679,55.384552972],[9.937535679,55.384642275],[9.937378474,55.384642275]]]},"properties":{"id":346,"top":7436878.0681,"id_0":346,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436860.5681,"col_index":4,"row_index":61}},{"id":347,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384552972],[9.937378474,55.384463669],[9.937535679,55.384463669],[9.937535679,55.384552972],[9.937378474,55.384552972]]]},"properties":{"id":347,"top":7436860.5681,"id_0":347,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436843.0681,"col_index":4,"row_index":62}},{"id":348,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384463669],[9.937378474,55.384374366],[9.937535679,55.384374366],[9.937535679,55.384463669],[9.937378474,55.384463669]]]},"properties":{"id":348,"top":7436843.0681,"id_0":348,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436825.5681,"col_index":4,"row_index":63}},{"id":349,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384374366],[9.937378474,55.384285062],[9.937535679,55.384285062],[9.937535679,55.384374366],[9.937378474,55.384374366]]]},"properties":{"id":349,"top":7436825.5681,"id_0":349,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436808.0681,"col_index":4,"row_index":64}},{"id":350,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384285062],[9.937378474,55.384195759],[9.937535679,55.384195759],[9.937535679,55.384285062],[9.937378474,55.384285062]]]},"properties":{"id":350,"top":7436808.0681,"id_0":350,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436790.5681,"col_index":4,"row_index":65}},{"id":351,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384195759],[9.937378474,55.384106455],[9.937535679,55.384106455],[9.937535679,55.384195759],[9.937378474,55.384195759]]]},"properties":{"id":351,"top":7436790.5681,"id_0":351,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436773.0681,"col_index":4,"row_index":66}},{"id":352,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384106455],[9.937378474,55.384017151],[9.937535679,55.384017151],[9.937535679,55.384106455],[9.937378474,55.384106455]]]},"properties":{"id":352,"top":7436773.0681,"id_0":352,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436755.5681,"col_index":4,"row_index":67}},{"id":353,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.384017151],[9.937378474,55.383927847],[9.937535679,55.383927847],[9.937535679,55.384017151],[9.937378474,55.384017151]]]},"properties":{"id":353,"top":7436755.5681,"id_0":353,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436738.0681,"col_index":4,"row_index":68}},{"id":354,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.383927847],[9.937378474,55.383838543],[9.937535679,55.383838543],[9.937535679,55.383927847],[9.937378474,55.383927847]]]},"properties":{"id":354,"top":7436738.0681,"id_0":354,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436720.5681,"col_index":4,"row_index":69}},{"id":355,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.383838543],[9.937378474,55.383749238],[9.937535679,55.383749238],[9.937535679,55.383838543],[9.937378474,55.383838543]]]},"properties":{"id":355,"top":7436720.5681,"id_0":355,"left":1106223.9115,"Label":null,"right":1106241.4115,"bottom":7436703.0681,"col_index":4,"row_index":70}},{"id":357,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.390000071],[9.937535679,55.38991078],[9.937692884,55.38991078],[9.937692884,55.390000071],[9.937535679,55.390000071]]]},"properties":{"id":357,"top":7437928.0681,"id_0":357,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437910.5681,"col_index":5,"row_index":1}},{"id":358,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38991078],[9.937535679,55.38982149],[9.937692884,55.38982149],[9.937692884,55.38991078],[9.937535679,55.38991078]]]},"properties":{"id":358,"top":7437910.5681,"id_0":358,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437893.0681,"col_index":5,"row_index":2}},{"id":359,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38982149],[9.937535679,55.389732199],[9.937692884,55.389732199],[9.937692884,55.38982149],[9.937535679,55.38982149]]]},"properties":{"id":359,"top":7437893.0681,"id_0":359,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437875.5681,"col_index":5,"row_index":3}},{"id":360,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389732199],[9.937535679,55.389642907],[9.937692884,55.389642907],[9.937692884,55.389732199],[9.937535679,55.389732199]]]},"properties":{"id":360,"top":7437875.5681,"id_0":360,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437858.0681,"col_index":5,"row_index":4}},{"id":361,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389642907],[9.937535679,55.389553616],[9.937692884,55.389553616],[9.937692884,55.389642907],[9.937535679,55.389642907]]]},"properties":{"id":361,"top":7437858.0681,"id_0":361,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437840.5681,"col_index":5,"row_index":5}},{"id":362,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389553616],[9.937535679,55.389464324],[9.937692884,55.389464324],[9.937692884,55.389553616],[9.937535679,55.389553616]]]},"properties":{"id":362,"top":7437840.5681,"id_0":362,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437823.0681,"col_index":5,"row_index":6}},{"id":363,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389464324],[9.937535679,55.389375032],[9.937692884,55.389375032],[9.937692884,55.389464324],[9.937535679,55.389464324]]]},"properties":{"id":363,"top":7437823.0681,"id_0":363,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437805.5681,"col_index":5,"row_index":7}},{"id":364,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389375032],[9.937535679,55.38928574],[9.937692884,55.38928574],[9.937692884,55.389375032],[9.937535679,55.389375032]]]},"properties":{"id":364,"top":7437805.5681,"id_0":364,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437788.0681,"col_index":5,"row_index":8}},{"id":365,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38928574],[9.937535679,55.389196448],[9.937692884,55.389196448],[9.937692884,55.38928574],[9.937535679,55.38928574]]]},"properties":{"id":365,"top":7437788.0681,"id_0":365,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437770.5681,"col_index":5,"row_index":9}},{"id":366,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389196448],[9.937535679,55.389107155],[9.937692884,55.389107155],[9.937692884,55.389196448],[9.937535679,55.389196448]]]},"properties":{"id":366,"top":7437770.5681,"id_0":366,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437753.0681,"col_index":5,"row_index":10}},{"id":367,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389107155],[9.937535679,55.389017863],[9.937692884,55.389017863],[9.937692884,55.389107155],[9.937535679,55.389107155]]]},"properties":{"id":367,"top":7437753.0681,"id_0":367,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437735.5681,"col_index":5,"row_index":11}},{"id":368,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.389017863],[9.937535679,55.38892857],[9.937692884,55.38892857],[9.937692884,55.389017863],[9.937535679,55.389017863]]]},"properties":{"id":368,"top":7437735.5681,"id_0":368,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437718.0681,"col_index":5,"row_index":12}},{"id":369,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38892857],[9.937535679,55.388839277],[9.937692884,55.388839277],[9.937692884,55.38892857],[9.937535679,55.38892857]]]},"properties":{"id":369,"top":7437718.0681,"id_0":369,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437700.5681,"col_index":5,"row_index":13}},{"id":370,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388839277],[9.937535679,55.388749984],[9.937692884,55.388749984],[9.937692884,55.388839277],[9.937535679,55.388839277]]]},"properties":{"id":370,"top":7437700.5681,"id_0":370,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437683.0681,"col_index":5,"row_index":14}},{"id":371,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388749984],[9.937535679,55.38866069],[9.937692884,55.38866069],[9.937692884,55.388749984],[9.937535679,55.388749984]]]},"properties":{"id":371,"top":7437683.0681,"id_0":371,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437665.5681,"col_index":5,"row_index":15}},{"id":372,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38866069],[9.937535679,55.388571396],[9.937692884,55.388571396],[9.937692884,55.38866069],[9.937535679,55.38866069]]]},"properties":{"id":372,"top":7437665.5681,"id_0":372,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437648.0681,"col_index":5,"row_index":16}},{"id":373,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388571396],[9.937535679,55.388482103],[9.937692884,55.388482103],[9.937692884,55.388571396],[9.937535679,55.388571396]]]},"properties":{"id":373,"top":7437648.0681,"id_0":373,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437630.5681,"col_index":5,"row_index":17}},{"id":374,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388482103],[9.937535679,55.388392808],[9.937692884,55.388392808],[9.937692884,55.388482103],[9.937535679,55.388482103]]]},"properties":{"id":374,"top":7437630.5681,"id_0":374,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437613.0681,"col_index":5,"row_index":18}},{"id":375,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388392808],[9.937535679,55.388303514],[9.937692884,55.388303514],[9.937692884,55.388392808],[9.937535679,55.388392808]]]},"properties":{"id":375,"top":7437613.0681,"id_0":375,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437595.5681,"col_index":5,"row_index":19}},{"id":376,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388303514],[9.937535679,55.38821422],[9.937692884,55.38821422],[9.937692884,55.388303514],[9.937535679,55.388303514]]]},"properties":{"id":376,"top":7437595.5681,"id_0":376,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437578.0681,"col_index":5,"row_index":20}},{"id":377,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38821422],[9.937535679,55.388124925],[9.937692884,55.388124925],[9.937692884,55.38821422],[9.937535679,55.38821422]]]},"properties":{"id":377,"top":7437578.0681,"id_0":377,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437560.5681,"col_index":5,"row_index":21}},{"id":378,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.388124925],[9.937535679,55.38803563],[9.937692884,55.38803563],[9.937692884,55.388124925],[9.937535679,55.388124925]]]},"properties":{"id":378,"top":7437560.5681,"id_0":378,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437543.0681,"col_index":5,"row_index":22}},{"id":379,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38803563],[9.937535679,55.387946335],[9.937692884,55.387946335],[9.937692884,55.38803563],[9.937535679,55.38803563]]]},"properties":{"id":379,"top":7437543.0681,"id_0":379,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437525.5681,"col_index":5,"row_index":23}},{"id":380,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387946335],[9.937535679,55.38785704],[9.937692884,55.38785704],[9.937692884,55.387946335],[9.937535679,55.387946335]]]},"properties":{"id":380,"top":7437525.5681,"id_0":380,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437508.0681,"col_index":5,"row_index":24}},{"id":381,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38785704],[9.937535679,55.387767744],[9.937692884,55.387767744],[9.937692884,55.38785704],[9.937535679,55.38785704]]]},"properties":{"id":381,"top":7437508.0681,"id_0":381,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437490.5681,"col_index":5,"row_index":25}},{"id":382,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387767744],[9.937535679,55.387678448],[9.937692884,55.387678448],[9.937692884,55.387767744],[9.937535679,55.387767744]]]},"properties":{"id":382,"top":7437490.5681,"id_0":382,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437473.0681,"col_index":5,"row_index":26}},{"id":383,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387678448],[9.937535679,55.387589153],[9.937692884,55.387589153],[9.937692884,55.387678448],[9.937535679,55.387678448]]]},"properties":{"id":383,"top":7437473.0681,"id_0":383,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437455.5681,"col_index":5,"row_index":27}},{"id":384,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387589153],[9.937535679,55.387499856],[9.937692884,55.387499856],[9.937692884,55.387589153],[9.937535679,55.387589153]]]},"properties":{"id":384,"top":7437455.5681,"id_0":384,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437438.0681,"col_index":5,"row_index":28}},{"id":385,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387499856],[9.937535679,55.38741056],[9.937692884,55.38741056],[9.937692884,55.387499856],[9.937535679,55.387499856]]]},"properties":{"id":385,"top":7437438.0681,"id_0":385,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437420.5681,"col_index":5,"row_index":29}},{"id":386,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38741056],[9.937535679,55.387321264],[9.937692884,55.387321264],[9.937692884,55.38741056],[9.937535679,55.38741056]]]},"properties":{"id":386,"top":7437420.5681,"id_0":386,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437403.0681,"col_index":5,"row_index":30}},{"id":387,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387321264],[9.937535679,55.387231967],[9.937692884,55.387231967],[9.937692884,55.387321264],[9.937535679,55.387321264]]]},"properties":{"id":387,"top":7437403.0681,"id_0":387,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437385.5681,"col_index":5,"row_index":31}},{"id":388,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387231967],[9.937535679,55.38714267],[9.937692884,55.38714267],[9.937692884,55.387231967],[9.937535679,55.387231967]]]},"properties":{"id":388,"top":7437385.5681,"id_0":388,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437368.0681,"col_index":5,"row_index":32}},{"id":389,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38714267],[9.937535679,55.387053373],[9.937692884,55.387053373],[9.937692884,55.38714267],[9.937535679,55.38714267]]]},"properties":{"id":389,"top":7437368.0681,"id_0":389,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437350.5681,"col_index":5,"row_index":33}},{"id":390,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.387053373],[9.937535679,55.386964076],[9.937692884,55.386964076],[9.937692884,55.387053373],[9.937535679,55.387053373]]]},"properties":{"id":390,"top":7437350.5681,"id_0":390,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437333.0681,"col_index":5,"row_index":34}},{"id":391,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386964076],[9.937535679,55.386874778],[9.937692884,55.386874778],[9.937692884,55.386964076],[9.937535679,55.386964076]]]},"properties":{"id":391,"top":7437333.0681,"id_0":391,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437315.5681,"col_index":5,"row_index":35}},{"id":392,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386874778],[9.937535679,55.38678548],[9.937692884,55.38678548],[9.937692884,55.386874778],[9.937535679,55.386874778]]]},"properties":{"id":392,"top":7437315.5681,"id_0":392,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437298.0681,"col_index":5,"row_index":36}},{"id":393,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38678548],[9.937535679,55.386696182],[9.937692884,55.386696182],[9.937692884,55.38678548],[9.937535679,55.38678548]]]},"properties":{"id":393,"top":7437298.0681,"id_0":393,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437280.5681,"col_index":5,"row_index":37}},{"id":394,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386696182],[9.937535679,55.386606884],[9.937692884,55.386606884],[9.937692884,55.386696182],[9.937535679,55.386696182]]]},"properties":{"id":394,"top":7437280.5681,"id_0":394,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437263.0681,"col_index":5,"row_index":38}},{"id":395,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386606884],[9.937535679,55.386517586],[9.937692884,55.386517586],[9.937692884,55.386606884],[9.937535679,55.386606884]]]},"properties":{"id":395,"top":7437263.0681,"id_0":395,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437245.5681,"col_index":5,"row_index":39}},{"id":396,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386517586],[9.937535679,55.386428287],[9.937692884,55.386428287],[9.937692884,55.386517586],[9.937535679,55.386517586]]]},"properties":{"id":396,"top":7437245.5681,"id_0":396,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437228.0681,"col_index":5,"row_index":40}},{"id":397,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386428287],[9.937535679,55.386338989],[9.937692884,55.386338989],[9.937692884,55.386428287],[9.937535679,55.386428287]]]},"properties":{"id":397,"top":7437228.0681,"id_0":397,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437210.5681,"col_index":5,"row_index":41}},{"id":398,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386338989],[9.937535679,55.38624969],[9.937692884,55.38624969],[9.937692884,55.386338989],[9.937535679,55.386338989]]]},"properties":{"id":398,"top":7437210.5681,"id_0":398,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437193.0681,"col_index":5,"row_index":42}},{"id":399,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38624969],[9.937535679,55.386160391],[9.937692884,55.386160391],[9.937692884,55.38624969],[9.937535679,55.38624969]]]},"properties":{"id":399,"top":7437193.0681,"id_0":399,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437175.5681,"col_index":5,"row_index":43}},{"id":400,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386160391],[9.937535679,55.386071091],[9.937692884,55.386071091],[9.937692884,55.386160391],[9.937535679,55.386160391]]]},"properties":{"id":400,"top":7437175.5681,"id_0":400,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437158.0681,"col_index":5,"row_index":44}},{"id":401,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.386071091],[9.937535679,55.385981792],[9.937692884,55.385981792],[9.937692884,55.386071091],[9.937535679,55.386071091]]]},"properties":{"id":401,"top":7437158.0681,"id_0":401,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437140.5681,"col_index":5,"row_index":45}},{"id":402,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385981792],[9.937535679,55.385892492],[9.937692884,55.385892492],[9.937692884,55.385981792],[9.937535679,55.385981792]]]},"properties":{"id":402,"top":7437140.5681,"id_0":402,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437123.0681,"col_index":5,"row_index":46}},{"id":403,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385892492],[9.937535679,55.385803192],[9.937692884,55.385803192],[9.937692884,55.385892492],[9.937535679,55.385892492]]]},"properties":{"id":403,"top":7437123.0681,"id_0":403,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437105.5681,"col_index":5,"row_index":47}},{"id":404,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385803192],[9.937535679,55.385713892],[9.937692884,55.385713892],[9.937692884,55.385803192],[9.937535679,55.385803192]]]},"properties":{"id":404,"top":7437105.5681,"id_0":404,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437088.0681,"col_index":5,"row_index":48}},{"id":405,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385713892],[9.937535679,55.385624592],[9.937692884,55.385624592],[9.937692884,55.385713892],[9.937535679,55.385713892]]]},"properties":{"id":405,"top":7437088.0681,"id_0":405,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437070.5681,"col_index":5,"row_index":49}},{"id":406,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385624592],[9.937535679,55.385535291],[9.937692884,55.385535291],[9.937692884,55.385624592],[9.937535679,55.385624592]]]},"properties":{"id":406,"top":7437070.5681,"id_0":406,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437053.0681,"col_index":5,"row_index":50}},{"id":407,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385535291],[9.937535679,55.38544599],[9.937692884,55.38544599],[9.937692884,55.385535291],[9.937535679,55.385535291]]]},"properties":{"id":407,"top":7437053.0681,"id_0":407,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437035.5681,"col_index":5,"row_index":51}},{"id":408,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38544599],[9.937535679,55.385356689],[9.937692884,55.385356689],[9.937692884,55.38544599],[9.937535679,55.38544599]]]},"properties":{"id":408,"top":7437035.5681,"id_0":408,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437018.0681,"col_index":5,"row_index":52}},{"id":409,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385356689],[9.937535679,55.385267388],[9.937692884,55.385267388],[9.937692884,55.385356689],[9.937535679,55.385356689]]]},"properties":{"id":409,"top":7437018.0681,"id_0":409,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7437000.5681,"col_index":5,"row_index":53}},{"id":410,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385267388],[9.937535679,55.385178087],[9.937692884,55.385178087],[9.937692884,55.385267388],[9.937535679,55.385267388]]]},"properties":{"id":410,"top":7437000.5681,"id_0":410,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436983.0681,"col_index":5,"row_index":54}},{"id":411,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385178087],[9.937535679,55.385088785],[9.937692884,55.385088785],[9.937692884,55.385178087],[9.937535679,55.385178087]]]},"properties":{"id":411,"top":7436983.0681,"id_0":411,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436965.5681,"col_index":5,"row_index":55}},{"id":412,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.385088785],[9.937535679,55.384999484],[9.937692884,55.384999484],[9.937692884,55.385088785],[9.937535679,55.385088785]]]},"properties":{"id":412,"top":7436965.5681,"id_0":412,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436948.0681,"col_index":5,"row_index":56}},{"id":413,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384999484],[9.937535679,55.384910182],[9.937692884,55.384910182],[9.937692884,55.384999484],[9.937535679,55.384999484]]]},"properties":{"id":413,"top":7436948.0681,"id_0":413,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436930.5681,"col_index":5,"row_index":57}},{"id":414,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384910182],[9.937535679,55.38482088],[9.937692884,55.38482088],[9.937692884,55.384910182],[9.937535679,55.384910182]]]},"properties":{"id":414,"top":7436930.5681,"id_0":414,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436913.0681,"col_index":5,"row_index":58}},{"id":415,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.38482088],[9.937535679,55.384731577],[9.937692884,55.384731577],[9.937692884,55.38482088],[9.937535679,55.38482088]]]},"properties":{"id":415,"top":7436913.0681,"id_0":415,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436895.5681,"col_index":5,"row_index":59}},{"id":416,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384731577],[9.937535679,55.384642275],[9.937692884,55.384642275],[9.937692884,55.384731577],[9.937535679,55.384731577]]]},"properties":{"id":416,"top":7436895.5681,"id_0":416,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436878.0681,"col_index":5,"row_index":60}},{"id":417,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384642275],[9.937535679,55.384552972],[9.937692884,55.384552972],[9.937692884,55.384642275],[9.937535679,55.384642275]]]},"properties":{"id":417,"top":7436878.0681,"id_0":417,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436860.5681,"col_index":5,"row_index":61}},{"id":418,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384552972],[9.937535679,55.384463669],[9.937692884,55.384463669],[9.937692884,55.384552972],[9.937535679,55.384552972]]]},"properties":{"id":418,"top":7436860.5681,"id_0":418,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436843.0681,"col_index":5,"row_index":62}},{"id":419,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384463669],[9.937535679,55.384374366],[9.937692884,55.384374366],[9.937692884,55.384463669],[9.937535679,55.384463669]]]},"properties":{"id":419,"top":7436843.0681,"id_0":419,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436825.5681,"col_index":5,"row_index":63}},{"id":420,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384374366],[9.937535679,55.384285062],[9.937692884,55.384285062],[9.937692884,55.384374366],[9.937535679,55.384374366]]]},"properties":{"id":420,"top":7436825.5681,"id_0":420,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436808.0681,"col_index":5,"row_index":64}},{"id":421,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384285062],[9.937535679,55.384195759],[9.937692884,55.384195759],[9.937692884,55.384285062],[9.937535679,55.384285062]]]},"properties":{"id":421,"top":7436808.0681,"id_0":421,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436790.5681,"col_index":5,"row_index":65}},{"id":422,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384195759],[9.937535679,55.384106455],[9.937692884,55.384106455],[9.937692884,55.384195759],[9.937535679,55.384195759]]]},"properties":{"id":422,"top":7436790.5681,"id_0":422,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436773.0681,"col_index":5,"row_index":66}},{"id":423,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384106455],[9.937535679,55.384017151],[9.937692884,55.384017151],[9.937692884,55.384106455],[9.937535679,55.384106455]]]},"properties":{"id":423,"top":7436773.0681,"id_0":423,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436755.5681,"col_index":5,"row_index":67}},{"id":424,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.384017151],[9.937535679,55.383927847],[9.937692884,55.383927847],[9.937692884,55.384017151],[9.937535679,55.384017151]]]},"properties":{"id":424,"top":7436755.5681,"id_0":424,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436738.0681,"col_index":5,"row_index":68}},{"id":425,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.383927847],[9.937535679,55.383838543],[9.937692884,55.383838543],[9.937692884,55.383927847],[9.937535679,55.383927847]]]},"properties":{"id":425,"top":7436738.0681,"id_0":425,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436720.5681,"col_index":5,"row_index":69}},{"id":426,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.383838543],[9.937535679,55.383749238],[9.937692884,55.383749238],[9.937692884,55.383838543],[9.937535679,55.383838543]]]},"properties":{"id":426,"top":7436720.5681,"id_0":426,"left":1106241.4115,"Label":null,"right":1106258.9115,"bottom":7436703.0681,"col_index":5,"row_index":70}},{"id":428,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.390000071],[9.937692884,55.38991078],[9.937850089,55.38991078],[9.937850089,55.390000071],[9.937692884,55.390000071]]]},"properties":{"id":428,"top":7437928.0681,"id_0":428,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437910.5681,"col_index":6,"row_index":1}},{"id":429,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38991078],[9.937692884,55.38982149],[9.937850089,55.38982149],[9.937850089,55.38991078],[9.937692884,55.38991078]]]},"properties":{"id":429,"top":7437910.5681,"id_0":429,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437893.0681,"col_index":6,"row_index":2}},{"id":430,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38982149],[9.937692884,55.389732199],[9.937850089,55.389732199],[9.937850089,55.38982149],[9.937692884,55.38982149]]]},"properties":{"id":430,"top":7437893.0681,"id_0":430,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437875.5681,"col_index":6,"row_index":3}},{"id":431,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389732199],[9.937692884,55.389642907],[9.937850089,55.389642907],[9.937850089,55.389732199],[9.937692884,55.389732199]]]},"properties":{"id":431,"top":7437875.5681,"id_0":431,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437858.0681,"col_index":6,"row_index":4}},{"id":432,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389642907],[9.937692884,55.389553616],[9.937850089,55.389553616],[9.937850089,55.389642907],[9.937692884,55.389642907]]]},"properties":{"id":432,"top":7437858.0681,"id_0":432,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437840.5681,"col_index":6,"row_index":5}},{"id":433,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389553616],[9.937692884,55.389464324],[9.937850089,55.389464324],[9.937850089,55.389553616],[9.937692884,55.389553616]]]},"properties":{"id":433,"top":7437840.5681,"id_0":433,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437823.0681,"col_index":6,"row_index":6}},{"id":434,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389464324],[9.937692884,55.389375032],[9.937850089,55.389375032],[9.937850089,55.389464324],[9.937692884,55.389464324]]]},"properties":{"id":434,"top":7437823.0681,"id_0":434,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437805.5681,"col_index":6,"row_index":7}},{"id":435,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389375032],[9.937692884,55.38928574],[9.937850089,55.38928574],[9.937850089,55.389375032],[9.937692884,55.389375032]]]},"properties":{"id":435,"top":7437805.5681,"id_0":435,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437788.0681,"col_index":6,"row_index":8}},{"id":436,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38928574],[9.937692884,55.389196448],[9.937850089,55.389196448],[9.937850089,55.38928574],[9.937692884,55.38928574]]]},"properties":{"id":436,"top":7437788.0681,"id_0":436,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437770.5681,"col_index":6,"row_index":9}},{"id":437,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389196448],[9.937692884,55.389107155],[9.937850089,55.389107155],[9.937850089,55.389196448],[9.937692884,55.389196448]]]},"properties":{"id":437,"top":7437770.5681,"id_0":437,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437753.0681,"col_index":6,"row_index":10}},{"id":438,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389107155],[9.937692884,55.389017863],[9.937850089,55.389017863],[9.937850089,55.389107155],[9.937692884,55.389107155]]]},"properties":{"id":438,"top":7437753.0681,"id_0":438,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437735.5681,"col_index":6,"row_index":11}},{"id":439,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.389017863],[9.937692884,55.38892857],[9.937850089,55.38892857],[9.937850089,55.389017863],[9.937692884,55.389017863]]]},"properties":{"id":439,"top":7437735.5681,"id_0":439,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437718.0681,"col_index":6,"row_index":12}},{"id":440,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38892857],[9.937692884,55.388839277],[9.937850089,55.388839277],[9.937850089,55.38892857],[9.937692884,55.38892857]]]},"properties":{"id":440,"top":7437718.0681,"id_0":440,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437700.5681,"col_index":6,"row_index":13}},{"id":441,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388839277],[9.937692884,55.388749984],[9.937850089,55.388749984],[9.937850089,55.388839277],[9.937692884,55.388839277]]]},"properties":{"id":441,"top":7437700.5681,"id_0":441,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437683.0681,"col_index":6,"row_index":14}},{"id":442,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388749984],[9.937692884,55.38866069],[9.937850089,55.38866069],[9.937850089,55.388749984],[9.937692884,55.388749984]]]},"properties":{"id":442,"top":7437683.0681,"id_0":442,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437665.5681,"col_index":6,"row_index":15}},{"id":443,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38866069],[9.937692884,55.388571396],[9.937850089,55.388571396],[9.937850089,55.38866069],[9.937692884,55.38866069]]]},"properties":{"id":443,"top":7437665.5681,"id_0":443,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437648.0681,"col_index":6,"row_index":16}},{"id":444,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388571396],[9.937692884,55.388482103],[9.937850089,55.388482103],[9.937850089,55.388571396],[9.937692884,55.388571396]]]},"properties":{"id":444,"top":7437648.0681,"id_0":444,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437630.5681,"col_index":6,"row_index":17}},{"id":445,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388482103],[9.937692884,55.388392808],[9.937850089,55.388392808],[9.937850089,55.388482103],[9.937692884,55.388482103]]]},"properties":{"id":445,"top":7437630.5681,"id_0":445,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437613.0681,"col_index":6,"row_index":18}},{"id":446,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388392808],[9.937692884,55.388303514],[9.937850089,55.388303514],[9.937850089,55.388392808],[9.937692884,55.388392808]]]},"properties":{"id":446,"top":7437613.0681,"id_0":446,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437595.5681,"col_index":6,"row_index":19}},{"id":447,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388303514],[9.937692884,55.38821422],[9.937850089,55.38821422],[9.937850089,55.388303514],[9.937692884,55.388303514]]]},"properties":{"id":447,"top":7437595.5681,"id_0":447,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437578.0681,"col_index":6,"row_index":20}},{"id":448,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38821422],[9.937692884,55.388124925],[9.937850089,55.388124925],[9.937850089,55.38821422],[9.937692884,55.38821422]]]},"properties":{"id":448,"top":7437578.0681,"id_0":448,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437560.5681,"col_index":6,"row_index":21}},{"id":449,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.388124925],[9.937692884,55.38803563],[9.937850089,55.38803563],[9.937850089,55.388124925],[9.937692884,55.388124925]]]},"properties":{"id":449,"top":7437560.5681,"id_0":449,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437543.0681,"col_index":6,"row_index":22}},{"id":450,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38803563],[9.937692884,55.387946335],[9.937850089,55.387946335],[9.937850089,55.38803563],[9.937692884,55.38803563]]]},"properties":{"id":450,"top":7437543.0681,"id_0":450,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437525.5681,"col_index":6,"row_index":23}},{"id":451,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387946335],[9.937692884,55.38785704],[9.937850089,55.38785704],[9.937850089,55.387946335],[9.937692884,55.387946335]]]},"properties":{"id":451,"top":7437525.5681,"id_0":451,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437508.0681,"col_index":6,"row_index":24}},{"id":452,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38785704],[9.937692884,55.387767744],[9.937850089,55.387767744],[9.937850089,55.38785704],[9.937692884,55.38785704]]]},"properties":{"id":452,"top":7437508.0681,"id_0":452,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437490.5681,"col_index":6,"row_index":25}},{"id":453,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387767744],[9.937692884,55.387678448],[9.937850089,55.387678448],[9.937850089,55.387767744],[9.937692884,55.387767744]]]},"properties":{"id":453,"top":7437490.5681,"id_0":453,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437473.0681,"col_index":6,"row_index":26}},{"id":454,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387678448],[9.937692884,55.387589153],[9.937850089,55.387589153],[9.937850089,55.387678448],[9.937692884,55.387678448]]]},"properties":{"id":454,"top":7437473.0681,"id_0":454,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437455.5681,"col_index":6,"row_index":27}},{"id":455,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387589153],[9.937692884,55.387499856],[9.937850089,55.387499856],[9.937850089,55.387589153],[9.937692884,55.387589153]]]},"properties":{"id":455,"top":7437455.5681,"id_0":455,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437438.0681,"col_index":6,"row_index":28}},{"id":456,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387499856],[9.937692884,55.38741056],[9.937850089,55.38741056],[9.937850089,55.387499856],[9.937692884,55.387499856]]]},"properties":{"id":456,"top":7437438.0681,"id_0":456,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437420.5681,"col_index":6,"row_index":29}},{"id":457,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38741056],[9.937692884,55.387321264],[9.937850089,55.387321264],[9.937850089,55.38741056],[9.937692884,55.38741056]]]},"properties":{"id":457,"top":7437420.5681,"id_0":457,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437403.0681,"col_index":6,"row_index":30}},{"id":458,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387321264],[9.937692884,55.387231967],[9.937850089,55.387231967],[9.937850089,55.387321264],[9.937692884,55.387321264]]]},"properties":{"id":458,"top":7437403.0681,"id_0":458,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437385.5681,"col_index":6,"row_index":31}},{"id":459,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387231967],[9.937692884,55.38714267],[9.937850089,55.38714267],[9.937850089,55.387231967],[9.937692884,55.387231967]]]},"properties":{"id":459,"top":7437385.5681,"id_0":459,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437368.0681,"col_index":6,"row_index":32}},{"id":460,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38714267],[9.937692884,55.387053373],[9.937850089,55.387053373],[9.937850089,55.38714267],[9.937692884,55.38714267]]]},"properties":{"id":460,"top":7437368.0681,"id_0":460,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437350.5681,"col_index":6,"row_index":33}},{"id":461,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.387053373],[9.937692884,55.386964076],[9.937850089,55.386964076],[9.937850089,55.387053373],[9.937692884,55.387053373]]]},"properties":{"id":461,"top":7437350.5681,"id_0":461,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437333.0681,"col_index":6,"row_index":34}},{"id":462,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386964076],[9.937692884,55.386874778],[9.937850089,55.386874778],[9.937850089,55.386964076],[9.937692884,55.386964076]]]},"properties":{"id":462,"top":7437333.0681,"id_0":462,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437315.5681,"col_index":6,"row_index":35}},{"id":463,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386874778],[9.937692884,55.38678548],[9.937850089,55.38678548],[9.937850089,55.386874778],[9.937692884,55.386874778]]]},"properties":{"id":463,"top":7437315.5681,"id_0":463,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437298.0681,"col_index":6,"row_index":36}},{"id":464,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38678548],[9.937692884,55.386696182],[9.937850089,55.386696182],[9.937850089,55.38678548],[9.937692884,55.38678548]]]},"properties":{"id":464,"top":7437298.0681,"id_0":464,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437280.5681,"col_index":6,"row_index":37}},{"id":465,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386696182],[9.937692884,55.386606884],[9.937850089,55.386606884],[9.937850089,55.386696182],[9.937692884,55.386696182]]]},"properties":{"id":465,"top":7437280.5681,"id_0":465,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437263.0681,"col_index":6,"row_index":38}},{"id":466,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386606884],[9.937692884,55.386517586],[9.937850089,55.386517586],[9.937850089,55.386606884],[9.937692884,55.386606884]]]},"properties":{"id":466,"top":7437263.0681,"id_0":466,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437245.5681,"col_index":6,"row_index":39}},{"id":467,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386517586],[9.937692884,55.386428287],[9.937850089,55.386428287],[9.937850089,55.386517586],[9.937692884,55.386517586]]]},"properties":{"id":467,"top":7437245.5681,"id_0":467,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437228.0681,"col_index":6,"row_index":40}},{"id":468,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386428287],[9.937692884,55.386338989],[9.937850089,55.386338989],[9.937850089,55.386428287],[9.937692884,55.386428287]]]},"properties":{"id":468,"top":7437228.0681,"id_0":468,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437210.5681,"col_index":6,"row_index":41}},{"id":469,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386338989],[9.937692884,55.38624969],[9.937850089,55.38624969],[9.937850089,55.386338989],[9.937692884,55.386338989]]]},"properties":{"id":469,"top":7437210.5681,"id_0":469,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437193.0681,"col_index":6,"row_index":42}},{"id":470,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38624969],[9.937692884,55.386160391],[9.937850089,55.386160391],[9.937850089,55.38624969],[9.937692884,55.38624969]]]},"properties":{"id":470,"top":7437193.0681,"id_0":470,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437175.5681,"col_index":6,"row_index":43}},{"id":471,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386160391],[9.937692884,55.386071091],[9.937850089,55.386071091],[9.937850089,55.386160391],[9.937692884,55.386160391]]]},"properties":{"id":471,"top":7437175.5681,"id_0":471,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437158.0681,"col_index":6,"row_index":44}},{"id":472,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.386071091],[9.937692884,55.385981792],[9.937850089,55.385981792],[9.937850089,55.386071091],[9.937692884,55.386071091]]]},"properties":{"id":472,"top":7437158.0681,"id_0":472,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437140.5681,"col_index":6,"row_index":45}},{"id":473,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385981792],[9.937692884,55.385892492],[9.937850089,55.385892492],[9.937850089,55.385981792],[9.937692884,55.385981792]]]},"properties":{"id":473,"top":7437140.5681,"id_0":473,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437123.0681,"col_index":6,"row_index":46}},{"id":474,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385892492],[9.937692884,55.385803192],[9.937850089,55.385803192],[9.937850089,55.385892492],[9.937692884,55.385892492]]]},"properties":{"id":474,"top":7437123.0681,"id_0":474,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437105.5681,"col_index":6,"row_index":47}},{"id":475,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385803192],[9.937692884,55.385713892],[9.937850089,55.385713892],[9.937850089,55.385803192],[9.937692884,55.385803192]]]},"properties":{"id":475,"top":7437105.5681,"id_0":475,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437088.0681,"col_index":6,"row_index":48}},{"id":476,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385713892],[9.937692884,55.385624592],[9.937850089,55.385624592],[9.937850089,55.385713892],[9.937692884,55.385713892]]]},"properties":{"id":476,"top":7437088.0681,"id_0":476,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437070.5681,"col_index":6,"row_index":49}},{"id":477,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385624592],[9.937692884,55.385535291],[9.937850089,55.385535291],[9.937850089,55.385624592],[9.937692884,55.385624592]]]},"properties":{"id":477,"top":7437070.5681,"id_0":477,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437053.0681,"col_index":6,"row_index":50}},{"id":478,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385535291],[9.937692884,55.38544599],[9.937850089,55.38544599],[9.937850089,55.385535291],[9.937692884,55.385535291]]]},"properties":{"id":478,"top":7437053.0681,"id_0":478,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437035.5681,"col_index":6,"row_index":51}},{"id":479,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38544599],[9.937692884,55.385356689],[9.937850089,55.385356689],[9.937850089,55.38544599],[9.937692884,55.38544599]]]},"properties":{"id":479,"top":7437035.5681,"id_0":479,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437018.0681,"col_index":6,"row_index":52}},{"id":480,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385356689],[9.937692884,55.385267388],[9.937850089,55.385267388],[9.937850089,55.385356689],[9.937692884,55.385356689]]]},"properties":{"id":480,"top":7437018.0681,"id_0":480,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7437000.5681,"col_index":6,"row_index":53}},{"id":481,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385267388],[9.937692884,55.385178087],[9.937850089,55.385178087],[9.937850089,55.385267388],[9.937692884,55.385267388]]]},"properties":{"id":481,"top":7437000.5681,"id_0":481,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436983.0681,"col_index":6,"row_index":54}},{"id":482,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385178087],[9.937692884,55.385088785],[9.937850089,55.385088785],[9.937850089,55.385178087],[9.937692884,55.385178087]]]},"properties":{"id":482,"top":7436983.0681,"id_0":482,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436965.5681,"col_index":6,"row_index":55}},{"id":483,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.385088785],[9.937692884,55.384999484],[9.937850089,55.384999484],[9.937850089,55.385088785],[9.937692884,55.385088785]]]},"properties":{"id":483,"top":7436965.5681,"id_0":483,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436948.0681,"col_index":6,"row_index":56}},{"id":484,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384999484],[9.937692884,55.384910182],[9.937850089,55.384910182],[9.937850089,55.384999484],[9.937692884,55.384999484]]]},"properties":{"id":484,"top":7436948.0681,"id_0":484,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436930.5681,"col_index":6,"row_index":57}},{"id":485,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384910182],[9.937692884,55.38482088],[9.937850089,55.38482088],[9.937850089,55.384910182],[9.937692884,55.384910182]]]},"properties":{"id":485,"top":7436930.5681,"id_0":485,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436913.0681,"col_index":6,"row_index":58}},{"id":486,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.38482088],[9.937692884,55.384731577],[9.937850089,55.384731577],[9.937850089,55.38482088],[9.937692884,55.38482088]]]},"properties":{"id":486,"top":7436913.0681,"id_0":486,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436895.5681,"col_index":6,"row_index":59}},{"id":487,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384731577],[9.937692884,55.384642275],[9.937850089,55.384642275],[9.937850089,55.384731577],[9.937692884,55.384731577]]]},"properties":{"id":487,"top":7436895.5681,"id_0":487,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436878.0681,"col_index":6,"row_index":60}},{"id":488,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384642275],[9.937692884,55.384552972],[9.937850089,55.384552972],[9.937850089,55.384642275],[9.937692884,55.384642275]]]},"properties":{"id":488,"top":7436878.0681,"id_0":488,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436860.5681,"col_index":6,"row_index":61}},{"id":489,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384552972],[9.937692884,55.384463669],[9.937850089,55.384463669],[9.937850089,55.384552972],[9.937692884,55.384552972]]]},"properties":{"id":489,"top":7436860.5681,"id_0":489,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436843.0681,"col_index":6,"row_index":62}},{"id":490,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384463669],[9.937692884,55.384374366],[9.937850089,55.384374366],[9.937850089,55.384463669],[9.937692884,55.384463669]]]},"properties":{"id":490,"top":7436843.0681,"id_0":490,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436825.5681,"col_index":6,"row_index":63}},{"id":491,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384374366],[9.937692884,55.384285062],[9.937850089,55.384285062],[9.937850089,55.384374366],[9.937692884,55.384374366]]]},"properties":{"id":491,"top":7436825.5681,"id_0":491,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436808.0681,"col_index":6,"row_index":64}},{"id":492,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384285062],[9.937692884,55.384195759],[9.937850089,55.384195759],[9.937850089,55.384285062],[9.937692884,55.384285062]]]},"properties":{"id":492,"top":7436808.0681,"id_0":492,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436790.5681,"col_index":6,"row_index":65}},{"id":493,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384195759],[9.937692884,55.384106455],[9.937850089,55.384106455],[9.937850089,55.384195759],[9.937692884,55.384195759]]]},"properties":{"id":493,"top":7436790.5681,"id_0":493,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436773.0681,"col_index":6,"row_index":66}},{"id":494,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384106455],[9.937692884,55.384017151],[9.937850089,55.384017151],[9.937850089,55.384106455],[9.937692884,55.384106455]]]},"properties":{"id":494,"top":7436773.0681,"id_0":494,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436755.5681,"col_index":6,"row_index":67}},{"id":495,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.384017151],[9.937692884,55.383927847],[9.937850089,55.383927847],[9.937850089,55.384017151],[9.937692884,55.384017151]]]},"properties":{"id":495,"top":7436755.5681,"id_0":495,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436738.0681,"col_index":6,"row_index":68}},{"id":496,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.383927847],[9.937692884,55.383838543],[9.937850089,55.383838543],[9.937850089,55.383927847],[9.937692884,55.383927847]]]},"properties":{"id":496,"top":7436738.0681,"id_0":496,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436720.5681,"col_index":6,"row_index":69}},{"id":497,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.383838543],[9.937692884,55.383749238],[9.937850089,55.383749238],[9.937850089,55.383838543],[9.937692884,55.383838543]]]},"properties":{"id":497,"top":7436720.5681,"id_0":497,"left":1106258.9115,"Label":null,"right":1106276.4115,"bottom":7436703.0681,"col_index":6,"row_index":70}},{"id":499,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.390000071],[9.937850089,55.38991078],[9.938007294,55.38991078],[9.938007294,55.390000071],[9.937850089,55.390000071]]]},"properties":{"id":499,"top":7437928.0681,"id_0":499,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437910.5681,"col_index":7,"row_index":1}},{"id":500,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38991078],[9.937850089,55.38982149],[9.938007294,55.38982149],[9.938007294,55.38991078],[9.937850089,55.38991078]]]},"properties":{"id":500,"top":7437910.5681,"id_0":500,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437893.0681,"col_index":7,"row_index":2}},{"id":501,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38982149],[9.937850089,55.389732199],[9.938007294,55.389732199],[9.938007294,55.38982149],[9.937850089,55.38982149]]]},"properties":{"id":501,"top":7437893.0681,"id_0":501,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437875.5681,"col_index":7,"row_index":3}},{"id":502,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389732199],[9.937850089,55.389642907],[9.938007294,55.389642907],[9.938007294,55.389732199],[9.937850089,55.389732199]]]},"properties":{"id":502,"top":7437875.5681,"id_0":502,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437858.0681,"col_index":7,"row_index":4}},{"id":503,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389642907],[9.937850089,55.389553616],[9.938007294,55.389553616],[9.938007294,55.389642907],[9.937850089,55.389642907]]]},"properties":{"id":503,"top":7437858.0681,"id_0":503,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437840.5681,"col_index":7,"row_index":5}},{"id":504,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389553616],[9.937850089,55.389464324],[9.938007294,55.389464324],[9.938007294,55.389553616],[9.937850089,55.389553616]]]},"properties":{"id":504,"top":7437840.5681,"id_0":504,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437823.0681,"col_index":7,"row_index":6}},{"id":505,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389464324],[9.937850089,55.389375032],[9.938007294,55.389375032],[9.938007294,55.389464324],[9.937850089,55.389464324]]]},"properties":{"id":505,"top":7437823.0681,"id_0":505,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437805.5681,"col_index":7,"row_index":7}},{"id":506,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389375032],[9.937850089,55.38928574],[9.938007294,55.38928574],[9.938007294,55.389375032],[9.937850089,55.389375032]]]},"properties":{"id":506,"top":7437805.5681,"id_0":506,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437788.0681,"col_index":7,"row_index":8}},{"id":507,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38928574],[9.937850089,55.389196448],[9.938007294,55.389196448],[9.938007294,55.38928574],[9.937850089,55.38928574]]]},"properties":{"id":507,"top":7437788.0681,"id_0":507,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437770.5681,"col_index":7,"row_index":9}},{"id":508,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389196448],[9.937850089,55.389107155],[9.938007294,55.389107155],[9.938007294,55.389196448],[9.937850089,55.389196448]]]},"properties":{"id":508,"top":7437770.5681,"id_0":508,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437753.0681,"col_index":7,"row_index":10}},{"id":509,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389107155],[9.937850089,55.389017863],[9.938007294,55.389017863],[9.938007294,55.389107155],[9.937850089,55.389107155]]]},"properties":{"id":509,"top":7437753.0681,"id_0":509,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437735.5681,"col_index":7,"row_index":11}},{"id":510,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.389017863],[9.937850089,55.38892857],[9.938007294,55.38892857],[9.938007294,55.389017863],[9.937850089,55.389017863]]]},"properties":{"id":510,"top":7437735.5681,"id_0":510,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437718.0681,"col_index":7,"row_index":12}},{"id":511,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38892857],[9.937850089,55.388839277],[9.938007294,55.388839277],[9.938007294,55.38892857],[9.937850089,55.38892857]]]},"properties":{"id":511,"top":7437718.0681,"id_0":511,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437700.5681,"col_index":7,"row_index":13}},{"id":512,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388839277],[9.937850089,55.388749984],[9.938007294,55.388749984],[9.938007294,55.388839277],[9.937850089,55.388839277]]]},"properties":{"id":512,"top":7437700.5681,"id_0":512,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437683.0681,"col_index":7,"row_index":14}},{"id":513,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388749984],[9.937850089,55.38866069],[9.938007294,55.38866069],[9.938007294,55.388749984],[9.937850089,55.388749984]]]},"properties":{"id":513,"top":7437683.0681,"id_0":513,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437665.5681,"col_index":7,"row_index":15}},{"id":514,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38866069],[9.937850089,55.388571396],[9.938007294,55.388571396],[9.938007294,55.38866069],[9.937850089,55.38866069]]]},"properties":{"id":514,"top":7437665.5681,"id_0":514,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437648.0681,"col_index":7,"row_index":16}},{"id":515,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388571396],[9.937850089,55.388482103],[9.938007294,55.388482103],[9.938007294,55.388571396],[9.937850089,55.388571396]]]},"properties":{"id":515,"top":7437648.0681,"id_0":515,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437630.5681,"col_index":7,"row_index":17}},{"id":516,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388482103],[9.937850089,55.388392808],[9.938007294,55.388392808],[9.938007294,55.388482103],[9.937850089,55.388482103]]]},"properties":{"id":516,"top":7437630.5681,"id_0":516,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437613.0681,"col_index":7,"row_index":18}},{"id":517,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388392808],[9.937850089,55.388303514],[9.938007294,55.388303514],[9.938007294,55.388392808],[9.937850089,55.388392808]]]},"properties":{"id":517,"top":7437613.0681,"id_0":517,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437595.5681,"col_index":7,"row_index":19}},{"id":518,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388303514],[9.937850089,55.38821422],[9.938007294,55.38821422],[9.938007294,55.388303514],[9.937850089,55.388303514]]]},"properties":{"id":518,"top":7437595.5681,"id_0":518,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437578.0681,"col_index":7,"row_index":20}},{"id":519,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38821422],[9.937850089,55.388124925],[9.938007294,55.388124925],[9.938007294,55.38821422],[9.937850089,55.38821422]]]},"properties":{"id":519,"top":7437578.0681,"id_0":519,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437560.5681,"col_index":7,"row_index":21}},{"id":520,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.388124925],[9.937850089,55.38803563],[9.938007294,55.38803563],[9.938007294,55.388124925],[9.937850089,55.388124925]]]},"properties":{"id":520,"top":7437560.5681,"id_0":520,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437543.0681,"col_index":7,"row_index":22}},{"id":521,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38803563],[9.937850089,55.387946335],[9.938007294,55.387946335],[9.938007294,55.38803563],[9.937850089,55.38803563]]]},"properties":{"id":521,"top":7437543.0681,"id_0":521,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437525.5681,"col_index":7,"row_index":23}},{"id":522,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387946335],[9.937850089,55.38785704],[9.938007294,55.38785704],[9.938007294,55.387946335],[9.937850089,55.387946335]]]},"properties":{"id":522,"top":7437525.5681,"id_0":522,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437508.0681,"col_index":7,"row_index":24}},{"id":523,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38785704],[9.937850089,55.387767744],[9.938007294,55.387767744],[9.938007294,55.38785704],[9.937850089,55.38785704]]]},"properties":{"id":523,"top":7437508.0681,"id_0":523,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437490.5681,"col_index":7,"row_index":25}},{"id":524,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387767744],[9.937850089,55.387678448],[9.938007294,55.387678448],[9.938007294,55.387767744],[9.937850089,55.387767744]]]},"properties":{"id":524,"top":7437490.5681,"id_0":524,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437473.0681,"col_index":7,"row_index":26}},{"id":525,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387678448],[9.937850089,55.387589153],[9.938007294,55.387589153],[9.938007294,55.387678448],[9.937850089,55.387678448]]]},"properties":{"id":525,"top":7437473.0681,"id_0":525,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437455.5681,"col_index":7,"row_index":27}},{"id":526,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387589153],[9.937850089,55.387499856],[9.938007294,55.387499856],[9.938007294,55.387589153],[9.937850089,55.387589153]]]},"properties":{"id":526,"top":7437455.5681,"id_0":526,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437438.0681,"col_index":7,"row_index":28}},{"id":527,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387499856],[9.937850089,55.38741056],[9.938007294,55.38741056],[9.938007294,55.387499856],[9.937850089,55.387499856]]]},"properties":{"id":527,"top":7437438.0681,"id_0":527,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437420.5681,"col_index":7,"row_index":29}},{"id":528,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38741056],[9.937850089,55.387321264],[9.938007294,55.387321264],[9.938007294,55.38741056],[9.937850089,55.38741056]]]},"properties":{"id":528,"top":7437420.5681,"id_0":528,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437403.0681,"col_index":7,"row_index":30}},{"id":529,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387321264],[9.937850089,55.387231967],[9.938007294,55.387231967],[9.938007294,55.387321264],[9.937850089,55.387321264]]]},"properties":{"id":529,"top":7437403.0681,"id_0":529,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437385.5681,"col_index":7,"row_index":31}},{"id":530,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387231967],[9.937850089,55.38714267],[9.938007294,55.38714267],[9.938007294,55.387231967],[9.937850089,55.387231967]]]},"properties":{"id":530,"top":7437385.5681,"id_0":530,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437368.0681,"col_index":7,"row_index":32}},{"id":531,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38714267],[9.937850089,55.387053373],[9.938007294,55.387053373],[9.938007294,55.38714267],[9.937850089,55.38714267]]]},"properties":{"id":531,"top":7437368.0681,"id_0":531,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437350.5681,"col_index":7,"row_index":33}},{"id":532,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.387053373],[9.937850089,55.386964076],[9.938007294,55.386964076],[9.938007294,55.387053373],[9.937850089,55.387053373]]]},"properties":{"id":532,"top":7437350.5681,"id_0":532,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437333.0681,"col_index":7,"row_index":34}},{"id":533,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386964076],[9.937850089,55.386874778],[9.938007294,55.386874778],[9.938007294,55.386964076],[9.937850089,55.386964076]]]},"properties":{"id":533,"top":7437333.0681,"id_0":533,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437315.5681,"col_index":7,"row_index":35}},{"id":534,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386874778],[9.937850089,55.38678548],[9.938007294,55.38678548],[9.938007294,55.386874778],[9.937850089,55.386874778]]]},"properties":{"id":534,"top":7437315.5681,"id_0":534,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437298.0681,"col_index":7,"row_index":36}},{"id":535,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38678548],[9.937850089,55.386696182],[9.938007294,55.386696182],[9.938007294,55.38678548],[9.937850089,55.38678548]]]},"properties":{"id":535,"top":7437298.0681,"id_0":535,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437280.5681,"col_index":7,"row_index":37}},{"id":536,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386696182],[9.937850089,55.386606884],[9.938007294,55.386606884],[9.938007294,55.386696182],[9.937850089,55.386696182]]]},"properties":{"id":536,"top":7437280.5681,"id_0":536,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437263.0681,"col_index":7,"row_index":38}},{"id":537,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386606884],[9.937850089,55.386517586],[9.938007294,55.386517586],[9.938007294,55.386606884],[9.937850089,55.386606884]]]},"properties":{"id":537,"top":7437263.0681,"id_0":537,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437245.5681,"col_index":7,"row_index":39}},{"id":538,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386517586],[9.937850089,55.386428287],[9.938007294,55.386428287],[9.938007294,55.386517586],[9.937850089,55.386517586]]]},"properties":{"id":538,"top":7437245.5681,"id_0":538,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437228.0681,"col_index":7,"row_index":40}},{"id":539,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386428287],[9.937850089,55.386338989],[9.938007294,55.386338989],[9.938007294,55.386428287],[9.937850089,55.386428287]]]},"properties":{"id":539,"top":7437228.0681,"id_0":539,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437210.5681,"col_index":7,"row_index":41}},{"id":540,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386338989],[9.937850089,55.38624969],[9.938007294,55.38624969],[9.938007294,55.386338989],[9.937850089,55.386338989]]]},"properties":{"id":540,"top":7437210.5681,"id_0":540,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437193.0681,"col_index":7,"row_index":42}},{"id":541,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38624969],[9.937850089,55.386160391],[9.938007294,55.386160391],[9.938007294,55.38624969],[9.937850089,55.38624969]]]},"properties":{"id":541,"top":7437193.0681,"id_0":541,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437175.5681,"col_index":7,"row_index":43}},{"id":542,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386160391],[9.937850089,55.386071091],[9.938007294,55.386071091],[9.938007294,55.386160391],[9.937850089,55.386160391]]]},"properties":{"id":542,"top":7437175.5681,"id_0":542,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437158.0681,"col_index":7,"row_index":44}},{"id":543,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.386071091],[9.937850089,55.385981792],[9.938007294,55.385981792],[9.938007294,55.386071091],[9.937850089,55.386071091]]]},"properties":{"id":543,"top":7437158.0681,"id_0":543,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437140.5681,"col_index":7,"row_index":45}},{"id":544,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385981792],[9.937850089,55.385892492],[9.938007294,55.385892492],[9.938007294,55.385981792],[9.937850089,55.385981792]]]},"properties":{"id":544,"top":7437140.5681,"id_0":544,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437123.0681,"col_index":7,"row_index":46}},{"id":545,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385892492],[9.937850089,55.385803192],[9.938007294,55.385803192],[9.938007294,55.385892492],[9.937850089,55.385892492]]]},"properties":{"id":545,"top":7437123.0681,"id_0":545,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437105.5681,"col_index":7,"row_index":47}},{"id":546,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385803192],[9.937850089,55.385713892],[9.938007294,55.385713892],[9.938007294,55.385803192],[9.937850089,55.385803192]]]},"properties":{"id":546,"top":7437105.5681,"id_0":546,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437088.0681,"col_index":7,"row_index":48}},{"id":547,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385713892],[9.937850089,55.385624592],[9.938007294,55.385624592],[9.938007294,55.385713892],[9.937850089,55.385713892]]]},"properties":{"id":547,"top":7437088.0681,"id_0":547,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437070.5681,"col_index":7,"row_index":49}},{"id":548,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385624592],[9.937850089,55.385535291],[9.938007294,55.385535291],[9.938007294,55.385624592],[9.937850089,55.385624592]]]},"properties":{"id":548,"top":7437070.5681,"id_0":548,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437053.0681,"col_index":7,"row_index":50}},{"id":549,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385535291],[9.937850089,55.38544599],[9.938007294,55.38544599],[9.938007294,55.385535291],[9.937850089,55.385535291]]]},"properties":{"id":549,"top":7437053.0681,"id_0":549,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437035.5681,"col_index":7,"row_index":51}},{"id":550,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38544599],[9.937850089,55.385356689],[9.938007294,55.385356689],[9.938007294,55.38544599],[9.937850089,55.38544599]]]},"properties":{"id":550,"top":7437035.5681,"id_0":550,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437018.0681,"col_index":7,"row_index":52}},{"id":551,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385356689],[9.937850089,55.385267388],[9.938007294,55.385267388],[9.938007294,55.385356689],[9.937850089,55.385356689]]]},"properties":{"id":551,"top":7437018.0681,"id_0":551,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7437000.5681,"col_index":7,"row_index":53}},{"id":552,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385267388],[9.937850089,55.385178087],[9.938007294,55.385178087],[9.938007294,55.385267388],[9.937850089,55.385267388]]]},"properties":{"id":552,"top":7437000.5681,"id_0":552,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436983.0681,"col_index":7,"row_index":54}},{"id":553,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385178087],[9.937850089,55.385088785],[9.938007294,55.385088785],[9.938007294,55.385178087],[9.937850089,55.385178087]]]},"properties":{"id":553,"top":7436983.0681,"id_0":553,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436965.5681,"col_index":7,"row_index":55}},{"id":554,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.385088785],[9.937850089,55.384999484],[9.938007294,55.384999484],[9.938007294,55.385088785],[9.937850089,55.385088785]]]},"properties":{"id":554,"top":7436965.5681,"id_0":554,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436948.0681,"col_index":7,"row_index":56}},{"id":555,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384999484],[9.937850089,55.384910182],[9.938007294,55.384910182],[9.938007294,55.384999484],[9.937850089,55.384999484]]]},"properties":{"id":555,"top":7436948.0681,"id_0":555,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436930.5681,"col_index":7,"row_index":57}},{"id":556,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384910182],[9.937850089,55.38482088],[9.938007294,55.38482088],[9.938007294,55.384910182],[9.937850089,55.384910182]]]},"properties":{"id":556,"top":7436930.5681,"id_0":556,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436913.0681,"col_index":7,"row_index":58}},{"id":557,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.38482088],[9.937850089,55.384731577],[9.938007294,55.384731577],[9.938007294,55.38482088],[9.937850089,55.38482088]]]},"properties":{"id":557,"top":7436913.0681,"id_0":557,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436895.5681,"col_index":7,"row_index":59}},{"id":558,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384731577],[9.937850089,55.384642275],[9.938007294,55.384642275],[9.938007294,55.384731577],[9.937850089,55.384731577]]]},"properties":{"id":558,"top":7436895.5681,"id_0":558,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436878.0681,"col_index":7,"row_index":60}},{"id":559,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384642275],[9.937850089,55.384552972],[9.938007294,55.384552972],[9.938007294,55.384642275],[9.937850089,55.384642275]]]},"properties":{"id":559,"top":7436878.0681,"id_0":559,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436860.5681,"col_index":7,"row_index":61}},{"id":560,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384552972],[9.937850089,55.384463669],[9.938007294,55.384463669],[9.938007294,55.384552972],[9.937850089,55.384552972]]]},"properties":{"id":560,"top":7436860.5681,"id_0":560,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436843.0681,"col_index":7,"row_index":62}},{"id":561,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384463669],[9.937850089,55.384374366],[9.938007294,55.384374366],[9.938007294,55.384463669],[9.937850089,55.384463669]]]},"properties":{"id":561,"top":7436843.0681,"id_0":561,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436825.5681,"col_index":7,"row_index":63}},{"id":562,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384374366],[9.937850089,55.384285062],[9.938007294,55.384285062],[9.938007294,55.384374366],[9.937850089,55.384374366]]]},"properties":{"id":562,"top":7436825.5681,"id_0":562,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436808.0681,"col_index":7,"row_index":64}},{"id":563,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384285062],[9.937850089,55.384195759],[9.938007294,55.384195759],[9.938007294,55.384285062],[9.937850089,55.384285062]]]},"properties":{"id":563,"top":7436808.0681,"id_0":563,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436790.5681,"col_index":7,"row_index":65}},{"id":564,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384195759],[9.937850089,55.384106455],[9.938007294,55.384106455],[9.938007294,55.384195759],[9.937850089,55.384195759]]]},"properties":{"id":564,"top":7436790.5681,"id_0":564,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436773.0681,"col_index":7,"row_index":66}},{"id":565,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384106455],[9.937850089,55.384017151],[9.938007294,55.384017151],[9.938007294,55.384106455],[9.937850089,55.384106455]]]},"properties":{"id":565,"top":7436773.0681,"id_0":565,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436755.5681,"col_index":7,"row_index":67}},{"id":566,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.384017151],[9.937850089,55.383927847],[9.938007294,55.383927847],[9.938007294,55.384017151],[9.937850089,55.384017151]]]},"properties":{"id":566,"top":7436755.5681,"id_0":566,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436738.0681,"col_index":7,"row_index":68}},{"id":567,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.383927847],[9.937850089,55.383838543],[9.938007294,55.383838543],[9.938007294,55.383927847],[9.937850089,55.383927847]]]},"properties":{"id":567,"top":7436738.0681,"id_0":567,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436720.5681,"col_index":7,"row_index":69}},{"id":568,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.383838543],[9.937850089,55.383749238],[9.938007294,55.383749238],[9.938007294,55.383838543],[9.937850089,55.383838543]]]},"properties":{"id":568,"top":7436720.5681,"id_0":568,"left":1106276.4115,"Label":null,"right":1106293.9115,"bottom":7436703.0681,"col_index":7,"row_index":70}},{"id":570,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.390000071],[9.938007294,55.38991078],[9.938164499,55.38991078],[9.938164499,55.390000071],[9.938007294,55.390000071]]]},"properties":{"id":570,"top":7437928.0681,"id_0":570,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437910.5681,"col_index":8,"row_index":1}},{"id":571,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38991078],[9.938007294,55.38982149],[9.938164499,55.38982149],[9.938164499,55.38991078],[9.938007294,55.38991078]]]},"properties":{"id":571,"top":7437910.5681,"id_0":571,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437893.0681,"col_index":8,"row_index":2}},{"id":572,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38982149],[9.938007294,55.389732199],[9.938164499,55.389732199],[9.938164499,55.38982149],[9.938007294,55.38982149]]]},"properties":{"id":572,"top":7437893.0681,"id_0":572,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437875.5681,"col_index":8,"row_index":3}},{"id":573,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389732199],[9.938007294,55.389642907],[9.938164499,55.389642907],[9.938164499,55.389732199],[9.938007294,55.389732199]]]},"properties":{"id":573,"top":7437875.5681,"id_0":573,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437858.0681,"col_index":8,"row_index":4}},{"id":574,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389642907],[9.938007294,55.389553616],[9.938164499,55.389553616],[9.938164499,55.389642907],[9.938007294,55.389642907]]]},"properties":{"id":574,"top":7437858.0681,"id_0":574,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437840.5681,"col_index":8,"row_index":5}},{"id":575,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389553616],[9.938007294,55.389464324],[9.938164499,55.389464324],[9.938164499,55.389553616],[9.938007294,55.389553616]]]},"properties":{"id":575,"top":7437840.5681,"id_0":575,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437823.0681,"col_index":8,"row_index":6}},{"id":576,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389464324],[9.938007294,55.389375032],[9.938164499,55.389375032],[9.938164499,55.389464324],[9.938007294,55.389464324]]]},"properties":{"id":576,"top":7437823.0681,"id_0":576,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437805.5681,"col_index":8,"row_index":7}},{"id":577,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389375032],[9.938007294,55.38928574],[9.938164499,55.38928574],[9.938164499,55.389375032],[9.938007294,55.389375032]]]},"properties":{"id":577,"top":7437805.5681,"id_0":577,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437788.0681,"col_index":8,"row_index":8}},{"id":578,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38928574],[9.938007294,55.389196448],[9.938164499,55.389196448],[9.938164499,55.38928574],[9.938007294,55.38928574]]]},"properties":{"id":578,"top":7437788.0681,"id_0":578,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437770.5681,"col_index":8,"row_index":9}},{"id":579,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389196448],[9.938007294,55.389107155],[9.938164499,55.389107155],[9.938164499,55.389196448],[9.938007294,55.389196448]]]},"properties":{"id":579,"top":7437770.5681,"id_0":579,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437753.0681,"col_index":8,"row_index":10}},{"id":580,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389107155],[9.938007294,55.389017863],[9.938164499,55.389017863],[9.938164499,55.389107155],[9.938007294,55.389107155]]]},"properties":{"id":580,"top":7437753.0681,"id_0":580,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437735.5681,"col_index":8,"row_index":11}},{"id":581,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.389017863],[9.938007294,55.38892857],[9.938164499,55.38892857],[9.938164499,55.389017863],[9.938007294,55.389017863]]]},"properties":{"id":581,"top":7437735.5681,"id_0":581,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437718.0681,"col_index":8,"row_index":12}},{"id":582,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38892857],[9.938007294,55.388839277],[9.938164499,55.388839277],[9.938164499,55.38892857],[9.938007294,55.38892857]]]},"properties":{"id":582,"top":7437718.0681,"id_0":582,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437700.5681,"col_index":8,"row_index":13}},{"id":583,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388839277],[9.938007294,55.388749984],[9.938164499,55.388749984],[9.938164499,55.388839277],[9.938007294,55.388839277]]]},"properties":{"id":583,"top":7437700.5681,"id_0":583,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437683.0681,"col_index":8,"row_index":14}},{"id":584,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388749984],[9.938007294,55.38866069],[9.938164499,55.38866069],[9.938164499,55.388749984],[9.938007294,55.388749984]]]},"properties":{"id":584,"top":7437683.0681,"id_0":584,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437665.5681,"col_index":8,"row_index":15}},{"id":585,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38866069],[9.938007294,55.388571396],[9.938164499,55.388571396],[9.938164499,55.38866069],[9.938007294,55.38866069]]]},"properties":{"id":585,"top":7437665.5681,"id_0":585,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437648.0681,"col_index":8,"row_index":16}},{"id":586,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388571396],[9.938007294,55.388482103],[9.938164499,55.388482103],[9.938164499,55.388571396],[9.938007294,55.388571396]]]},"properties":{"id":586,"top":7437648.0681,"id_0":586,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437630.5681,"col_index":8,"row_index":17}},{"id":587,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388482103],[9.938007294,55.388392808],[9.938164499,55.388392808],[9.938164499,55.388482103],[9.938007294,55.388482103]]]},"properties":{"id":587,"top":7437630.5681,"id_0":587,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437613.0681,"col_index":8,"row_index":18}},{"id":588,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388392808],[9.938007294,55.388303514],[9.938164499,55.388303514],[9.938164499,55.388392808],[9.938007294,55.388392808]]]},"properties":{"id":588,"top":7437613.0681,"id_0":588,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437595.5681,"col_index":8,"row_index":19}},{"id":589,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388303514],[9.938007294,55.38821422],[9.938164499,55.38821422],[9.938164499,55.388303514],[9.938007294,55.388303514]]]},"properties":{"id":589,"top":7437595.5681,"id_0":589,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437578.0681,"col_index":8,"row_index":20}},{"id":590,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38821422],[9.938007294,55.388124925],[9.938164499,55.388124925],[9.938164499,55.38821422],[9.938007294,55.38821422]]]},"properties":{"id":590,"top":7437578.0681,"id_0":590,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437560.5681,"col_index":8,"row_index":21}},{"id":591,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.388124925],[9.938007294,55.38803563],[9.938164499,55.38803563],[9.938164499,55.388124925],[9.938007294,55.388124925]]]},"properties":{"id":591,"top":7437560.5681,"id_0":591,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437543.0681,"col_index":8,"row_index":22}},{"id":592,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38803563],[9.938007294,55.387946335],[9.938164499,55.387946335],[9.938164499,55.38803563],[9.938007294,55.38803563]]]},"properties":{"id":592,"top":7437543.0681,"id_0":592,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437525.5681,"col_index":8,"row_index":23}},{"id":593,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387946335],[9.938007294,55.38785704],[9.938164499,55.38785704],[9.938164499,55.387946335],[9.938007294,55.387946335]]]},"properties":{"id":593,"top":7437525.5681,"id_0":593,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437508.0681,"col_index":8,"row_index":24}},{"id":594,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38785704],[9.938007294,55.387767744],[9.938164499,55.387767744],[9.938164499,55.38785704],[9.938007294,55.38785704]]]},"properties":{"id":594,"top":7437508.0681,"id_0":594,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437490.5681,"col_index":8,"row_index":25}},{"id":595,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387767744],[9.938007294,55.387678448],[9.938164499,55.387678448],[9.938164499,55.387767744],[9.938007294,55.387767744]]]},"properties":{"id":595,"top":7437490.5681,"id_0":595,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437473.0681,"col_index":8,"row_index":26}},{"id":596,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387678448],[9.938007294,55.387589153],[9.938164499,55.387589153],[9.938164499,55.387678448],[9.938007294,55.387678448]]]},"properties":{"id":596,"top":7437473.0681,"id_0":596,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437455.5681,"col_index":8,"row_index":27}},{"id":597,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387589153],[9.938007294,55.387499856],[9.938164499,55.387499856],[9.938164499,55.387589153],[9.938007294,55.387589153]]]},"properties":{"id":597,"top":7437455.5681,"id_0":597,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437438.0681,"col_index":8,"row_index":28}},{"id":598,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387499856],[9.938007294,55.38741056],[9.938164499,55.38741056],[9.938164499,55.387499856],[9.938007294,55.387499856]]]},"properties":{"id":598,"top":7437438.0681,"id_0":598,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437420.5681,"col_index":8,"row_index":29}},{"id":599,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38741056],[9.938007294,55.387321264],[9.938164499,55.387321264],[9.938164499,55.38741056],[9.938007294,55.38741056]]]},"properties":{"id":599,"top":7437420.5681,"id_0":599,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437403.0681,"col_index":8,"row_index":30}},{"id":600,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387321264],[9.938007294,55.387231967],[9.938164499,55.387231967],[9.938164499,55.387321264],[9.938007294,55.387321264]]]},"properties":{"id":600,"top":7437403.0681,"id_0":600,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437385.5681,"col_index":8,"row_index":31}},{"id":601,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387231967],[9.938007294,55.38714267],[9.938164499,55.38714267],[9.938164499,55.387231967],[9.938007294,55.387231967]]]},"properties":{"id":601,"top":7437385.5681,"id_0":601,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437368.0681,"col_index":8,"row_index":32}},{"id":602,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38714267],[9.938007294,55.387053373],[9.938164499,55.387053373],[9.938164499,55.38714267],[9.938007294,55.38714267]]]},"properties":{"id":602,"top":7437368.0681,"id_0":602,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437350.5681,"col_index":8,"row_index":33}},{"id":603,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.387053373],[9.938007294,55.386964076],[9.938164499,55.386964076],[9.938164499,55.387053373],[9.938007294,55.387053373]]]},"properties":{"id":603,"top":7437350.5681,"id_0":603,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437333.0681,"col_index":8,"row_index":34}},{"id":604,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386964076],[9.938007294,55.386874778],[9.938164499,55.386874778],[9.938164499,55.386964076],[9.938007294,55.386964076]]]},"properties":{"id":604,"top":7437333.0681,"id_0":604,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437315.5681,"col_index":8,"row_index":35}},{"id":605,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386874778],[9.938007294,55.38678548],[9.938164499,55.38678548],[9.938164499,55.386874778],[9.938007294,55.386874778]]]},"properties":{"id":605,"top":7437315.5681,"id_0":605,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437298.0681,"col_index":8,"row_index":36}},{"id":606,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38678548],[9.938007294,55.386696182],[9.938164499,55.386696182],[9.938164499,55.38678548],[9.938007294,55.38678548]]]},"properties":{"id":606,"top":7437298.0681,"id_0":606,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437280.5681,"col_index":8,"row_index":37}},{"id":607,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386696182],[9.938007294,55.386606884],[9.938164499,55.386606884],[9.938164499,55.386696182],[9.938007294,55.386696182]]]},"properties":{"id":607,"top":7437280.5681,"id_0":607,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437263.0681,"col_index":8,"row_index":38}},{"id":608,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386606884],[9.938007294,55.386517586],[9.938164499,55.386517586],[9.938164499,55.386606884],[9.938007294,55.386606884]]]},"properties":{"id":608,"top":7437263.0681,"id_0":608,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437245.5681,"col_index":8,"row_index":39}},{"id":609,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386517586],[9.938007294,55.386428287],[9.938164499,55.386428287],[9.938164499,55.386517586],[9.938007294,55.386517586]]]},"properties":{"id":609,"top":7437245.5681,"id_0":609,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437228.0681,"col_index":8,"row_index":40}},{"id":610,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386428287],[9.938007294,55.386338989],[9.938164499,55.386338989],[9.938164499,55.386428287],[9.938007294,55.386428287]]]},"properties":{"id":610,"top":7437228.0681,"id_0":610,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437210.5681,"col_index":8,"row_index":41}},{"id":611,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386338989],[9.938007294,55.38624969],[9.938164499,55.38624969],[9.938164499,55.386338989],[9.938007294,55.386338989]]]},"properties":{"id":611,"top":7437210.5681,"id_0":611,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437193.0681,"col_index":8,"row_index":42}},{"id":612,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38624969],[9.938007294,55.386160391],[9.938164499,55.386160391],[9.938164499,55.38624969],[9.938007294,55.38624969]]]},"properties":{"id":612,"top":7437193.0681,"id_0":612,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437175.5681,"col_index":8,"row_index":43}},{"id":613,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386160391],[9.938007294,55.386071091],[9.938164499,55.386071091],[9.938164499,55.386160391],[9.938007294,55.386160391]]]},"properties":{"id":613,"top":7437175.5681,"id_0":613,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437158.0681,"col_index":8,"row_index":44}},{"id":614,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.386071091],[9.938007294,55.385981792],[9.938164499,55.385981792],[9.938164499,55.386071091],[9.938007294,55.386071091]]]},"properties":{"id":614,"top":7437158.0681,"id_0":614,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437140.5681,"col_index":8,"row_index":45}},{"id":615,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385981792],[9.938007294,55.385892492],[9.938164499,55.385892492],[9.938164499,55.385981792],[9.938007294,55.385981792]]]},"properties":{"id":615,"top":7437140.5681,"id_0":615,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437123.0681,"col_index":8,"row_index":46}},{"id":616,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385892492],[9.938007294,55.385803192],[9.938164499,55.385803192],[9.938164499,55.385892492],[9.938007294,55.385892492]]]},"properties":{"id":616,"top":7437123.0681,"id_0":616,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437105.5681,"col_index":8,"row_index":47}},{"id":617,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385803192],[9.938007294,55.385713892],[9.938164499,55.385713892],[9.938164499,55.385803192],[9.938007294,55.385803192]]]},"properties":{"id":617,"top":7437105.5681,"id_0":617,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437088.0681,"col_index":8,"row_index":48}},{"id":618,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385713892],[9.938007294,55.385624592],[9.938164499,55.385624592],[9.938164499,55.385713892],[9.938007294,55.385713892]]]},"properties":{"id":618,"top":7437088.0681,"id_0":618,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437070.5681,"col_index":8,"row_index":49}},{"id":619,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385624592],[9.938007294,55.385535291],[9.938164499,55.385535291],[9.938164499,55.385624592],[9.938007294,55.385624592]]]},"properties":{"id":619,"top":7437070.5681,"id_0":619,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437053.0681,"col_index":8,"row_index":50}},{"id":620,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385535291],[9.938007294,55.38544599],[9.938164499,55.38544599],[9.938164499,55.385535291],[9.938007294,55.385535291]]]},"properties":{"id":620,"top":7437053.0681,"id_0":620,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437035.5681,"col_index":8,"row_index":51}},{"id":621,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38544599],[9.938007294,55.385356689],[9.938164499,55.385356689],[9.938164499,55.38544599],[9.938007294,55.38544599]]]},"properties":{"id":621,"top":7437035.5681,"id_0":621,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437018.0681,"col_index":8,"row_index":52}},{"id":622,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385356689],[9.938007294,55.385267388],[9.938164499,55.385267388],[9.938164499,55.385356689],[9.938007294,55.385356689]]]},"properties":{"id":622,"top":7437018.0681,"id_0":622,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7437000.5681,"col_index":8,"row_index":53}},{"id":623,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385267388],[9.938007294,55.385178087],[9.938164499,55.385178087],[9.938164499,55.385267388],[9.938007294,55.385267388]]]},"properties":{"id":623,"top":7437000.5681,"id_0":623,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436983.0681,"col_index":8,"row_index":54}},{"id":624,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385178087],[9.938007294,55.385088785],[9.938164499,55.385088785],[9.938164499,55.385178087],[9.938007294,55.385178087]]]},"properties":{"id":624,"top":7436983.0681,"id_0":624,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436965.5681,"col_index":8,"row_index":55}},{"id":625,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.385088785],[9.938007294,55.384999484],[9.938164499,55.384999484],[9.938164499,55.385088785],[9.938007294,55.385088785]]]},"properties":{"id":625,"top":7436965.5681,"id_0":625,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436948.0681,"col_index":8,"row_index":56}},{"id":626,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384999484],[9.938007294,55.384910182],[9.938164499,55.384910182],[9.938164499,55.384999484],[9.938007294,55.384999484]]]},"properties":{"id":626,"top":7436948.0681,"id_0":626,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436930.5681,"col_index":8,"row_index":57}},{"id":627,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384910182],[9.938007294,55.38482088],[9.938164499,55.38482088],[9.938164499,55.384910182],[9.938007294,55.384910182]]]},"properties":{"id":627,"top":7436930.5681,"id_0":627,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436913.0681,"col_index":8,"row_index":58}},{"id":628,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.38482088],[9.938007294,55.384731577],[9.938164499,55.384731577],[9.938164499,55.38482088],[9.938007294,55.38482088]]]},"properties":{"id":628,"top":7436913.0681,"id_0":628,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436895.5681,"col_index":8,"row_index":59}},{"id":629,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384731577],[9.938007294,55.384642275],[9.938164499,55.384642275],[9.938164499,55.384731577],[9.938007294,55.384731577]]]},"properties":{"id":629,"top":7436895.5681,"id_0":629,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436878.0681,"col_index":8,"row_index":60}},{"id":630,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384642275],[9.938007294,55.384552972],[9.938164499,55.384552972],[9.938164499,55.384642275],[9.938007294,55.384642275]]]},"properties":{"id":630,"top":7436878.0681,"id_0":630,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436860.5681,"col_index":8,"row_index":61}},{"id":631,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384552972],[9.938007294,55.384463669],[9.938164499,55.384463669],[9.938164499,55.384552972],[9.938007294,55.384552972]]]},"properties":{"id":631,"top":7436860.5681,"id_0":631,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436843.0681,"col_index":8,"row_index":62}},{"id":632,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384463669],[9.938007294,55.384374366],[9.938164499,55.384374366],[9.938164499,55.384463669],[9.938007294,55.384463669]]]},"properties":{"id":632,"top":7436843.0681,"id_0":632,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436825.5681,"col_index":8,"row_index":63}},{"id":633,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384374366],[9.938007294,55.384285062],[9.938164499,55.384285062],[9.938164499,55.384374366],[9.938007294,55.384374366]]]},"properties":{"id":633,"top":7436825.5681,"id_0":633,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436808.0681,"col_index":8,"row_index":64}},{"id":634,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384285062],[9.938007294,55.384195759],[9.938164499,55.384195759],[9.938164499,55.384285062],[9.938007294,55.384285062]]]},"properties":{"id":634,"top":7436808.0681,"id_0":634,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436790.5681,"col_index":8,"row_index":65}},{"id":635,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384195759],[9.938007294,55.384106455],[9.938164499,55.384106455],[9.938164499,55.384195759],[9.938007294,55.384195759]]]},"properties":{"id":635,"top":7436790.5681,"id_0":635,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436773.0681,"col_index":8,"row_index":66}},{"id":636,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384106455],[9.938007294,55.384017151],[9.938164499,55.384017151],[9.938164499,55.384106455],[9.938007294,55.384106455]]]},"properties":{"id":636,"top":7436773.0681,"id_0":636,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436755.5681,"col_index":8,"row_index":67}},{"id":637,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.384017151],[9.938007294,55.383927847],[9.938164499,55.383927847],[9.938164499,55.384017151],[9.938007294,55.384017151]]]},"properties":{"id":637,"top":7436755.5681,"id_0":637,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436738.0681,"col_index":8,"row_index":68}},{"id":638,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.383927847],[9.938007294,55.383838543],[9.938164499,55.383838543],[9.938164499,55.383927847],[9.938007294,55.383927847]]]},"properties":{"id":638,"top":7436738.0681,"id_0":638,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436720.5681,"col_index":8,"row_index":69}},{"id":639,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.383838543],[9.938007294,55.383749238],[9.938164499,55.383749238],[9.938164499,55.383838543],[9.938007294,55.383838543]]]},"properties":{"id":639,"top":7436720.5681,"id_0":639,"left":1106293.9115,"Label":null,"right":1106311.4115,"bottom":7436703.0681,"col_index":8,"row_index":70}},{"id":641,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.390000071],[9.938164499,55.38991078],[9.938321705,55.38991078],[9.938321705,55.390000071],[9.938164499,55.390000071]]]},"properties":{"id":641,"top":7437928.0681,"id_0":641,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437910.5681,"col_index":9,"row_index":1}},{"id":642,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38991078],[9.938164499,55.38982149],[9.938321705,55.38982149],[9.938321705,55.38991078],[9.938164499,55.38991078]]]},"properties":{"id":642,"top":7437910.5681,"id_0":642,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437893.0681,"col_index":9,"row_index":2}},{"id":643,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38982149],[9.938164499,55.389732199],[9.938321705,55.389732199],[9.938321705,55.38982149],[9.938164499,55.38982149]]]},"properties":{"id":643,"top":7437893.0681,"id_0":643,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437875.5681,"col_index":9,"row_index":3}},{"id":644,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389732199],[9.938164499,55.389642907],[9.938321705,55.389642907],[9.938321705,55.389732199],[9.938164499,55.389732199]]]},"properties":{"id":644,"top":7437875.5681,"id_0":644,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437858.0681,"col_index":9,"row_index":4}},{"id":645,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389642907],[9.938164499,55.389553616],[9.938321705,55.389553616],[9.938321705,55.389642907],[9.938164499,55.389642907]]]},"properties":{"id":645,"top":7437858.0681,"id_0":645,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437840.5681,"col_index":9,"row_index":5}},{"id":646,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389553616],[9.938164499,55.389464324],[9.938321705,55.389464324],[9.938321705,55.389553616],[9.938164499,55.389553616]]]},"properties":{"id":646,"top":7437840.5681,"id_0":646,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437823.0681,"col_index":9,"row_index":6}},{"id":647,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389464324],[9.938164499,55.389375032],[9.938321705,55.389375032],[9.938321705,55.389464324],[9.938164499,55.389464324]]]},"properties":{"id":647,"top":7437823.0681,"id_0":647,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437805.5681,"col_index":9,"row_index":7}},{"id":648,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389375032],[9.938164499,55.38928574],[9.938321705,55.38928574],[9.938321705,55.389375032],[9.938164499,55.389375032]]]},"properties":{"id":648,"top":7437805.5681,"id_0":648,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437788.0681,"col_index":9,"row_index":8}},{"id":649,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38928574],[9.938164499,55.389196448],[9.938321705,55.389196448],[9.938321705,55.38928574],[9.938164499,55.38928574]]]},"properties":{"id":649,"top":7437788.0681,"id_0":649,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437770.5681,"col_index":9,"row_index":9}},{"id":650,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389196448],[9.938164499,55.389107155],[9.938321705,55.389107155],[9.938321705,55.389196448],[9.938164499,55.389196448]]]},"properties":{"id":650,"top":7437770.5681,"id_0":650,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437753.0681,"col_index":9,"row_index":10}},{"id":651,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389107155],[9.938164499,55.389017863],[9.938321705,55.389017863],[9.938321705,55.389107155],[9.938164499,55.389107155]]]},"properties":{"id":651,"top":7437753.0681,"id_0":651,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437735.5681,"col_index":9,"row_index":11}},{"id":652,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.389017863],[9.938164499,55.38892857],[9.938321705,55.38892857],[9.938321705,55.389017863],[9.938164499,55.389017863]]]},"properties":{"id":652,"top":7437735.5681,"id_0":652,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437718.0681,"col_index":9,"row_index":12}},{"id":653,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38892857],[9.938164499,55.388839277],[9.938321705,55.388839277],[9.938321705,55.38892857],[9.938164499,55.38892857]]]},"properties":{"id":653,"top":7437718.0681,"id_0":653,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437700.5681,"col_index":9,"row_index":13}},{"id":654,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388839277],[9.938164499,55.388749984],[9.938321705,55.388749984],[9.938321705,55.388839277],[9.938164499,55.388839277]]]},"properties":{"id":654,"top":7437700.5681,"id_0":654,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437683.0681,"col_index":9,"row_index":14}},{"id":655,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388749984],[9.938164499,55.38866069],[9.938321705,55.38866069],[9.938321705,55.388749984],[9.938164499,55.388749984]]]},"properties":{"id":655,"top":7437683.0681,"id_0":655,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437665.5681,"col_index":9,"row_index":15}},{"id":656,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38866069],[9.938164499,55.388571396],[9.938321705,55.388571396],[9.938321705,55.38866069],[9.938164499,55.38866069]]]},"properties":{"id":656,"top":7437665.5681,"id_0":656,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437648.0681,"col_index":9,"row_index":16}},{"id":657,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388571396],[9.938164499,55.388482103],[9.938321705,55.388482103],[9.938321705,55.388571396],[9.938164499,55.388571396]]]},"properties":{"id":657,"top":7437648.0681,"id_0":657,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437630.5681,"col_index":9,"row_index":17}},{"id":658,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388482103],[9.938164499,55.388392808],[9.938321705,55.388392808],[9.938321705,55.388482103],[9.938164499,55.388482103]]]},"properties":{"id":658,"top":7437630.5681,"id_0":658,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437613.0681,"col_index":9,"row_index":18}},{"id":659,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388392808],[9.938164499,55.388303514],[9.938321705,55.388303514],[9.938321705,55.388392808],[9.938164499,55.388392808]]]},"properties":{"id":659,"top":7437613.0681,"id_0":659,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437595.5681,"col_index":9,"row_index":19}},{"id":660,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388303514],[9.938164499,55.38821422],[9.938321705,55.38821422],[9.938321705,55.388303514],[9.938164499,55.388303514]]]},"properties":{"id":660,"top":7437595.5681,"id_0":660,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437578.0681,"col_index":9,"row_index":20}},{"id":661,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38821422],[9.938164499,55.388124925],[9.938321705,55.388124925],[9.938321705,55.38821422],[9.938164499,55.38821422]]]},"properties":{"id":661,"top":7437578.0681,"id_0":661,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437560.5681,"col_index":9,"row_index":21}},{"id":662,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.388124925],[9.938164499,55.38803563],[9.938321705,55.38803563],[9.938321705,55.388124925],[9.938164499,55.388124925]]]},"properties":{"id":662,"top":7437560.5681,"id_0":662,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437543.0681,"col_index":9,"row_index":22}},{"id":663,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38803563],[9.938164499,55.387946335],[9.938321705,55.387946335],[9.938321705,55.38803563],[9.938164499,55.38803563]]]},"properties":{"id":663,"top":7437543.0681,"id_0":663,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437525.5681,"col_index":9,"row_index":23}},{"id":664,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387946335],[9.938164499,55.38785704],[9.938321705,55.38785704],[9.938321705,55.387946335],[9.938164499,55.387946335]]]},"properties":{"id":664,"top":7437525.5681,"id_0":664,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437508.0681,"col_index":9,"row_index":24}},{"id":665,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38785704],[9.938164499,55.387767744],[9.938321705,55.387767744],[9.938321705,55.38785704],[9.938164499,55.38785704]]]},"properties":{"id":665,"top":7437508.0681,"id_0":665,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437490.5681,"col_index":9,"row_index":25}},{"id":666,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387767744],[9.938164499,55.387678448],[9.938321705,55.387678448],[9.938321705,55.387767744],[9.938164499,55.387767744]]]},"properties":{"id":666,"top":7437490.5681,"id_0":666,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437473.0681,"col_index":9,"row_index":26}},{"id":667,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387678448],[9.938164499,55.387589153],[9.938321705,55.387589153],[9.938321705,55.387678448],[9.938164499,55.387678448]]]},"properties":{"id":667,"top":7437473.0681,"id_0":667,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437455.5681,"col_index":9,"row_index":27}},{"id":668,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387589153],[9.938164499,55.387499856],[9.938321705,55.387499856],[9.938321705,55.387589153],[9.938164499,55.387589153]]]},"properties":{"id":668,"top":7437455.5681,"id_0":668,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437438.0681,"col_index":9,"row_index":28}},{"id":669,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387499856],[9.938164499,55.38741056],[9.938321705,55.38741056],[9.938321705,55.387499856],[9.938164499,55.387499856]]]},"properties":{"id":669,"top":7437438.0681,"id_0":669,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437420.5681,"col_index":9,"row_index":29}},{"id":670,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38741056],[9.938164499,55.387321264],[9.938321705,55.387321264],[9.938321705,55.38741056],[9.938164499,55.38741056]]]},"properties":{"id":670,"top":7437420.5681,"id_0":670,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437403.0681,"col_index":9,"row_index":30}},{"id":671,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387321264],[9.938164499,55.387231967],[9.938321705,55.387231967],[9.938321705,55.387321264],[9.938164499,55.387321264]]]},"properties":{"id":671,"top":7437403.0681,"id_0":671,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437385.5681,"col_index":9,"row_index":31}},{"id":672,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387231967],[9.938164499,55.38714267],[9.938321705,55.38714267],[9.938321705,55.387231967],[9.938164499,55.387231967]]]},"properties":{"id":672,"top":7437385.5681,"id_0":672,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437368.0681,"col_index":9,"row_index":32}},{"id":673,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38714267],[9.938164499,55.387053373],[9.938321705,55.387053373],[9.938321705,55.38714267],[9.938164499,55.38714267]]]},"properties":{"id":673,"top":7437368.0681,"id_0":673,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437350.5681,"col_index":9,"row_index":33}},{"id":674,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.387053373],[9.938164499,55.386964076],[9.938321705,55.386964076],[9.938321705,55.387053373],[9.938164499,55.387053373]]]},"properties":{"id":674,"top":7437350.5681,"id_0":674,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437333.0681,"col_index":9,"row_index":34}},{"id":675,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386964076],[9.938164499,55.386874778],[9.938321705,55.386874778],[9.938321705,55.386964076],[9.938164499,55.386964076]]]},"properties":{"id":675,"top":7437333.0681,"id_0":675,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437315.5681,"col_index":9,"row_index":35}},{"id":676,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386874778],[9.938164499,55.38678548],[9.938321705,55.38678548],[9.938321705,55.386874778],[9.938164499,55.386874778]]]},"properties":{"id":676,"top":7437315.5681,"id_0":676,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437298.0681,"col_index":9,"row_index":36}},{"id":677,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38678548],[9.938164499,55.386696182],[9.938321705,55.386696182],[9.938321705,55.38678548],[9.938164499,55.38678548]]]},"properties":{"id":677,"top":7437298.0681,"id_0":677,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437280.5681,"col_index":9,"row_index":37}},{"id":678,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386696182],[9.938164499,55.386606884],[9.938321705,55.386606884],[9.938321705,55.386696182],[9.938164499,55.386696182]]]},"properties":{"id":678,"top":7437280.5681,"id_0":678,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437263.0681,"col_index":9,"row_index":38}},{"id":679,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386606884],[9.938164499,55.386517586],[9.938321705,55.386517586],[9.938321705,55.386606884],[9.938164499,55.386606884]]]},"properties":{"id":679,"top":7437263.0681,"id_0":679,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437245.5681,"col_index":9,"row_index":39}},{"id":680,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386517586],[9.938164499,55.386428287],[9.938321705,55.386428287],[9.938321705,55.386517586],[9.938164499,55.386517586]]]},"properties":{"id":680,"top":7437245.5681,"id_0":680,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437228.0681,"col_index":9,"row_index":40}},{"id":681,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386428287],[9.938164499,55.386338989],[9.938321705,55.386338989],[9.938321705,55.386428287],[9.938164499,55.386428287]]]},"properties":{"id":681,"top":7437228.0681,"id_0":681,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437210.5681,"col_index":9,"row_index":41}},{"id":682,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386338989],[9.938164499,55.38624969],[9.938321705,55.38624969],[9.938321705,55.386338989],[9.938164499,55.386338989]]]},"properties":{"id":682,"top":7437210.5681,"id_0":682,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437193.0681,"col_index":9,"row_index":42}},{"id":683,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38624969],[9.938164499,55.386160391],[9.938321705,55.386160391],[9.938321705,55.38624969],[9.938164499,55.38624969]]]},"properties":{"id":683,"top":7437193.0681,"id_0":683,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437175.5681,"col_index":9,"row_index":43}},{"id":684,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386160391],[9.938164499,55.386071091],[9.938321705,55.386071091],[9.938321705,55.386160391],[9.938164499,55.386160391]]]},"properties":{"id":684,"top":7437175.5681,"id_0":684,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437158.0681,"col_index":9,"row_index":44}},{"id":685,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.386071091],[9.938164499,55.385981792],[9.938321705,55.385981792],[9.938321705,55.386071091],[9.938164499,55.386071091]]]},"properties":{"id":685,"top":7437158.0681,"id_0":685,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437140.5681,"col_index":9,"row_index":45}},{"id":686,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385981792],[9.938164499,55.385892492],[9.938321705,55.385892492],[9.938321705,55.385981792],[9.938164499,55.385981792]]]},"properties":{"id":686,"top":7437140.5681,"id_0":686,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437123.0681,"col_index":9,"row_index":46}},{"id":687,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385892492],[9.938164499,55.385803192],[9.938321705,55.385803192],[9.938321705,55.385892492],[9.938164499,55.385892492]]]},"properties":{"id":687,"top":7437123.0681,"id_0":687,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437105.5681,"col_index":9,"row_index":47}},{"id":688,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385803192],[9.938164499,55.385713892],[9.938321705,55.385713892],[9.938321705,55.385803192],[9.938164499,55.385803192]]]},"properties":{"id":688,"top":7437105.5681,"id_0":688,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437088.0681,"col_index":9,"row_index":48}},{"id":689,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385713892],[9.938164499,55.385624592],[9.938321705,55.385624592],[9.938321705,55.385713892],[9.938164499,55.385713892]]]},"properties":{"id":689,"top":7437088.0681,"id_0":689,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437070.5681,"col_index":9,"row_index":49}},{"id":690,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385624592],[9.938164499,55.385535291],[9.938321705,55.385535291],[9.938321705,55.385624592],[9.938164499,55.385624592]]]},"properties":{"id":690,"top":7437070.5681,"id_0":690,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437053.0681,"col_index":9,"row_index":50}},{"id":691,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385535291],[9.938164499,55.38544599],[9.938321705,55.38544599],[9.938321705,55.385535291],[9.938164499,55.385535291]]]},"properties":{"id":691,"top":7437053.0681,"id_0":691,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437035.5681,"col_index":9,"row_index":51}},{"id":692,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38544599],[9.938164499,55.385356689],[9.938321705,55.385356689],[9.938321705,55.38544599],[9.938164499,55.38544599]]]},"properties":{"id":692,"top":7437035.5681,"id_0":692,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437018.0681,"col_index":9,"row_index":52}},{"id":693,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385356689],[9.938164499,55.385267388],[9.938321705,55.385267388],[9.938321705,55.385356689],[9.938164499,55.385356689]]]},"properties":{"id":693,"top":7437018.0681,"id_0":693,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7437000.5681,"col_index":9,"row_index":53}},{"id":694,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385267388],[9.938164499,55.385178087],[9.938321705,55.385178087],[9.938321705,55.385267388],[9.938164499,55.385267388]]]},"properties":{"id":694,"top":7437000.5681,"id_0":694,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436983.0681,"col_index":9,"row_index":54}},{"id":695,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385178087],[9.938164499,55.385088785],[9.938321705,55.385088785],[9.938321705,55.385178087],[9.938164499,55.385178087]]]},"properties":{"id":695,"top":7436983.0681,"id_0":695,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436965.5681,"col_index":9,"row_index":55}},{"id":696,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.385088785],[9.938164499,55.384999484],[9.938321705,55.384999484],[9.938321705,55.385088785],[9.938164499,55.385088785]]]},"properties":{"id":696,"top":7436965.5681,"id_0":696,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436948.0681,"col_index":9,"row_index":56}},{"id":697,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384999484],[9.938164499,55.384910182],[9.938321705,55.384910182],[9.938321705,55.384999484],[9.938164499,55.384999484]]]},"properties":{"id":697,"top":7436948.0681,"id_0":697,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436930.5681,"col_index":9,"row_index":57}},{"id":698,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384910182],[9.938164499,55.38482088],[9.938321705,55.38482088],[9.938321705,55.384910182],[9.938164499,55.384910182]]]},"properties":{"id":698,"top":7436930.5681,"id_0":698,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436913.0681,"col_index":9,"row_index":58}},{"id":699,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.38482088],[9.938164499,55.384731577],[9.938321705,55.384731577],[9.938321705,55.38482088],[9.938164499,55.38482088]]]},"properties":{"id":699,"top":7436913.0681,"id_0":699,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436895.5681,"col_index":9,"row_index":59}},{"id":700,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384731577],[9.938164499,55.384642275],[9.938321705,55.384642275],[9.938321705,55.384731577],[9.938164499,55.384731577]]]},"properties":{"id":700,"top":7436895.5681,"id_0":700,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436878.0681,"col_index":9,"row_index":60}},{"id":701,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384642275],[9.938164499,55.384552972],[9.938321705,55.384552972],[9.938321705,55.384642275],[9.938164499,55.384642275]]]},"properties":{"id":701,"top":7436878.0681,"id_0":701,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436860.5681,"col_index":9,"row_index":61}},{"id":702,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384552972],[9.938164499,55.384463669],[9.938321705,55.384463669],[9.938321705,55.384552972],[9.938164499,55.384552972]]]},"properties":{"id":702,"top":7436860.5681,"id_0":702,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436843.0681,"col_index":9,"row_index":62}},{"id":703,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384463669],[9.938164499,55.384374366],[9.938321705,55.384374366],[9.938321705,55.384463669],[9.938164499,55.384463669]]]},"properties":{"id":703,"top":7436843.0681,"id_0":703,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436825.5681,"col_index":9,"row_index":63}},{"id":704,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384374366],[9.938164499,55.384285062],[9.938321705,55.384285062],[9.938321705,55.384374366],[9.938164499,55.384374366]]]},"properties":{"id":704,"top":7436825.5681,"id_0":704,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436808.0681,"col_index":9,"row_index":64}},{"id":705,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384285062],[9.938164499,55.384195759],[9.938321705,55.384195759],[9.938321705,55.384285062],[9.938164499,55.384285062]]]},"properties":{"id":705,"top":7436808.0681,"id_0":705,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436790.5681,"col_index":9,"row_index":65}},{"id":706,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384195759],[9.938164499,55.384106455],[9.938321705,55.384106455],[9.938321705,55.384195759],[9.938164499,55.384195759]]]},"properties":{"id":706,"top":7436790.5681,"id_0":706,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436773.0681,"col_index":9,"row_index":66}},{"id":707,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384106455],[9.938164499,55.384017151],[9.938321705,55.384017151],[9.938321705,55.384106455],[9.938164499,55.384106455]]]},"properties":{"id":707,"top":7436773.0681,"id_0":707,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436755.5681,"col_index":9,"row_index":67}},{"id":708,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.384017151],[9.938164499,55.383927847],[9.938321705,55.383927847],[9.938321705,55.384017151],[9.938164499,55.384017151]]]},"properties":{"id":708,"top":7436755.5681,"id_0":708,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436738.0681,"col_index":9,"row_index":68}},{"id":709,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.383927847],[9.938164499,55.383838543],[9.938321705,55.383838543],[9.938321705,55.383927847],[9.938164499,55.383927847]]]},"properties":{"id":709,"top":7436738.0681,"id_0":709,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436720.5681,"col_index":9,"row_index":69}},{"id":710,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.383838543],[9.938164499,55.383749238],[9.938321705,55.383749238],[9.938321705,55.383838543],[9.938164499,55.383838543]]]},"properties":{"id":710,"top":7436720.5681,"id_0":710,"left":1106311.4115,"Label":null,"right":1106328.9115,"bottom":7436703.0681,"col_index":9,"row_index":70}},{"id":712,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.390000071],[9.938321705,55.38991078],[9.93847891,55.38991078],[9.93847891,55.390000071],[9.938321705,55.390000071]]]},"properties":{"id":712,"top":7437928.0681,"id_0":712,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437910.5681,"col_index":10,"row_index":1}},{"id":713,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38991078],[9.938321705,55.38982149],[9.93847891,55.38982149],[9.93847891,55.38991078],[9.938321705,55.38991078]]]},"properties":{"id":713,"top":7437910.5681,"id_0":713,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437893.0681,"col_index":10,"row_index":2}},{"id":714,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38982149],[9.938321705,55.389732199],[9.93847891,55.389732199],[9.93847891,55.38982149],[9.938321705,55.38982149]]]},"properties":{"id":714,"top":7437893.0681,"id_0":714,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437875.5681,"col_index":10,"row_index":3}},{"id":715,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389732199],[9.938321705,55.389642907],[9.93847891,55.389642907],[9.93847891,55.389732199],[9.938321705,55.389732199]]]},"properties":{"id":715,"top":7437875.5681,"id_0":715,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437858.0681,"col_index":10,"row_index":4}},{"id":716,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389642907],[9.938321705,55.389553616],[9.93847891,55.389553616],[9.93847891,55.389642907],[9.938321705,55.389642907]]]},"properties":{"id":716,"top":7437858.0681,"id_0":716,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437840.5681,"col_index":10,"row_index":5}},{"id":717,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389553616],[9.938321705,55.389464324],[9.93847891,55.389464324],[9.93847891,55.389553616],[9.938321705,55.389553616]]]},"properties":{"id":717,"top":7437840.5681,"id_0":717,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437823.0681,"col_index":10,"row_index":6}},{"id":718,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389464324],[9.938321705,55.389375032],[9.93847891,55.389375032],[9.93847891,55.389464324],[9.938321705,55.389464324]]]},"properties":{"id":718,"top":7437823.0681,"id_0":718,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437805.5681,"col_index":10,"row_index":7}},{"id":719,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389375032],[9.938321705,55.38928574],[9.93847891,55.38928574],[9.93847891,55.389375032],[9.938321705,55.389375032]]]},"properties":{"id":719,"top":7437805.5681,"id_0":719,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437788.0681,"col_index":10,"row_index":8}},{"id":720,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38928574],[9.938321705,55.389196448],[9.93847891,55.389196448],[9.93847891,55.38928574],[9.938321705,55.38928574]]]},"properties":{"id":720,"top":7437788.0681,"id_0":720,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437770.5681,"col_index":10,"row_index":9}},{"id":721,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389196448],[9.938321705,55.389107155],[9.93847891,55.389107155],[9.93847891,55.389196448],[9.938321705,55.389196448]]]},"properties":{"id":721,"top":7437770.5681,"id_0":721,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437753.0681,"col_index":10,"row_index":10}},{"id":722,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389107155],[9.938321705,55.389017863],[9.93847891,55.389017863],[9.93847891,55.389107155],[9.938321705,55.389107155]]]},"properties":{"id":722,"top":7437753.0681,"id_0":722,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437735.5681,"col_index":10,"row_index":11}},{"id":723,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.389017863],[9.938321705,55.38892857],[9.93847891,55.38892857],[9.93847891,55.389017863],[9.938321705,55.389017863]]]},"properties":{"id":723,"top":7437735.5681,"id_0":723,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437718.0681,"col_index":10,"row_index":12}},{"id":724,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38892857],[9.938321705,55.388839277],[9.93847891,55.388839277],[9.93847891,55.38892857],[9.938321705,55.38892857]]]},"properties":{"id":724,"top":7437718.0681,"id_0":724,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437700.5681,"col_index":10,"row_index":13}},{"id":725,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388839277],[9.938321705,55.388749984],[9.93847891,55.388749984],[9.93847891,55.388839277],[9.938321705,55.388839277]]]},"properties":{"id":725,"top":7437700.5681,"id_0":725,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437683.0681,"col_index":10,"row_index":14}},{"id":726,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388749984],[9.938321705,55.38866069],[9.93847891,55.38866069],[9.93847891,55.388749984],[9.938321705,55.388749984]]]},"properties":{"id":726,"top":7437683.0681,"id_0":726,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437665.5681,"col_index":10,"row_index":15}},{"id":727,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38866069],[9.938321705,55.388571396],[9.93847891,55.388571396],[9.93847891,55.38866069],[9.938321705,55.38866069]]]},"properties":{"id":727,"top":7437665.5681,"id_0":727,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437648.0681,"col_index":10,"row_index":16}},{"id":728,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388571396],[9.938321705,55.388482103],[9.93847891,55.388482103],[9.93847891,55.388571396],[9.938321705,55.388571396]]]},"properties":{"id":728,"top":7437648.0681,"id_0":728,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437630.5681,"col_index":10,"row_index":17}},{"id":729,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388482103],[9.938321705,55.388392808],[9.93847891,55.388392808],[9.93847891,55.388482103],[9.938321705,55.388482103]]]},"properties":{"id":729,"top":7437630.5681,"id_0":729,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437613.0681,"col_index":10,"row_index":18}},{"id":730,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388392808],[9.938321705,55.388303514],[9.93847891,55.388303514],[9.93847891,55.388392808],[9.938321705,55.388392808]]]},"properties":{"id":730,"top":7437613.0681,"id_0":730,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437595.5681,"col_index":10,"row_index":19}},{"id":731,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388303514],[9.938321705,55.38821422],[9.93847891,55.38821422],[9.93847891,55.388303514],[9.938321705,55.388303514]]]},"properties":{"id":731,"top":7437595.5681,"id_0":731,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437578.0681,"col_index":10,"row_index":20}},{"id":732,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38821422],[9.938321705,55.388124925],[9.93847891,55.388124925],[9.93847891,55.38821422],[9.938321705,55.38821422]]]},"properties":{"id":732,"top":7437578.0681,"id_0":732,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437560.5681,"col_index":10,"row_index":21}},{"id":733,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.388124925],[9.938321705,55.38803563],[9.93847891,55.38803563],[9.93847891,55.388124925],[9.938321705,55.388124925]]]},"properties":{"id":733,"top":7437560.5681,"id_0":733,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437543.0681,"col_index":10,"row_index":22}},{"id":734,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38803563],[9.938321705,55.387946335],[9.93847891,55.387946335],[9.93847891,55.38803563],[9.938321705,55.38803563]]]},"properties":{"id":734,"top":7437543.0681,"id_0":734,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437525.5681,"col_index":10,"row_index":23}},{"id":735,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387946335],[9.938321705,55.38785704],[9.93847891,55.38785704],[9.93847891,55.387946335],[9.938321705,55.387946335]]]},"properties":{"id":735,"top":7437525.5681,"id_0":735,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437508.0681,"col_index":10,"row_index":24}},{"id":736,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38785704],[9.938321705,55.387767744],[9.93847891,55.387767744],[9.93847891,55.38785704],[9.938321705,55.38785704]]]},"properties":{"id":736,"top":7437508.0681,"id_0":736,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437490.5681,"col_index":10,"row_index":25}},{"id":737,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387767744],[9.938321705,55.387678448],[9.93847891,55.387678448],[9.93847891,55.387767744],[9.938321705,55.387767744]]]},"properties":{"id":737,"top":7437490.5681,"id_0":737,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437473.0681,"col_index":10,"row_index":26}},{"id":738,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387678448],[9.938321705,55.387589153],[9.93847891,55.387589153],[9.93847891,55.387678448],[9.938321705,55.387678448]]]},"properties":{"id":738,"top":7437473.0681,"id_0":738,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437455.5681,"col_index":10,"row_index":27}},{"id":739,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387589153],[9.938321705,55.387499856],[9.93847891,55.387499856],[9.93847891,55.387589153],[9.938321705,55.387589153]]]},"properties":{"id":739,"top":7437455.5681,"id_0":739,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437438.0681,"col_index":10,"row_index":28}},{"id":740,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387499856],[9.938321705,55.38741056],[9.93847891,55.38741056],[9.93847891,55.387499856],[9.938321705,55.387499856]]]},"properties":{"id":740,"top":7437438.0681,"id_0":740,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437420.5681,"col_index":10,"row_index":29}},{"id":741,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38741056],[9.938321705,55.387321264],[9.93847891,55.387321264],[9.93847891,55.38741056],[9.938321705,55.38741056]]]},"properties":{"id":741,"top":7437420.5681,"id_0":741,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437403.0681,"col_index":10,"row_index":30}},{"id":742,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387321264],[9.938321705,55.387231967],[9.93847891,55.387231967],[9.93847891,55.387321264],[9.938321705,55.387321264]]]},"properties":{"id":742,"top":7437403.0681,"id_0":742,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437385.5681,"col_index":10,"row_index":31}},{"id":743,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387231967],[9.938321705,55.38714267],[9.93847891,55.38714267],[9.93847891,55.387231967],[9.938321705,55.387231967]]]},"properties":{"id":743,"top":7437385.5681,"id_0":743,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437368.0681,"col_index":10,"row_index":32}},{"id":744,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38714267],[9.938321705,55.387053373],[9.93847891,55.387053373],[9.93847891,55.38714267],[9.938321705,55.38714267]]]},"properties":{"id":744,"top":7437368.0681,"id_0":744,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437350.5681,"col_index":10,"row_index":33}},{"id":745,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.387053373],[9.938321705,55.386964076],[9.93847891,55.386964076],[9.93847891,55.387053373],[9.938321705,55.387053373]]]},"properties":{"id":745,"top":7437350.5681,"id_0":745,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437333.0681,"col_index":10,"row_index":34}},{"id":746,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386964076],[9.938321705,55.386874778],[9.93847891,55.386874778],[9.93847891,55.386964076],[9.938321705,55.386964076]]]},"properties":{"id":746,"top":7437333.0681,"id_0":746,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437315.5681,"col_index":10,"row_index":35}},{"id":747,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386874778],[9.938321705,55.38678548],[9.93847891,55.38678548],[9.93847891,55.386874778],[9.938321705,55.386874778]]]},"properties":{"id":747,"top":7437315.5681,"id_0":747,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437298.0681,"col_index":10,"row_index":36}},{"id":748,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38678548],[9.938321705,55.386696182],[9.93847891,55.386696182],[9.93847891,55.38678548],[9.938321705,55.38678548]]]},"properties":{"id":748,"top":7437298.0681,"id_0":748,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437280.5681,"col_index":10,"row_index":37}},{"id":749,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386696182],[9.938321705,55.386606884],[9.93847891,55.386606884],[9.93847891,55.386696182],[9.938321705,55.386696182]]]},"properties":{"id":749,"top":7437280.5681,"id_0":749,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437263.0681,"col_index":10,"row_index":38}},{"id":750,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386606884],[9.938321705,55.386517586],[9.93847891,55.386517586],[9.93847891,55.386606884],[9.938321705,55.386606884]]]},"properties":{"id":750,"top":7437263.0681,"id_0":750,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437245.5681,"col_index":10,"row_index":39}},{"id":751,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386517586],[9.938321705,55.386428287],[9.93847891,55.386428287],[9.93847891,55.386517586],[9.938321705,55.386517586]]]},"properties":{"id":751,"top":7437245.5681,"id_0":751,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437228.0681,"col_index":10,"row_index":40}},{"id":752,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386428287],[9.938321705,55.386338989],[9.93847891,55.386338989],[9.93847891,55.386428287],[9.938321705,55.386428287]]]},"properties":{"id":752,"top":7437228.0681,"id_0":752,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437210.5681,"col_index":10,"row_index":41}},{"id":753,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386338989],[9.938321705,55.38624969],[9.93847891,55.38624969],[9.93847891,55.386338989],[9.938321705,55.386338989]]]},"properties":{"id":753,"top":7437210.5681,"id_0":753,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437193.0681,"col_index":10,"row_index":42}},{"id":754,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38624969],[9.938321705,55.386160391],[9.93847891,55.386160391],[9.93847891,55.38624969],[9.938321705,55.38624969]]]},"properties":{"id":754,"top":7437193.0681,"id_0":754,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437175.5681,"col_index":10,"row_index":43}},{"id":755,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386160391],[9.938321705,55.386071091],[9.93847891,55.386071091],[9.93847891,55.386160391],[9.938321705,55.386160391]]]},"properties":{"id":755,"top":7437175.5681,"id_0":755,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437158.0681,"col_index":10,"row_index":44}},{"id":756,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.386071091],[9.938321705,55.385981792],[9.93847891,55.385981792],[9.93847891,55.386071091],[9.938321705,55.386071091]]]},"properties":{"id":756,"top":7437158.0681,"id_0":756,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437140.5681,"col_index":10,"row_index":45}},{"id":757,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385981792],[9.938321705,55.385892492],[9.93847891,55.385892492],[9.93847891,55.385981792],[9.938321705,55.385981792]]]},"properties":{"id":757,"top":7437140.5681,"id_0":757,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437123.0681,"col_index":10,"row_index":46}},{"id":758,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385892492],[9.938321705,55.385803192],[9.93847891,55.385803192],[9.93847891,55.385892492],[9.938321705,55.385892492]]]},"properties":{"id":758,"top":7437123.0681,"id_0":758,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437105.5681,"col_index":10,"row_index":47}},{"id":759,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385803192],[9.938321705,55.385713892],[9.93847891,55.385713892],[9.93847891,55.385803192],[9.938321705,55.385803192]]]},"properties":{"id":759,"top":7437105.5681,"id_0":759,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437088.0681,"col_index":10,"row_index":48}},{"id":760,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385713892],[9.938321705,55.385624592],[9.93847891,55.385624592],[9.93847891,55.385713892],[9.938321705,55.385713892]]]},"properties":{"id":760,"top":7437088.0681,"id_0":760,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437070.5681,"col_index":10,"row_index":49}},{"id":761,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385624592],[9.938321705,55.385535291],[9.93847891,55.385535291],[9.93847891,55.385624592],[9.938321705,55.385624592]]]},"properties":{"id":761,"top":7437070.5681,"id_0":761,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437053.0681,"col_index":10,"row_index":50}},{"id":762,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385535291],[9.938321705,55.38544599],[9.93847891,55.38544599],[9.93847891,55.385535291],[9.938321705,55.385535291]]]},"properties":{"id":762,"top":7437053.0681,"id_0":762,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437035.5681,"col_index":10,"row_index":51}},{"id":763,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38544599],[9.938321705,55.385356689],[9.93847891,55.385356689],[9.93847891,55.38544599],[9.938321705,55.38544599]]]},"properties":{"id":763,"top":7437035.5681,"id_0":763,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437018.0681,"col_index":10,"row_index":52}},{"id":764,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385356689],[9.938321705,55.385267388],[9.93847891,55.385267388],[9.93847891,55.385356689],[9.938321705,55.385356689]]]},"properties":{"id":764,"top":7437018.0681,"id_0":764,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7437000.5681,"col_index":10,"row_index":53}},{"id":765,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385267388],[9.938321705,55.385178087],[9.93847891,55.385178087],[9.93847891,55.385267388],[9.938321705,55.385267388]]]},"properties":{"id":765,"top":7437000.5681,"id_0":765,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436983.0681,"col_index":10,"row_index":54}},{"id":766,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385178087],[9.938321705,55.385088785],[9.93847891,55.385088785],[9.93847891,55.385178087],[9.938321705,55.385178087]]]},"properties":{"id":766,"top":7436983.0681,"id_0":766,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436965.5681,"col_index":10,"row_index":55}},{"id":767,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.385088785],[9.938321705,55.384999484],[9.93847891,55.384999484],[9.93847891,55.385088785],[9.938321705,55.385088785]]]},"properties":{"id":767,"top":7436965.5681,"id_0":767,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436948.0681,"col_index":10,"row_index":56}},{"id":768,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384999484],[9.938321705,55.384910182],[9.93847891,55.384910182],[9.93847891,55.384999484],[9.938321705,55.384999484]]]},"properties":{"id":768,"top":7436948.0681,"id_0":768,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436930.5681,"col_index":10,"row_index":57}},{"id":769,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384910182],[9.938321705,55.38482088],[9.93847891,55.38482088],[9.93847891,55.384910182],[9.938321705,55.384910182]]]},"properties":{"id":769,"top":7436930.5681,"id_0":769,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436913.0681,"col_index":10,"row_index":58}},{"id":770,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.38482088],[9.938321705,55.384731577],[9.93847891,55.384731577],[9.93847891,55.38482088],[9.938321705,55.38482088]]]},"properties":{"id":770,"top":7436913.0681,"id_0":770,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436895.5681,"col_index":10,"row_index":59}},{"id":771,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384731577],[9.938321705,55.384642275],[9.93847891,55.384642275],[9.93847891,55.384731577],[9.938321705,55.384731577]]]},"properties":{"id":771,"top":7436895.5681,"id_0":771,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436878.0681,"col_index":10,"row_index":60}},{"id":772,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384642275],[9.938321705,55.384552972],[9.93847891,55.384552972],[9.93847891,55.384642275],[9.938321705,55.384642275]]]},"properties":{"id":772,"top":7436878.0681,"id_0":772,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436860.5681,"col_index":10,"row_index":61}},{"id":773,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384552972],[9.938321705,55.384463669],[9.93847891,55.384463669],[9.93847891,55.384552972],[9.938321705,55.384552972]]]},"properties":{"id":773,"top":7436860.5681,"id_0":773,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436843.0681,"col_index":10,"row_index":62}},{"id":774,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384463669],[9.938321705,55.384374366],[9.93847891,55.384374366],[9.93847891,55.384463669],[9.938321705,55.384463669]]]},"properties":{"id":774,"top":7436843.0681,"id_0":774,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436825.5681,"col_index":10,"row_index":63}},{"id":775,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384374366],[9.938321705,55.384285062],[9.93847891,55.384285062],[9.93847891,55.384374366],[9.938321705,55.384374366]]]},"properties":{"id":775,"top":7436825.5681,"id_0":775,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436808.0681,"col_index":10,"row_index":64}},{"id":776,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384285062],[9.938321705,55.384195759],[9.93847891,55.384195759],[9.93847891,55.384285062],[9.938321705,55.384285062]]]},"properties":{"id":776,"top":7436808.0681,"id_0":776,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436790.5681,"col_index":10,"row_index":65}},{"id":777,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384195759],[9.938321705,55.384106455],[9.93847891,55.384106455],[9.93847891,55.384195759],[9.938321705,55.384195759]]]},"properties":{"id":777,"top":7436790.5681,"id_0":777,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436773.0681,"col_index":10,"row_index":66}},{"id":778,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384106455],[9.938321705,55.384017151],[9.93847891,55.384017151],[9.93847891,55.384106455],[9.938321705,55.384106455]]]},"properties":{"id":778,"top":7436773.0681,"id_0":778,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436755.5681,"col_index":10,"row_index":67}},{"id":779,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.384017151],[9.938321705,55.383927847],[9.93847891,55.383927847],[9.93847891,55.384017151],[9.938321705,55.384017151]]]},"properties":{"id":779,"top":7436755.5681,"id_0":779,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436738.0681,"col_index":10,"row_index":68}},{"id":780,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.383927847],[9.938321705,55.383838543],[9.93847891,55.383838543],[9.93847891,55.383927847],[9.938321705,55.383927847]]]},"properties":{"id":780,"top":7436738.0681,"id_0":780,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436720.5681,"col_index":10,"row_index":69}},{"id":781,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.383838543],[9.938321705,55.383749238],[9.93847891,55.383749238],[9.93847891,55.383838543],[9.938321705,55.383838543]]]},"properties":{"id":781,"top":7436720.5681,"id_0":781,"left":1106328.9115,"Label":null,"right":1106346.4115,"bottom":7436703.0681,"col_index":10,"row_index":70}},{"id":783,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.390000071],[9.93847891,55.38991078],[9.938636115,55.38991078],[9.938636115,55.390000071],[9.93847891,55.390000071]]]},"properties":{"id":783,"top":7437928.0681,"id_0":783,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437910.5681,"col_index":11,"row_index":1}},{"id":784,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38991078],[9.93847891,55.38982149],[9.938636115,55.38982149],[9.938636115,55.38991078],[9.93847891,55.38991078]]]},"properties":{"id":784,"top":7437910.5681,"id_0":784,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437893.0681,"col_index":11,"row_index":2}},{"id":785,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38982149],[9.93847891,55.389732199],[9.938636115,55.389732199],[9.938636115,55.38982149],[9.93847891,55.38982149]]]},"properties":{"id":785,"top":7437893.0681,"id_0":785,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437875.5681,"col_index":11,"row_index":3}},{"id":786,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389732199],[9.93847891,55.389642907],[9.938636115,55.389642907],[9.938636115,55.389732199],[9.93847891,55.389732199]]]},"properties":{"id":786,"top":7437875.5681,"id_0":786,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437858.0681,"col_index":11,"row_index":4}},{"id":787,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389642907],[9.93847891,55.389553616],[9.938636115,55.389553616],[9.938636115,55.389642907],[9.93847891,55.389642907]]]},"properties":{"id":787,"top":7437858.0681,"id_0":787,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437840.5681,"col_index":11,"row_index":5}},{"id":788,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389553616],[9.93847891,55.389464324],[9.938636115,55.389464324],[9.938636115,55.389553616],[9.93847891,55.389553616]]]},"properties":{"id":788,"top":7437840.5681,"id_0":788,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437823.0681,"col_index":11,"row_index":6}},{"id":789,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389464324],[9.93847891,55.389375032],[9.938636115,55.389375032],[9.938636115,55.389464324],[9.93847891,55.389464324]]]},"properties":{"id":789,"top":7437823.0681,"id_0":789,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437805.5681,"col_index":11,"row_index":7}},{"id":790,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389375032],[9.93847891,55.38928574],[9.938636115,55.38928574],[9.938636115,55.389375032],[9.93847891,55.389375032]]]},"properties":{"id":790,"top":7437805.5681,"id_0":790,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437788.0681,"col_index":11,"row_index":8}},{"id":791,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38928574],[9.93847891,55.389196448],[9.938636115,55.389196448],[9.938636115,55.38928574],[9.93847891,55.38928574]]]},"properties":{"id":791,"top":7437788.0681,"id_0":791,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437770.5681,"col_index":11,"row_index":9}},{"id":792,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389196448],[9.93847891,55.389107155],[9.938636115,55.389107155],[9.938636115,55.389196448],[9.93847891,55.389196448]]]},"properties":{"id":792,"top":7437770.5681,"id_0":792,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437753.0681,"col_index":11,"row_index":10}},{"id":793,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389107155],[9.93847891,55.389017863],[9.938636115,55.389017863],[9.938636115,55.389107155],[9.93847891,55.389107155]]]},"properties":{"id":793,"top":7437753.0681,"id_0":793,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437735.5681,"col_index":11,"row_index":11}},{"id":794,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.389017863],[9.93847891,55.38892857],[9.938636115,55.38892857],[9.938636115,55.389017863],[9.93847891,55.389017863]]]},"properties":{"id":794,"top":7437735.5681,"id_0":794,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437718.0681,"col_index":11,"row_index":12}},{"id":795,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38892857],[9.93847891,55.388839277],[9.938636115,55.388839277],[9.938636115,55.38892857],[9.93847891,55.38892857]]]},"properties":{"id":795,"top":7437718.0681,"id_0":795,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437700.5681,"col_index":11,"row_index":13}},{"id":796,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388839277],[9.93847891,55.388749984],[9.938636115,55.388749984],[9.938636115,55.388839277],[9.93847891,55.388839277]]]},"properties":{"id":796,"top":7437700.5681,"id_0":796,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437683.0681,"col_index":11,"row_index":14}},{"id":797,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388749984],[9.93847891,55.38866069],[9.938636115,55.38866069],[9.938636115,55.388749984],[9.93847891,55.388749984]]]},"properties":{"id":797,"top":7437683.0681,"id_0":797,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437665.5681,"col_index":11,"row_index":15}},{"id":798,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38866069],[9.93847891,55.388571396],[9.938636115,55.388571396],[9.938636115,55.38866069],[9.93847891,55.38866069]]]},"properties":{"id":798,"top":7437665.5681,"id_0":798,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437648.0681,"col_index":11,"row_index":16}},{"id":799,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388571396],[9.93847891,55.388482103],[9.938636115,55.388482103],[9.938636115,55.388571396],[9.93847891,55.388571396]]]},"properties":{"id":799,"top":7437648.0681,"id_0":799,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437630.5681,"col_index":11,"row_index":17}},{"id":800,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388482103],[9.93847891,55.388392808],[9.938636115,55.388392808],[9.938636115,55.388482103],[9.93847891,55.388482103]]]},"properties":{"id":800,"top":7437630.5681,"id_0":800,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437613.0681,"col_index":11,"row_index":18}},{"id":801,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388392808],[9.93847891,55.388303514],[9.938636115,55.388303514],[9.938636115,55.388392808],[9.93847891,55.388392808]]]},"properties":{"id":801,"top":7437613.0681,"id_0":801,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437595.5681,"col_index":11,"row_index":19}},{"id":802,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388303514],[9.93847891,55.38821422],[9.938636115,55.38821422],[9.938636115,55.388303514],[9.93847891,55.388303514]]]},"properties":{"id":802,"top":7437595.5681,"id_0":802,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437578.0681,"col_index":11,"row_index":20}},{"id":803,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38821422],[9.93847891,55.388124925],[9.938636115,55.388124925],[9.938636115,55.38821422],[9.93847891,55.38821422]]]},"properties":{"id":803,"top":7437578.0681,"id_0":803,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437560.5681,"col_index":11,"row_index":21}},{"id":804,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.388124925],[9.93847891,55.38803563],[9.938636115,55.38803563],[9.938636115,55.388124925],[9.93847891,55.388124925]]]},"properties":{"id":804,"top":7437560.5681,"id_0":804,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437543.0681,"col_index":11,"row_index":22}},{"id":805,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38803563],[9.93847891,55.387946335],[9.938636115,55.387946335],[9.938636115,55.38803563],[9.93847891,55.38803563]]]},"properties":{"id":805,"top":7437543.0681,"id_0":805,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437525.5681,"col_index":11,"row_index":23}},{"id":806,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387946335],[9.93847891,55.38785704],[9.938636115,55.38785704],[9.938636115,55.387946335],[9.93847891,55.387946335]]]},"properties":{"id":806,"top":7437525.5681,"id_0":806,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437508.0681,"col_index":11,"row_index":24}},{"id":807,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38785704],[9.93847891,55.387767744],[9.938636115,55.387767744],[9.938636115,55.38785704],[9.93847891,55.38785704]]]},"properties":{"id":807,"top":7437508.0681,"id_0":807,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437490.5681,"col_index":11,"row_index":25}},{"id":808,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387767744],[9.93847891,55.387678448],[9.938636115,55.387678448],[9.938636115,55.387767744],[9.93847891,55.387767744]]]},"properties":{"id":808,"top":7437490.5681,"id_0":808,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437473.0681,"col_index":11,"row_index":26}},{"id":809,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387678448],[9.93847891,55.387589153],[9.938636115,55.387589153],[9.938636115,55.387678448],[9.93847891,55.387678448]]]},"properties":{"id":809,"top":7437473.0681,"id_0":809,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437455.5681,"col_index":11,"row_index":27}},{"id":810,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387589153],[9.93847891,55.387499856],[9.938636115,55.387499856],[9.938636115,55.387589153],[9.93847891,55.387589153]]]},"properties":{"id":810,"top":7437455.5681,"id_0":810,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437438.0681,"col_index":11,"row_index":28}},{"id":811,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387499856],[9.93847891,55.38741056],[9.938636115,55.38741056],[9.938636115,55.387499856],[9.93847891,55.387499856]]]},"properties":{"id":811,"top":7437438.0681,"id_0":811,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437420.5681,"col_index":11,"row_index":29}},{"id":812,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38741056],[9.93847891,55.387321264],[9.938636115,55.387321264],[9.938636115,55.38741056],[9.93847891,55.38741056]]]},"properties":{"id":812,"top":7437420.5681,"id_0":812,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437403.0681,"col_index":11,"row_index":30}},{"id":813,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387321264],[9.93847891,55.387231967],[9.938636115,55.387231967],[9.938636115,55.387321264],[9.93847891,55.387321264]]]},"properties":{"id":813,"top":7437403.0681,"id_0":813,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437385.5681,"col_index":11,"row_index":31}},{"id":814,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387231967],[9.93847891,55.38714267],[9.938636115,55.38714267],[9.938636115,55.387231967],[9.93847891,55.387231967]]]},"properties":{"id":814,"top":7437385.5681,"id_0":814,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437368.0681,"col_index":11,"row_index":32}},{"id":815,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38714267],[9.93847891,55.387053373],[9.938636115,55.387053373],[9.938636115,55.38714267],[9.93847891,55.38714267]]]},"properties":{"id":815,"top":7437368.0681,"id_0":815,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437350.5681,"col_index":11,"row_index":33}},{"id":816,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.387053373],[9.93847891,55.386964076],[9.938636115,55.386964076],[9.938636115,55.387053373],[9.93847891,55.387053373]]]},"properties":{"id":816,"top":7437350.5681,"id_0":816,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437333.0681,"col_index":11,"row_index":34}},{"id":817,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386964076],[9.93847891,55.386874778],[9.938636115,55.386874778],[9.938636115,55.386964076],[9.93847891,55.386964076]]]},"properties":{"id":817,"top":7437333.0681,"id_0":817,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437315.5681,"col_index":11,"row_index":35}},{"id":818,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386874778],[9.93847891,55.38678548],[9.938636115,55.38678548],[9.938636115,55.386874778],[9.93847891,55.386874778]]]},"properties":{"id":818,"top":7437315.5681,"id_0":818,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437298.0681,"col_index":11,"row_index":36}},{"id":819,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38678548],[9.93847891,55.386696182],[9.938636115,55.386696182],[9.938636115,55.38678548],[9.93847891,55.38678548]]]},"properties":{"id":819,"top":7437298.0681,"id_0":819,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437280.5681,"col_index":11,"row_index":37}},{"id":820,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386696182],[9.93847891,55.386606884],[9.938636115,55.386606884],[9.938636115,55.386696182],[9.93847891,55.386696182]]]},"properties":{"id":820,"top":7437280.5681,"id_0":820,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437263.0681,"col_index":11,"row_index":38}},{"id":821,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386606884],[9.93847891,55.386517586],[9.938636115,55.386517586],[9.938636115,55.386606884],[9.93847891,55.386606884]]]},"properties":{"id":821,"top":7437263.0681,"id_0":821,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437245.5681,"col_index":11,"row_index":39}},{"id":822,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386517586],[9.93847891,55.386428287],[9.938636115,55.386428287],[9.938636115,55.386517586],[9.93847891,55.386517586]]]},"properties":{"id":822,"top":7437245.5681,"id_0":822,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437228.0681,"col_index":11,"row_index":40}},{"id":823,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386428287],[9.93847891,55.386338989],[9.938636115,55.386338989],[9.938636115,55.386428287],[9.93847891,55.386428287]]]},"properties":{"id":823,"top":7437228.0681,"id_0":823,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437210.5681,"col_index":11,"row_index":41}},{"id":824,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386338989],[9.93847891,55.38624969],[9.938636115,55.38624969],[9.938636115,55.386338989],[9.93847891,55.386338989]]]},"properties":{"id":824,"top":7437210.5681,"id_0":824,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437193.0681,"col_index":11,"row_index":42}},{"id":825,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38624969],[9.93847891,55.386160391],[9.938636115,55.386160391],[9.938636115,55.38624969],[9.93847891,55.38624969]]]},"properties":{"id":825,"top":7437193.0681,"id_0":825,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437175.5681,"col_index":11,"row_index":43}},{"id":826,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386160391],[9.93847891,55.386071091],[9.938636115,55.386071091],[9.938636115,55.386160391],[9.93847891,55.386160391]]]},"properties":{"id":826,"top":7437175.5681,"id_0":826,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437158.0681,"col_index":11,"row_index":44}},{"id":827,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.386071091],[9.93847891,55.385981792],[9.938636115,55.385981792],[9.938636115,55.386071091],[9.93847891,55.386071091]]]},"properties":{"id":827,"top":7437158.0681,"id_0":827,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437140.5681,"col_index":11,"row_index":45}},{"id":828,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385981792],[9.93847891,55.385892492],[9.938636115,55.385892492],[9.938636115,55.385981792],[9.93847891,55.385981792]]]},"properties":{"id":828,"top":7437140.5681,"id_0":828,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437123.0681,"col_index":11,"row_index":46}},{"id":829,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385892492],[9.93847891,55.385803192],[9.938636115,55.385803192],[9.938636115,55.385892492],[9.93847891,55.385892492]]]},"properties":{"id":829,"top":7437123.0681,"id_0":829,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437105.5681,"col_index":11,"row_index":47}},{"id":830,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385803192],[9.93847891,55.385713892],[9.938636115,55.385713892],[9.938636115,55.385803192],[9.93847891,55.385803192]]]},"properties":{"id":830,"top":7437105.5681,"id_0":830,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437088.0681,"col_index":11,"row_index":48}},{"id":831,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385713892],[9.93847891,55.385624592],[9.938636115,55.385624592],[9.938636115,55.385713892],[9.93847891,55.385713892]]]},"properties":{"id":831,"top":7437088.0681,"id_0":831,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437070.5681,"col_index":11,"row_index":49}},{"id":832,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385624592],[9.93847891,55.385535291],[9.938636115,55.385535291],[9.938636115,55.385624592],[9.93847891,55.385624592]]]},"properties":{"id":832,"top":7437070.5681,"id_0":832,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437053.0681,"col_index":11,"row_index":50}},{"id":833,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385535291],[9.93847891,55.38544599],[9.938636115,55.38544599],[9.938636115,55.385535291],[9.93847891,55.385535291]]]},"properties":{"id":833,"top":7437053.0681,"id_0":833,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437035.5681,"col_index":11,"row_index":51}},{"id":834,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38544599],[9.93847891,55.385356689],[9.938636115,55.385356689],[9.938636115,55.38544599],[9.93847891,55.38544599]]]},"properties":{"id":834,"top":7437035.5681,"id_0":834,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437018.0681,"col_index":11,"row_index":52}},{"id":835,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385356689],[9.93847891,55.385267388],[9.938636115,55.385267388],[9.938636115,55.385356689],[9.93847891,55.385356689]]]},"properties":{"id":835,"top":7437018.0681,"id_0":835,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7437000.5681,"col_index":11,"row_index":53}},{"id":836,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385267388],[9.93847891,55.385178087],[9.938636115,55.385178087],[9.938636115,55.385267388],[9.93847891,55.385267388]]]},"properties":{"id":836,"top":7437000.5681,"id_0":836,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436983.0681,"col_index":11,"row_index":54}},{"id":837,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385178087],[9.93847891,55.385088785],[9.938636115,55.385088785],[9.938636115,55.385178087],[9.93847891,55.385178087]]]},"properties":{"id":837,"top":7436983.0681,"id_0":837,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436965.5681,"col_index":11,"row_index":55}},{"id":838,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.385088785],[9.93847891,55.384999484],[9.938636115,55.384999484],[9.938636115,55.385088785],[9.93847891,55.385088785]]]},"properties":{"id":838,"top":7436965.5681,"id_0":838,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436948.0681,"col_index":11,"row_index":56}},{"id":839,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384999484],[9.93847891,55.384910182],[9.938636115,55.384910182],[9.938636115,55.384999484],[9.93847891,55.384999484]]]},"properties":{"id":839,"top":7436948.0681,"id_0":839,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436930.5681,"col_index":11,"row_index":57}},{"id":840,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384910182],[9.93847891,55.38482088],[9.938636115,55.38482088],[9.938636115,55.384910182],[9.93847891,55.384910182]]]},"properties":{"id":840,"top":7436930.5681,"id_0":840,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436913.0681,"col_index":11,"row_index":58}},{"id":841,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.38482088],[9.93847891,55.384731577],[9.938636115,55.384731577],[9.938636115,55.38482088],[9.93847891,55.38482088]]]},"properties":{"id":841,"top":7436913.0681,"id_0":841,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436895.5681,"col_index":11,"row_index":59}},{"id":842,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384731577],[9.93847891,55.384642275],[9.938636115,55.384642275],[9.938636115,55.384731577],[9.93847891,55.384731577]]]},"properties":{"id":842,"top":7436895.5681,"id_0":842,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436878.0681,"col_index":11,"row_index":60}},{"id":843,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384642275],[9.93847891,55.384552972],[9.938636115,55.384552972],[9.938636115,55.384642275],[9.93847891,55.384642275]]]},"properties":{"id":843,"top":7436878.0681,"id_0":843,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436860.5681,"col_index":11,"row_index":61}},{"id":844,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384552972],[9.93847891,55.384463669],[9.938636115,55.384463669],[9.938636115,55.384552972],[9.93847891,55.384552972]]]},"properties":{"id":844,"top":7436860.5681,"id_0":844,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436843.0681,"col_index":11,"row_index":62}},{"id":845,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384463669],[9.93847891,55.384374366],[9.938636115,55.384374366],[9.938636115,55.384463669],[9.93847891,55.384463669]]]},"properties":{"id":845,"top":7436843.0681,"id_0":845,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436825.5681,"col_index":11,"row_index":63}},{"id":846,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384374366],[9.93847891,55.384285062],[9.938636115,55.384285062],[9.938636115,55.384374366],[9.93847891,55.384374366]]]},"properties":{"id":846,"top":7436825.5681,"id_0":846,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436808.0681,"col_index":11,"row_index":64}},{"id":847,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384285062],[9.93847891,55.384195759],[9.938636115,55.384195759],[9.938636115,55.384285062],[9.93847891,55.384285062]]]},"properties":{"id":847,"top":7436808.0681,"id_0":847,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436790.5681,"col_index":11,"row_index":65}},{"id":848,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384195759],[9.93847891,55.384106455],[9.938636115,55.384106455],[9.938636115,55.384195759],[9.93847891,55.384195759]]]},"properties":{"id":848,"top":7436790.5681,"id_0":848,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436773.0681,"col_index":11,"row_index":66}},{"id":849,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384106455],[9.93847891,55.384017151],[9.938636115,55.384017151],[9.938636115,55.384106455],[9.93847891,55.384106455]]]},"properties":{"id":849,"top":7436773.0681,"id_0":849,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436755.5681,"col_index":11,"row_index":67}},{"id":850,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.384017151],[9.93847891,55.383927847],[9.938636115,55.383927847],[9.938636115,55.384017151],[9.93847891,55.384017151]]]},"properties":{"id":850,"top":7436755.5681,"id_0":850,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436738.0681,"col_index":11,"row_index":68}},{"id":851,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.383927847],[9.93847891,55.383838543],[9.938636115,55.383838543],[9.938636115,55.383927847],[9.93847891,55.383927847]]]},"properties":{"id":851,"top":7436738.0681,"id_0":851,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436720.5681,"col_index":11,"row_index":69}},{"id":852,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.383838543],[9.93847891,55.383749238],[9.938636115,55.383749238],[9.938636115,55.383838543],[9.93847891,55.383838543]]]},"properties":{"id":852,"top":7436720.5681,"id_0":852,"left":1106346.4115,"Label":null,"right":1106363.9115,"bottom":7436703.0681,"col_index":11,"row_index":70}},{"id":854,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.390000071],[9.938636115,55.38991078],[9.93879332,55.38991078],[9.93879332,55.390000071],[9.938636115,55.390000071]]]},"properties":{"id":854,"top":7437928.0681,"id_0":854,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437910.5681,"col_index":12,"row_index":1}},{"id":855,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38991078],[9.938636115,55.38982149],[9.93879332,55.38982149],[9.93879332,55.38991078],[9.938636115,55.38991078]]]},"properties":{"id":855,"top":7437910.5681,"id_0":855,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437893.0681,"col_index":12,"row_index":2}},{"id":856,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38982149],[9.938636115,55.389732199],[9.93879332,55.389732199],[9.93879332,55.38982149],[9.938636115,55.38982149]]]},"properties":{"id":856,"top":7437893.0681,"id_0":856,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437875.5681,"col_index":12,"row_index":3}},{"id":857,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389732199],[9.938636115,55.389642907],[9.93879332,55.389642907],[9.93879332,55.389732199],[9.938636115,55.389732199]]]},"properties":{"id":857,"top":7437875.5681,"id_0":857,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437858.0681,"col_index":12,"row_index":4}},{"id":858,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389642907],[9.938636115,55.389553616],[9.93879332,55.389553616],[9.93879332,55.389642907],[9.938636115,55.389642907]]]},"properties":{"id":858,"top":7437858.0681,"id_0":858,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437840.5681,"col_index":12,"row_index":5}},{"id":859,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389553616],[9.938636115,55.389464324],[9.93879332,55.389464324],[9.93879332,55.389553616],[9.938636115,55.389553616]]]},"properties":{"id":859,"top":7437840.5681,"id_0":859,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437823.0681,"col_index":12,"row_index":6}},{"id":860,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389464324],[9.938636115,55.389375032],[9.93879332,55.389375032],[9.93879332,55.389464324],[9.938636115,55.389464324]]]},"properties":{"id":860,"top":7437823.0681,"id_0":860,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437805.5681,"col_index":12,"row_index":7}},{"id":861,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389375032],[9.938636115,55.38928574],[9.93879332,55.38928574],[9.93879332,55.389375032],[9.938636115,55.389375032]]]},"properties":{"id":861,"top":7437805.5681,"id_0":861,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437788.0681,"col_index":12,"row_index":8}},{"id":862,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38928574],[9.938636115,55.389196448],[9.93879332,55.389196448],[9.93879332,55.38928574],[9.938636115,55.38928574]]]},"properties":{"id":862,"top":7437788.0681,"id_0":862,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437770.5681,"col_index":12,"row_index":9}},{"id":863,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389196448],[9.938636115,55.389107155],[9.93879332,55.389107155],[9.93879332,55.389196448],[9.938636115,55.389196448]]]},"properties":{"id":863,"top":7437770.5681,"id_0":863,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437753.0681,"col_index":12,"row_index":10}},{"id":864,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389107155],[9.938636115,55.389017863],[9.93879332,55.389017863],[9.93879332,55.389107155],[9.938636115,55.389107155]]]},"properties":{"id":864,"top":7437753.0681,"id_0":864,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437735.5681,"col_index":12,"row_index":11}},{"id":865,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.389017863],[9.938636115,55.38892857],[9.93879332,55.38892857],[9.93879332,55.389017863],[9.938636115,55.389017863]]]},"properties":{"id":865,"top":7437735.5681,"id_0":865,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437718.0681,"col_index":12,"row_index":12}},{"id":866,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38892857],[9.938636115,55.388839277],[9.93879332,55.388839277],[9.93879332,55.38892857],[9.938636115,55.38892857]]]},"properties":{"id":866,"top":7437718.0681,"id_0":866,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437700.5681,"col_index":12,"row_index":13}},{"id":867,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388839277],[9.938636115,55.388749984],[9.93879332,55.388749984],[9.93879332,55.388839277],[9.938636115,55.388839277]]]},"properties":{"id":867,"top":7437700.5681,"id_0":867,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437683.0681,"col_index":12,"row_index":14}},{"id":868,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388749984],[9.938636115,55.38866069],[9.93879332,55.38866069],[9.93879332,55.388749984],[9.938636115,55.388749984]]]},"properties":{"id":868,"top":7437683.0681,"id_0":868,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437665.5681,"col_index":12,"row_index":15}},{"id":869,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38866069],[9.938636115,55.388571396],[9.93879332,55.388571396],[9.93879332,55.38866069],[9.938636115,55.38866069]]]},"properties":{"id":869,"top":7437665.5681,"id_0":869,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437648.0681,"col_index":12,"row_index":16}},{"id":870,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388571396],[9.938636115,55.388482103],[9.93879332,55.388482103],[9.93879332,55.388571396],[9.938636115,55.388571396]]]},"properties":{"id":870,"top":7437648.0681,"id_0":870,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437630.5681,"col_index":12,"row_index":17}},{"id":871,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388482103],[9.938636115,55.388392808],[9.93879332,55.388392808],[9.93879332,55.388482103],[9.938636115,55.388482103]]]},"properties":{"id":871,"top":7437630.5681,"id_0":871,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437613.0681,"col_index":12,"row_index":18}},{"id":872,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388392808],[9.938636115,55.388303514],[9.93879332,55.388303514],[9.93879332,55.388392808],[9.938636115,55.388392808]]]},"properties":{"id":872,"top":7437613.0681,"id_0":872,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437595.5681,"col_index":12,"row_index":19}},{"id":873,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388303514],[9.938636115,55.38821422],[9.93879332,55.38821422],[9.93879332,55.388303514],[9.938636115,55.388303514]]]},"properties":{"id":873,"top":7437595.5681,"id_0":873,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437578.0681,"col_index":12,"row_index":20}},{"id":874,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38821422],[9.938636115,55.388124925],[9.93879332,55.388124925],[9.93879332,55.38821422],[9.938636115,55.38821422]]]},"properties":{"id":874,"top":7437578.0681,"id_0":874,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437560.5681,"col_index":12,"row_index":21}},{"id":875,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.388124925],[9.938636115,55.38803563],[9.93879332,55.38803563],[9.93879332,55.388124925],[9.938636115,55.388124925]]]},"properties":{"id":875,"top":7437560.5681,"id_0":875,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437543.0681,"col_index":12,"row_index":22}},{"id":876,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38803563],[9.938636115,55.387946335],[9.93879332,55.387946335],[9.93879332,55.38803563],[9.938636115,55.38803563]]]},"properties":{"id":876,"top":7437543.0681,"id_0":876,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437525.5681,"col_index":12,"row_index":23}},{"id":877,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387946335],[9.938636115,55.38785704],[9.93879332,55.38785704],[9.93879332,55.387946335],[9.938636115,55.387946335]]]},"properties":{"id":877,"top":7437525.5681,"id_0":877,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437508.0681,"col_index":12,"row_index":24}},{"id":878,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38785704],[9.938636115,55.387767744],[9.93879332,55.387767744],[9.93879332,55.38785704],[9.938636115,55.38785704]]]},"properties":{"id":878,"top":7437508.0681,"id_0":878,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437490.5681,"col_index":12,"row_index":25}},{"id":879,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387767744],[9.938636115,55.387678448],[9.93879332,55.387678448],[9.93879332,55.387767744],[9.938636115,55.387767744]]]},"properties":{"id":879,"top":7437490.5681,"id_0":879,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437473.0681,"col_index":12,"row_index":26}},{"id":880,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387678448],[9.938636115,55.387589153],[9.93879332,55.387589153],[9.93879332,55.387678448],[9.938636115,55.387678448]]]},"properties":{"id":880,"top":7437473.0681,"id_0":880,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437455.5681,"col_index":12,"row_index":27}},{"id":881,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387589153],[9.938636115,55.387499856],[9.93879332,55.387499856],[9.93879332,55.387589153],[9.938636115,55.387589153]]]},"properties":{"id":881,"top":7437455.5681,"id_0":881,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437438.0681,"col_index":12,"row_index":28}},{"id":882,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387499856],[9.938636115,55.38741056],[9.93879332,55.38741056],[9.93879332,55.387499856],[9.938636115,55.387499856]]]},"properties":{"id":882,"top":7437438.0681,"id_0":882,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437420.5681,"col_index":12,"row_index":29}},{"id":883,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38741056],[9.938636115,55.387321264],[9.93879332,55.387321264],[9.93879332,55.38741056],[9.938636115,55.38741056]]]},"properties":{"id":883,"top":7437420.5681,"id_0":883,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437403.0681,"col_index":12,"row_index":30}},{"id":884,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387321264],[9.938636115,55.387231967],[9.93879332,55.387231967],[9.93879332,55.387321264],[9.938636115,55.387321264]]]},"properties":{"id":884,"top":7437403.0681,"id_0":884,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437385.5681,"col_index":12,"row_index":31}},{"id":885,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387231967],[9.938636115,55.38714267],[9.93879332,55.38714267],[9.93879332,55.387231967],[9.938636115,55.387231967]]]},"properties":{"id":885,"top":7437385.5681,"id_0":885,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437368.0681,"col_index":12,"row_index":32}},{"id":886,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38714267],[9.938636115,55.387053373],[9.93879332,55.387053373],[9.93879332,55.38714267],[9.938636115,55.38714267]]]},"properties":{"id":886,"top":7437368.0681,"id_0":886,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437350.5681,"col_index":12,"row_index":33}},{"id":887,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.387053373],[9.938636115,55.386964076],[9.93879332,55.386964076],[9.93879332,55.387053373],[9.938636115,55.387053373]]]},"properties":{"id":887,"top":7437350.5681,"id_0":887,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437333.0681,"col_index":12,"row_index":34}},{"id":888,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386964076],[9.938636115,55.386874778],[9.93879332,55.386874778],[9.93879332,55.386964076],[9.938636115,55.386964076]]]},"properties":{"id":888,"top":7437333.0681,"id_0":888,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437315.5681,"col_index":12,"row_index":35}},{"id":889,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386874778],[9.938636115,55.38678548],[9.93879332,55.38678548],[9.93879332,55.386874778],[9.938636115,55.386874778]]]},"properties":{"id":889,"top":7437315.5681,"id_0":889,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437298.0681,"col_index":12,"row_index":36}},{"id":890,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38678548],[9.938636115,55.386696182],[9.93879332,55.386696182],[9.93879332,55.38678548],[9.938636115,55.38678548]]]},"properties":{"id":890,"top":7437298.0681,"id_0":890,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437280.5681,"col_index":12,"row_index":37}},{"id":891,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386696182],[9.938636115,55.386606884],[9.93879332,55.386606884],[9.93879332,55.386696182],[9.938636115,55.386696182]]]},"properties":{"id":891,"top":7437280.5681,"id_0":891,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437263.0681,"col_index":12,"row_index":38}},{"id":892,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386606884],[9.938636115,55.386517586],[9.93879332,55.386517586],[9.93879332,55.386606884],[9.938636115,55.386606884]]]},"properties":{"id":892,"top":7437263.0681,"id_0":892,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437245.5681,"col_index":12,"row_index":39}},{"id":893,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386517586],[9.938636115,55.386428287],[9.93879332,55.386428287],[9.93879332,55.386517586],[9.938636115,55.386517586]]]},"properties":{"id":893,"top":7437245.5681,"id_0":893,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437228.0681,"col_index":12,"row_index":40}},{"id":894,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386428287],[9.938636115,55.386338989],[9.93879332,55.386338989],[9.93879332,55.386428287],[9.938636115,55.386428287]]]},"properties":{"id":894,"top":7437228.0681,"id_0":894,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437210.5681,"col_index":12,"row_index":41}},{"id":895,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386338989],[9.938636115,55.38624969],[9.93879332,55.38624969],[9.93879332,55.386338989],[9.938636115,55.386338989]]]},"properties":{"id":895,"top":7437210.5681,"id_0":895,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437193.0681,"col_index":12,"row_index":42}},{"id":896,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38624969],[9.938636115,55.386160391],[9.93879332,55.386160391],[9.93879332,55.38624969],[9.938636115,55.38624969]]]},"properties":{"id":896,"top":7437193.0681,"id_0":896,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437175.5681,"col_index":12,"row_index":43}},{"id":897,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386160391],[9.938636115,55.386071091],[9.93879332,55.386071091],[9.93879332,55.386160391],[9.938636115,55.386160391]]]},"properties":{"id":897,"top":7437175.5681,"id_0":897,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437158.0681,"col_index":12,"row_index":44}},{"id":898,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.386071091],[9.938636115,55.385981792],[9.93879332,55.385981792],[9.93879332,55.386071091],[9.938636115,55.386071091]]]},"properties":{"id":898,"top":7437158.0681,"id_0":898,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437140.5681,"col_index":12,"row_index":45}},{"id":899,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385981792],[9.938636115,55.385892492],[9.93879332,55.385892492],[9.93879332,55.385981792],[9.938636115,55.385981792]]]},"properties":{"id":899,"top":7437140.5681,"id_0":899,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437123.0681,"col_index":12,"row_index":46}},{"id":900,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385892492],[9.938636115,55.385803192],[9.93879332,55.385803192],[9.93879332,55.385892492],[9.938636115,55.385892492]]]},"properties":{"id":900,"top":7437123.0681,"id_0":900,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437105.5681,"col_index":12,"row_index":47}},{"id":901,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385803192],[9.938636115,55.385713892],[9.93879332,55.385713892],[9.93879332,55.385803192],[9.938636115,55.385803192]]]},"properties":{"id":901,"top":7437105.5681,"id_0":901,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437088.0681,"col_index":12,"row_index":48}},{"id":902,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385713892],[9.938636115,55.385624592],[9.93879332,55.385624592],[9.93879332,55.385713892],[9.938636115,55.385713892]]]},"properties":{"id":902,"top":7437088.0681,"id_0":902,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437070.5681,"col_index":12,"row_index":49}},{"id":903,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385624592],[9.938636115,55.385535291],[9.93879332,55.385535291],[9.93879332,55.385624592],[9.938636115,55.385624592]]]},"properties":{"id":903,"top":7437070.5681,"id_0":903,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437053.0681,"col_index":12,"row_index":50}},{"id":904,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385535291],[9.938636115,55.38544599],[9.93879332,55.38544599],[9.93879332,55.385535291],[9.938636115,55.385535291]]]},"properties":{"id":904,"top":7437053.0681,"id_0":904,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437035.5681,"col_index":12,"row_index":51}},{"id":905,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38544599],[9.938636115,55.385356689],[9.93879332,55.385356689],[9.93879332,55.38544599],[9.938636115,55.38544599]]]},"properties":{"id":905,"top":7437035.5681,"id_0":905,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437018.0681,"col_index":12,"row_index":52}},{"id":906,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385356689],[9.938636115,55.385267388],[9.93879332,55.385267388],[9.93879332,55.385356689],[9.938636115,55.385356689]]]},"properties":{"id":906,"top":7437018.0681,"id_0":906,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7437000.5681,"col_index":12,"row_index":53}},{"id":907,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385267388],[9.938636115,55.385178087],[9.93879332,55.385178087],[9.93879332,55.385267388],[9.938636115,55.385267388]]]},"properties":{"id":907,"top":7437000.5681,"id_0":907,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436983.0681,"col_index":12,"row_index":54}},{"id":908,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385178087],[9.938636115,55.385088785],[9.93879332,55.385088785],[9.93879332,55.385178087],[9.938636115,55.385178087]]]},"properties":{"id":908,"top":7436983.0681,"id_0":908,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436965.5681,"col_index":12,"row_index":55}},{"id":909,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.385088785],[9.938636115,55.384999484],[9.93879332,55.384999484],[9.93879332,55.385088785],[9.938636115,55.385088785]]]},"properties":{"id":909,"top":7436965.5681,"id_0":909,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436948.0681,"col_index":12,"row_index":56}},{"id":910,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384999484],[9.938636115,55.384910182],[9.93879332,55.384910182],[9.93879332,55.384999484],[9.938636115,55.384999484]]]},"properties":{"id":910,"top":7436948.0681,"id_0":910,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436930.5681,"col_index":12,"row_index":57}},{"id":911,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384910182],[9.938636115,55.38482088],[9.93879332,55.38482088],[9.93879332,55.384910182],[9.938636115,55.384910182]]]},"properties":{"id":911,"top":7436930.5681,"id_0":911,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436913.0681,"col_index":12,"row_index":58}},{"id":912,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.38482088],[9.938636115,55.384731577],[9.93879332,55.384731577],[9.93879332,55.38482088],[9.938636115,55.38482088]]]},"properties":{"id":912,"top":7436913.0681,"id_0":912,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436895.5681,"col_index":12,"row_index":59}},{"id":913,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384731577],[9.938636115,55.384642275],[9.93879332,55.384642275],[9.93879332,55.384731577],[9.938636115,55.384731577]]]},"properties":{"id":913,"top":7436895.5681,"id_0":913,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436878.0681,"col_index":12,"row_index":60}},{"id":914,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384642275],[9.938636115,55.384552972],[9.93879332,55.384552972],[9.93879332,55.384642275],[9.938636115,55.384642275]]]},"properties":{"id":914,"top":7436878.0681,"id_0":914,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436860.5681,"col_index":12,"row_index":61}},{"id":915,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384552972],[9.938636115,55.384463669],[9.93879332,55.384463669],[9.93879332,55.384552972],[9.938636115,55.384552972]]]},"properties":{"id":915,"top":7436860.5681,"id_0":915,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436843.0681,"col_index":12,"row_index":62}},{"id":916,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384463669],[9.938636115,55.384374366],[9.93879332,55.384374366],[9.93879332,55.384463669],[9.938636115,55.384463669]]]},"properties":{"id":916,"top":7436843.0681,"id_0":916,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436825.5681,"col_index":12,"row_index":63}},{"id":917,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384374366],[9.938636115,55.384285062],[9.93879332,55.384285062],[9.93879332,55.384374366],[9.938636115,55.384374366]]]},"properties":{"id":917,"top":7436825.5681,"id_0":917,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436808.0681,"col_index":12,"row_index":64}},{"id":918,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384285062],[9.938636115,55.384195759],[9.93879332,55.384195759],[9.93879332,55.384285062],[9.938636115,55.384285062]]]},"properties":{"id":918,"top":7436808.0681,"id_0":918,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436790.5681,"col_index":12,"row_index":65}},{"id":919,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384195759],[9.938636115,55.384106455],[9.93879332,55.384106455],[9.93879332,55.384195759],[9.938636115,55.384195759]]]},"properties":{"id":919,"top":7436790.5681,"id_0":919,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436773.0681,"col_index":12,"row_index":66}},{"id":920,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384106455],[9.938636115,55.384017151],[9.93879332,55.384017151],[9.93879332,55.384106455],[9.938636115,55.384106455]]]},"properties":{"id":920,"top":7436773.0681,"id_0":920,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436755.5681,"col_index":12,"row_index":67}},{"id":921,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.384017151],[9.938636115,55.383927847],[9.93879332,55.383927847],[9.93879332,55.384017151],[9.938636115,55.384017151]]]},"properties":{"id":921,"top":7436755.5681,"id_0":921,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436738.0681,"col_index":12,"row_index":68}},{"id":922,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.383927847],[9.938636115,55.383838543],[9.93879332,55.383838543],[9.93879332,55.383927847],[9.938636115,55.383927847]]]},"properties":{"id":922,"top":7436738.0681,"id_0":922,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436720.5681,"col_index":12,"row_index":69}},{"id":923,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.383838543],[9.938636115,55.383749238],[9.93879332,55.383749238],[9.93879332,55.383838543],[9.938636115,55.383838543]]]},"properties":{"id":923,"top":7436720.5681,"id_0":923,"left":1106363.9115,"Label":null,"right":1106381.4115,"bottom":7436703.0681,"col_index":12,"row_index":70}},{"id":925,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.390000071],[9.93879332,55.38991078],[9.938950525,55.38991078],[9.938950525,55.390000071],[9.93879332,55.390000071]]]},"properties":{"id":925,"top":7437928.0681,"id_0":925,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437910.5681,"col_index":13,"row_index":1}},{"id":926,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38991078],[9.93879332,55.38982149],[9.938950525,55.38982149],[9.938950525,55.38991078],[9.93879332,55.38991078]]]},"properties":{"id":926,"top":7437910.5681,"id_0":926,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437893.0681,"col_index":13,"row_index":2}},{"id":927,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38982149],[9.93879332,55.389732199],[9.938950525,55.389732199],[9.938950525,55.38982149],[9.93879332,55.38982149]]]},"properties":{"id":927,"top":7437893.0681,"id_0":927,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437875.5681,"col_index":13,"row_index":3}},{"id":928,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389732199],[9.93879332,55.389642907],[9.938950525,55.389642907],[9.938950525,55.389732199],[9.93879332,55.389732199]]]},"properties":{"id":928,"top":7437875.5681,"id_0":928,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437858.0681,"col_index":13,"row_index":4}},{"id":929,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389642907],[9.93879332,55.389553616],[9.938950525,55.389553616],[9.938950525,55.389642907],[9.93879332,55.389642907]]]},"properties":{"id":929,"top":7437858.0681,"id_0":929,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437840.5681,"col_index":13,"row_index":5}},{"id":930,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389553616],[9.93879332,55.389464324],[9.938950525,55.389464324],[9.938950525,55.389553616],[9.93879332,55.389553616]]]},"properties":{"id":930,"top":7437840.5681,"id_0":930,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437823.0681,"col_index":13,"row_index":6}},{"id":931,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389464324],[9.93879332,55.389375032],[9.938950525,55.389375032],[9.938950525,55.389464324],[9.93879332,55.389464324]]]},"properties":{"id":931,"top":7437823.0681,"id_0":931,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437805.5681,"col_index":13,"row_index":7}},{"id":932,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389375032],[9.93879332,55.38928574],[9.938950525,55.38928574],[9.938950525,55.389375032],[9.93879332,55.389375032]]]},"properties":{"id":932,"top":7437805.5681,"id_0":932,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437788.0681,"col_index":13,"row_index":8}},{"id":933,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38928574],[9.93879332,55.389196448],[9.938950525,55.389196448],[9.938950525,55.38928574],[9.93879332,55.38928574]]]},"properties":{"id":933,"top":7437788.0681,"id_0":933,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437770.5681,"col_index":13,"row_index":9}},{"id":934,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389196448],[9.93879332,55.389107155],[9.938950525,55.389107155],[9.938950525,55.389196448],[9.93879332,55.389196448]]]},"properties":{"id":934,"top":7437770.5681,"id_0":934,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437753.0681,"col_index":13,"row_index":10}},{"id":935,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389107155],[9.93879332,55.389017863],[9.938950525,55.389017863],[9.938950525,55.389107155],[9.93879332,55.389107155]]]},"properties":{"id":935,"top":7437753.0681,"id_0":935,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437735.5681,"col_index":13,"row_index":11}},{"id":936,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.389017863],[9.93879332,55.38892857],[9.938950525,55.38892857],[9.938950525,55.389017863],[9.93879332,55.389017863]]]},"properties":{"id":936,"top":7437735.5681,"id_0":936,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437718.0681,"col_index":13,"row_index":12}},{"id":937,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38892857],[9.93879332,55.388839277],[9.938950525,55.388839277],[9.938950525,55.38892857],[9.93879332,55.38892857]]]},"properties":{"id":937,"top":7437718.0681,"id_0":937,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437700.5681,"col_index":13,"row_index":13}},{"id":938,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388839277],[9.93879332,55.388749984],[9.938950525,55.388749984],[9.938950525,55.388839277],[9.93879332,55.388839277]]]},"properties":{"id":938,"top":7437700.5681,"id_0":938,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437683.0681,"col_index":13,"row_index":14}},{"id":939,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388749984],[9.93879332,55.38866069],[9.938950525,55.38866069],[9.938950525,55.388749984],[9.93879332,55.388749984]]]},"properties":{"id":939,"top":7437683.0681,"id_0":939,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437665.5681,"col_index":13,"row_index":15}},{"id":940,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38866069],[9.93879332,55.388571396],[9.938950525,55.388571396],[9.938950525,55.38866069],[9.93879332,55.38866069]]]},"properties":{"id":940,"top":7437665.5681,"id_0":940,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437648.0681,"col_index":13,"row_index":16}},{"id":941,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388571396],[9.93879332,55.388482103],[9.938950525,55.388482103],[9.938950525,55.388571396],[9.93879332,55.388571396]]]},"properties":{"id":941,"top":7437648.0681,"id_0":941,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437630.5681,"col_index":13,"row_index":17}},{"id":942,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388482103],[9.93879332,55.388392808],[9.938950525,55.388392808],[9.938950525,55.388482103],[9.93879332,55.388482103]]]},"properties":{"id":942,"top":7437630.5681,"id_0":942,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437613.0681,"col_index":13,"row_index":18}},{"id":943,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388392808],[9.93879332,55.388303514],[9.938950525,55.388303514],[9.938950525,55.388392808],[9.93879332,55.388392808]]]},"properties":{"id":943,"top":7437613.0681,"id_0":943,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437595.5681,"col_index":13,"row_index":19}},{"id":944,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388303514],[9.93879332,55.38821422],[9.938950525,55.38821422],[9.938950525,55.388303514],[9.93879332,55.388303514]]]},"properties":{"id":944,"top":7437595.5681,"id_0":944,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437578.0681,"col_index":13,"row_index":20}},{"id":945,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38821422],[9.93879332,55.388124925],[9.938950525,55.388124925],[9.938950525,55.38821422],[9.93879332,55.38821422]]]},"properties":{"id":945,"top":7437578.0681,"id_0":945,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437560.5681,"col_index":13,"row_index":21}},{"id":946,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.388124925],[9.93879332,55.38803563],[9.938950525,55.38803563],[9.938950525,55.388124925],[9.93879332,55.388124925]]]},"properties":{"id":946,"top":7437560.5681,"id_0":946,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437543.0681,"col_index":13,"row_index":22}},{"id":947,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38803563],[9.93879332,55.387946335],[9.938950525,55.387946335],[9.938950525,55.38803563],[9.93879332,55.38803563]]]},"properties":{"id":947,"top":7437543.0681,"id_0":947,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437525.5681,"col_index":13,"row_index":23}},{"id":948,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387946335],[9.93879332,55.38785704],[9.938950525,55.38785704],[9.938950525,55.387946335],[9.93879332,55.387946335]]]},"properties":{"id":948,"top":7437525.5681,"id_0":948,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437508.0681,"col_index":13,"row_index":24}},{"id":949,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38785704],[9.93879332,55.387767744],[9.938950525,55.387767744],[9.938950525,55.38785704],[9.93879332,55.38785704]]]},"properties":{"id":949,"top":7437508.0681,"id_0":949,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437490.5681,"col_index":13,"row_index":25}},{"id":950,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387767744],[9.93879332,55.387678448],[9.938950525,55.387678448],[9.938950525,55.387767744],[9.93879332,55.387767744]]]},"properties":{"id":950,"top":7437490.5681,"id_0":950,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437473.0681,"col_index":13,"row_index":26}},{"id":951,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387678448],[9.93879332,55.387589153],[9.938950525,55.387589153],[9.938950525,55.387678448],[9.93879332,55.387678448]]]},"properties":{"id":951,"top":7437473.0681,"id_0":951,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437455.5681,"col_index":13,"row_index":27}},{"id":952,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387589153],[9.93879332,55.387499856],[9.938950525,55.387499856],[9.938950525,55.387589153],[9.93879332,55.387589153]]]},"properties":{"id":952,"top":7437455.5681,"id_0":952,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437438.0681,"col_index":13,"row_index":28}},{"id":953,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387499856],[9.93879332,55.38741056],[9.938950525,55.38741056],[9.938950525,55.387499856],[9.93879332,55.387499856]]]},"properties":{"id":953,"top":7437438.0681,"id_0":953,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437420.5681,"col_index":13,"row_index":29}},{"id":954,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38741056],[9.93879332,55.387321264],[9.938950525,55.387321264],[9.938950525,55.38741056],[9.93879332,55.38741056]]]},"properties":{"id":954,"top":7437420.5681,"id_0":954,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437403.0681,"col_index":13,"row_index":30}},{"id":955,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387321264],[9.93879332,55.387231967],[9.938950525,55.387231967],[9.938950525,55.387321264],[9.93879332,55.387321264]]]},"properties":{"id":955,"top":7437403.0681,"id_0":955,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437385.5681,"col_index":13,"row_index":31}},{"id":956,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387231967],[9.93879332,55.38714267],[9.938950525,55.38714267],[9.938950525,55.387231967],[9.93879332,55.387231967]]]},"properties":{"id":956,"top":7437385.5681,"id_0":956,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437368.0681,"col_index":13,"row_index":32}},{"id":957,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38714267],[9.93879332,55.387053373],[9.938950525,55.387053373],[9.938950525,55.38714267],[9.93879332,55.38714267]]]},"properties":{"id":957,"top":7437368.0681,"id_0":957,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437350.5681,"col_index":13,"row_index":33}},{"id":958,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.387053373],[9.93879332,55.386964076],[9.938950525,55.386964076],[9.938950525,55.387053373],[9.93879332,55.387053373]]]},"properties":{"id":958,"top":7437350.5681,"id_0":958,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437333.0681,"col_index":13,"row_index":34}},{"id":959,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386964076],[9.93879332,55.386874778],[9.938950525,55.386874778],[9.938950525,55.386964076],[9.93879332,55.386964076]]]},"properties":{"id":959,"top":7437333.0681,"id_0":959,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437315.5681,"col_index":13,"row_index":35}},{"id":960,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386874778],[9.93879332,55.38678548],[9.938950525,55.38678548],[9.938950525,55.386874778],[9.93879332,55.386874778]]]},"properties":{"id":960,"top":7437315.5681,"id_0":960,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437298.0681,"col_index":13,"row_index":36}},{"id":961,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38678548],[9.93879332,55.386696182],[9.938950525,55.386696182],[9.938950525,55.38678548],[9.93879332,55.38678548]]]},"properties":{"id":961,"top":7437298.0681,"id_0":961,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437280.5681,"col_index":13,"row_index":37}},{"id":962,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386696182],[9.93879332,55.386606884],[9.938950525,55.386606884],[9.938950525,55.386696182],[9.93879332,55.386696182]]]},"properties":{"id":962,"top":7437280.5681,"id_0":962,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437263.0681,"col_index":13,"row_index":38}},{"id":963,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386606884],[9.93879332,55.386517586],[9.938950525,55.386517586],[9.938950525,55.386606884],[9.93879332,55.386606884]]]},"properties":{"id":963,"top":7437263.0681,"id_0":963,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437245.5681,"col_index":13,"row_index":39}},{"id":964,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386517586],[9.93879332,55.386428287],[9.938950525,55.386428287],[9.938950525,55.386517586],[9.93879332,55.386517586]]]},"properties":{"id":964,"top":7437245.5681,"id_0":964,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437228.0681,"col_index":13,"row_index":40}},{"id":965,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386428287],[9.93879332,55.386338989],[9.938950525,55.386338989],[9.938950525,55.386428287],[9.93879332,55.386428287]]]},"properties":{"id":965,"top":7437228.0681,"id_0":965,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437210.5681,"col_index":13,"row_index":41}},{"id":966,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386338989],[9.93879332,55.38624969],[9.938950525,55.38624969],[9.938950525,55.386338989],[9.93879332,55.386338989]]]},"properties":{"id":966,"top":7437210.5681,"id_0":966,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437193.0681,"col_index":13,"row_index":42}},{"id":967,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38624969],[9.93879332,55.386160391],[9.938950525,55.386160391],[9.938950525,55.38624969],[9.93879332,55.38624969]]]},"properties":{"id":967,"top":7437193.0681,"id_0":967,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437175.5681,"col_index":13,"row_index":43}},{"id":968,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386160391],[9.93879332,55.386071091],[9.938950525,55.386071091],[9.938950525,55.386160391],[9.93879332,55.386160391]]]},"properties":{"id":968,"top":7437175.5681,"id_0":968,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437158.0681,"col_index":13,"row_index":44}},{"id":969,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.386071091],[9.93879332,55.385981792],[9.938950525,55.385981792],[9.938950525,55.386071091],[9.93879332,55.386071091]]]},"properties":{"id":969,"top":7437158.0681,"id_0":969,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437140.5681,"col_index":13,"row_index":45}},{"id":970,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385981792],[9.93879332,55.385892492],[9.938950525,55.385892492],[9.938950525,55.385981792],[9.93879332,55.385981792]]]},"properties":{"id":970,"top":7437140.5681,"id_0":970,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437123.0681,"col_index":13,"row_index":46}},{"id":971,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385892492],[9.93879332,55.385803192],[9.938950525,55.385803192],[9.938950525,55.385892492],[9.93879332,55.385892492]]]},"properties":{"id":971,"top":7437123.0681,"id_0":971,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437105.5681,"col_index":13,"row_index":47}},{"id":972,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385803192],[9.93879332,55.385713892],[9.938950525,55.385713892],[9.938950525,55.385803192],[9.93879332,55.385803192]]]},"properties":{"id":972,"top":7437105.5681,"id_0":972,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437088.0681,"col_index":13,"row_index":48}},{"id":973,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385713892],[9.93879332,55.385624592],[9.938950525,55.385624592],[9.938950525,55.385713892],[9.93879332,55.385713892]]]},"properties":{"id":973,"top":7437088.0681,"id_0":973,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437070.5681,"col_index":13,"row_index":49}},{"id":974,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385624592],[9.93879332,55.385535291],[9.938950525,55.385535291],[9.938950525,55.385624592],[9.93879332,55.385624592]]]},"properties":{"id":974,"top":7437070.5681,"id_0":974,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437053.0681,"col_index":13,"row_index":50}},{"id":975,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385535291],[9.93879332,55.38544599],[9.938950525,55.38544599],[9.938950525,55.385535291],[9.93879332,55.385535291]]]},"properties":{"id":975,"top":7437053.0681,"id_0":975,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437035.5681,"col_index":13,"row_index":51}},{"id":976,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38544599],[9.93879332,55.385356689],[9.938950525,55.385356689],[9.938950525,55.38544599],[9.93879332,55.38544599]]]},"properties":{"id":976,"top":7437035.5681,"id_0":976,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437018.0681,"col_index":13,"row_index":52}},{"id":977,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385356689],[9.93879332,55.385267388],[9.938950525,55.385267388],[9.938950525,55.385356689],[9.93879332,55.385356689]]]},"properties":{"id":977,"top":7437018.0681,"id_0":977,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7437000.5681,"col_index":13,"row_index":53}},{"id":978,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385267388],[9.93879332,55.385178087],[9.938950525,55.385178087],[9.938950525,55.385267388],[9.93879332,55.385267388]]]},"properties":{"id":978,"top":7437000.5681,"id_0":978,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436983.0681,"col_index":13,"row_index":54}},{"id":979,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385178087],[9.93879332,55.385088785],[9.938950525,55.385088785],[9.938950525,55.385178087],[9.93879332,55.385178087]]]},"properties":{"id":979,"top":7436983.0681,"id_0":979,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436965.5681,"col_index":13,"row_index":55}},{"id":980,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.385088785],[9.93879332,55.384999484],[9.938950525,55.384999484],[9.938950525,55.385088785],[9.93879332,55.385088785]]]},"properties":{"id":980,"top":7436965.5681,"id_0":980,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436948.0681,"col_index":13,"row_index":56}},{"id":981,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384999484],[9.93879332,55.384910182],[9.938950525,55.384910182],[9.938950525,55.384999484],[9.93879332,55.384999484]]]},"properties":{"id":981,"top":7436948.0681,"id_0":981,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436930.5681,"col_index":13,"row_index":57}},{"id":982,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384910182],[9.93879332,55.38482088],[9.938950525,55.38482088],[9.938950525,55.384910182],[9.93879332,55.384910182]]]},"properties":{"id":982,"top":7436930.5681,"id_0":982,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436913.0681,"col_index":13,"row_index":58}},{"id":983,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.38482088],[9.93879332,55.384731577],[9.938950525,55.384731577],[9.938950525,55.38482088],[9.93879332,55.38482088]]]},"properties":{"id":983,"top":7436913.0681,"id_0":983,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436895.5681,"col_index":13,"row_index":59}},{"id":984,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384731577],[9.93879332,55.384642275],[9.938950525,55.384642275],[9.938950525,55.384731577],[9.93879332,55.384731577]]]},"properties":{"id":984,"top":7436895.5681,"id_0":984,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436878.0681,"col_index":13,"row_index":60}},{"id":985,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384642275],[9.93879332,55.384552972],[9.938950525,55.384552972],[9.938950525,55.384642275],[9.93879332,55.384642275]]]},"properties":{"id":985,"top":7436878.0681,"id_0":985,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436860.5681,"col_index":13,"row_index":61}},{"id":986,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384552972],[9.93879332,55.384463669],[9.938950525,55.384463669],[9.938950525,55.384552972],[9.93879332,55.384552972]]]},"properties":{"id":986,"top":7436860.5681,"id_0":986,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436843.0681,"col_index":13,"row_index":62}},{"id":987,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384463669],[9.93879332,55.384374366],[9.938950525,55.384374366],[9.938950525,55.384463669],[9.93879332,55.384463669]]]},"properties":{"id":987,"top":7436843.0681,"id_0":987,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436825.5681,"col_index":13,"row_index":63}},{"id":988,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384374366],[9.93879332,55.384285062],[9.938950525,55.384285062],[9.938950525,55.384374366],[9.93879332,55.384374366]]]},"properties":{"id":988,"top":7436825.5681,"id_0":988,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436808.0681,"col_index":13,"row_index":64}},{"id":989,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384285062],[9.93879332,55.384195759],[9.938950525,55.384195759],[9.938950525,55.384285062],[9.93879332,55.384285062]]]},"properties":{"id":989,"top":7436808.0681,"id_0":989,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436790.5681,"col_index":13,"row_index":65}},{"id":990,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384195759],[9.93879332,55.384106455],[9.938950525,55.384106455],[9.938950525,55.384195759],[9.93879332,55.384195759]]]},"properties":{"id":990,"top":7436790.5681,"id_0":990,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436773.0681,"col_index":13,"row_index":66}},{"id":991,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384106455],[9.93879332,55.384017151],[9.938950525,55.384017151],[9.938950525,55.384106455],[9.93879332,55.384106455]]]},"properties":{"id":991,"top":7436773.0681,"id_0":991,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436755.5681,"col_index":13,"row_index":67}},{"id":992,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.384017151],[9.93879332,55.383927847],[9.938950525,55.383927847],[9.938950525,55.384017151],[9.93879332,55.384017151]]]},"properties":{"id":992,"top":7436755.5681,"id_0":992,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436738.0681,"col_index":13,"row_index":68}},{"id":993,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.383927847],[9.93879332,55.383838543],[9.938950525,55.383838543],[9.938950525,55.383927847],[9.93879332,55.383927847]]]},"properties":{"id":993,"top":7436738.0681,"id_0":993,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436720.5681,"col_index":13,"row_index":69}},{"id":994,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.383838543],[9.93879332,55.383749238],[9.938950525,55.383749238],[9.938950525,55.383838543],[9.93879332,55.383838543]]]},"properties":{"id":994,"top":7436720.5681,"id_0":994,"left":1106381.4115,"Label":null,"right":1106398.9115,"bottom":7436703.0681,"col_index":13,"row_index":70}},{"id":996,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.390000071],[9.938950525,55.38991078],[9.939107731,55.38991078],[9.939107731,55.390000071],[9.938950525,55.390000071]]]},"properties":{"id":996,"top":7437928.0681,"id_0":996,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437910.5681,"col_index":14,"row_index":1}},{"id":997,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38991078],[9.938950525,55.38982149],[9.939107731,55.38982149],[9.939107731,55.38991078],[9.938950525,55.38991078]]]},"properties":{"id":997,"top":7437910.5681,"id_0":997,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437893.0681,"col_index":14,"row_index":2}},{"id":998,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38982149],[9.938950525,55.389732199],[9.939107731,55.389732199],[9.939107731,55.38982149],[9.938950525,55.38982149]]]},"properties":{"id":998,"top":7437893.0681,"id_0":998,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437875.5681,"col_index":14,"row_index":3}},{"id":999,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389732199],[9.938950525,55.389642907],[9.939107731,55.389642907],[9.939107731,55.389732199],[9.938950525,55.389732199]]]},"properties":{"id":999,"top":7437875.5681,"id_0":999,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437858.0681,"col_index":14,"row_index":4}},{"id":1000,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389642907],[9.938950525,55.389553616],[9.939107731,55.389553616],[9.939107731,55.389642907],[9.938950525,55.389642907]]]},"properties":{"id":1000,"top":7437858.0681,"id_0":1000,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437840.5681,"col_index":14,"row_index":5}},{"id":1001,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389553616],[9.938950525,55.389464324],[9.939107731,55.389464324],[9.939107731,55.389553616],[9.938950525,55.389553616]]]},"properties":{"id":1001,"top":7437840.5681,"id_0":1001,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437823.0681,"col_index":14,"row_index":6}},{"id":1002,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389464324],[9.938950525,55.389375032],[9.939107731,55.389375032],[9.939107731,55.389464324],[9.938950525,55.389464324]]]},"properties":{"id":1002,"top":7437823.0681,"id_0":1002,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437805.5681,"col_index":14,"row_index":7}},{"id":1003,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389375032],[9.938950525,55.38928574],[9.939107731,55.38928574],[9.939107731,55.389375032],[9.938950525,55.389375032]]]},"properties":{"id":1003,"top":7437805.5681,"id_0":1003,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437788.0681,"col_index":14,"row_index":8}},{"id":1004,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38928574],[9.938950525,55.389196448],[9.939107731,55.389196448],[9.939107731,55.38928574],[9.938950525,55.38928574]]]},"properties":{"id":1004,"top":7437788.0681,"id_0":1004,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437770.5681,"col_index":14,"row_index":9}},{"id":1005,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389196448],[9.938950525,55.389107155],[9.939107731,55.389107155],[9.939107731,55.389196448],[9.938950525,55.389196448]]]},"properties":{"id":1005,"top":7437770.5681,"id_0":1005,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437753.0681,"col_index":14,"row_index":10}},{"id":1006,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389107155],[9.938950525,55.389017863],[9.939107731,55.389017863],[9.939107731,55.389107155],[9.938950525,55.389107155]]]},"properties":{"id":1006,"top":7437753.0681,"id_0":1006,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437735.5681,"col_index":14,"row_index":11}},{"id":1007,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.389017863],[9.938950525,55.38892857],[9.939107731,55.38892857],[9.939107731,55.389017863],[9.938950525,55.389017863]]]},"properties":{"id":1007,"top":7437735.5681,"id_0":1007,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437718.0681,"col_index":14,"row_index":12}},{"id":1008,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38892857],[9.938950525,55.388839277],[9.939107731,55.388839277],[9.939107731,55.38892857],[9.938950525,55.38892857]]]},"properties":{"id":1008,"top":7437718.0681,"id_0":1008,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437700.5681,"col_index":14,"row_index":13}},{"id":1009,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388839277],[9.938950525,55.388749984],[9.939107731,55.388749984],[9.939107731,55.388839277],[9.938950525,55.388839277]]]},"properties":{"id":1009,"top":7437700.5681,"id_0":1009,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437683.0681,"col_index":14,"row_index":14}},{"id":1010,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388749984],[9.938950525,55.38866069],[9.939107731,55.38866069],[9.939107731,55.388749984],[9.938950525,55.388749984]]]},"properties":{"id":1010,"top":7437683.0681,"id_0":1010,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437665.5681,"col_index":14,"row_index":15}},{"id":1011,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38866069],[9.938950525,55.388571396],[9.939107731,55.388571396],[9.939107731,55.38866069],[9.938950525,55.38866069]]]},"properties":{"id":1011,"top":7437665.5681,"id_0":1011,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437648.0681,"col_index":14,"row_index":16}},{"id":1012,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388571396],[9.938950525,55.388482103],[9.939107731,55.388482103],[9.939107731,55.388571396],[9.938950525,55.388571396]]]},"properties":{"id":1012,"top":7437648.0681,"id_0":1012,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437630.5681,"col_index":14,"row_index":17}},{"id":1013,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388482103],[9.938950525,55.388392808],[9.939107731,55.388392808],[9.939107731,55.388482103],[9.938950525,55.388482103]]]},"properties":{"id":1013,"top":7437630.5681,"id_0":1013,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437613.0681,"col_index":14,"row_index":18}},{"id":1014,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388392808],[9.938950525,55.388303514],[9.939107731,55.388303514],[9.939107731,55.388392808],[9.938950525,55.388392808]]]},"properties":{"id":1014,"top":7437613.0681,"id_0":1014,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437595.5681,"col_index":14,"row_index":19}},{"id":1015,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388303514],[9.938950525,55.38821422],[9.939107731,55.38821422],[9.939107731,55.388303514],[9.938950525,55.388303514]]]},"properties":{"id":1015,"top":7437595.5681,"id_0":1015,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437578.0681,"col_index":14,"row_index":20}},{"id":1016,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38821422],[9.938950525,55.388124925],[9.939107731,55.388124925],[9.939107731,55.38821422],[9.938950525,55.38821422]]]},"properties":{"id":1016,"top":7437578.0681,"id_0":1016,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437560.5681,"col_index":14,"row_index":21}},{"id":1017,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.388124925],[9.938950525,55.38803563],[9.939107731,55.38803563],[9.939107731,55.388124925],[9.938950525,55.388124925]]]},"properties":{"id":1017,"top":7437560.5681,"id_0":1017,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437543.0681,"col_index":14,"row_index":22}},{"id":1018,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38803563],[9.938950525,55.387946335],[9.939107731,55.387946335],[9.939107731,55.38803563],[9.938950525,55.38803563]]]},"properties":{"id":1018,"top":7437543.0681,"id_0":1018,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437525.5681,"col_index":14,"row_index":23}},{"id":1019,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387946335],[9.938950525,55.38785704],[9.939107731,55.38785704],[9.939107731,55.387946335],[9.938950525,55.387946335]]]},"properties":{"id":1019,"top":7437525.5681,"id_0":1019,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437508.0681,"col_index":14,"row_index":24}},{"id":1020,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38785704],[9.938950525,55.387767744],[9.939107731,55.387767744],[9.939107731,55.38785704],[9.938950525,55.38785704]]]},"properties":{"id":1020,"top":7437508.0681,"id_0":1020,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437490.5681,"col_index":14,"row_index":25}},{"id":1021,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387767744],[9.938950525,55.387678448],[9.939107731,55.387678448],[9.939107731,55.387767744],[9.938950525,55.387767744]]]},"properties":{"id":1021,"top":7437490.5681,"id_0":1021,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437473.0681,"col_index":14,"row_index":26}},{"id":1022,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387678448],[9.938950525,55.387589153],[9.939107731,55.387589153],[9.939107731,55.387678448],[9.938950525,55.387678448]]]},"properties":{"id":1022,"top":7437473.0681,"id_0":1022,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437455.5681,"col_index":14,"row_index":27}},{"id":1023,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387589153],[9.938950525,55.387499856],[9.939107731,55.387499856],[9.939107731,55.387589153],[9.938950525,55.387589153]]]},"properties":{"id":1023,"top":7437455.5681,"id_0":1023,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437438.0681,"col_index":14,"row_index":28}},{"id":1024,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387499856],[9.938950525,55.38741056],[9.939107731,55.38741056],[9.939107731,55.387499856],[9.938950525,55.387499856]]]},"properties":{"id":1024,"top":7437438.0681,"id_0":1024,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437420.5681,"col_index":14,"row_index":29}},{"id":1025,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38741056],[9.938950525,55.387321264],[9.939107731,55.387321264],[9.939107731,55.38741056],[9.938950525,55.38741056]]]},"properties":{"id":1025,"top":7437420.5681,"id_0":1025,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437403.0681,"col_index":14,"row_index":30}},{"id":1026,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387321264],[9.938950525,55.387231967],[9.939107731,55.387231967],[9.939107731,55.387321264],[9.938950525,55.387321264]]]},"properties":{"id":1026,"top":7437403.0681,"id_0":1026,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437385.5681,"col_index":14,"row_index":31}},{"id":1027,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387231967],[9.938950525,55.38714267],[9.939107731,55.38714267],[9.939107731,55.387231967],[9.938950525,55.387231967]]]},"properties":{"id":1027,"top":7437385.5681,"id_0":1027,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437368.0681,"col_index":14,"row_index":32}},{"id":1028,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38714267],[9.938950525,55.387053373],[9.939107731,55.387053373],[9.939107731,55.38714267],[9.938950525,55.38714267]]]},"properties":{"id":1028,"top":7437368.0681,"id_0":1028,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437350.5681,"col_index":14,"row_index":33}},{"id":1029,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.387053373],[9.938950525,55.386964076],[9.939107731,55.386964076],[9.939107731,55.387053373],[9.938950525,55.387053373]]]},"properties":{"id":1029,"top":7437350.5681,"id_0":1029,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437333.0681,"col_index":14,"row_index":34}},{"id":1030,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386964076],[9.938950525,55.386874778],[9.939107731,55.386874778],[9.939107731,55.386964076],[9.938950525,55.386964076]]]},"properties":{"id":1030,"top":7437333.0681,"id_0":1030,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437315.5681,"col_index":14,"row_index":35}},{"id":1031,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386874778],[9.938950525,55.38678548],[9.939107731,55.38678548],[9.939107731,55.386874778],[9.938950525,55.386874778]]]},"properties":{"id":1031,"top":7437315.5681,"id_0":1031,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437298.0681,"col_index":14,"row_index":36}},{"id":1032,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38678548],[9.938950525,55.386696182],[9.939107731,55.386696182],[9.939107731,55.38678548],[9.938950525,55.38678548]]]},"properties":{"id":1032,"top":7437298.0681,"id_0":1032,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437280.5681,"col_index":14,"row_index":37}},{"id":1033,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386696182],[9.938950525,55.386606884],[9.939107731,55.386606884],[9.939107731,55.386696182],[9.938950525,55.386696182]]]},"properties":{"id":1033,"top":7437280.5681,"id_0":1033,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437263.0681,"col_index":14,"row_index":38}},{"id":1034,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386606884],[9.938950525,55.386517586],[9.939107731,55.386517586],[9.939107731,55.386606884],[9.938950525,55.386606884]]]},"properties":{"id":1034,"top":7437263.0681,"id_0":1034,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437245.5681,"col_index":14,"row_index":39}},{"id":1035,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386517586],[9.938950525,55.386428287],[9.939107731,55.386428287],[9.939107731,55.386517586],[9.938950525,55.386517586]]]},"properties":{"id":1035,"top":7437245.5681,"id_0":1035,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437228.0681,"col_index":14,"row_index":40}},{"id":1036,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386428287],[9.938950525,55.386338989],[9.939107731,55.386338989],[9.939107731,55.386428287],[9.938950525,55.386428287]]]},"properties":{"id":1036,"top":7437228.0681,"id_0":1036,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437210.5681,"col_index":14,"row_index":41}},{"id":1037,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386338989],[9.938950525,55.38624969],[9.939107731,55.38624969],[9.939107731,55.386338989],[9.938950525,55.386338989]]]},"properties":{"id":1037,"top":7437210.5681,"id_0":1037,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437193.0681,"col_index":14,"row_index":42}},{"id":1038,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38624969],[9.938950525,55.386160391],[9.939107731,55.386160391],[9.939107731,55.38624969],[9.938950525,55.38624969]]]},"properties":{"id":1038,"top":7437193.0681,"id_0":1038,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437175.5681,"col_index":14,"row_index":43}},{"id":1039,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386160391],[9.938950525,55.386071091],[9.939107731,55.386071091],[9.939107731,55.386160391],[9.938950525,55.386160391]]]},"properties":{"id":1039,"top":7437175.5681,"id_0":1039,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437158.0681,"col_index":14,"row_index":44}},{"id":1040,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.386071091],[9.938950525,55.385981792],[9.939107731,55.385981792],[9.939107731,55.386071091],[9.938950525,55.386071091]]]},"properties":{"id":1040,"top":7437158.0681,"id_0":1040,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437140.5681,"col_index":14,"row_index":45}},{"id":1041,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385981792],[9.938950525,55.385892492],[9.939107731,55.385892492],[9.939107731,55.385981792],[9.938950525,55.385981792]]]},"properties":{"id":1041,"top":7437140.5681,"id_0":1041,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437123.0681,"col_index":14,"row_index":46}},{"id":1042,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385892492],[9.938950525,55.385803192],[9.939107731,55.385803192],[9.939107731,55.385892492],[9.938950525,55.385892492]]]},"properties":{"id":1042,"top":7437123.0681,"id_0":1042,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437105.5681,"col_index":14,"row_index":47}},{"id":1043,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385803192],[9.938950525,55.385713892],[9.939107731,55.385713892],[9.939107731,55.385803192],[9.938950525,55.385803192]]]},"properties":{"id":1043,"top":7437105.5681,"id_0":1043,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437088.0681,"col_index":14,"row_index":48}},{"id":1044,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385713892],[9.938950525,55.385624592],[9.939107731,55.385624592],[9.939107731,55.385713892],[9.938950525,55.385713892]]]},"properties":{"id":1044,"top":7437088.0681,"id_0":1044,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437070.5681,"col_index":14,"row_index":49}},{"id":1045,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385624592],[9.938950525,55.385535291],[9.939107731,55.385535291],[9.939107731,55.385624592],[9.938950525,55.385624592]]]},"properties":{"id":1045,"top":7437070.5681,"id_0":1045,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437053.0681,"col_index":14,"row_index":50}},{"id":1046,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385535291],[9.938950525,55.38544599],[9.939107731,55.38544599],[9.939107731,55.385535291],[9.938950525,55.385535291]]]},"properties":{"id":1046,"top":7437053.0681,"id_0":1046,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437035.5681,"col_index":14,"row_index":51}},{"id":1047,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38544599],[9.938950525,55.385356689],[9.939107731,55.385356689],[9.939107731,55.38544599],[9.938950525,55.38544599]]]},"properties":{"id":1047,"top":7437035.5681,"id_0":1047,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437018.0681,"col_index":14,"row_index":52}},{"id":1048,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385356689],[9.938950525,55.385267388],[9.939107731,55.385267388],[9.939107731,55.385356689],[9.938950525,55.385356689]]]},"properties":{"id":1048,"top":7437018.0681,"id_0":1048,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7437000.5681,"col_index":14,"row_index":53}},{"id":1049,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385267388],[9.938950525,55.385178087],[9.939107731,55.385178087],[9.939107731,55.385267388],[9.938950525,55.385267388]]]},"properties":{"id":1049,"top":7437000.5681,"id_0":1049,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436983.0681,"col_index":14,"row_index":54}},{"id":1050,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385178087],[9.938950525,55.385088785],[9.939107731,55.385088785],[9.939107731,55.385178087],[9.938950525,55.385178087]]]},"properties":{"id":1050,"top":7436983.0681,"id_0":1050,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436965.5681,"col_index":14,"row_index":55}},{"id":1051,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.385088785],[9.938950525,55.384999484],[9.939107731,55.384999484],[9.939107731,55.385088785],[9.938950525,55.385088785]]]},"properties":{"id":1051,"top":7436965.5681,"id_0":1051,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436948.0681,"col_index":14,"row_index":56}},{"id":1052,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384999484],[9.938950525,55.384910182],[9.939107731,55.384910182],[9.939107731,55.384999484],[9.938950525,55.384999484]]]},"properties":{"id":1052,"top":7436948.0681,"id_0":1052,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436930.5681,"col_index":14,"row_index":57}},{"id":1053,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384910182],[9.938950525,55.38482088],[9.939107731,55.38482088],[9.939107731,55.384910182],[9.938950525,55.384910182]]]},"properties":{"id":1053,"top":7436930.5681,"id_0":1053,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436913.0681,"col_index":14,"row_index":58}},{"id":1054,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.38482088],[9.938950525,55.384731577],[9.939107731,55.384731577],[9.939107731,55.38482088],[9.938950525,55.38482088]]]},"properties":{"id":1054,"top":7436913.0681,"id_0":1054,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436895.5681,"col_index":14,"row_index":59}},{"id":1055,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384731577],[9.938950525,55.384642275],[9.939107731,55.384642275],[9.939107731,55.384731577],[9.938950525,55.384731577]]]},"properties":{"id":1055,"top":7436895.5681,"id_0":1055,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436878.0681,"col_index":14,"row_index":60}},{"id":1056,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384642275],[9.938950525,55.384552972],[9.939107731,55.384552972],[9.939107731,55.384642275],[9.938950525,55.384642275]]]},"properties":{"id":1056,"top":7436878.0681,"id_0":1056,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436860.5681,"col_index":14,"row_index":61}},{"id":1057,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384552972],[9.938950525,55.384463669],[9.939107731,55.384463669],[9.939107731,55.384552972],[9.938950525,55.384552972]]]},"properties":{"id":1057,"top":7436860.5681,"id_0":1057,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436843.0681,"col_index":14,"row_index":62}},{"id":1058,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384463669],[9.938950525,55.384374366],[9.939107731,55.384374366],[9.939107731,55.384463669],[9.938950525,55.384463669]]]},"properties":{"id":1058,"top":7436843.0681,"id_0":1058,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436825.5681,"col_index":14,"row_index":63}},{"id":1059,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384374366],[9.938950525,55.384285062],[9.939107731,55.384285062],[9.939107731,55.384374366],[9.938950525,55.384374366]]]},"properties":{"id":1059,"top":7436825.5681,"id_0":1059,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436808.0681,"col_index":14,"row_index":64}},{"id":1060,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384285062],[9.938950525,55.384195759],[9.939107731,55.384195759],[9.939107731,55.384285062],[9.938950525,55.384285062]]]},"properties":{"id":1060,"top":7436808.0681,"id_0":1060,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436790.5681,"col_index":14,"row_index":65}},{"id":1061,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384195759],[9.938950525,55.384106455],[9.939107731,55.384106455],[9.939107731,55.384195759],[9.938950525,55.384195759]]]},"properties":{"id":1061,"top":7436790.5681,"id_0":1061,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436773.0681,"col_index":14,"row_index":66}},{"id":1062,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384106455],[9.938950525,55.384017151],[9.939107731,55.384017151],[9.939107731,55.384106455],[9.938950525,55.384106455]]]},"properties":{"id":1062,"top":7436773.0681,"id_0":1062,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436755.5681,"col_index":14,"row_index":67}},{"id":1063,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.384017151],[9.938950525,55.383927847],[9.939107731,55.383927847],[9.939107731,55.384017151],[9.938950525,55.384017151]]]},"properties":{"id":1063,"top":7436755.5681,"id_0":1063,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436738.0681,"col_index":14,"row_index":68}},{"id":1064,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.383927847],[9.938950525,55.383838543],[9.939107731,55.383838543],[9.939107731,55.383927847],[9.938950525,55.383927847]]]},"properties":{"id":1064,"top":7436738.0681,"id_0":1064,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436720.5681,"col_index":14,"row_index":69}},{"id":1065,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.383838543],[9.938950525,55.383749238],[9.939107731,55.383749238],[9.939107731,55.383838543],[9.938950525,55.383838543]]]},"properties":{"id":1065,"top":7436720.5681,"id_0":1065,"left":1106398.9115,"Label":null,"right":1106416.4115,"bottom":7436703.0681,"col_index":14,"row_index":70}},{"id":1067,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.390000071],[9.939107731,55.38991078],[9.939264936,55.38991078],[9.939264936,55.390000071],[9.939107731,55.390000071]]]},"properties":{"id":1067,"top":7437928.0681,"id_0":1067,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437910.5681,"col_index":15,"row_index":1}},{"id":1068,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38991078],[9.939107731,55.38982149],[9.939264936,55.38982149],[9.939264936,55.38991078],[9.939107731,55.38991078]]]},"properties":{"id":1068,"top":7437910.5681,"id_0":1068,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437893.0681,"col_index":15,"row_index":2}},{"id":1069,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38982149],[9.939107731,55.389732199],[9.939264936,55.389732199],[9.939264936,55.38982149],[9.939107731,55.38982149]]]},"properties":{"id":1069,"top":7437893.0681,"id_0":1069,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437875.5681,"col_index":15,"row_index":3}},{"id":1070,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389732199],[9.939107731,55.389642907],[9.939264936,55.389642907],[9.939264936,55.389732199],[9.939107731,55.389732199]]]},"properties":{"id":1070,"top":7437875.5681,"id_0":1070,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437858.0681,"col_index":15,"row_index":4}},{"id":1071,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389642907],[9.939107731,55.389553616],[9.939264936,55.389553616],[9.939264936,55.389642907],[9.939107731,55.389642907]]]},"properties":{"id":1071,"top":7437858.0681,"id_0":1071,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437840.5681,"col_index":15,"row_index":5}},{"id":1072,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389553616],[9.939107731,55.389464324],[9.939264936,55.389464324],[9.939264936,55.389553616],[9.939107731,55.389553616]]]},"properties":{"id":1072,"top":7437840.5681,"id_0":1072,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437823.0681,"col_index":15,"row_index":6}},{"id":1073,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389464324],[9.939107731,55.389375032],[9.939264936,55.389375032],[9.939264936,55.389464324],[9.939107731,55.389464324]]]},"properties":{"id":1073,"top":7437823.0681,"id_0":1073,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437805.5681,"col_index":15,"row_index":7}},{"id":1074,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389375032],[9.939107731,55.38928574],[9.939264936,55.38928574],[9.939264936,55.389375032],[9.939107731,55.389375032]]]},"properties":{"id":1074,"top":7437805.5681,"id_0":1074,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437788.0681,"col_index":15,"row_index":8}},{"id":1075,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38928574],[9.939107731,55.389196448],[9.939264936,55.389196448],[9.939264936,55.38928574],[9.939107731,55.38928574]]]},"properties":{"id":1075,"top":7437788.0681,"id_0":1075,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437770.5681,"col_index":15,"row_index":9}},{"id":1076,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389196448],[9.939107731,55.389107155],[9.939264936,55.389107155],[9.939264936,55.389196448],[9.939107731,55.389196448]]]},"properties":{"id":1076,"top":7437770.5681,"id_0":1076,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437753.0681,"col_index":15,"row_index":10}},{"id":1077,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389107155],[9.939107731,55.389017863],[9.939264936,55.389017863],[9.939264936,55.389107155],[9.939107731,55.389107155]]]},"properties":{"id":1077,"top":7437753.0681,"id_0":1077,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437735.5681,"col_index":15,"row_index":11}},{"id":1078,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.389017863],[9.939107731,55.38892857],[9.939264936,55.38892857],[9.939264936,55.389017863],[9.939107731,55.389017863]]]},"properties":{"id":1078,"top":7437735.5681,"id_0":1078,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437718.0681,"col_index":15,"row_index":12}},{"id":1079,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38892857],[9.939107731,55.388839277],[9.939264936,55.388839277],[9.939264936,55.38892857],[9.939107731,55.38892857]]]},"properties":{"id":1079,"top":7437718.0681,"id_0":1079,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437700.5681,"col_index":15,"row_index":13}},{"id":1080,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388839277],[9.939107731,55.388749984],[9.939264936,55.388749984],[9.939264936,55.388839277],[9.939107731,55.388839277]]]},"properties":{"id":1080,"top":7437700.5681,"id_0":1080,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437683.0681,"col_index":15,"row_index":14}},{"id":1081,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388749984],[9.939107731,55.38866069],[9.939264936,55.38866069],[9.939264936,55.388749984],[9.939107731,55.388749984]]]},"properties":{"id":1081,"top":7437683.0681,"id_0":1081,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437665.5681,"col_index":15,"row_index":15}},{"id":1082,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38866069],[9.939107731,55.388571396],[9.939264936,55.388571396],[9.939264936,55.38866069],[9.939107731,55.38866069]]]},"properties":{"id":1082,"top":7437665.5681,"id_0":1082,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437648.0681,"col_index":15,"row_index":16}},{"id":1083,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388571396],[9.939107731,55.388482103],[9.939264936,55.388482103],[9.939264936,55.388571396],[9.939107731,55.388571396]]]},"properties":{"id":1083,"top":7437648.0681,"id_0":1083,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437630.5681,"col_index":15,"row_index":17}},{"id":1084,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388482103],[9.939107731,55.388392808],[9.939264936,55.388392808],[9.939264936,55.388482103],[9.939107731,55.388482103]]]},"properties":{"id":1084,"top":7437630.5681,"id_0":1084,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437613.0681,"col_index":15,"row_index":18}},{"id":1085,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388392808],[9.939107731,55.388303514],[9.939264936,55.388303514],[9.939264936,55.388392808],[9.939107731,55.388392808]]]},"properties":{"id":1085,"top":7437613.0681,"id_0":1085,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437595.5681,"col_index":15,"row_index":19}},{"id":1086,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388303514],[9.939107731,55.38821422],[9.939264936,55.38821422],[9.939264936,55.388303514],[9.939107731,55.388303514]]]},"properties":{"id":1086,"top":7437595.5681,"id_0":1086,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437578.0681,"col_index":15,"row_index":20}},{"id":1087,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38821422],[9.939107731,55.388124925],[9.939264936,55.388124925],[9.939264936,55.38821422],[9.939107731,55.38821422]]]},"properties":{"id":1087,"top":7437578.0681,"id_0":1087,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437560.5681,"col_index":15,"row_index":21}},{"id":1088,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.388124925],[9.939107731,55.38803563],[9.939264936,55.38803563],[9.939264936,55.388124925],[9.939107731,55.388124925]]]},"properties":{"id":1088,"top":7437560.5681,"id_0":1088,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437543.0681,"col_index":15,"row_index":22}},{"id":1089,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38803563],[9.939107731,55.387946335],[9.939264936,55.387946335],[9.939264936,55.38803563],[9.939107731,55.38803563]]]},"properties":{"id":1089,"top":7437543.0681,"id_0":1089,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437525.5681,"col_index":15,"row_index":23}},{"id":1090,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387946335],[9.939107731,55.38785704],[9.939264936,55.38785704],[9.939264936,55.387946335],[9.939107731,55.387946335]]]},"properties":{"id":1090,"top":7437525.5681,"id_0":1090,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437508.0681,"col_index":15,"row_index":24}},{"id":1091,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38785704],[9.939107731,55.387767744],[9.939264936,55.387767744],[9.939264936,55.38785704],[9.939107731,55.38785704]]]},"properties":{"id":1091,"top":7437508.0681,"id_0":1091,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437490.5681,"col_index":15,"row_index":25}},{"id":1092,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387767744],[9.939107731,55.387678448],[9.939264936,55.387678448],[9.939264936,55.387767744],[9.939107731,55.387767744]]]},"properties":{"id":1092,"top":7437490.5681,"id_0":1092,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437473.0681,"col_index":15,"row_index":26}},{"id":1093,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387678448],[9.939107731,55.387589153],[9.939264936,55.387589153],[9.939264936,55.387678448],[9.939107731,55.387678448]]]},"properties":{"id":1093,"top":7437473.0681,"id_0":1093,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437455.5681,"col_index":15,"row_index":27}},{"id":1094,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387589153],[9.939107731,55.387499856],[9.939264936,55.387499856],[9.939264936,55.387589153],[9.939107731,55.387589153]]]},"properties":{"id":1094,"top":7437455.5681,"id_0":1094,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437438.0681,"col_index":15,"row_index":28}},{"id":1095,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387499856],[9.939107731,55.38741056],[9.939264936,55.38741056],[9.939264936,55.387499856],[9.939107731,55.387499856]]]},"properties":{"id":1095,"top":7437438.0681,"id_0":1095,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437420.5681,"col_index":15,"row_index":29}},{"id":1096,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38741056],[9.939107731,55.387321264],[9.939264936,55.387321264],[9.939264936,55.38741056],[9.939107731,55.38741056]]]},"properties":{"id":1096,"top":7437420.5681,"id_0":1096,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437403.0681,"col_index":15,"row_index":30}},{"id":1097,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387321264],[9.939107731,55.387231967],[9.939264936,55.387231967],[9.939264936,55.387321264],[9.939107731,55.387321264]]]},"properties":{"id":1097,"top":7437403.0681,"id_0":1097,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437385.5681,"col_index":15,"row_index":31}},{"id":1098,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387231967],[9.939107731,55.38714267],[9.939264936,55.38714267],[9.939264936,55.387231967],[9.939107731,55.387231967]]]},"properties":{"id":1098,"top":7437385.5681,"id_0":1098,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437368.0681,"col_index":15,"row_index":32}},{"id":1099,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38714267],[9.939107731,55.387053373],[9.939264936,55.387053373],[9.939264936,55.38714267],[9.939107731,55.38714267]]]},"properties":{"id":1099,"top":7437368.0681,"id_0":1099,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437350.5681,"col_index":15,"row_index":33}},{"id":1100,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.387053373],[9.939107731,55.386964076],[9.939264936,55.386964076],[9.939264936,55.387053373],[9.939107731,55.387053373]]]},"properties":{"id":1100,"top":7437350.5681,"id_0":1100,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437333.0681,"col_index":15,"row_index":34}},{"id":1101,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386964076],[9.939107731,55.386874778],[9.939264936,55.386874778],[9.939264936,55.386964076],[9.939107731,55.386964076]]]},"properties":{"id":1101,"top":7437333.0681,"id_0":1101,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437315.5681,"col_index":15,"row_index":35}},{"id":1102,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386874778],[9.939107731,55.38678548],[9.939264936,55.38678548],[9.939264936,55.386874778],[9.939107731,55.386874778]]]},"properties":{"id":1102,"top":7437315.5681,"id_0":1102,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437298.0681,"col_index":15,"row_index":36}},{"id":1103,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38678548],[9.939107731,55.386696182],[9.939264936,55.386696182],[9.939264936,55.38678548],[9.939107731,55.38678548]]]},"properties":{"id":1103,"top":7437298.0681,"id_0":1103,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437280.5681,"col_index":15,"row_index":37}},{"id":1104,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386696182],[9.939107731,55.386606884],[9.939264936,55.386606884],[9.939264936,55.386696182],[9.939107731,55.386696182]]]},"properties":{"id":1104,"top":7437280.5681,"id_0":1104,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437263.0681,"col_index":15,"row_index":38}},{"id":1105,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386606884],[9.939107731,55.386517586],[9.939264936,55.386517586],[9.939264936,55.386606884],[9.939107731,55.386606884]]]},"properties":{"id":1105,"top":7437263.0681,"id_0":1105,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437245.5681,"col_index":15,"row_index":39}},{"id":1106,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386517586],[9.939107731,55.386428287],[9.939264936,55.386428287],[9.939264936,55.386517586],[9.939107731,55.386517586]]]},"properties":{"id":1106,"top":7437245.5681,"id_0":1106,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437228.0681,"col_index":15,"row_index":40}},{"id":1107,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386428287],[9.939107731,55.386338989],[9.939264936,55.386338989],[9.939264936,55.386428287],[9.939107731,55.386428287]]]},"properties":{"id":1107,"top":7437228.0681,"id_0":1107,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437210.5681,"col_index":15,"row_index":41}},{"id":1108,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386338989],[9.939107731,55.38624969],[9.939264936,55.38624969],[9.939264936,55.386338989],[9.939107731,55.386338989]]]},"properties":{"id":1108,"top":7437210.5681,"id_0":1108,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437193.0681,"col_index":15,"row_index":42}},{"id":1109,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38624969],[9.939107731,55.386160391],[9.939264936,55.386160391],[9.939264936,55.38624969],[9.939107731,55.38624969]]]},"properties":{"id":1109,"top":7437193.0681,"id_0":1109,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437175.5681,"col_index":15,"row_index":43}},{"id":1110,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386160391],[9.939107731,55.386071091],[9.939264936,55.386071091],[9.939264936,55.386160391],[9.939107731,55.386160391]]]},"properties":{"id":1110,"top":7437175.5681,"id_0":1110,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437158.0681,"col_index":15,"row_index":44}},{"id":1111,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.386071091],[9.939107731,55.385981792],[9.939264936,55.385981792],[9.939264936,55.386071091],[9.939107731,55.386071091]]]},"properties":{"id":1111,"top":7437158.0681,"id_0":1111,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437140.5681,"col_index":15,"row_index":45}},{"id":1112,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385981792],[9.939107731,55.385892492],[9.939264936,55.385892492],[9.939264936,55.385981792],[9.939107731,55.385981792]]]},"properties":{"id":1112,"top":7437140.5681,"id_0":1112,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437123.0681,"col_index":15,"row_index":46}},{"id":1113,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385892492],[9.939107731,55.385803192],[9.939264936,55.385803192],[9.939264936,55.385892492],[9.939107731,55.385892492]]]},"properties":{"id":1113,"top":7437123.0681,"id_0":1113,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437105.5681,"col_index":15,"row_index":47}},{"id":1114,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385803192],[9.939107731,55.385713892],[9.939264936,55.385713892],[9.939264936,55.385803192],[9.939107731,55.385803192]]]},"properties":{"id":1114,"top":7437105.5681,"id_0":1114,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437088.0681,"col_index":15,"row_index":48}},{"id":1115,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385713892],[9.939107731,55.385624592],[9.939264936,55.385624592],[9.939264936,55.385713892],[9.939107731,55.385713892]]]},"properties":{"id":1115,"top":7437088.0681,"id_0":1115,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437070.5681,"col_index":15,"row_index":49}},{"id":1116,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385624592],[9.939107731,55.385535291],[9.939264936,55.385535291],[9.939264936,55.385624592],[9.939107731,55.385624592]]]},"properties":{"id":1116,"top":7437070.5681,"id_0":1116,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437053.0681,"col_index":15,"row_index":50}},{"id":1117,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385535291],[9.939107731,55.38544599],[9.939264936,55.38544599],[9.939264936,55.385535291],[9.939107731,55.385535291]]]},"properties":{"id":1117,"top":7437053.0681,"id_0":1117,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437035.5681,"col_index":15,"row_index":51}},{"id":1118,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38544599],[9.939107731,55.385356689],[9.939264936,55.385356689],[9.939264936,55.38544599],[9.939107731,55.38544599]]]},"properties":{"id":1118,"top":7437035.5681,"id_0":1118,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437018.0681,"col_index":15,"row_index":52}},{"id":1119,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385356689],[9.939107731,55.385267388],[9.939264936,55.385267388],[9.939264936,55.385356689],[9.939107731,55.385356689]]]},"properties":{"id":1119,"top":7437018.0681,"id_0":1119,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7437000.5681,"col_index":15,"row_index":53}},{"id":1120,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385267388],[9.939107731,55.385178087],[9.939264936,55.385178087],[9.939264936,55.385267388],[9.939107731,55.385267388]]]},"properties":{"id":1120,"top":7437000.5681,"id_0":1120,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436983.0681,"col_index":15,"row_index":54}},{"id":1121,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385178087],[9.939107731,55.385088785],[9.939264936,55.385088785],[9.939264936,55.385178087],[9.939107731,55.385178087]]]},"properties":{"id":1121,"top":7436983.0681,"id_0":1121,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436965.5681,"col_index":15,"row_index":55}},{"id":1122,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.385088785],[9.939107731,55.384999484],[9.939264936,55.384999484],[9.939264936,55.385088785],[9.939107731,55.385088785]]]},"properties":{"id":1122,"top":7436965.5681,"id_0":1122,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436948.0681,"col_index":15,"row_index":56}},{"id":1123,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384999484],[9.939107731,55.384910182],[9.939264936,55.384910182],[9.939264936,55.384999484],[9.939107731,55.384999484]]]},"properties":{"id":1123,"top":7436948.0681,"id_0":1123,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436930.5681,"col_index":15,"row_index":57}},{"id":1124,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384910182],[9.939107731,55.38482088],[9.939264936,55.38482088],[9.939264936,55.384910182],[9.939107731,55.384910182]]]},"properties":{"id":1124,"top":7436930.5681,"id_0":1124,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436913.0681,"col_index":15,"row_index":58}},{"id":1125,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.38482088],[9.939107731,55.384731577],[9.939264936,55.384731577],[9.939264936,55.38482088],[9.939107731,55.38482088]]]},"properties":{"id":1125,"top":7436913.0681,"id_0":1125,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436895.5681,"col_index":15,"row_index":59}},{"id":1126,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384731577],[9.939107731,55.384642275],[9.939264936,55.384642275],[9.939264936,55.384731577],[9.939107731,55.384731577]]]},"properties":{"id":1126,"top":7436895.5681,"id_0":1126,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436878.0681,"col_index":15,"row_index":60}},{"id":1127,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384642275],[9.939107731,55.384552972],[9.939264936,55.384552972],[9.939264936,55.384642275],[9.939107731,55.384642275]]]},"properties":{"id":1127,"top":7436878.0681,"id_0":1127,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436860.5681,"col_index":15,"row_index":61}},{"id":1128,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384552972],[9.939107731,55.384463669],[9.939264936,55.384463669],[9.939264936,55.384552972],[9.939107731,55.384552972]]]},"properties":{"id":1128,"top":7436860.5681,"id_0":1128,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436843.0681,"col_index":15,"row_index":62}},{"id":1129,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384463669],[9.939107731,55.384374366],[9.939264936,55.384374366],[9.939264936,55.384463669],[9.939107731,55.384463669]]]},"properties":{"id":1129,"top":7436843.0681,"id_0":1129,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436825.5681,"col_index":15,"row_index":63}},{"id":1130,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384374366],[9.939107731,55.384285062],[9.939264936,55.384285062],[9.939264936,55.384374366],[9.939107731,55.384374366]]]},"properties":{"id":1130,"top":7436825.5681,"id_0":1130,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436808.0681,"col_index":15,"row_index":64}},{"id":1131,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384285062],[9.939107731,55.384195759],[9.939264936,55.384195759],[9.939264936,55.384285062],[9.939107731,55.384285062]]]},"properties":{"id":1131,"top":7436808.0681,"id_0":1131,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436790.5681,"col_index":15,"row_index":65}},{"id":1132,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384195759],[9.939107731,55.384106455],[9.939264936,55.384106455],[9.939264936,55.384195759],[9.939107731,55.384195759]]]},"properties":{"id":1132,"top":7436790.5681,"id_0":1132,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436773.0681,"col_index":15,"row_index":66}},{"id":1133,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384106455],[9.939107731,55.384017151],[9.939264936,55.384017151],[9.939264936,55.384106455],[9.939107731,55.384106455]]]},"properties":{"id":1133,"top":7436773.0681,"id_0":1133,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436755.5681,"col_index":15,"row_index":67}},{"id":1134,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.384017151],[9.939107731,55.383927847],[9.939264936,55.383927847],[9.939264936,55.384017151],[9.939107731,55.384017151]]]},"properties":{"id":1134,"top":7436755.5681,"id_0":1134,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436738.0681,"col_index":15,"row_index":68}},{"id":1135,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.383927847],[9.939107731,55.383838543],[9.939264936,55.383838543],[9.939264936,55.383927847],[9.939107731,55.383927847]]]},"properties":{"id":1135,"top":7436738.0681,"id_0":1135,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436720.5681,"col_index":15,"row_index":69}},{"id":1136,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.383838543],[9.939107731,55.383749238],[9.939264936,55.383749238],[9.939264936,55.383838543],[9.939107731,55.383838543]]]},"properties":{"id":1136,"top":7436720.5681,"id_0":1136,"left":1106416.4115,"Label":null,"right":1106433.9115,"bottom":7436703.0681,"col_index":15,"row_index":70}},{"id":1138,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.390000071],[9.939264936,55.38991078],[9.939422141,55.38991078],[9.939422141,55.390000071],[9.939264936,55.390000071]]]},"properties":{"id":1138,"top":7437928.0681,"id_0":1138,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437910.5681,"col_index":16,"row_index":1}},{"id":1139,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38991078],[9.939264936,55.38982149],[9.939422141,55.38982149],[9.939422141,55.38991078],[9.939264936,55.38991078]]]},"properties":{"id":1139,"top":7437910.5681,"id_0":1139,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437893.0681,"col_index":16,"row_index":2}},{"id":1140,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38982149],[9.939264936,55.389732199],[9.939422141,55.389732199],[9.939422141,55.38982149],[9.939264936,55.38982149]]]},"properties":{"id":1140,"top":7437893.0681,"id_0":1140,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437875.5681,"col_index":16,"row_index":3}},{"id":1141,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389732199],[9.939264936,55.389642907],[9.939422141,55.389642907],[9.939422141,55.389732199],[9.939264936,55.389732199]]]},"properties":{"id":1141,"top":7437875.5681,"id_0":1141,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437858.0681,"col_index":16,"row_index":4}},{"id":1142,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389642907],[9.939264936,55.389553616],[9.939422141,55.389553616],[9.939422141,55.389642907],[9.939264936,55.389642907]]]},"properties":{"id":1142,"top":7437858.0681,"id_0":1142,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437840.5681,"col_index":16,"row_index":5}},{"id":1143,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389553616],[9.939264936,55.389464324],[9.939422141,55.389464324],[9.939422141,55.389553616],[9.939264936,55.389553616]]]},"properties":{"id":1143,"top":7437840.5681,"id_0":1143,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437823.0681,"col_index":16,"row_index":6}},{"id":1144,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389464324],[9.939264936,55.389375032],[9.939422141,55.389375032],[9.939422141,55.389464324],[9.939264936,55.389464324]]]},"properties":{"id":1144,"top":7437823.0681,"id_0":1144,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437805.5681,"col_index":16,"row_index":7}},{"id":1145,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389375032],[9.939264936,55.38928574],[9.939422141,55.38928574],[9.939422141,55.389375032],[9.939264936,55.389375032]]]},"properties":{"id":1145,"top":7437805.5681,"id_0":1145,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437788.0681,"col_index":16,"row_index":8}},{"id":1146,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38928574],[9.939264936,55.389196448],[9.939422141,55.389196448],[9.939422141,55.38928574],[9.939264936,55.38928574]]]},"properties":{"id":1146,"top":7437788.0681,"id_0":1146,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437770.5681,"col_index":16,"row_index":9}},{"id":1147,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389196448],[9.939264936,55.389107155],[9.939422141,55.389107155],[9.939422141,55.389196448],[9.939264936,55.389196448]]]},"properties":{"id":1147,"top":7437770.5681,"id_0":1147,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437753.0681,"col_index":16,"row_index":10}},{"id":1148,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389107155],[9.939264936,55.389017863],[9.939422141,55.389017863],[9.939422141,55.389107155],[9.939264936,55.389107155]]]},"properties":{"id":1148,"top":7437753.0681,"id_0":1148,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437735.5681,"col_index":16,"row_index":11}},{"id":1149,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.389017863],[9.939264936,55.38892857],[9.939422141,55.38892857],[9.939422141,55.389017863],[9.939264936,55.389017863]]]},"properties":{"id":1149,"top":7437735.5681,"id_0":1149,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437718.0681,"col_index":16,"row_index":12}},{"id":1150,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38892857],[9.939264936,55.388839277],[9.939422141,55.388839277],[9.939422141,55.38892857],[9.939264936,55.38892857]]]},"properties":{"id":1150,"top":7437718.0681,"id_0":1150,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437700.5681,"col_index":16,"row_index":13}},{"id":1151,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388839277],[9.939264936,55.388749984],[9.939422141,55.388749984],[9.939422141,55.388839277],[9.939264936,55.388839277]]]},"properties":{"id":1151,"top":7437700.5681,"id_0":1151,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437683.0681,"col_index":16,"row_index":14}},{"id":1152,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388749984],[9.939264936,55.38866069],[9.939422141,55.38866069],[9.939422141,55.388749984],[9.939264936,55.388749984]]]},"properties":{"id":1152,"top":7437683.0681,"id_0":1152,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437665.5681,"col_index":16,"row_index":15}},{"id":1153,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38866069],[9.939264936,55.388571396],[9.939422141,55.388571396],[9.939422141,55.38866069],[9.939264936,55.38866069]]]},"properties":{"id":1153,"top":7437665.5681,"id_0":1153,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437648.0681,"col_index":16,"row_index":16}},{"id":1154,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388571396],[9.939264936,55.388482103],[9.939422141,55.388482103],[9.939422141,55.388571396],[9.939264936,55.388571396]]]},"properties":{"id":1154,"top":7437648.0681,"id_0":1154,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437630.5681,"col_index":16,"row_index":17}},{"id":1155,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388482103],[9.939264936,55.388392808],[9.939422141,55.388392808],[9.939422141,55.388482103],[9.939264936,55.388482103]]]},"properties":{"id":1155,"top":7437630.5681,"id_0":1155,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437613.0681,"col_index":16,"row_index":18}},{"id":1156,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388392808],[9.939264936,55.388303514],[9.939422141,55.388303514],[9.939422141,55.388392808],[9.939264936,55.388392808]]]},"properties":{"id":1156,"top":7437613.0681,"id_0":1156,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437595.5681,"col_index":16,"row_index":19}},{"id":1157,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388303514],[9.939264936,55.38821422],[9.939422141,55.38821422],[9.939422141,55.388303514],[9.939264936,55.388303514]]]},"properties":{"id":1157,"top":7437595.5681,"id_0":1157,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437578.0681,"col_index":16,"row_index":20}},{"id":1158,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38821422],[9.939264936,55.388124925],[9.939422141,55.388124925],[9.939422141,55.38821422],[9.939264936,55.38821422]]]},"properties":{"id":1158,"top":7437578.0681,"id_0":1158,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437560.5681,"col_index":16,"row_index":21}},{"id":1159,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.388124925],[9.939264936,55.38803563],[9.939422141,55.38803563],[9.939422141,55.388124925],[9.939264936,55.388124925]]]},"properties":{"id":1159,"top":7437560.5681,"id_0":1159,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437543.0681,"col_index":16,"row_index":22}},{"id":1160,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38803563],[9.939264936,55.387946335],[9.939422141,55.387946335],[9.939422141,55.38803563],[9.939264936,55.38803563]]]},"properties":{"id":1160,"top":7437543.0681,"id_0":1160,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437525.5681,"col_index":16,"row_index":23}},{"id":1161,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387946335],[9.939264936,55.38785704],[9.939422141,55.38785704],[9.939422141,55.387946335],[9.939264936,55.387946335]]]},"properties":{"id":1161,"top":7437525.5681,"id_0":1161,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437508.0681,"col_index":16,"row_index":24}},{"id":1162,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38785704],[9.939264936,55.387767744],[9.939422141,55.387767744],[9.939422141,55.38785704],[9.939264936,55.38785704]]]},"properties":{"id":1162,"top":7437508.0681,"id_0":1162,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437490.5681,"col_index":16,"row_index":25}},{"id":1163,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387767744],[9.939264936,55.387678448],[9.939422141,55.387678448],[9.939422141,55.387767744],[9.939264936,55.387767744]]]},"properties":{"id":1163,"top":7437490.5681,"id_0":1163,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437473.0681,"col_index":16,"row_index":26}},{"id":1164,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387678448],[9.939264936,55.387589153],[9.939422141,55.387589153],[9.939422141,55.387678448],[9.939264936,55.387678448]]]},"properties":{"id":1164,"top":7437473.0681,"id_0":1164,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437455.5681,"col_index":16,"row_index":27}},{"id":1165,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387589153],[9.939264936,55.387499856],[9.939422141,55.387499856],[9.939422141,55.387589153],[9.939264936,55.387589153]]]},"properties":{"id":1165,"top":7437455.5681,"id_0":1165,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437438.0681,"col_index":16,"row_index":28}},{"id":1166,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387499856],[9.939264936,55.38741056],[9.939422141,55.38741056],[9.939422141,55.387499856],[9.939264936,55.387499856]]]},"properties":{"id":1166,"top":7437438.0681,"id_0":1166,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437420.5681,"col_index":16,"row_index":29}},{"id":1167,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38741056],[9.939264936,55.387321264],[9.939422141,55.387321264],[9.939422141,55.38741056],[9.939264936,55.38741056]]]},"properties":{"id":1167,"top":7437420.5681,"id_0":1167,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437403.0681,"col_index":16,"row_index":30}},{"id":1168,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387321264],[9.939264936,55.387231967],[9.939422141,55.387231967],[9.939422141,55.387321264],[9.939264936,55.387321264]]]},"properties":{"id":1168,"top":7437403.0681,"id_0":1168,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437385.5681,"col_index":16,"row_index":31}},{"id":1169,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387231967],[9.939264936,55.38714267],[9.939422141,55.38714267],[9.939422141,55.387231967],[9.939264936,55.387231967]]]},"properties":{"id":1169,"top":7437385.5681,"id_0":1169,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437368.0681,"col_index":16,"row_index":32}},{"id":1170,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38714267],[9.939264936,55.387053373],[9.939422141,55.387053373],[9.939422141,55.38714267],[9.939264936,55.38714267]]]},"properties":{"id":1170,"top":7437368.0681,"id_0":1170,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437350.5681,"col_index":16,"row_index":33}},{"id":1171,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.387053373],[9.939264936,55.386964076],[9.939422141,55.386964076],[9.939422141,55.387053373],[9.939264936,55.387053373]]]},"properties":{"id":1171,"top":7437350.5681,"id_0":1171,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437333.0681,"col_index":16,"row_index":34}},{"id":1172,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386964076],[9.939264936,55.386874778],[9.939422141,55.386874778],[9.939422141,55.386964076],[9.939264936,55.386964076]]]},"properties":{"id":1172,"top":7437333.0681,"id_0":1172,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437315.5681,"col_index":16,"row_index":35}},{"id":1173,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386874778],[9.939264936,55.38678548],[9.939422141,55.38678548],[9.939422141,55.386874778],[9.939264936,55.386874778]]]},"properties":{"id":1173,"top":7437315.5681,"id_0":1173,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437298.0681,"col_index":16,"row_index":36}},{"id":1174,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38678548],[9.939264936,55.386696182],[9.939422141,55.386696182],[9.939422141,55.38678548],[9.939264936,55.38678548]]]},"properties":{"id":1174,"top":7437298.0681,"id_0":1174,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437280.5681,"col_index":16,"row_index":37}},{"id":1175,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386696182],[9.939264936,55.386606884],[9.939422141,55.386606884],[9.939422141,55.386696182],[9.939264936,55.386696182]]]},"properties":{"id":1175,"top":7437280.5681,"id_0":1175,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437263.0681,"col_index":16,"row_index":38}},{"id":1176,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386606884],[9.939264936,55.386517586],[9.939422141,55.386517586],[9.939422141,55.386606884],[9.939264936,55.386606884]]]},"properties":{"id":1176,"top":7437263.0681,"id_0":1176,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437245.5681,"col_index":16,"row_index":39}},{"id":1177,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386517586],[9.939264936,55.386428287],[9.939422141,55.386428287],[9.939422141,55.386517586],[9.939264936,55.386517586]]]},"properties":{"id":1177,"top":7437245.5681,"id_0":1177,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437228.0681,"col_index":16,"row_index":40}},{"id":1178,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386428287],[9.939264936,55.386338989],[9.939422141,55.386338989],[9.939422141,55.386428287],[9.939264936,55.386428287]]]},"properties":{"id":1178,"top":7437228.0681,"id_0":1178,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437210.5681,"col_index":16,"row_index":41}},{"id":1179,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386338989],[9.939264936,55.38624969],[9.939422141,55.38624969],[9.939422141,55.386338989],[9.939264936,55.386338989]]]},"properties":{"id":1179,"top":7437210.5681,"id_0":1179,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437193.0681,"col_index":16,"row_index":42}},{"id":1180,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38624969],[9.939264936,55.386160391],[9.939422141,55.386160391],[9.939422141,55.38624969],[9.939264936,55.38624969]]]},"properties":{"id":1180,"top":7437193.0681,"id_0":1180,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437175.5681,"col_index":16,"row_index":43}},{"id":1181,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386160391],[9.939264936,55.386071091],[9.939422141,55.386071091],[9.939422141,55.386160391],[9.939264936,55.386160391]]]},"properties":{"id":1181,"top":7437175.5681,"id_0":1181,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437158.0681,"col_index":16,"row_index":44}},{"id":1182,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.386071091],[9.939264936,55.385981792],[9.939422141,55.385981792],[9.939422141,55.386071091],[9.939264936,55.386071091]]]},"properties":{"id":1182,"top":7437158.0681,"id_0":1182,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437140.5681,"col_index":16,"row_index":45}},{"id":1183,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385981792],[9.939264936,55.385892492],[9.939422141,55.385892492],[9.939422141,55.385981792],[9.939264936,55.385981792]]]},"properties":{"id":1183,"top":7437140.5681,"id_0":1183,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437123.0681,"col_index":16,"row_index":46}},{"id":1184,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385892492],[9.939264936,55.385803192],[9.939422141,55.385803192],[9.939422141,55.385892492],[9.939264936,55.385892492]]]},"properties":{"id":1184,"top":7437123.0681,"id_0":1184,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437105.5681,"col_index":16,"row_index":47}},{"id":1185,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385803192],[9.939264936,55.385713892],[9.939422141,55.385713892],[9.939422141,55.385803192],[9.939264936,55.385803192]]]},"properties":{"id":1185,"top":7437105.5681,"id_0":1185,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437088.0681,"col_index":16,"row_index":48}},{"id":1186,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385713892],[9.939264936,55.385624592],[9.939422141,55.385624592],[9.939422141,55.385713892],[9.939264936,55.385713892]]]},"properties":{"id":1186,"top":7437088.0681,"id_0":1186,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437070.5681,"col_index":16,"row_index":49}},{"id":1187,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385624592],[9.939264936,55.385535291],[9.939422141,55.385535291],[9.939422141,55.385624592],[9.939264936,55.385624592]]]},"properties":{"id":1187,"top":7437070.5681,"id_0":1187,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437053.0681,"col_index":16,"row_index":50}},{"id":1188,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385535291],[9.939264936,55.38544599],[9.939422141,55.38544599],[9.939422141,55.385535291],[9.939264936,55.385535291]]]},"properties":{"id":1188,"top":7437053.0681,"id_0":1188,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437035.5681,"col_index":16,"row_index":51}},{"id":1189,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38544599],[9.939264936,55.385356689],[9.939422141,55.385356689],[9.939422141,55.38544599],[9.939264936,55.38544599]]]},"properties":{"id":1189,"top":7437035.5681,"id_0":1189,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437018.0681,"col_index":16,"row_index":52}},{"id":1190,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385356689],[9.939264936,55.385267388],[9.939422141,55.385267388],[9.939422141,55.385356689],[9.939264936,55.385356689]]]},"properties":{"id":1190,"top":7437018.0681,"id_0":1190,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7437000.5681,"col_index":16,"row_index":53}},{"id":1191,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385267388],[9.939264936,55.385178087],[9.939422141,55.385178087],[9.939422141,55.385267388],[9.939264936,55.385267388]]]},"properties":{"id":1191,"top":7437000.5681,"id_0":1191,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436983.0681,"col_index":16,"row_index":54}},{"id":1192,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385178087],[9.939264936,55.385088785],[9.939422141,55.385088785],[9.939422141,55.385178087],[9.939264936,55.385178087]]]},"properties":{"id":1192,"top":7436983.0681,"id_0":1192,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436965.5681,"col_index":16,"row_index":55}},{"id":1193,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.385088785],[9.939264936,55.384999484],[9.939422141,55.384999484],[9.939422141,55.385088785],[9.939264936,55.385088785]]]},"properties":{"id":1193,"top":7436965.5681,"id_0":1193,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436948.0681,"col_index":16,"row_index":56}},{"id":1194,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384999484],[9.939264936,55.384910182],[9.939422141,55.384910182],[9.939422141,55.384999484],[9.939264936,55.384999484]]]},"properties":{"id":1194,"top":7436948.0681,"id_0":1194,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436930.5681,"col_index":16,"row_index":57}},{"id":1195,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384910182],[9.939264936,55.38482088],[9.939422141,55.38482088],[9.939422141,55.384910182],[9.939264936,55.384910182]]]},"properties":{"id":1195,"top":7436930.5681,"id_0":1195,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436913.0681,"col_index":16,"row_index":58}},{"id":1196,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.38482088],[9.939264936,55.384731577],[9.939422141,55.384731577],[9.939422141,55.38482088],[9.939264936,55.38482088]]]},"properties":{"id":1196,"top":7436913.0681,"id_0":1196,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436895.5681,"col_index":16,"row_index":59}},{"id":1197,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384731577],[9.939264936,55.384642275],[9.939422141,55.384642275],[9.939422141,55.384731577],[9.939264936,55.384731577]]]},"properties":{"id":1197,"top":7436895.5681,"id_0":1197,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436878.0681,"col_index":16,"row_index":60}},{"id":1198,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384642275],[9.939264936,55.384552972],[9.939422141,55.384552972],[9.939422141,55.384642275],[9.939264936,55.384642275]]]},"properties":{"id":1198,"top":7436878.0681,"id_0":1198,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436860.5681,"col_index":16,"row_index":61}},{"id":1199,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384552972],[9.939264936,55.384463669],[9.939422141,55.384463669],[9.939422141,55.384552972],[9.939264936,55.384552972]]]},"properties":{"id":1199,"top":7436860.5681,"id_0":1199,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436843.0681,"col_index":16,"row_index":62}},{"id":1200,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384463669],[9.939264936,55.384374366],[9.939422141,55.384374366],[9.939422141,55.384463669],[9.939264936,55.384463669]]]},"properties":{"id":1200,"top":7436843.0681,"id_0":1200,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436825.5681,"col_index":16,"row_index":63}},{"id":1201,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384374366],[9.939264936,55.384285062],[9.939422141,55.384285062],[9.939422141,55.384374366],[9.939264936,55.384374366]]]},"properties":{"id":1201,"top":7436825.5681,"id_0":1201,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436808.0681,"col_index":16,"row_index":64}},{"id":1202,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384285062],[9.939264936,55.384195759],[9.939422141,55.384195759],[9.939422141,55.384285062],[9.939264936,55.384285062]]]},"properties":{"id":1202,"top":7436808.0681,"id_0":1202,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436790.5681,"col_index":16,"row_index":65}},{"id":1203,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384195759],[9.939264936,55.384106455],[9.939422141,55.384106455],[9.939422141,55.384195759],[9.939264936,55.384195759]]]},"properties":{"id":1203,"top":7436790.5681,"id_0":1203,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436773.0681,"col_index":16,"row_index":66}},{"id":1204,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384106455],[9.939264936,55.384017151],[9.939422141,55.384017151],[9.939422141,55.384106455],[9.939264936,55.384106455]]]},"properties":{"id":1204,"top":7436773.0681,"id_0":1204,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436755.5681,"col_index":16,"row_index":67}},{"id":1205,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.384017151],[9.939264936,55.383927847],[9.939422141,55.383927847],[9.939422141,55.384017151],[9.939264936,55.384017151]]]},"properties":{"id":1205,"top":7436755.5681,"id_0":1205,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436738.0681,"col_index":16,"row_index":68}},{"id":1206,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.383927847],[9.939264936,55.383838543],[9.939422141,55.383838543],[9.939422141,55.383927847],[9.939264936,55.383927847]]]},"properties":{"id":1206,"top":7436738.0681,"id_0":1206,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436720.5681,"col_index":16,"row_index":69}},{"id":1207,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.383838543],[9.939264936,55.383749238],[9.939422141,55.383749238],[9.939422141,55.383838543],[9.939264936,55.383838543]]]},"properties":{"id":1207,"top":7436720.5681,"id_0":1207,"left":1106433.9115,"Label":null,"right":1106451.4115,"bottom":7436703.0681,"col_index":16,"row_index":70}},{"id":1209,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.390000071],[9.939422141,55.38991078],[9.939579346,55.38991078],[9.939579346,55.390000071],[9.939422141,55.390000071]]]},"properties":{"id":1209,"top":7437928.0681,"id_0":1209,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437910.5681,"col_index":17,"row_index":1}},{"id":1210,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38991078],[9.939422141,55.38982149],[9.939579346,55.38982149],[9.939579346,55.38991078],[9.939422141,55.38991078]]]},"properties":{"id":1210,"top":7437910.5681,"id_0":1210,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437893.0681,"col_index":17,"row_index":2}},{"id":1211,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38982149],[9.939422141,55.389732199],[9.939579346,55.389732199],[9.939579346,55.38982149],[9.939422141,55.38982149]]]},"properties":{"id":1211,"top":7437893.0681,"id_0":1211,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437875.5681,"col_index":17,"row_index":3}},{"id":1212,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389732199],[9.939422141,55.389642907],[9.939579346,55.389642907],[9.939579346,55.389732199],[9.939422141,55.389732199]]]},"properties":{"id":1212,"top":7437875.5681,"id_0":1212,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437858.0681,"col_index":17,"row_index":4}},{"id":1213,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389642907],[9.939422141,55.389553616],[9.939579346,55.389553616],[9.939579346,55.389642907],[9.939422141,55.389642907]]]},"properties":{"id":1213,"top":7437858.0681,"id_0":1213,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437840.5681,"col_index":17,"row_index":5}},{"id":1214,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389553616],[9.939422141,55.389464324],[9.939579346,55.389464324],[9.939579346,55.389553616],[9.939422141,55.389553616]]]},"properties":{"id":1214,"top":7437840.5681,"id_0":1214,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437823.0681,"col_index":17,"row_index":6}},{"id":1215,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389464324],[9.939422141,55.389375032],[9.939579346,55.389375032],[9.939579346,55.389464324],[9.939422141,55.389464324]]]},"properties":{"id":1215,"top":7437823.0681,"id_0":1215,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437805.5681,"col_index":17,"row_index":7}},{"id":1216,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389375032],[9.939422141,55.38928574],[9.939579346,55.38928574],[9.939579346,55.389375032],[9.939422141,55.389375032]]]},"properties":{"id":1216,"top":7437805.5681,"id_0":1216,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437788.0681,"col_index":17,"row_index":8}},{"id":1217,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38928574],[9.939422141,55.389196448],[9.939579346,55.389196448],[9.939579346,55.38928574],[9.939422141,55.38928574]]]},"properties":{"id":1217,"top":7437788.0681,"id_0":1217,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437770.5681,"col_index":17,"row_index":9}},{"id":1218,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389196448],[9.939422141,55.389107155],[9.939579346,55.389107155],[9.939579346,55.389196448],[9.939422141,55.389196448]]]},"properties":{"id":1218,"top":7437770.5681,"id_0":1218,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437753.0681,"col_index":17,"row_index":10}},{"id":1219,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389107155],[9.939422141,55.389017863],[9.939579346,55.389017863],[9.939579346,55.389107155],[9.939422141,55.389107155]]]},"properties":{"id":1219,"top":7437753.0681,"id_0":1219,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437735.5681,"col_index":17,"row_index":11}},{"id":1220,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.389017863],[9.939422141,55.38892857],[9.939579346,55.38892857],[9.939579346,55.389017863],[9.939422141,55.389017863]]]},"properties":{"id":1220,"top":7437735.5681,"id_0":1220,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437718.0681,"col_index":17,"row_index":12}},{"id":1221,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38892857],[9.939422141,55.388839277],[9.939579346,55.388839277],[9.939579346,55.38892857],[9.939422141,55.38892857]]]},"properties":{"id":1221,"top":7437718.0681,"id_0":1221,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437700.5681,"col_index":17,"row_index":13}},{"id":1222,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388839277],[9.939422141,55.388749984],[9.939579346,55.388749984],[9.939579346,55.388839277],[9.939422141,55.388839277]]]},"properties":{"id":1222,"top":7437700.5681,"id_0":1222,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437683.0681,"col_index":17,"row_index":14}},{"id":1223,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388749984],[9.939422141,55.38866069],[9.939579346,55.38866069],[9.939579346,55.388749984],[9.939422141,55.388749984]]]},"properties":{"id":1223,"top":7437683.0681,"id_0":1223,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437665.5681,"col_index":17,"row_index":15}},{"id":1224,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38866069],[9.939422141,55.388571396],[9.939579346,55.388571396],[9.939579346,55.38866069],[9.939422141,55.38866069]]]},"properties":{"id":1224,"top":7437665.5681,"id_0":1224,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437648.0681,"col_index":17,"row_index":16}},{"id":1225,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388571396],[9.939422141,55.388482103],[9.939579346,55.388482103],[9.939579346,55.388571396],[9.939422141,55.388571396]]]},"properties":{"id":1225,"top":7437648.0681,"id_0":1225,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437630.5681,"col_index":17,"row_index":17}},{"id":1226,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388482103],[9.939422141,55.388392808],[9.939579346,55.388392808],[9.939579346,55.388482103],[9.939422141,55.388482103]]]},"properties":{"id":1226,"top":7437630.5681,"id_0":1226,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437613.0681,"col_index":17,"row_index":18}},{"id":1227,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388392808],[9.939422141,55.388303514],[9.939579346,55.388303514],[9.939579346,55.388392808],[9.939422141,55.388392808]]]},"properties":{"id":1227,"top":7437613.0681,"id_0":1227,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437595.5681,"col_index":17,"row_index":19}},{"id":1228,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388303514],[9.939422141,55.38821422],[9.939579346,55.38821422],[9.939579346,55.388303514],[9.939422141,55.388303514]]]},"properties":{"id":1228,"top":7437595.5681,"id_0":1228,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437578.0681,"col_index":17,"row_index":20}},{"id":1229,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38821422],[9.939422141,55.388124925],[9.939579346,55.388124925],[9.939579346,55.38821422],[9.939422141,55.38821422]]]},"properties":{"id":1229,"top":7437578.0681,"id_0":1229,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437560.5681,"col_index":17,"row_index":21}},{"id":1230,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.388124925],[9.939422141,55.38803563],[9.939579346,55.38803563],[9.939579346,55.388124925],[9.939422141,55.388124925]]]},"properties":{"id":1230,"top":7437560.5681,"id_0":1230,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437543.0681,"col_index":17,"row_index":22}},{"id":1231,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38803563],[9.939422141,55.387946335],[9.939579346,55.387946335],[9.939579346,55.38803563],[9.939422141,55.38803563]]]},"properties":{"id":1231,"top":7437543.0681,"id_0":1231,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437525.5681,"col_index":17,"row_index":23}},{"id":1232,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387946335],[9.939422141,55.38785704],[9.939579346,55.38785704],[9.939579346,55.387946335],[9.939422141,55.387946335]]]},"properties":{"id":1232,"top":7437525.5681,"id_0":1232,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437508.0681,"col_index":17,"row_index":24}},{"id":1233,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38785704],[9.939422141,55.387767744],[9.939579346,55.387767744],[9.939579346,55.38785704],[9.939422141,55.38785704]]]},"properties":{"id":1233,"top":7437508.0681,"id_0":1233,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437490.5681,"col_index":17,"row_index":25}},{"id":1234,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387767744],[9.939422141,55.387678448],[9.939579346,55.387678448],[9.939579346,55.387767744],[9.939422141,55.387767744]]]},"properties":{"id":1234,"top":7437490.5681,"id_0":1234,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437473.0681,"col_index":17,"row_index":26}},{"id":1235,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387678448],[9.939422141,55.387589153],[9.939579346,55.387589153],[9.939579346,55.387678448],[9.939422141,55.387678448]]]},"properties":{"id":1235,"top":7437473.0681,"id_0":1235,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437455.5681,"col_index":17,"row_index":27}},{"id":1236,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387589153],[9.939422141,55.387499856],[9.939579346,55.387499856],[9.939579346,55.387589153],[9.939422141,55.387589153]]]},"properties":{"id":1236,"top":7437455.5681,"id_0":1236,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437438.0681,"col_index":17,"row_index":28}},{"id":1237,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387499856],[9.939422141,55.38741056],[9.939579346,55.38741056],[9.939579346,55.387499856],[9.939422141,55.387499856]]]},"properties":{"id":1237,"top":7437438.0681,"id_0":1237,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437420.5681,"col_index":17,"row_index":29}},{"id":1238,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38741056],[9.939422141,55.387321264],[9.939579346,55.387321264],[9.939579346,55.38741056],[9.939422141,55.38741056]]]},"properties":{"id":1238,"top":7437420.5681,"id_0":1238,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437403.0681,"col_index":17,"row_index":30}},{"id":1239,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387321264],[9.939422141,55.387231967],[9.939579346,55.387231967],[9.939579346,55.387321264],[9.939422141,55.387321264]]]},"properties":{"id":1239,"top":7437403.0681,"id_0":1239,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437385.5681,"col_index":17,"row_index":31}},{"id":1240,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387231967],[9.939422141,55.38714267],[9.939579346,55.38714267],[9.939579346,55.387231967],[9.939422141,55.387231967]]]},"properties":{"id":1240,"top":7437385.5681,"id_0":1240,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437368.0681,"col_index":17,"row_index":32}},{"id":1241,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38714267],[9.939422141,55.387053373],[9.939579346,55.387053373],[9.939579346,55.38714267],[9.939422141,55.38714267]]]},"properties":{"id":1241,"top":7437368.0681,"id_0":1241,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437350.5681,"col_index":17,"row_index":33}},{"id":1242,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.387053373],[9.939422141,55.386964076],[9.939579346,55.386964076],[9.939579346,55.387053373],[9.939422141,55.387053373]]]},"properties":{"id":1242,"top":7437350.5681,"id_0":1242,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437333.0681,"col_index":17,"row_index":34}},{"id":1243,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386964076],[9.939422141,55.386874778],[9.939579346,55.386874778],[9.939579346,55.386964076],[9.939422141,55.386964076]]]},"properties":{"id":1243,"top":7437333.0681,"id_0":1243,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437315.5681,"col_index":17,"row_index":35}},{"id":1244,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386874778],[9.939422141,55.38678548],[9.939579346,55.38678548],[9.939579346,55.386874778],[9.939422141,55.386874778]]]},"properties":{"id":1244,"top":7437315.5681,"id_0":1244,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437298.0681,"col_index":17,"row_index":36}},{"id":1245,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38678548],[9.939422141,55.386696182],[9.939579346,55.386696182],[9.939579346,55.38678548],[9.939422141,55.38678548]]]},"properties":{"id":1245,"top":7437298.0681,"id_0":1245,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437280.5681,"col_index":17,"row_index":37}},{"id":1246,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386696182],[9.939422141,55.386606884],[9.939579346,55.386606884],[9.939579346,55.386696182],[9.939422141,55.386696182]]]},"properties":{"id":1246,"top":7437280.5681,"id_0":1246,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437263.0681,"col_index":17,"row_index":38}},{"id":1247,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386606884],[9.939422141,55.386517586],[9.939579346,55.386517586],[9.939579346,55.386606884],[9.939422141,55.386606884]]]},"properties":{"id":1247,"top":7437263.0681,"id_0":1247,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437245.5681,"col_index":17,"row_index":39}},{"id":1248,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386517586],[9.939422141,55.386428287],[9.939579346,55.386428287],[9.939579346,55.386517586],[9.939422141,55.386517586]]]},"properties":{"id":1248,"top":7437245.5681,"id_0":1248,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437228.0681,"col_index":17,"row_index":40}},{"id":1249,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386428287],[9.939422141,55.386338989],[9.939579346,55.386338989],[9.939579346,55.386428287],[9.939422141,55.386428287]]]},"properties":{"id":1249,"top":7437228.0681,"id_0":1249,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437210.5681,"col_index":17,"row_index":41}},{"id":1250,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386338989],[9.939422141,55.38624969],[9.939579346,55.38624969],[9.939579346,55.386338989],[9.939422141,55.386338989]]]},"properties":{"id":1250,"top":7437210.5681,"id_0":1250,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437193.0681,"col_index":17,"row_index":42}},{"id":1251,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38624969],[9.939422141,55.386160391],[9.939579346,55.386160391],[9.939579346,55.38624969],[9.939422141,55.38624969]]]},"properties":{"id":1251,"top":7437193.0681,"id_0":1251,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437175.5681,"col_index":17,"row_index":43}},{"id":1252,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386160391],[9.939422141,55.386071091],[9.939579346,55.386071091],[9.939579346,55.386160391],[9.939422141,55.386160391]]]},"properties":{"id":1252,"top":7437175.5681,"id_0":1252,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437158.0681,"col_index":17,"row_index":44}},{"id":1253,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.386071091],[9.939422141,55.385981792],[9.939579346,55.385981792],[9.939579346,55.386071091],[9.939422141,55.386071091]]]},"properties":{"id":1253,"top":7437158.0681,"id_0":1253,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437140.5681,"col_index":17,"row_index":45}},{"id":1254,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385981792],[9.939422141,55.385892492],[9.939579346,55.385892492],[9.939579346,55.385981792],[9.939422141,55.385981792]]]},"properties":{"id":1254,"top":7437140.5681,"id_0":1254,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437123.0681,"col_index":17,"row_index":46}},{"id":1255,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385892492],[9.939422141,55.385803192],[9.939579346,55.385803192],[9.939579346,55.385892492],[9.939422141,55.385892492]]]},"properties":{"id":1255,"top":7437123.0681,"id_0":1255,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437105.5681,"col_index":17,"row_index":47}},{"id":1256,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385803192],[9.939422141,55.385713892],[9.939579346,55.385713892],[9.939579346,55.385803192],[9.939422141,55.385803192]]]},"properties":{"id":1256,"top":7437105.5681,"id_0":1256,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437088.0681,"col_index":17,"row_index":48}},{"id":1257,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385713892],[9.939422141,55.385624592],[9.939579346,55.385624592],[9.939579346,55.385713892],[9.939422141,55.385713892]]]},"properties":{"id":1257,"top":7437088.0681,"id_0":1257,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437070.5681,"col_index":17,"row_index":49}},{"id":1258,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385624592],[9.939422141,55.385535291],[9.939579346,55.385535291],[9.939579346,55.385624592],[9.939422141,55.385624592]]]},"properties":{"id":1258,"top":7437070.5681,"id_0":1258,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437053.0681,"col_index":17,"row_index":50}},{"id":1259,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385535291],[9.939422141,55.38544599],[9.939579346,55.38544599],[9.939579346,55.385535291],[9.939422141,55.385535291]]]},"properties":{"id":1259,"top":7437053.0681,"id_0":1259,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437035.5681,"col_index":17,"row_index":51}},{"id":1260,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38544599],[9.939422141,55.385356689],[9.939579346,55.385356689],[9.939579346,55.38544599],[9.939422141,55.38544599]]]},"properties":{"id":1260,"top":7437035.5681,"id_0":1260,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437018.0681,"col_index":17,"row_index":52}},{"id":1261,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385356689],[9.939422141,55.385267388],[9.939579346,55.385267388],[9.939579346,55.385356689],[9.939422141,55.385356689]]]},"properties":{"id":1261,"top":7437018.0681,"id_0":1261,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7437000.5681,"col_index":17,"row_index":53}},{"id":1262,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385267388],[9.939422141,55.385178087],[9.939579346,55.385178087],[9.939579346,55.385267388],[9.939422141,55.385267388]]]},"properties":{"id":1262,"top":7437000.5681,"id_0":1262,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436983.0681,"col_index":17,"row_index":54}},{"id":1263,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385178087],[9.939422141,55.385088785],[9.939579346,55.385088785],[9.939579346,55.385178087],[9.939422141,55.385178087]]]},"properties":{"id":1263,"top":7436983.0681,"id_0":1263,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436965.5681,"col_index":17,"row_index":55}},{"id":1264,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.385088785],[9.939422141,55.384999484],[9.939579346,55.384999484],[9.939579346,55.385088785],[9.939422141,55.385088785]]]},"properties":{"id":1264,"top":7436965.5681,"id_0":1264,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436948.0681,"col_index":17,"row_index":56}},{"id":1265,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384999484],[9.939422141,55.384910182],[9.939579346,55.384910182],[9.939579346,55.384999484],[9.939422141,55.384999484]]]},"properties":{"id":1265,"top":7436948.0681,"id_0":1265,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436930.5681,"col_index":17,"row_index":57}},{"id":1266,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384910182],[9.939422141,55.38482088],[9.939579346,55.38482088],[9.939579346,55.384910182],[9.939422141,55.384910182]]]},"properties":{"id":1266,"top":7436930.5681,"id_0":1266,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436913.0681,"col_index":17,"row_index":58}},{"id":1267,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.38482088],[9.939422141,55.384731577],[9.939579346,55.384731577],[9.939579346,55.38482088],[9.939422141,55.38482088]]]},"properties":{"id":1267,"top":7436913.0681,"id_0":1267,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436895.5681,"col_index":17,"row_index":59}},{"id":1268,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384731577],[9.939422141,55.384642275],[9.939579346,55.384642275],[9.939579346,55.384731577],[9.939422141,55.384731577]]]},"properties":{"id":1268,"top":7436895.5681,"id_0":1268,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436878.0681,"col_index":17,"row_index":60}},{"id":1269,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384642275],[9.939422141,55.384552972],[9.939579346,55.384552972],[9.939579346,55.384642275],[9.939422141,55.384642275]]]},"properties":{"id":1269,"top":7436878.0681,"id_0":1269,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436860.5681,"col_index":17,"row_index":61}},{"id":1270,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384552972],[9.939422141,55.384463669],[9.939579346,55.384463669],[9.939579346,55.384552972],[9.939422141,55.384552972]]]},"properties":{"id":1270,"top":7436860.5681,"id_0":1270,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436843.0681,"col_index":17,"row_index":62}},{"id":1271,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384463669],[9.939422141,55.384374366],[9.939579346,55.384374366],[9.939579346,55.384463669],[9.939422141,55.384463669]]]},"properties":{"id":1271,"top":7436843.0681,"id_0":1271,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436825.5681,"col_index":17,"row_index":63}},{"id":1272,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384374366],[9.939422141,55.384285062],[9.939579346,55.384285062],[9.939579346,55.384374366],[9.939422141,55.384374366]]]},"properties":{"id":1272,"top":7436825.5681,"id_0":1272,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436808.0681,"col_index":17,"row_index":64}},{"id":1273,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384285062],[9.939422141,55.384195759],[9.939579346,55.384195759],[9.939579346,55.384285062],[9.939422141,55.384285062]]]},"properties":{"id":1273,"top":7436808.0681,"id_0":1273,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436790.5681,"col_index":17,"row_index":65}},{"id":1274,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384195759],[9.939422141,55.384106455],[9.939579346,55.384106455],[9.939579346,55.384195759],[9.939422141,55.384195759]]]},"properties":{"id":1274,"top":7436790.5681,"id_0":1274,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436773.0681,"col_index":17,"row_index":66}},{"id":1275,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384106455],[9.939422141,55.384017151],[9.939579346,55.384017151],[9.939579346,55.384106455],[9.939422141,55.384106455]]]},"properties":{"id":1275,"top":7436773.0681,"id_0":1275,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436755.5681,"col_index":17,"row_index":67}},{"id":1276,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.384017151],[9.939422141,55.383927847],[9.939579346,55.383927847],[9.939579346,55.384017151],[9.939422141,55.384017151]]]},"properties":{"id":1276,"top":7436755.5681,"id_0":1276,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436738.0681,"col_index":17,"row_index":68}},{"id":1277,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.383927847],[9.939422141,55.383838543],[9.939579346,55.383838543],[9.939579346,55.383927847],[9.939422141,55.383927847]]]},"properties":{"id":1277,"top":7436738.0681,"id_0":1277,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436720.5681,"col_index":17,"row_index":69}},{"id":1278,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.383838543],[9.939422141,55.383749238],[9.939579346,55.383749238],[9.939579346,55.383838543],[9.939422141,55.383838543]]]},"properties":{"id":1278,"top":7436720.5681,"id_0":1278,"left":1106451.4115,"Label":null,"right":1106468.9115,"bottom":7436703.0681,"col_index":17,"row_index":70}},{"id":1280,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.390000071],[9.939579346,55.38991078],[9.939736551,55.38991078],[9.939736551,55.390000071],[9.939579346,55.390000071]]]},"properties":{"id":1280,"top":7437928.0681,"id_0":1280,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437910.5681,"col_index":18,"row_index":1}},{"id":1281,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38991078],[9.939579346,55.38982149],[9.939736551,55.38982149],[9.939736551,55.38991078],[9.939579346,55.38991078]]]},"properties":{"id":1281,"top":7437910.5681,"id_0":1281,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437893.0681,"col_index":18,"row_index":2}},{"id":1282,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38982149],[9.939579346,55.389732199],[9.939736551,55.389732199],[9.939736551,55.38982149],[9.939579346,55.38982149]]]},"properties":{"id":1282,"top":7437893.0681,"id_0":1282,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437875.5681,"col_index":18,"row_index":3}},{"id":1283,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389732199],[9.939579346,55.389642907],[9.939736551,55.389642907],[9.939736551,55.389732199],[9.939579346,55.389732199]]]},"properties":{"id":1283,"top":7437875.5681,"id_0":1283,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437858.0681,"col_index":18,"row_index":4}},{"id":1284,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389642907],[9.939579346,55.389553616],[9.939736551,55.389553616],[9.939736551,55.389642907],[9.939579346,55.389642907]]]},"properties":{"id":1284,"top":7437858.0681,"id_0":1284,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437840.5681,"col_index":18,"row_index":5}},{"id":1285,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389553616],[9.939579346,55.389464324],[9.939736551,55.389464324],[9.939736551,55.389553616],[9.939579346,55.389553616]]]},"properties":{"id":1285,"top":7437840.5681,"id_0":1285,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437823.0681,"col_index":18,"row_index":6}},{"id":1286,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389464324],[9.939579346,55.389375032],[9.939736551,55.389375032],[9.939736551,55.389464324],[9.939579346,55.389464324]]]},"properties":{"id":1286,"top":7437823.0681,"id_0":1286,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437805.5681,"col_index":18,"row_index":7}},{"id":1287,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389375032],[9.939579346,55.38928574],[9.939736551,55.38928574],[9.939736551,55.389375032],[9.939579346,55.389375032]]]},"properties":{"id":1287,"top":7437805.5681,"id_0":1287,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437788.0681,"col_index":18,"row_index":8}},{"id":1288,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38928574],[9.939579346,55.389196448],[9.939736551,55.389196448],[9.939736551,55.38928574],[9.939579346,55.38928574]]]},"properties":{"id":1288,"top":7437788.0681,"id_0":1288,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437770.5681,"col_index":18,"row_index":9}},{"id":1289,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389196448],[9.939579346,55.389107155],[9.939736551,55.389107155],[9.939736551,55.389196448],[9.939579346,55.389196448]]]},"properties":{"id":1289,"top":7437770.5681,"id_0":1289,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437753.0681,"col_index":18,"row_index":10}},{"id":1290,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389107155],[9.939579346,55.389017863],[9.939736551,55.389017863],[9.939736551,55.389107155],[9.939579346,55.389107155]]]},"properties":{"id":1290,"top":7437753.0681,"id_0":1290,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437735.5681,"col_index":18,"row_index":11}},{"id":1291,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.389017863],[9.939579346,55.38892857],[9.939736551,55.38892857],[9.939736551,55.389017863],[9.939579346,55.389017863]]]},"properties":{"id":1291,"top":7437735.5681,"id_0":1291,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437718.0681,"col_index":18,"row_index":12}},{"id":1292,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38892857],[9.939579346,55.388839277],[9.939736551,55.388839277],[9.939736551,55.38892857],[9.939579346,55.38892857]]]},"properties":{"id":1292,"top":7437718.0681,"id_0":1292,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437700.5681,"col_index":18,"row_index":13}},{"id":1293,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388839277],[9.939579346,55.388749984],[9.939736551,55.388749984],[9.939736551,55.388839277],[9.939579346,55.388839277]]]},"properties":{"id":1293,"top":7437700.5681,"id_0":1293,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437683.0681,"col_index":18,"row_index":14}},{"id":1294,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388749984],[9.939579346,55.38866069],[9.939736551,55.38866069],[9.939736551,55.388749984],[9.939579346,55.388749984]]]},"properties":{"id":1294,"top":7437683.0681,"id_0":1294,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437665.5681,"col_index":18,"row_index":15}},{"id":1295,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38866069],[9.939579346,55.388571396],[9.939736551,55.388571396],[9.939736551,55.38866069],[9.939579346,55.38866069]]]},"properties":{"id":1295,"top":7437665.5681,"id_0":1295,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437648.0681,"col_index":18,"row_index":16}},{"id":1296,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388571396],[9.939579346,55.388482103],[9.939736551,55.388482103],[9.939736551,55.388571396],[9.939579346,55.388571396]]]},"properties":{"id":1296,"top":7437648.0681,"id_0":1296,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437630.5681,"col_index":18,"row_index":17}},{"id":1297,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388482103],[9.939579346,55.388392808],[9.939736551,55.388392808],[9.939736551,55.388482103],[9.939579346,55.388482103]]]},"properties":{"id":1297,"top":7437630.5681,"id_0":1297,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437613.0681,"col_index":18,"row_index":18}},{"id":1298,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388392808],[9.939579346,55.388303514],[9.939736551,55.388303514],[9.939736551,55.388392808],[9.939579346,55.388392808]]]},"properties":{"id":1298,"top":7437613.0681,"id_0":1298,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437595.5681,"col_index":18,"row_index":19}},{"id":1299,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388303514],[9.939579346,55.38821422],[9.939736551,55.38821422],[9.939736551,55.388303514],[9.939579346,55.388303514]]]},"properties":{"id":1299,"top":7437595.5681,"id_0":1299,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437578.0681,"col_index":18,"row_index":20}},{"id":1300,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38821422],[9.939579346,55.388124925],[9.939736551,55.388124925],[9.939736551,55.38821422],[9.939579346,55.38821422]]]},"properties":{"id":1300,"top":7437578.0681,"id_0":1300,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437560.5681,"col_index":18,"row_index":21}},{"id":1301,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.388124925],[9.939579346,55.38803563],[9.939736551,55.38803563],[9.939736551,55.388124925],[9.939579346,55.388124925]]]},"properties":{"id":1301,"top":7437560.5681,"id_0":1301,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437543.0681,"col_index":18,"row_index":22}},{"id":1302,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38803563],[9.939579346,55.387946335],[9.939736551,55.387946335],[9.939736551,55.38803563],[9.939579346,55.38803563]]]},"properties":{"id":1302,"top":7437543.0681,"id_0":1302,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437525.5681,"col_index":18,"row_index":23}},{"id":1303,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387946335],[9.939579346,55.38785704],[9.939736551,55.38785704],[9.939736551,55.387946335],[9.939579346,55.387946335]]]},"properties":{"id":1303,"top":7437525.5681,"id_0":1303,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437508.0681,"col_index":18,"row_index":24}},{"id":1304,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38785704],[9.939579346,55.387767744],[9.939736551,55.387767744],[9.939736551,55.38785704],[9.939579346,55.38785704]]]},"properties":{"id":1304,"top":7437508.0681,"id_0":1304,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437490.5681,"col_index":18,"row_index":25}},{"id":1305,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387767744],[9.939579346,55.387678448],[9.939736551,55.387678448],[9.939736551,55.387767744],[9.939579346,55.387767744]]]},"properties":{"id":1305,"top":7437490.5681,"id_0":1305,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437473.0681,"col_index":18,"row_index":26}},{"id":1306,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387678448],[9.939579346,55.387589153],[9.939736551,55.387589153],[9.939736551,55.387678448],[9.939579346,55.387678448]]]},"properties":{"id":1306,"top":7437473.0681,"id_0":1306,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437455.5681,"col_index":18,"row_index":27}},{"id":1307,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387589153],[9.939579346,55.387499856],[9.939736551,55.387499856],[9.939736551,55.387589153],[9.939579346,55.387589153]]]},"properties":{"id":1307,"top":7437455.5681,"id_0":1307,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437438.0681,"col_index":18,"row_index":28}},{"id":1308,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387499856],[9.939579346,55.38741056],[9.939736551,55.38741056],[9.939736551,55.387499856],[9.939579346,55.387499856]]]},"properties":{"id":1308,"top":7437438.0681,"id_0":1308,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437420.5681,"col_index":18,"row_index":29}},{"id":1309,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38741056],[9.939579346,55.387321264],[9.939736551,55.387321264],[9.939736551,55.38741056],[9.939579346,55.38741056]]]},"properties":{"id":1309,"top":7437420.5681,"id_0":1309,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437403.0681,"col_index":18,"row_index":30}},{"id":1310,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387321264],[9.939579346,55.387231967],[9.939736551,55.387231967],[9.939736551,55.387321264],[9.939579346,55.387321264]]]},"properties":{"id":1310,"top":7437403.0681,"id_0":1310,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437385.5681,"col_index":18,"row_index":31}},{"id":1311,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387231967],[9.939579346,55.38714267],[9.939736551,55.38714267],[9.939736551,55.387231967],[9.939579346,55.387231967]]]},"properties":{"id":1311,"top":7437385.5681,"id_0":1311,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437368.0681,"col_index":18,"row_index":32}},{"id":1312,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38714267],[9.939579346,55.387053373],[9.939736551,55.387053373],[9.939736551,55.38714267],[9.939579346,55.38714267]]]},"properties":{"id":1312,"top":7437368.0681,"id_0":1312,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437350.5681,"col_index":18,"row_index":33}},{"id":1313,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.387053373],[9.939579346,55.386964076],[9.939736551,55.386964076],[9.939736551,55.387053373],[9.939579346,55.387053373]]]},"properties":{"id":1313,"top":7437350.5681,"id_0":1313,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437333.0681,"col_index":18,"row_index":34}},{"id":1314,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386964076],[9.939579346,55.386874778],[9.939736551,55.386874778],[9.939736551,55.386964076],[9.939579346,55.386964076]]]},"properties":{"id":1314,"top":7437333.0681,"id_0":1314,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437315.5681,"col_index":18,"row_index":35}},{"id":1315,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386874778],[9.939579346,55.38678548],[9.939736551,55.38678548],[9.939736551,55.386874778],[9.939579346,55.386874778]]]},"properties":{"id":1315,"top":7437315.5681,"id_0":1315,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437298.0681,"col_index":18,"row_index":36}},{"id":1316,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38678548],[9.939579346,55.386696182],[9.939736551,55.386696182],[9.939736551,55.38678548],[9.939579346,55.38678548]]]},"properties":{"id":1316,"top":7437298.0681,"id_0":1316,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437280.5681,"col_index":18,"row_index":37}},{"id":1317,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386696182],[9.939579346,55.386606884],[9.939736551,55.386606884],[9.939736551,55.386696182],[9.939579346,55.386696182]]]},"properties":{"id":1317,"top":7437280.5681,"id_0":1317,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437263.0681,"col_index":18,"row_index":38}},{"id":1318,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386606884],[9.939579346,55.386517586],[9.939736551,55.386517586],[9.939736551,55.386606884],[9.939579346,55.386606884]]]},"properties":{"id":1318,"top":7437263.0681,"id_0":1318,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437245.5681,"col_index":18,"row_index":39}},{"id":1319,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386517586],[9.939579346,55.386428287],[9.939736551,55.386428287],[9.939736551,55.386517586],[9.939579346,55.386517586]]]},"properties":{"id":1319,"top":7437245.5681,"id_0":1319,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437228.0681,"col_index":18,"row_index":40}},{"id":1320,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386428287],[9.939579346,55.386338989],[9.939736551,55.386338989],[9.939736551,55.386428287],[9.939579346,55.386428287]]]},"properties":{"id":1320,"top":7437228.0681,"id_0":1320,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437210.5681,"col_index":18,"row_index":41}},{"id":1321,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386338989],[9.939579346,55.38624969],[9.939736551,55.38624969],[9.939736551,55.386338989],[9.939579346,55.386338989]]]},"properties":{"id":1321,"top":7437210.5681,"id_0":1321,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437193.0681,"col_index":18,"row_index":42}},{"id":1322,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38624969],[9.939579346,55.386160391],[9.939736551,55.386160391],[9.939736551,55.38624969],[9.939579346,55.38624969]]]},"properties":{"id":1322,"top":7437193.0681,"id_0":1322,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437175.5681,"col_index":18,"row_index":43}},{"id":1323,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386160391],[9.939579346,55.386071091],[9.939736551,55.386071091],[9.939736551,55.386160391],[9.939579346,55.386160391]]]},"properties":{"id":1323,"top":7437175.5681,"id_0":1323,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437158.0681,"col_index":18,"row_index":44}},{"id":1324,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.386071091],[9.939579346,55.385981792],[9.939736551,55.385981792],[9.939736551,55.386071091],[9.939579346,55.386071091]]]},"properties":{"id":1324,"top":7437158.0681,"id_0":1324,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437140.5681,"col_index":18,"row_index":45}},{"id":1325,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385981792],[9.939579346,55.385892492],[9.939736551,55.385892492],[9.939736551,55.385981792],[9.939579346,55.385981792]]]},"properties":{"id":1325,"top":7437140.5681,"id_0":1325,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437123.0681,"col_index":18,"row_index":46}},{"id":1326,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385892492],[9.939579346,55.385803192],[9.939736551,55.385803192],[9.939736551,55.385892492],[9.939579346,55.385892492]]]},"properties":{"id":1326,"top":7437123.0681,"id_0":1326,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437105.5681,"col_index":18,"row_index":47}},{"id":1327,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385803192],[9.939579346,55.385713892],[9.939736551,55.385713892],[9.939736551,55.385803192],[9.939579346,55.385803192]]]},"properties":{"id":1327,"top":7437105.5681,"id_0":1327,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437088.0681,"col_index":18,"row_index":48}},{"id":1328,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385713892],[9.939579346,55.385624592],[9.939736551,55.385624592],[9.939736551,55.385713892],[9.939579346,55.385713892]]]},"properties":{"id":1328,"top":7437088.0681,"id_0":1328,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437070.5681,"col_index":18,"row_index":49}},{"id":1329,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385624592],[9.939579346,55.385535291],[9.939736551,55.385535291],[9.939736551,55.385624592],[9.939579346,55.385624592]]]},"properties":{"id":1329,"top":7437070.5681,"id_0":1329,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437053.0681,"col_index":18,"row_index":50}},{"id":1330,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385535291],[9.939579346,55.38544599],[9.939736551,55.38544599],[9.939736551,55.385535291],[9.939579346,55.385535291]]]},"properties":{"id":1330,"top":7437053.0681,"id_0":1330,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437035.5681,"col_index":18,"row_index":51}},{"id":1331,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38544599],[9.939579346,55.385356689],[9.939736551,55.385356689],[9.939736551,55.38544599],[9.939579346,55.38544599]]]},"properties":{"id":1331,"top":7437035.5681,"id_0":1331,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437018.0681,"col_index":18,"row_index":52}},{"id":1332,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385356689],[9.939579346,55.385267388],[9.939736551,55.385267388],[9.939736551,55.385356689],[9.939579346,55.385356689]]]},"properties":{"id":1332,"top":7437018.0681,"id_0":1332,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7437000.5681,"col_index":18,"row_index":53}},{"id":1333,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385267388],[9.939579346,55.385178087],[9.939736551,55.385178087],[9.939736551,55.385267388],[9.939579346,55.385267388]]]},"properties":{"id":1333,"top":7437000.5681,"id_0":1333,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436983.0681,"col_index":18,"row_index":54}},{"id":1334,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385178087],[9.939579346,55.385088785],[9.939736551,55.385088785],[9.939736551,55.385178087],[9.939579346,55.385178087]]]},"properties":{"id":1334,"top":7436983.0681,"id_0":1334,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436965.5681,"col_index":18,"row_index":55}},{"id":1335,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.385088785],[9.939579346,55.384999484],[9.939736551,55.384999484],[9.939736551,55.385088785],[9.939579346,55.385088785]]]},"properties":{"id":1335,"top":7436965.5681,"id_0":1335,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436948.0681,"col_index":18,"row_index":56}},{"id":1336,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384999484],[9.939579346,55.384910182],[9.939736551,55.384910182],[9.939736551,55.384999484],[9.939579346,55.384999484]]]},"properties":{"id":1336,"top":7436948.0681,"id_0":1336,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436930.5681,"col_index":18,"row_index":57}},{"id":1337,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384910182],[9.939579346,55.38482088],[9.939736551,55.38482088],[9.939736551,55.384910182],[9.939579346,55.384910182]]]},"properties":{"id":1337,"top":7436930.5681,"id_0":1337,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436913.0681,"col_index":18,"row_index":58}},{"id":1338,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.38482088],[9.939579346,55.384731577],[9.939736551,55.384731577],[9.939736551,55.38482088],[9.939579346,55.38482088]]]},"properties":{"id":1338,"top":7436913.0681,"id_0":1338,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436895.5681,"col_index":18,"row_index":59}},{"id":1339,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384731577],[9.939579346,55.384642275],[9.939736551,55.384642275],[9.939736551,55.384731577],[9.939579346,55.384731577]]]},"properties":{"id":1339,"top":7436895.5681,"id_0":1339,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436878.0681,"col_index":18,"row_index":60}},{"id":1340,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384642275],[9.939579346,55.384552972],[9.939736551,55.384552972],[9.939736551,55.384642275],[9.939579346,55.384642275]]]},"properties":{"id":1340,"top":7436878.0681,"id_0":1340,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436860.5681,"col_index":18,"row_index":61}},{"id":1341,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384552972],[9.939579346,55.384463669],[9.939736551,55.384463669],[9.939736551,55.384552972],[9.939579346,55.384552972]]]},"properties":{"id":1341,"top":7436860.5681,"id_0":1341,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436843.0681,"col_index":18,"row_index":62}},{"id":1342,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384463669],[9.939579346,55.384374366],[9.939736551,55.384374366],[9.939736551,55.384463669],[9.939579346,55.384463669]]]},"properties":{"id":1342,"top":7436843.0681,"id_0":1342,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436825.5681,"col_index":18,"row_index":63}},{"id":1343,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384374366],[9.939579346,55.384285062],[9.939736551,55.384285062],[9.939736551,55.384374366],[9.939579346,55.384374366]]]},"properties":{"id":1343,"top":7436825.5681,"id_0":1343,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436808.0681,"col_index":18,"row_index":64}},{"id":1344,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384285062],[9.939579346,55.384195759],[9.939736551,55.384195759],[9.939736551,55.384285062],[9.939579346,55.384285062]]]},"properties":{"id":1344,"top":7436808.0681,"id_0":1344,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436790.5681,"col_index":18,"row_index":65}},{"id":1345,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384195759],[9.939579346,55.384106455],[9.939736551,55.384106455],[9.939736551,55.384195759],[9.939579346,55.384195759]]]},"properties":{"id":1345,"top":7436790.5681,"id_0":1345,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436773.0681,"col_index":18,"row_index":66}},{"id":1346,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384106455],[9.939579346,55.384017151],[9.939736551,55.384017151],[9.939736551,55.384106455],[9.939579346,55.384106455]]]},"properties":{"id":1346,"top":7436773.0681,"id_0":1346,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436755.5681,"col_index":18,"row_index":67}},{"id":1347,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.384017151],[9.939579346,55.383927847],[9.939736551,55.383927847],[9.939736551,55.384017151],[9.939579346,55.384017151]]]},"properties":{"id":1347,"top":7436755.5681,"id_0":1347,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436738.0681,"col_index":18,"row_index":68}},{"id":1348,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.383927847],[9.939579346,55.383838543],[9.939736551,55.383838543],[9.939736551,55.383927847],[9.939579346,55.383927847]]]},"properties":{"id":1348,"top":7436738.0681,"id_0":1348,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436720.5681,"col_index":18,"row_index":69}},{"id":1349,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.383838543],[9.939579346,55.383749238],[9.939736551,55.383749238],[9.939736551,55.383838543],[9.939579346,55.383838543]]]},"properties":{"id":1349,"top":7436720.5681,"id_0":1349,"left":1106468.9115,"Label":null,"right":1106486.4115,"bottom":7436703.0681,"col_index":18,"row_index":70}},{"id":1351,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.390000071],[9.939736551,55.38991078],[9.939893756,55.38991078],[9.939893756,55.390000071],[9.939736551,55.390000071]]]},"properties":{"id":1351,"top":7437928.0681,"id_0":1351,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437910.5681,"col_index":19,"row_index":1}},{"id":1352,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38991078],[9.939736551,55.38982149],[9.939893756,55.38982149],[9.939893756,55.38991078],[9.939736551,55.38991078]]]},"properties":{"id":1352,"top":7437910.5681,"id_0":1352,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437893.0681,"col_index":19,"row_index":2}},{"id":1353,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38982149],[9.939736551,55.389732199],[9.939893756,55.389732199],[9.939893756,55.38982149],[9.939736551,55.38982149]]]},"properties":{"id":1353,"top":7437893.0681,"id_0":1353,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437875.5681,"col_index":19,"row_index":3}},{"id":1354,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389732199],[9.939736551,55.389642907],[9.939893756,55.389642907],[9.939893756,55.389732199],[9.939736551,55.389732199]]]},"properties":{"id":1354,"top":7437875.5681,"id_0":1354,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437858.0681,"col_index":19,"row_index":4}},{"id":1355,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389642907],[9.939736551,55.389553616],[9.939893756,55.389553616],[9.939893756,55.389642907],[9.939736551,55.389642907]]]},"properties":{"id":1355,"top":7437858.0681,"id_0":1355,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437840.5681,"col_index":19,"row_index":5}},{"id":1356,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389553616],[9.939736551,55.389464324],[9.939893756,55.389464324],[9.939893756,55.389553616],[9.939736551,55.389553616]]]},"properties":{"id":1356,"top":7437840.5681,"id_0":1356,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437823.0681,"col_index":19,"row_index":6}},{"id":1357,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389464324],[9.939736551,55.389375032],[9.939893756,55.389375032],[9.939893756,55.389464324],[9.939736551,55.389464324]]]},"properties":{"id":1357,"top":7437823.0681,"id_0":1357,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437805.5681,"col_index":19,"row_index":7}},{"id":1358,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389375032],[9.939736551,55.38928574],[9.939893756,55.38928574],[9.939893756,55.389375032],[9.939736551,55.389375032]]]},"properties":{"id":1358,"top":7437805.5681,"id_0":1358,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437788.0681,"col_index":19,"row_index":8}},{"id":1359,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38928574],[9.939736551,55.389196448],[9.939893756,55.389196448],[9.939893756,55.38928574],[9.939736551,55.38928574]]]},"properties":{"id":1359,"top":7437788.0681,"id_0":1359,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437770.5681,"col_index":19,"row_index":9}},{"id":1360,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389196448],[9.939736551,55.389107155],[9.939893756,55.389107155],[9.939893756,55.389196448],[9.939736551,55.389196448]]]},"properties":{"id":1360,"top":7437770.5681,"id_0":1360,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437753.0681,"col_index":19,"row_index":10}},{"id":1361,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389107155],[9.939736551,55.389017863],[9.939893756,55.389017863],[9.939893756,55.389107155],[9.939736551,55.389107155]]]},"properties":{"id":1361,"top":7437753.0681,"id_0":1361,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437735.5681,"col_index":19,"row_index":11}},{"id":1362,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.389017863],[9.939736551,55.38892857],[9.939893756,55.38892857],[9.939893756,55.389017863],[9.939736551,55.389017863]]]},"properties":{"id":1362,"top":7437735.5681,"id_0":1362,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437718.0681,"col_index":19,"row_index":12}},{"id":1363,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38892857],[9.939736551,55.388839277],[9.939893756,55.388839277],[9.939893756,55.38892857],[9.939736551,55.38892857]]]},"properties":{"id":1363,"top":7437718.0681,"id_0":1363,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437700.5681,"col_index":19,"row_index":13}},{"id":1364,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388839277],[9.939736551,55.388749984],[9.939893756,55.388749984],[9.939893756,55.388839277],[9.939736551,55.388839277]]]},"properties":{"id":1364,"top":7437700.5681,"id_0":1364,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437683.0681,"col_index":19,"row_index":14}},{"id":1365,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388749984],[9.939736551,55.38866069],[9.939893756,55.38866069],[9.939893756,55.388749984],[9.939736551,55.388749984]]]},"properties":{"id":1365,"top":7437683.0681,"id_0":1365,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437665.5681,"col_index":19,"row_index":15}},{"id":1366,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38866069],[9.939736551,55.388571396],[9.939893756,55.388571396],[9.939893756,55.38866069],[9.939736551,55.38866069]]]},"properties":{"id":1366,"top":7437665.5681,"id_0":1366,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437648.0681,"col_index":19,"row_index":16}},{"id":1367,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388571396],[9.939736551,55.388482103],[9.939893756,55.388482103],[9.939893756,55.388571396],[9.939736551,55.388571396]]]},"properties":{"id":1367,"top":7437648.0681,"id_0":1367,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437630.5681,"col_index":19,"row_index":17}},{"id":1368,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388482103],[9.939736551,55.388392808],[9.939893756,55.388392808],[9.939893756,55.388482103],[9.939736551,55.388482103]]]},"properties":{"id":1368,"top":7437630.5681,"id_0":1368,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437613.0681,"col_index":19,"row_index":18}},{"id":1369,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388392808],[9.939736551,55.388303514],[9.939893756,55.388303514],[9.939893756,55.388392808],[9.939736551,55.388392808]]]},"properties":{"id":1369,"top":7437613.0681,"id_0":1369,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437595.5681,"col_index":19,"row_index":19}},{"id":1370,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388303514],[9.939736551,55.38821422],[9.939893756,55.38821422],[9.939893756,55.388303514],[9.939736551,55.388303514]]]},"properties":{"id":1370,"top":7437595.5681,"id_0":1370,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437578.0681,"col_index":19,"row_index":20}},{"id":1371,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38821422],[9.939736551,55.388124925],[9.939893756,55.388124925],[9.939893756,55.38821422],[9.939736551,55.38821422]]]},"properties":{"id":1371,"top":7437578.0681,"id_0":1371,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437560.5681,"col_index":19,"row_index":21}},{"id":1372,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.388124925],[9.939736551,55.38803563],[9.939893756,55.38803563],[9.939893756,55.388124925],[9.939736551,55.388124925]]]},"properties":{"id":1372,"top":7437560.5681,"id_0":1372,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437543.0681,"col_index":19,"row_index":22}},{"id":1373,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38803563],[9.939736551,55.387946335],[9.939893756,55.387946335],[9.939893756,55.38803563],[9.939736551,55.38803563]]]},"properties":{"id":1373,"top":7437543.0681,"id_0":1373,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437525.5681,"col_index":19,"row_index":23}},{"id":1374,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387946335],[9.939736551,55.38785704],[9.939893756,55.38785704],[9.939893756,55.387946335],[9.939736551,55.387946335]]]},"properties":{"id":1374,"top":7437525.5681,"id_0":1374,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437508.0681,"col_index":19,"row_index":24}},{"id":1375,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38785704],[9.939736551,55.387767744],[9.939893756,55.387767744],[9.939893756,55.38785704],[9.939736551,55.38785704]]]},"properties":{"id":1375,"top":7437508.0681,"id_0":1375,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437490.5681,"col_index":19,"row_index":25}},{"id":1376,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387767744],[9.939736551,55.387678448],[9.939893756,55.387678448],[9.939893756,55.387767744],[9.939736551,55.387767744]]]},"properties":{"id":1376,"top":7437490.5681,"id_0":1376,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437473.0681,"col_index":19,"row_index":26}},{"id":1377,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387678448],[9.939736551,55.387589153],[9.939893756,55.387589153],[9.939893756,55.387678448],[9.939736551,55.387678448]]]},"properties":{"id":1377,"top":7437473.0681,"id_0":1377,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437455.5681,"col_index":19,"row_index":27}},{"id":1378,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387589153],[9.939736551,55.387499856],[9.939893756,55.387499856],[9.939893756,55.387589153],[9.939736551,55.387589153]]]},"properties":{"id":1378,"top":7437455.5681,"id_0":1378,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437438.0681,"col_index":19,"row_index":28}},{"id":1379,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387499856],[9.939736551,55.38741056],[9.939893756,55.38741056],[9.939893756,55.387499856],[9.939736551,55.387499856]]]},"properties":{"id":1379,"top":7437438.0681,"id_0":1379,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437420.5681,"col_index":19,"row_index":29}},{"id":1380,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38741056],[9.939736551,55.387321264],[9.939893756,55.387321264],[9.939893756,55.38741056],[9.939736551,55.38741056]]]},"properties":{"id":1380,"top":7437420.5681,"id_0":1380,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437403.0681,"col_index":19,"row_index":30}},{"id":1381,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387321264],[9.939736551,55.387231967],[9.939893756,55.387231967],[9.939893756,55.387321264],[9.939736551,55.387321264]]]},"properties":{"id":1381,"top":7437403.0681,"id_0":1381,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437385.5681,"col_index":19,"row_index":31}},{"id":1382,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387231967],[9.939736551,55.38714267],[9.939893756,55.38714267],[9.939893756,55.387231967],[9.939736551,55.387231967]]]},"properties":{"id":1382,"top":7437385.5681,"id_0":1382,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437368.0681,"col_index":19,"row_index":32}},{"id":1383,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38714267],[9.939736551,55.387053373],[9.939893756,55.387053373],[9.939893756,55.38714267],[9.939736551,55.38714267]]]},"properties":{"id":1383,"top":7437368.0681,"id_0":1383,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437350.5681,"col_index":19,"row_index":33}},{"id":1384,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.387053373],[9.939736551,55.386964076],[9.939893756,55.386964076],[9.939893756,55.387053373],[9.939736551,55.387053373]]]},"properties":{"id":1384,"top":7437350.5681,"id_0":1384,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437333.0681,"col_index":19,"row_index":34}},{"id":1385,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386964076],[9.939736551,55.386874778],[9.939893756,55.386874778],[9.939893756,55.386964076],[9.939736551,55.386964076]]]},"properties":{"id":1385,"top":7437333.0681,"id_0":1385,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437315.5681,"col_index":19,"row_index":35}},{"id":1386,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386874778],[9.939736551,55.38678548],[9.939893756,55.38678548],[9.939893756,55.386874778],[9.939736551,55.386874778]]]},"properties":{"id":1386,"top":7437315.5681,"id_0":1386,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437298.0681,"col_index":19,"row_index":36}},{"id":1387,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38678548],[9.939736551,55.386696182],[9.939893756,55.386696182],[9.939893756,55.38678548],[9.939736551,55.38678548]]]},"properties":{"id":1387,"top":7437298.0681,"id_0":1387,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437280.5681,"col_index":19,"row_index":37}},{"id":1388,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386696182],[9.939736551,55.386606884],[9.939893756,55.386606884],[9.939893756,55.386696182],[9.939736551,55.386696182]]]},"properties":{"id":1388,"top":7437280.5681,"id_0":1388,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437263.0681,"col_index":19,"row_index":38}},{"id":1389,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386606884],[9.939736551,55.386517586],[9.939893756,55.386517586],[9.939893756,55.386606884],[9.939736551,55.386606884]]]},"properties":{"id":1389,"top":7437263.0681,"id_0":1389,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437245.5681,"col_index":19,"row_index":39}},{"id":1390,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386517586],[9.939736551,55.386428287],[9.939893756,55.386428287],[9.939893756,55.386517586],[9.939736551,55.386517586]]]},"properties":{"id":1390,"top":7437245.5681,"id_0":1390,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437228.0681,"col_index":19,"row_index":40}},{"id":1391,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386428287],[9.939736551,55.386338989],[9.939893756,55.386338989],[9.939893756,55.386428287],[9.939736551,55.386428287]]]},"properties":{"id":1391,"top":7437228.0681,"id_0":1391,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437210.5681,"col_index":19,"row_index":41}},{"id":1392,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386338989],[9.939736551,55.38624969],[9.939893756,55.38624969],[9.939893756,55.386338989],[9.939736551,55.386338989]]]},"properties":{"id":1392,"top":7437210.5681,"id_0":1392,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437193.0681,"col_index":19,"row_index":42}},{"id":1393,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38624969],[9.939736551,55.386160391],[9.939893756,55.386160391],[9.939893756,55.38624969],[9.939736551,55.38624969]]]},"properties":{"id":1393,"top":7437193.0681,"id_0":1393,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437175.5681,"col_index":19,"row_index":43}},{"id":1394,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386160391],[9.939736551,55.386071091],[9.939893756,55.386071091],[9.939893756,55.386160391],[9.939736551,55.386160391]]]},"properties":{"id":1394,"top":7437175.5681,"id_0":1394,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437158.0681,"col_index":19,"row_index":44}},{"id":1395,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.386071091],[9.939736551,55.385981792],[9.939893756,55.385981792],[9.939893756,55.386071091],[9.939736551,55.386071091]]]},"properties":{"id":1395,"top":7437158.0681,"id_0":1395,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437140.5681,"col_index":19,"row_index":45}},{"id":1396,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385981792],[9.939736551,55.385892492],[9.939893756,55.385892492],[9.939893756,55.385981792],[9.939736551,55.385981792]]]},"properties":{"id":1396,"top":7437140.5681,"id_0":1396,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437123.0681,"col_index":19,"row_index":46}},{"id":1397,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385892492],[9.939736551,55.385803192],[9.939893756,55.385803192],[9.939893756,55.385892492],[9.939736551,55.385892492]]]},"properties":{"id":1397,"top":7437123.0681,"id_0":1397,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437105.5681,"col_index":19,"row_index":47}},{"id":1398,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385803192],[9.939736551,55.385713892],[9.939893756,55.385713892],[9.939893756,55.385803192],[9.939736551,55.385803192]]]},"properties":{"id":1398,"top":7437105.5681,"id_0":1398,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437088.0681,"col_index":19,"row_index":48}},{"id":1399,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385713892],[9.939736551,55.385624592],[9.939893756,55.385624592],[9.939893756,55.385713892],[9.939736551,55.385713892]]]},"properties":{"id":1399,"top":7437088.0681,"id_0":1399,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437070.5681,"col_index":19,"row_index":49}},{"id":1400,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385624592],[9.939736551,55.385535291],[9.939893756,55.385535291],[9.939893756,55.385624592],[9.939736551,55.385624592]]]},"properties":{"id":1400,"top":7437070.5681,"id_0":1400,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437053.0681,"col_index":19,"row_index":50}},{"id":1401,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385535291],[9.939736551,55.38544599],[9.939893756,55.38544599],[9.939893756,55.385535291],[9.939736551,55.385535291]]]},"properties":{"id":1401,"top":7437053.0681,"id_0":1401,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437035.5681,"col_index":19,"row_index":51}},{"id":1402,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38544599],[9.939736551,55.385356689],[9.939893756,55.385356689],[9.939893756,55.38544599],[9.939736551,55.38544599]]]},"properties":{"id":1402,"top":7437035.5681,"id_0":1402,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437018.0681,"col_index":19,"row_index":52}},{"id":1403,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385356689],[9.939736551,55.385267388],[9.939893756,55.385267388],[9.939893756,55.385356689],[9.939736551,55.385356689]]]},"properties":{"id":1403,"top":7437018.0681,"id_0":1403,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7437000.5681,"col_index":19,"row_index":53}},{"id":1404,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385267388],[9.939736551,55.385178087],[9.939893756,55.385178087],[9.939893756,55.385267388],[9.939736551,55.385267388]]]},"properties":{"id":1404,"top":7437000.5681,"id_0":1404,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436983.0681,"col_index":19,"row_index":54}},{"id":1405,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385178087],[9.939736551,55.385088785],[9.939893756,55.385088785],[9.939893756,55.385178087],[9.939736551,55.385178087]]]},"properties":{"id":1405,"top":7436983.0681,"id_0":1405,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436965.5681,"col_index":19,"row_index":55}},{"id":1406,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.385088785],[9.939736551,55.384999484],[9.939893756,55.384999484],[9.939893756,55.385088785],[9.939736551,55.385088785]]]},"properties":{"id":1406,"top":7436965.5681,"id_0":1406,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436948.0681,"col_index":19,"row_index":56}},{"id":1407,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384999484],[9.939736551,55.384910182],[9.939893756,55.384910182],[9.939893756,55.384999484],[9.939736551,55.384999484]]]},"properties":{"id":1407,"top":7436948.0681,"id_0":1407,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436930.5681,"col_index":19,"row_index":57}},{"id":1408,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384910182],[9.939736551,55.38482088],[9.939893756,55.38482088],[9.939893756,55.384910182],[9.939736551,55.384910182]]]},"properties":{"id":1408,"top":7436930.5681,"id_0":1408,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436913.0681,"col_index":19,"row_index":58}},{"id":1409,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.38482088],[9.939736551,55.384731577],[9.939893756,55.384731577],[9.939893756,55.38482088],[9.939736551,55.38482088]]]},"properties":{"id":1409,"top":7436913.0681,"id_0":1409,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436895.5681,"col_index":19,"row_index":59}},{"id":1410,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384731577],[9.939736551,55.384642275],[9.939893756,55.384642275],[9.939893756,55.384731577],[9.939736551,55.384731577]]]},"properties":{"id":1410,"top":7436895.5681,"id_0":1410,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436878.0681,"col_index":19,"row_index":60}},{"id":1411,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384642275],[9.939736551,55.384552972],[9.939893756,55.384552972],[9.939893756,55.384642275],[9.939736551,55.384642275]]]},"properties":{"id":1411,"top":7436878.0681,"id_0":1411,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436860.5681,"col_index":19,"row_index":61}},{"id":1412,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384552972],[9.939736551,55.384463669],[9.939893756,55.384463669],[9.939893756,55.384552972],[9.939736551,55.384552972]]]},"properties":{"id":1412,"top":7436860.5681,"id_0":1412,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436843.0681,"col_index":19,"row_index":62}},{"id":1413,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384463669],[9.939736551,55.384374366],[9.939893756,55.384374366],[9.939893756,55.384463669],[9.939736551,55.384463669]]]},"properties":{"id":1413,"top":7436843.0681,"id_0":1413,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436825.5681,"col_index":19,"row_index":63}},{"id":1414,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384374366],[9.939736551,55.384285062],[9.939893756,55.384285062],[9.939893756,55.384374366],[9.939736551,55.384374366]]]},"properties":{"id":1414,"top":7436825.5681,"id_0":1414,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436808.0681,"col_index":19,"row_index":64}},{"id":1415,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384285062],[9.939736551,55.384195759],[9.939893756,55.384195759],[9.939893756,55.384285062],[9.939736551,55.384285062]]]},"properties":{"id":1415,"top":7436808.0681,"id_0":1415,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436790.5681,"col_index":19,"row_index":65}},{"id":1416,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384195759],[9.939736551,55.384106455],[9.939893756,55.384106455],[9.939893756,55.384195759],[9.939736551,55.384195759]]]},"properties":{"id":1416,"top":7436790.5681,"id_0":1416,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436773.0681,"col_index":19,"row_index":66}},{"id":1417,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384106455],[9.939736551,55.384017151],[9.939893756,55.384017151],[9.939893756,55.384106455],[9.939736551,55.384106455]]]},"properties":{"id":1417,"top":7436773.0681,"id_0":1417,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436755.5681,"col_index":19,"row_index":67}},{"id":1418,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.384017151],[9.939736551,55.383927847],[9.939893756,55.383927847],[9.939893756,55.384017151],[9.939736551,55.384017151]]]},"properties":{"id":1418,"top":7436755.5681,"id_0":1418,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436738.0681,"col_index":19,"row_index":68}},{"id":1419,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.383927847],[9.939736551,55.383838543],[9.939893756,55.383838543],[9.939893756,55.383927847],[9.939736551,55.383927847]]]},"properties":{"id":1419,"top":7436738.0681,"id_0":1419,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436720.5681,"col_index":19,"row_index":69}},{"id":1420,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.383838543],[9.939736551,55.383749238],[9.939893756,55.383749238],[9.939893756,55.383838543],[9.939736551,55.383838543]]]},"properties":{"id":1420,"top":7436720.5681,"id_0":1420,"left":1106486.4115,"Label":null,"right":1106503.9115,"bottom":7436703.0681,"col_index":19,"row_index":70}},{"id":1422,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.390000071],[9.939893756,55.38991078],[9.940050962,55.38991078],[9.940050962,55.390000071],[9.939893756,55.390000071]]]},"properties":{"id":1422,"top":7437928.0681,"id_0":1422,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437910.5681,"col_index":20,"row_index":1}},{"id":1423,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38991078],[9.939893756,55.38982149],[9.940050962,55.38982149],[9.940050962,55.38991078],[9.939893756,55.38991078]]]},"properties":{"id":1423,"top":7437910.5681,"id_0":1423,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437893.0681,"col_index":20,"row_index":2}},{"id":1424,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38982149],[9.939893756,55.389732199],[9.940050962,55.389732199],[9.940050962,55.38982149],[9.939893756,55.38982149]]]},"properties":{"id":1424,"top":7437893.0681,"id_0":1424,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437875.5681,"col_index":20,"row_index":3}},{"id":1425,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389732199],[9.939893756,55.389642907],[9.940050962,55.389642907],[9.940050962,55.389732199],[9.939893756,55.389732199]]]},"properties":{"id":1425,"top":7437875.5681,"id_0":1425,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437858.0681,"col_index":20,"row_index":4}},{"id":1426,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389642907],[9.939893756,55.389553616],[9.940050962,55.389553616],[9.940050962,55.389642907],[9.939893756,55.389642907]]]},"properties":{"id":1426,"top":7437858.0681,"id_0":1426,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437840.5681,"col_index":20,"row_index":5}},{"id":1427,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389553616],[9.939893756,55.389464324],[9.940050962,55.389464324],[9.940050962,55.389553616],[9.939893756,55.389553616]]]},"properties":{"id":1427,"top":7437840.5681,"id_0":1427,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437823.0681,"col_index":20,"row_index":6}},{"id":1428,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389464324],[9.939893756,55.389375032],[9.940050962,55.389375032],[9.940050962,55.389464324],[9.939893756,55.389464324]]]},"properties":{"id":1428,"top":7437823.0681,"id_0":1428,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437805.5681,"col_index":20,"row_index":7}},{"id":1429,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389375032],[9.939893756,55.38928574],[9.940050962,55.38928574],[9.940050962,55.389375032],[9.939893756,55.389375032]]]},"properties":{"id":1429,"top":7437805.5681,"id_0":1429,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437788.0681,"col_index":20,"row_index":8}},{"id":1430,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38928574],[9.939893756,55.389196448],[9.940050962,55.389196448],[9.940050962,55.38928574],[9.939893756,55.38928574]]]},"properties":{"id":1430,"top":7437788.0681,"id_0":1430,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437770.5681,"col_index":20,"row_index":9}},{"id":1431,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389196448],[9.939893756,55.389107155],[9.940050962,55.389107155],[9.940050962,55.389196448],[9.939893756,55.389196448]]]},"properties":{"id":1431,"top":7437770.5681,"id_0":1431,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437753.0681,"col_index":20,"row_index":10}},{"id":1432,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389107155],[9.939893756,55.389017863],[9.940050962,55.389017863],[9.940050962,55.389107155],[9.939893756,55.389107155]]]},"properties":{"id":1432,"top":7437753.0681,"id_0":1432,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437735.5681,"col_index":20,"row_index":11}},{"id":1433,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.389017863],[9.939893756,55.38892857],[9.940050962,55.38892857],[9.940050962,55.389017863],[9.939893756,55.389017863]]]},"properties":{"id":1433,"top":7437735.5681,"id_0":1433,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437718.0681,"col_index":20,"row_index":12}},{"id":1434,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38892857],[9.939893756,55.388839277],[9.940050962,55.388839277],[9.940050962,55.38892857],[9.939893756,55.38892857]]]},"properties":{"id":1434,"top":7437718.0681,"id_0":1434,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437700.5681,"col_index":20,"row_index":13}},{"id":1435,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388839277],[9.939893756,55.388749984],[9.940050962,55.388749984],[9.940050962,55.388839277],[9.939893756,55.388839277]]]},"properties":{"id":1435,"top":7437700.5681,"id_0":1435,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437683.0681,"col_index":20,"row_index":14}},{"id":1436,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388749984],[9.939893756,55.38866069],[9.940050962,55.38866069],[9.940050962,55.388749984],[9.939893756,55.388749984]]]},"properties":{"id":1436,"top":7437683.0681,"id_0":1436,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437665.5681,"col_index":20,"row_index":15}},{"id":1437,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38866069],[9.939893756,55.388571396],[9.940050962,55.388571396],[9.940050962,55.38866069],[9.939893756,55.38866069]]]},"properties":{"id":1437,"top":7437665.5681,"id_0":1437,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437648.0681,"col_index":20,"row_index":16}},{"id":1438,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388571396],[9.939893756,55.388482103],[9.940050962,55.388482103],[9.940050962,55.388571396],[9.939893756,55.388571396]]]},"properties":{"id":1438,"top":7437648.0681,"id_0":1438,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437630.5681,"col_index":20,"row_index":17}},{"id":1439,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388482103],[9.939893756,55.388392808],[9.940050962,55.388392808],[9.940050962,55.388482103],[9.939893756,55.388482103]]]},"properties":{"id":1439,"top":7437630.5681,"id_0":1439,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437613.0681,"col_index":20,"row_index":18}},{"id":1440,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388392808],[9.939893756,55.388303514],[9.940050962,55.388303514],[9.940050962,55.388392808],[9.939893756,55.388392808]]]},"properties":{"id":1440,"top":7437613.0681,"id_0":1440,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437595.5681,"col_index":20,"row_index":19}},{"id":1441,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388303514],[9.939893756,55.38821422],[9.940050962,55.38821422],[9.940050962,55.388303514],[9.939893756,55.388303514]]]},"properties":{"id":1441,"top":7437595.5681,"id_0":1441,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437578.0681,"col_index":20,"row_index":20}},{"id":1442,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38821422],[9.939893756,55.388124925],[9.940050962,55.388124925],[9.940050962,55.38821422],[9.939893756,55.38821422]]]},"properties":{"id":1442,"top":7437578.0681,"id_0":1442,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437560.5681,"col_index":20,"row_index":21}},{"id":1443,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.388124925],[9.939893756,55.38803563],[9.940050962,55.38803563],[9.940050962,55.388124925],[9.939893756,55.388124925]]]},"properties":{"id":1443,"top":7437560.5681,"id_0":1443,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437543.0681,"col_index":20,"row_index":22}},{"id":1444,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38803563],[9.939893756,55.387946335],[9.940050962,55.387946335],[9.940050962,55.38803563],[9.939893756,55.38803563]]]},"properties":{"id":1444,"top":7437543.0681,"id_0":1444,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437525.5681,"col_index":20,"row_index":23}},{"id":1445,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387946335],[9.939893756,55.38785704],[9.940050962,55.38785704],[9.940050962,55.387946335],[9.939893756,55.387946335]]]},"properties":{"id":1445,"top":7437525.5681,"id_0":1445,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437508.0681,"col_index":20,"row_index":24}},{"id":1446,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38785704],[9.939893756,55.387767744],[9.940050962,55.387767744],[9.940050962,55.38785704],[9.939893756,55.38785704]]]},"properties":{"id":1446,"top":7437508.0681,"id_0":1446,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437490.5681,"col_index":20,"row_index":25}},{"id":1447,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387767744],[9.939893756,55.387678448],[9.940050962,55.387678448],[9.940050962,55.387767744],[9.939893756,55.387767744]]]},"properties":{"id":1447,"top":7437490.5681,"id_0":1447,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437473.0681,"col_index":20,"row_index":26}},{"id":1448,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387678448],[9.939893756,55.387589153],[9.940050962,55.387589153],[9.940050962,55.387678448],[9.939893756,55.387678448]]]},"properties":{"id":1448,"top":7437473.0681,"id_0":1448,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437455.5681,"col_index":20,"row_index":27}},{"id":1449,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387589153],[9.939893756,55.387499856],[9.940050962,55.387499856],[9.940050962,55.387589153],[9.939893756,55.387589153]]]},"properties":{"id":1449,"top":7437455.5681,"id_0":1449,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437438.0681,"col_index":20,"row_index":28}},{"id":1450,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387499856],[9.939893756,55.38741056],[9.940050962,55.38741056],[9.940050962,55.387499856],[9.939893756,55.387499856]]]},"properties":{"id":1450,"top":7437438.0681,"id_0":1450,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437420.5681,"col_index":20,"row_index":29}},{"id":1451,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38741056],[9.939893756,55.387321264],[9.940050962,55.387321264],[9.940050962,55.38741056],[9.939893756,55.38741056]]]},"properties":{"id":1451,"top":7437420.5681,"id_0":1451,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437403.0681,"col_index":20,"row_index":30}},{"id":1452,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387321264],[9.939893756,55.387231967],[9.940050962,55.387231967],[9.940050962,55.387321264],[9.939893756,55.387321264]]]},"properties":{"id":1452,"top":7437403.0681,"id_0":1452,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437385.5681,"col_index":20,"row_index":31}},{"id":1453,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387231967],[9.939893756,55.38714267],[9.940050962,55.38714267],[9.940050962,55.387231967],[9.939893756,55.387231967]]]},"properties":{"id":1453,"top":7437385.5681,"id_0":1453,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437368.0681,"col_index":20,"row_index":32}},{"id":1454,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38714267],[9.939893756,55.387053373],[9.940050962,55.387053373],[9.940050962,55.38714267],[9.939893756,55.38714267]]]},"properties":{"id":1454,"top":7437368.0681,"id_0":1454,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437350.5681,"col_index":20,"row_index":33}},{"id":1455,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.387053373],[9.939893756,55.386964076],[9.940050962,55.386964076],[9.940050962,55.387053373],[9.939893756,55.387053373]]]},"properties":{"id":1455,"top":7437350.5681,"id_0":1455,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437333.0681,"col_index":20,"row_index":34}},{"id":1456,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386964076],[9.939893756,55.386874778],[9.940050962,55.386874778],[9.940050962,55.386964076],[9.939893756,55.386964076]]]},"properties":{"id":1456,"top":7437333.0681,"id_0":1456,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437315.5681,"col_index":20,"row_index":35}},{"id":1457,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386874778],[9.939893756,55.38678548],[9.940050962,55.38678548],[9.940050962,55.386874778],[9.939893756,55.386874778]]]},"properties":{"id":1457,"top":7437315.5681,"id_0":1457,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437298.0681,"col_index":20,"row_index":36}},{"id":1458,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38678548],[9.939893756,55.386696182],[9.940050962,55.386696182],[9.940050962,55.38678548],[9.939893756,55.38678548]]]},"properties":{"id":1458,"top":7437298.0681,"id_0":1458,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437280.5681,"col_index":20,"row_index":37}},{"id":1459,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386696182],[9.939893756,55.386606884],[9.940050962,55.386606884],[9.940050962,55.386696182],[9.939893756,55.386696182]]]},"properties":{"id":1459,"top":7437280.5681,"id_0":1459,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437263.0681,"col_index":20,"row_index":38}},{"id":1460,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386606884],[9.939893756,55.386517586],[9.940050962,55.386517586],[9.940050962,55.386606884],[9.939893756,55.386606884]]]},"properties":{"id":1460,"top":7437263.0681,"id_0":1460,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437245.5681,"col_index":20,"row_index":39}},{"id":1461,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386517586],[9.939893756,55.386428287],[9.940050962,55.386428287],[9.940050962,55.386517586],[9.939893756,55.386517586]]]},"properties":{"id":1461,"top":7437245.5681,"id_0":1461,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437228.0681,"col_index":20,"row_index":40}},{"id":1462,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386428287],[9.939893756,55.386338989],[9.940050962,55.386338989],[9.940050962,55.386428287],[9.939893756,55.386428287]]]},"properties":{"id":1462,"top":7437228.0681,"id_0":1462,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437210.5681,"col_index":20,"row_index":41}},{"id":1463,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386338989],[9.939893756,55.38624969],[9.940050962,55.38624969],[9.940050962,55.386338989],[9.939893756,55.386338989]]]},"properties":{"id":1463,"top":7437210.5681,"id_0":1463,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437193.0681,"col_index":20,"row_index":42}},{"id":1464,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38624969],[9.939893756,55.386160391],[9.940050962,55.386160391],[9.940050962,55.38624969],[9.939893756,55.38624969]]]},"properties":{"id":1464,"top":7437193.0681,"id_0":1464,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437175.5681,"col_index":20,"row_index":43}},{"id":1465,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386160391],[9.939893756,55.386071091],[9.940050962,55.386071091],[9.940050962,55.386160391],[9.939893756,55.386160391]]]},"properties":{"id":1465,"top":7437175.5681,"id_0":1465,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437158.0681,"col_index":20,"row_index":44}},{"id":1466,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.386071091],[9.939893756,55.385981792],[9.940050962,55.385981792],[9.940050962,55.386071091],[9.939893756,55.386071091]]]},"properties":{"id":1466,"top":7437158.0681,"id_0":1466,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437140.5681,"col_index":20,"row_index":45}},{"id":1467,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385981792],[9.939893756,55.385892492],[9.940050962,55.385892492],[9.940050962,55.385981792],[9.939893756,55.385981792]]]},"properties":{"id":1467,"top":7437140.5681,"id_0":1467,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437123.0681,"col_index":20,"row_index":46}},{"id":1468,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385892492],[9.939893756,55.385803192],[9.940050962,55.385803192],[9.940050962,55.385892492],[9.939893756,55.385892492]]]},"properties":{"id":1468,"top":7437123.0681,"id_0":1468,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437105.5681,"col_index":20,"row_index":47}},{"id":1469,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385803192],[9.939893756,55.385713892],[9.940050962,55.385713892],[9.940050962,55.385803192],[9.939893756,55.385803192]]]},"properties":{"id":1469,"top":7437105.5681,"id_0":1469,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437088.0681,"col_index":20,"row_index":48}},{"id":1470,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385713892],[9.939893756,55.385624592],[9.940050962,55.385624592],[9.940050962,55.385713892],[9.939893756,55.385713892]]]},"properties":{"id":1470,"top":7437088.0681,"id_0":1470,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437070.5681,"col_index":20,"row_index":49}},{"id":1471,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385624592],[9.939893756,55.385535291],[9.940050962,55.385535291],[9.940050962,55.385624592],[9.939893756,55.385624592]]]},"properties":{"id":1471,"top":7437070.5681,"id_0":1471,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437053.0681,"col_index":20,"row_index":50}},{"id":1472,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385535291],[9.939893756,55.38544599],[9.940050962,55.38544599],[9.940050962,55.385535291],[9.939893756,55.385535291]]]},"properties":{"id":1472,"top":7437053.0681,"id_0":1472,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437035.5681,"col_index":20,"row_index":51}},{"id":1473,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38544599],[9.939893756,55.385356689],[9.940050962,55.385356689],[9.940050962,55.38544599],[9.939893756,55.38544599]]]},"properties":{"id":1473,"top":7437035.5681,"id_0":1473,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437018.0681,"col_index":20,"row_index":52}},{"id":1474,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385356689],[9.939893756,55.385267388],[9.940050962,55.385267388],[9.940050962,55.385356689],[9.939893756,55.385356689]]]},"properties":{"id":1474,"top":7437018.0681,"id_0":1474,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7437000.5681,"col_index":20,"row_index":53}},{"id":1475,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385267388],[9.939893756,55.385178087],[9.940050962,55.385178087],[9.940050962,55.385267388],[9.939893756,55.385267388]]]},"properties":{"id":1475,"top":7437000.5681,"id_0":1475,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436983.0681,"col_index":20,"row_index":54}},{"id":1476,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385178087],[9.939893756,55.385088785],[9.940050962,55.385088785],[9.940050962,55.385178087],[9.939893756,55.385178087]]]},"properties":{"id":1476,"top":7436983.0681,"id_0":1476,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436965.5681,"col_index":20,"row_index":55}},{"id":1477,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.385088785],[9.939893756,55.384999484],[9.940050962,55.384999484],[9.940050962,55.385088785],[9.939893756,55.385088785]]]},"properties":{"id":1477,"top":7436965.5681,"id_0":1477,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436948.0681,"col_index":20,"row_index":56}},{"id":1478,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384999484],[9.939893756,55.384910182],[9.940050962,55.384910182],[9.940050962,55.384999484],[9.939893756,55.384999484]]]},"properties":{"id":1478,"top":7436948.0681,"id_0":1478,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436930.5681,"col_index":20,"row_index":57}},{"id":1479,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384910182],[9.939893756,55.38482088],[9.940050962,55.38482088],[9.940050962,55.384910182],[9.939893756,55.384910182]]]},"properties":{"id":1479,"top":7436930.5681,"id_0":1479,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436913.0681,"col_index":20,"row_index":58}},{"id":1480,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.38482088],[9.939893756,55.384731577],[9.940050962,55.384731577],[9.940050962,55.38482088],[9.939893756,55.38482088]]]},"properties":{"id":1480,"top":7436913.0681,"id_0":1480,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436895.5681,"col_index":20,"row_index":59}},{"id":1481,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384731577],[9.939893756,55.384642275],[9.940050962,55.384642275],[9.940050962,55.384731577],[9.939893756,55.384731577]]]},"properties":{"id":1481,"top":7436895.5681,"id_0":1481,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436878.0681,"col_index":20,"row_index":60}},{"id":1482,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384642275],[9.939893756,55.384552972],[9.940050962,55.384552972],[9.940050962,55.384642275],[9.939893756,55.384642275]]]},"properties":{"id":1482,"top":7436878.0681,"id_0":1482,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436860.5681,"col_index":20,"row_index":61}},{"id":1483,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384552972],[9.939893756,55.384463669],[9.940050962,55.384463669],[9.940050962,55.384552972],[9.939893756,55.384552972]]]},"properties":{"id":1483,"top":7436860.5681,"id_0":1483,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436843.0681,"col_index":20,"row_index":62}},{"id":1484,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384463669],[9.939893756,55.384374366],[9.940050962,55.384374366],[9.940050962,55.384463669],[9.939893756,55.384463669]]]},"properties":{"id":1484,"top":7436843.0681,"id_0":1484,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436825.5681,"col_index":20,"row_index":63}},{"id":1485,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384374366],[9.939893756,55.384285062],[9.940050962,55.384285062],[9.940050962,55.384374366],[9.939893756,55.384374366]]]},"properties":{"id":1485,"top":7436825.5681,"id_0":1485,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436808.0681,"col_index":20,"row_index":64}},{"id":1486,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384285062],[9.939893756,55.384195759],[9.940050962,55.384195759],[9.940050962,55.384285062],[9.939893756,55.384285062]]]},"properties":{"id":1486,"top":7436808.0681,"id_0":1486,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436790.5681,"col_index":20,"row_index":65}},{"id":1487,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384195759],[9.939893756,55.384106455],[9.940050962,55.384106455],[9.940050962,55.384195759],[9.939893756,55.384195759]]]},"properties":{"id":1487,"top":7436790.5681,"id_0":1487,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436773.0681,"col_index":20,"row_index":66}},{"id":1488,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384106455],[9.939893756,55.384017151],[9.940050962,55.384017151],[9.940050962,55.384106455],[9.939893756,55.384106455]]]},"properties":{"id":1488,"top":7436773.0681,"id_0":1488,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436755.5681,"col_index":20,"row_index":67}},{"id":1489,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.384017151],[9.939893756,55.383927847],[9.940050962,55.383927847],[9.940050962,55.384017151],[9.939893756,55.384017151]]]},"properties":{"id":1489,"top":7436755.5681,"id_0":1489,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436738.0681,"col_index":20,"row_index":68}},{"id":1490,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.383927847],[9.939893756,55.383838543],[9.940050962,55.383838543],[9.940050962,55.383927847],[9.939893756,55.383927847]]]},"properties":{"id":1490,"top":7436738.0681,"id_0":1490,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436720.5681,"col_index":20,"row_index":69}},{"id":1491,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.383838543],[9.939893756,55.383749238],[9.940050962,55.383749238],[9.940050962,55.383838543],[9.939893756,55.383838543]]]},"properties":{"id":1491,"top":7436720.5681,"id_0":1491,"left":1106503.9115,"Label":null,"right":1106521.4115,"bottom":7436703.0681,"col_index":20,"row_index":70}},{"id":1493,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.390000071],[9.940050962,55.38991078],[9.940208167,55.38991078],[9.940208167,55.390000071],[9.940050962,55.390000071]]]},"properties":{"id":1493,"top":7437928.0681,"id_0":1493,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437910.5681,"col_index":21,"row_index":1}},{"id":1494,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38991078],[9.940050962,55.38982149],[9.940208167,55.38982149],[9.940208167,55.38991078],[9.940050962,55.38991078]]]},"properties":{"id":1494,"top":7437910.5681,"id_0":1494,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437893.0681,"col_index":21,"row_index":2}},{"id":1495,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38982149],[9.940050962,55.389732199],[9.940208167,55.389732199],[9.940208167,55.38982149],[9.940050962,55.38982149]]]},"properties":{"id":1495,"top":7437893.0681,"id_0":1495,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437875.5681,"col_index":21,"row_index":3}},{"id":1496,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389732199],[9.940050962,55.389642907],[9.940208167,55.389642907],[9.940208167,55.389732199],[9.940050962,55.389732199]]]},"properties":{"id":1496,"top":7437875.5681,"id_0":1496,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437858.0681,"col_index":21,"row_index":4}},{"id":1497,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389642907],[9.940050962,55.389553616],[9.940208167,55.389553616],[9.940208167,55.389642907],[9.940050962,55.389642907]]]},"properties":{"id":1497,"top":7437858.0681,"id_0":1497,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437840.5681,"col_index":21,"row_index":5}},{"id":1498,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389553616],[9.940050962,55.389464324],[9.940208167,55.389464324],[9.940208167,55.389553616],[9.940050962,55.389553616]]]},"properties":{"id":1498,"top":7437840.5681,"id_0":1498,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437823.0681,"col_index":21,"row_index":6}},{"id":1499,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389464324],[9.940050962,55.389375032],[9.940208167,55.389375032],[9.940208167,55.389464324],[9.940050962,55.389464324]]]},"properties":{"id":1499,"top":7437823.0681,"id_0":1499,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437805.5681,"col_index":21,"row_index":7}},{"id":1500,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389375032],[9.940050962,55.38928574],[9.940208167,55.38928574],[9.940208167,55.389375032],[9.940050962,55.389375032]]]},"properties":{"id":1500,"top":7437805.5681,"id_0":1500,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437788.0681,"col_index":21,"row_index":8}},{"id":1501,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38928574],[9.940050962,55.389196448],[9.940208167,55.389196448],[9.940208167,55.38928574],[9.940050962,55.38928574]]]},"properties":{"id":1501,"top":7437788.0681,"id_0":1501,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437770.5681,"col_index":21,"row_index":9}},{"id":1502,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389196448],[9.940050962,55.389107155],[9.940208167,55.389107155],[9.940208167,55.389196448],[9.940050962,55.389196448]]]},"properties":{"id":1502,"top":7437770.5681,"id_0":1502,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437753.0681,"col_index":21,"row_index":10}},{"id":1503,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389107155],[9.940050962,55.389017863],[9.940208167,55.389017863],[9.940208167,55.389107155],[9.940050962,55.389107155]]]},"properties":{"id":1503,"top":7437753.0681,"id_0":1503,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437735.5681,"col_index":21,"row_index":11}},{"id":1504,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.389017863],[9.940050962,55.38892857],[9.940208167,55.38892857],[9.940208167,55.389017863],[9.940050962,55.389017863]]]},"properties":{"id":1504,"top":7437735.5681,"id_0":1504,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437718.0681,"col_index":21,"row_index":12}},{"id":1505,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38892857],[9.940050962,55.388839277],[9.940208167,55.388839277],[9.940208167,55.38892857],[9.940050962,55.38892857]]]},"properties":{"id":1505,"top":7437718.0681,"id_0":1505,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437700.5681,"col_index":21,"row_index":13}},{"id":1506,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388839277],[9.940050962,55.388749984],[9.940208167,55.388749984],[9.940208167,55.388839277],[9.940050962,55.388839277]]]},"properties":{"id":1506,"top":7437700.5681,"id_0":1506,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437683.0681,"col_index":21,"row_index":14}},{"id":1507,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388749984],[9.940050962,55.38866069],[9.940208167,55.38866069],[9.940208167,55.388749984],[9.940050962,55.388749984]]]},"properties":{"id":1507,"top":7437683.0681,"id_0":1507,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437665.5681,"col_index":21,"row_index":15}},{"id":1508,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38866069],[9.940050962,55.388571396],[9.940208167,55.388571396],[9.940208167,55.38866069],[9.940050962,55.38866069]]]},"properties":{"id":1508,"top":7437665.5681,"id_0":1508,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437648.0681,"col_index":21,"row_index":16}},{"id":1509,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388571396],[9.940050962,55.388482103],[9.940208167,55.388482103],[9.940208167,55.388571396],[9.940050962,55.388571396]]]},"properties":{"id":1509,"top":7437648.0681,"id_0":1509,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437630.5681,"col_index":21,"row_index":17}},{"id":1510,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388482103],[9.940050962,55.388392808],[9.940208167,55.388392808],[9.940208167,55.388482103],[9.940050962,55.388482103]]]},"properties":{"id":1510,"top":7437630.5681,"id_0":1510,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437613.0681,"col_index":21,"row_index":18}},{"id":1511,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388392808],[9.940050962,55.388303514],[9.940208167,55.388303514],[9.940208167,55.388392808],[9.940050962,55.388392808]]]},"properties":{"id":1511,"top":7437613.0681,"id_0":1511,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437595.5681,"col_index":21,"row_index":19}},{"id":1512,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388303514],[9.940050962,55.38821422],[9.940208167,55.38821422],[9.940208167,55.388303514],[9.940050962,55.388303514]]]},"properties":{"id":1512,"top":7437595.5681,"id_0":1512,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437578.0681,"col_index":21,"row_index":20}},{"id":1513,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38821422],[9.940050962,55.388124925],[9.940208167,55.388124925],[9.940208167,55.38821422],[9.940050962,55.38821422]]]},"properties":{"id":1513,"top":7437578.0681,"id_0":1513,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437560.5681,"col_index":21,"row_index":21}},{"id":1514,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.388124925],[9.940050962,55.38803563],[9.940208167,55.38803563],[9.940208167,55.388124925],[9.940050962,55.388124925]]]},"properties":{"id":1514,"top":7437560.5681,"id_0":1514,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437543.0681,"col_index":21,"row_index":22}},{"id":1515,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38803563],[9.940050962,55.387946335],[9.940208167,55.387946335],[9.940208167,55.38803563],[9.940050962,55.38803563]]]},"properties":{"id":1515,"top":7437543.0681,"id_0":1515,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437525.5681,"col_index":21,"row_index":23}},{"id":1516,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387946335],[9.940050962,55.38785704],[9.940208167,55.38785704],[9.940208167,55.387946335],[9.940050962,55.387946335]]]},"properties":{"id":1516,"top":7437525.5681,"id_0":1516,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437508.0681,"col_index":21,"row_index":24}},{"id":1517,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38785704],[9.940050962,55.387767744],[9.940208167,55.387767744],[9.940208167,55.38785704],[9.940050962,55.38785704]]]},"properties":{"id":1517,"top":7437508.0681,"id_0":1517,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437490.5681,"col_index":21,"row_index":25}},{"id":1518,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387767744],[9.940050962,55.387678448],[9.940208167,55.387678448],[9.940208167,55.387767744],[9.940050962,55.387767744]]]},"properties":{"id":1518,"top":7437490.5681,"id_0":1518,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437473.0681,"col_index":21,"row_index":26}},{"id":1519,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387678448],[9.940050962,55.387589153],[9.940208167,55.387589153],[9.940208167,55.387678448],[9.940050962,55.387678448]]]},"properties":{"id":1519,"top":7437473.0681,"id_0":1519,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437455.5681,"col_index":21,"row_index":27}},{"id":1520,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387589153],[9.940050962,55.387499856],[9.940208167,55.387499856],[9.940208167,55.387589153],[9.940050962,55.387589153]]]},"properties":{"id":1520,"top":7437455.5681,"id_0":1520,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437438.0681,"col_index":21,"row_index":28}},{"id":1521,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387499856],[9.940050962,55.38741056],[9.940208167,55.38741056],[9.940208167,55.387499856],[9.940050962,55.387499856]]]},"properties":{"id":1521,"top":7437438.0681,"id_0":1521,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437420.5681,"col_index":21,"row_index":29}},{"id":1522,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38741056],[9.940050962,55.387321264],[9.940208167,55.387321264],[9.940208167,55.38741056],[9.940050962,55.38741056]]]},"properties":{"id":1522,"top":7437420.5681,"id_0":1522,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437403.0681,"col_index":21,"row_index":30}},{"id":1523,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387321264],[9.940050962,55.387231967],[9.940208167,55.387231967],[9.940208167,55.387321264],[9.940050962,55.387321264]]]},"properties":{"id":1523,"top":7437403.0681,"id_0":1523,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437385.5681,"col_index":21,"row_index":31}},{"id":1524,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387231967],[9.940050962,55.38714267],[9.940208167,55.38714267],[9.940208167,55.387231967],[9.940050962,55.387231967]]]},"properties":{"id":1524,"top":7437385.5681,"id_0":1524,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437368.0681,"col_index":21,"row_index":32}},{"id":1525,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38714267],[9.940050962,55.387053373],[9.940208167,55.387053373],[9.940208167,55.38714267],[9.940050962,55.38714267]]]},"properties":{"id":1525,"top":7437368.0681,"id_0":1525,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437350.5681,"col_index":21,"row_index":33}},{"id":1526,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.387053373],[9.940050962,55.386964076],[9.940208167,55.386964076],[9.940208167,55.387053373],[9.940050962,55.387053373]]]},"properties":{"id":1526,"top":7437350.5681,"id_0":1526,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437333.0681,"col_index":21,"row_index":34}},{"id":1527,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386964076],[9.940050962,55.386874778],[9.940208167,55.386874778],[9.940208167,55.386964076],[9.940050962,55.386964076]]]},"properties":{"id":1527,"top":7437333.0681,"id_0":1527,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437315.5681,"col_index":21,"row_index":35}},{"id":1528,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386874778],[9.940050962,55.38678548],[9.940208167,55.38678548],[9.940208167,55.386874778],[9.940050962,55.386874778]]]},"properties":{"id":1528,"top":7437315.5681,"id_0":1528,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437298.0681,"col_index":21,"row_index":36}},{"id":1529,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38678548],[9.940050962,55.386696182],[9.940208167,55.386696182],[9.940208167,55.38678548],[9.940050962,55.38678548]]]},"properties":{"id":1529,"top":7437298.0681,"id_0":1529,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437280.5681,"col_index":21,"row_index":37}},{"id":1530,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386696182],[9.940050962,55.386606884],[9.940208167,55.386606884],[9.940208167,55.386696182],[9.940050962,55.386696182]]]},"properties":{"id":1530,"top":7437280.5681,"id_0":1530,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437263.0681,"col_index":21,"row_index":38}},{"id":1531,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386606884],[9.940050962,55.386517586],[9.940208167,55.386517586],[9.940208167,55.386606884],[9.940050962,55.386606884]]]},"properties":{"id":1531,"top":7437263.0681,"id_0":1531,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437245.5681,"col_index":21,"row_index":39}},{"id":1532,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386517586],[9.940050962,55.386428287],[9.940208167,55.386428287],[9.940208167,55.386517586],[9.940050962,55.386517586]]]},"properties":{"id":1532,"top":7437245.5681,"id_0":1532,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437228.0681,"col_index":21,"row_index":40}},{"id":1533,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386428287],[9.940050962,55.386338989],[9.940208167,55.386338989],[9.940208167,55.386428287],[9.940050962,55.386428287]]]},"properties":{"id":1533,"top":7437228.0681,"id_0":1533,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437210.5681,"col_index":21,"row_index":41}},{"id":1534,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386338989],[9.940050962,55.38624969],[9.940208167,55.38624969],[9.940208167,55.386338989],[9.940050962,55.386338989]]]},"properties":{"id":1534,"top":7437210.5681,"id_0":1534,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437193.0681,"col_index":21,"row_index":42}},{"id":1535,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38624969],[9.940050962,55.386160391],[9.940208167,55.386160391],[9.940208167,55.38624969],[9.940050962,55.38624969]]]},"properties":{"id":1535,"top":7437193.0681,"id_0":1535,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437175.5681,"col_index":21,"row_index":43}},{"id":1536,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386160391],[9.940050962,55.386071091],[9.940208167,55.386071091],[9.940208167,55.386160391],[9.940050962,55.386160391]]]},"properties":{"id":1536,"top":7437175.5681,"id_0":1536,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437158.0681,"col_index":21,"row_index":44}},{"id":1537,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.386071091],[9.940050962,55.385981792],[9.940208167,55.385981792],[9.940208167,55.386071091],[9.940050962,55.386071091]]]},"properties":{"id":1537,"top":7437158.0681,"id_0":1537,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437140.5681,"col_index":21,"row_index":45}},{"id":1538,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385981792],[9.940050962,55.385892492],[9.940208167,55.385892492],[9.940208167,55.385981792],[9.940050962,55.385981792]]]},"properties":{"id":1538,"top":7437140.5681,"id_0":1538,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437123.0681,"col_index":21,"row_index":46}},{"id":1539,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385892492],[9.940050962,55.385803192],[9.940208167,55.385803192],[9.940208167,55.385892492],[9.940050962,55.385892492]]]},"properties":{"id":1539,"top":7437123.0681,"id_0":1539,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437105.5681,"col_index":21,"row_index":47}},{"id":1540,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385803192],[9.940050962,55.385713892],[9.940208167,55.385713892],[9.940208167,55.385803192],[9.940050962,55.385803192]]]},"properties":{"id":1540,"top":7437105.5681,"id_0":1540,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437088.0681,"col_index":21,"row_index":48}},{"id":1541,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385713892],[9.940050962,55.385624592],[9.940208167,55.385624592],[9.940208167,55.385713892],[9.940050962,55.385713892]]]},"properties":{"id":1541,"top":7437088.0681,"id_0":1541,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437070.5681,"col_index":21,"row_index":49}},{"id":1542,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385624592],[9.940050962,55.385535291],[9.940208167,55.385535291],[9.940208167,55.385624592],[9.940050962,55.385624592]]]},"properties":{"id":1542,"top":7437070.5681,"id_0":1542,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437053.0681,"col_index":21,"row_index":50}},{"id":1543,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385535291],[9.940050962,55.38544599],[9.940208167,55.38544599],[9.940208167,55.385535291],[9.940050962,55.385535291]]]},"properties":{"id":1543,"top":7437053.0681,"id_0":1543,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437035.5681,"col_index":21,"row_index":51}},{"id":1544,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38544599],[9.940050962,55.385356689],[9.940208167,55.385356689],[9.940208167,55.38544599],[9.940050962,55.38544599]]]},"properties":{"id":1544,"top":7437035.5681,"id_0":1544,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437018.0681,"col_index":21,"row_index":52}},{"id":1545,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385356689],[9.940050962,55.385267388],[9.940208167,55.385267388],[9.940208167,55.385356689],[9.940050962,55.385356689]]]},"properties":{"id":1545,"top":7437018.0681,"id_0":1545,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7437000.5681,"col_index":21,"row_index":53}},{"id":1546,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385267388],[9.940050962,55.385178087],[9.940208167,55.385178087],[9.940208167,55.385267388],[9.940050962,55.385267388]]]},"properties":{"id":1546,"top":7437000.5681,"id_0":1546,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436983.0681,"col_index":21,"row_index":54}},{"id":1547,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385178087],[9.940050962,55.385088785],[9.940208167,55.385088785],[9.940208167,55.385178087],[9.940050962,55.385178087]]]},"properties":{"id":1547,"top":7436983.0681,"id_0":1547,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436965.5681,"col_index":21,"row_index":55}},{"id":1548,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.385088785],[9.940050962,55.384999484],[9.940208167,55.384999484],[9.940208167,55.385088785],[9.940050962,55.385088785]]]},"properties":{"id":1548,"top":7436965.5681,"id_0":1548,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436948.0681,"col_index":21,"row_index":56}},{"id":1549,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384999484],[9.940050962,55.384910182],[9.940208167,55.384910182],[9.940208167,55.384999484],[9.940050962,55.384999484]]]},"properties":{"id":1549,"top":7436948.0681,"id_0":1549,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436930.5681,"col_index":21,"row_index":57}},{"id":1550,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384910182],[9.940050962,55.38482088],[9.940208167,55.38482088],[9.940208167,55.384910182],[9.940050962,55.384910182]]]},"properties":{"id":1550,"top":7436930.5681,"id_0":1550,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436913.0681,"col_index":21,"row_index":58}},{"id":1551,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.38482088],[9.940050962,55.384731577],[9.940208167,55.384731577],[9.940208167,55.38482088],[9.940050962,55.38482088]]]},"properties":{"id":1551,"top":7436913.0681,"id_0":1551,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436895.5681,"col_index":21,"row_index":59}},{"id":1552,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384731577],[9.940050962,55.384642275],[9.940208167,55.384642275],[9.940208167,55.384731577],[9.940050962,55.384731577]]]},"properties":{"id":1552,"top":7436895.5681,"id_0":1552,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436878.0681,"col_index":21,"row_index":60}},{"id":1553,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384642275],[9.940050962,55.384552972],[9.940208167,55.384552972],[9.940208167,55.384642275],[9.940050962,55.384642275]]]},"properties":{"id":1553,"top":7436878.0681,"id_0":1553,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436860.5681,"col_index":21,"row_index":61}},{"id":1554,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384552972],[9.940050962,55.384463669],[9.940208167,55.384463669],[9.940208167,55.384552972],[9.940050962,55.384552972]]]},"properties":{"id":1554,"top":7436860.5681,"id_0":1554,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436843.0681,"col_index":21,"row_index":62}},{"id":1555,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384463669],[9.940050962,55.384374366],[9.940208167,55.384374366],[9.940208167,55.384463669],[9.940050962,55.384463669]]]},"properties":{"id":1555,"top":7436843.0681,"id_0":1555,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436825.5681,"col_index":21,"row_index":63}},{"id":1556,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384374366],[9.940050962,55.384285062],[9.940208167,55.384285062],[9.940208167,55.384374366],[9.940050962,55.384374366]]]},"properties":{"id":1556,"top":7436825.5681,"id_0":1556,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436808.0681,"col_index":21,"row_index":64}},{"id":1557,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384285062],[9.940050962,55.384195759],[9.940208167,55.384195759],[9.940208167,55.384285062],[9.940050962,55.384285062]]]},"properties":{"id":1557,"top":7436808.0681,"id_0":1557,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436790.5681,"col_index":21,"row_index":65}},{"id":1558,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384195759],[9.940050962,55.384106455],[9.940208167,55.384106455],[9.940208167,55.384195759],[9.940050962,55.384195759]]]},"properties":{"id":1558,"top":7436790.5681,"id_0":1558,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436773.0681,"col_index":21,"row_index":66}},{"id":1559,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384106455],[9.940050962,55.384017151],[9.940208167,55.384017151],[9.940208167,55.384106455],[9.940050962,55.384106455]]]},"properties":{"id":1559,"top":7436773.0681,"id_0":1559,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436755.5681,"col_index":21,"row_index":67}},{"id":1560,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.384017151],[9.940050962,55.383927847],[9.940208167,55.383927847],[9.940208167,55.384017151],[9.940050962,55.384017151]]]},"properties":{"id":1560,"top":7436755.5681,"id_0":1560,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436738.0681,"col_index":21,"row_index":68}},{"id":1561,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.383927847],[9.940050962,55.383838543],[9.940208167,55.383838543],[9.940208167,55.383927847],[9.940050962,55.383927847]]]},"properties":{"id":1561,"top":7436738.0681,"id_0":1561,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436720.5681,"col_index":21,"row_index":69}},{"id":1562,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.383838543],[9.940050962,55.383749238],[9.940208167,55.383749238],[9.940208167,55.383838543],[9.940050962,55.383838543]]]},"properties":{"id":1562,"top":7436720.5681,"id_0":1562,"left":1106521.4115,"Label":null,"right":1106538.9115,"bottom":7436703.0681,"col_index":21,"row_index":70}},{"id":1564,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.390000071],[9.940208167,55.38991078],[9.940365372,55.38991078],[9.940365372,55.390000071],[9.940208167,55.390000071]]]},"properties":{"id":1564,"top":7437928.0681,"id_0":1564,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437910.5681,"col_index":22,"row_index":1}},{"id":1565,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38991078],[9.940208167,55.38982149],[9.940365372,55.38982149],[9.940365372,55.38991078],[9.940208167,55.38991078]]]},"properties":{"id":1565,"top":7437910.5681,"id_0":1565,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437893.0681,"col_index":22,"row_index":2}},{"id":1566,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38982149],[9.940208167,55.389732199],[9.940365372,55.389732199],[9.940365372,55.38982149],[9.940208167,55.38982149]]]},"properties":{"id":1566,"top":7437893.0681,"id_0":1566,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437875.5681,"col_index":22,"row_index":3}},{"id":1567,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389732199],[9.940208167,55.389642907],[9.940365372,55.389642907],[9.940365372,55.389732199],[9.940208167,55.389732199]]]},"properties":{"id":1567,"top":7437875.5681,"id_0":1567,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437858.0681,"col_index":22,"row_index":4}},{"id":1568,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389642907],[9.940208167,55.389553616],[9.940365372,55.389553616],[9.940365372,55.389642907],[9.940208167,55.389642907]]]},"properties":{"id":1568,"top":7437858.0681,"id_0":1568,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437840.5681,"col_index":22,"row_index":5}},{"id":1569,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389553616],[9.940208167,55.389464324],[9.940365372,55.389464324],[9.940365372,55.389553616],[9.940208167,55.389553616]]]},"properties":{"id":1569,"top":7437840.5681,"id_0":1569,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437823.0681,"col_index":22,"row_index":6}},{"id":1570,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389464324],[9.940208167,55.389375032],[9.940365372,55.389375032],[9.940365372,55.389464324],[9.940208167,55.389464324]]]},"properties":{"id":1570,"top":7437823.0681,"id_0":1570,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437805.5681,"col_index":22,"row_index":7}},{"id":1571,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389375032],[9.940208167,55.38928574],[9.940365372,55.38928574],[9.940365372,55.389375032],[9.940208167,55.389375032]]]},"properties":{"id":1571,"top":7437805.5681,"id_0":1571,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437788.0681,"col_index":22,"row_index":8}},{"id":1572,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38928574],[9.940208167,55.389196448],[9.940365372,55.389196448],[9.940365372,55.38928574],[9.940208167,55.38928574]]]},"properties":{"id":1572,"top":7437788.0681,"id_0":1572,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437770.5681,"col_index":22,"row_index":9}},{"id":1573,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389196448],[9.940208167,55.389107155],[9.940365372,55.389107155],[9.940365372,55.389196448],[9.940208167,55.389196448]]]},"properties":{"id":1573,"top":7437770.5681,"id_0":1573,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437753.0681,"col_index":22,"row_index":10}},{"id":1574,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389107155],[9.940208167,55.389017863],[9.940365372,55.389017863],[9.940365372,55.389107155],[9.940208167,55.389107155]]]},"properties":{"id":1574,"top":7437753.0681,"id_0":1574,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437735.5681,"col_index":22,"row_index":11}},{"id":1575,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.389017863],[9.940208167,55.38892857],[9.940365372,55.38892857],[9.940365372,55.389017863],[9.940208167,55.389017863]]]},"properties":{"id":1575,"top":7437735.5681,"id_0":1575,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437718.0681,"col_index":22,"row_index":12}},{"id":1576,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38892857],[9.940208167,55.388839277],[9.940365372,55.388839277],[9.940365372,55.38892857],[9.940208167,55.38892857]]]},"properties":{"id":1576,"top":7437718.0681,"id_0":1576,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437700.5681,"col_index":22,"row_index":13}},{"id":1577,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388839277],[9.940208167,55.388749984],[9.940365372,55.388749984],[9.940365372,55.388839277],[9.940208167,55.388839277]]]},"properties":{"id":1577,"top":7437700.5681,"id_0":1577,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437683.0681,"col_index":22,"row_index":14}},{"id":1578,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388749984],[9.940208167,55.38866069],[9.940365372,55.38866069],[9.940365372,55.388749984],[9.940208167,55.388749984]]]},"properties":{"id":1578,"top":7437683.0681,"id_0":1578,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437665.5681,"col_index":22,"row_index":15}},{"id":1579,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38866069],[9.940208167,55.388571396],[9.940365372,55.388571396],[9.940365372,55.38866069],[9.940208167,55.38866069]]]},"properties":{"id":1579,"top":7437665.5681,"id_0":1579,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437648.0681,"col_index":22,"row_index":16}},{"id":1580,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388571396],[9.940208167,55.388482103],[9.940365372,55.388482103],[9.940365372,55.388571396],[9.940208167,55.388571396]]]},"properties":{"id":1580,"top":7437648.0681,"id_0":1580,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437630.5681,"col_index":22,"row_index":17}},{"id":1581,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388482103],[9.940208167,55.388392808],[9.940365372,55.388392808],[9.940365372,55.388482103],[9.940208167,55.388482103]]]},"properties":{"id":1581,"top":7437630.5681,"id_0":1581,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437613.0681,"col_index":22,"row_index":18}},{"id":1582,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388392808],[9.940208167,55.388303514],[9.940365372,55.388303514],[9.940365372,55.388392808],[9.940208167,55.388392808]]]},"properties":{"id":1582,"top":7437613.0681,"id_0":1582,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437595.5681,"col_index":22,"row_index":19}},{"id":1583,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388303514],[9.940208167,55.38821422],[9.940365372,55.38821422],[9.940365372,55.388303514],[9.940208167,55.388303514]]]},"properties":{"id":1583,"top":7437595.5681,"id_0":1583,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437578.0681,"col_index":22,"row_index":20}},{"id":1584,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38821422],[9.940208167,55.388124925],[9.940365372,55.388124925],[9.940365372,55.38821422],[9.940208167,55.38821422]]]},"properties":{"id":1584,"top":7437578.0681,"id_0":1584,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437560.5681,"col_index":22,"row_index":21}},{"id":1585,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.388124925],[9.940208167,55.38803563],[9.940365372,55.38803563],[9.940365372,55.388124925],[9.940208167,55.388124925]]]},"properties":{"id":1585,"top":7437560.5681,"id_0":1585,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437543.0681,"col_index":22,"row_index":22}},{"id":1586,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38803563],[9.940208167,55.387946335],[9.940365372,55.387946335],[9.940365372,55.38803563],[9.940208167,55.38803563]]]},"properties":{"id":1586,"top":7437543.0681,"id_0":1586,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437525.5681,"col_index":22,"row_index":23}},{"id":1587,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387946335],[9.940208167,55.38785704],[9.940365372,55.38785704],[9.940365372,55.387946335],[9.940208167,55.387946335]]]},"properties":{"id":1587,"top":7437525.5681,"id_0":1587,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437508.0681,"col_index":22,"row_index":24}},{"id":1588,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38785704],[9.940208167,55.387767744],[9.940365372,55.387767744],[9.940365372,55.38785704],[9.940208167,55.38785704]]]},"properties":{"id":1588,"top":7437508.0681,"id_0":1588,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437490.5681,"col_index":22,"row_index":25}},{"id":1589,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387767744],[9.940208167,55.387678448],[9.940365372,55.387678448],[9.940365372,55.387767744],[9.940208167,55.387767744]]]},"properties":{"id":1589,"top":7437490.5681,"id_0":1589,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437473.0681,"col_index":22,"row_index":26}},{"id":1590,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387678448],[9.940208167,55.387589153],[9.940365372,55.387589153],[9.940365372,55.387678448],[9.940208167,55.387678448]]]},"properties":{"id":1590,"top":7437473.0681,"id_0":1590,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437455.5681,"col_index":22,"row_index":27}},{"id":1591,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387589153],[9.940208167,55.387499856],[9.940365372,55.387499856],[9.940365372,55.387589153],[9.940208167,55.387589153]]]},"properties":{"id":1591,"top":7437455.5681,"id_0":1591,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437438.0681,"col_index":22,"row_index":28}},{"id":1592,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387499856],[9.940208167,55.38741056],[9.940365372,55.38741056],[9.940365372,55.387499856],[9.940208167,55.387499856]]]},"properties":{"id":1592,"top":7437438.0681,"id_0":1592,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437420.5681,"col_index":22,"row_index":29}},{"id":1593,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38741056],[9.940208167,55.387321264],[9.940365372,55.387321264],[9.940365372,55.38741056],[9.940208167,55.38741056]]]},"properties":{"id":1593,"top":7437420.5681,"id_0":1593,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437403.0681,"col_index":22,"row_index":30}},{"id":1594,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387321264],[9.940208167,55.387231967],[9.940365372,55.387231967],[9.940365372,55.387321264],[9.940208167,55.387321264]]]},"properties":{"id":1594,"top":7437403.0681,"id_0":1594,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437385.5681,"col_index":22,"row_index":31}},{"id":1595,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387231967],[9.940208167,55.38714267],[9.940365372,55.38714267],[9.940365372,55.387231967],[9.940208167,55.387231967]]]},"properties":{"id":1595,"top":7437385.5681,"id_0":1595,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437368.0681,"col_index":22,"row_index":32}},{"id":1596,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38714267],[9.940208167,55.387053373],[9.940365372,55.387053373],[9.940365372,55.38714267],[9.940208167,55.38714267]]]},"properties":{"id":1596,"top":7437368.0681,"id_0":1596,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437350.5681,"col_index":22,"row_index":33}},{"id":1597,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.387053373],[9.940208167,55.386964076],[9.940365372,55.386964076],[9.940365372,55.387053373],[9.940208167,55.387053373]]]},"properties":{"id":1597,"top":7437350.5681,"id_0":1597,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437333.0681,"col_index":22,"row_index":34}},{"id":1598,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386964076],[9.940208167,55.386874778],[9.940365372,55.386874778],[9.940365372,55.386964076],[9.940208167,55.386964076]]]},"properties":{"id":1598,"top":7437333.0681,"id_0":1598,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437315.5681,"col_index":22,"row_index":35}},{"id":1599,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386874778],[9.940208167,55.38678548],[9.940365372,55.38678548],[9.940365372,55.386874778],[9.940208167,55.386874778]]]},"properties":{"id":1599,"top":7437315.5681,"id_0":1599,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437298.0681,"col_index":22,"row_index":36}},{"id":1600,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38678548],[9.940208167,55.386696182],[9.940365372,55.386696182],[9.940365372,55.38678548],[9.940208167,55.38678548]]]},"properties":{"id":1600,"top":7437298.0681,"id_0":1600,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437280.5681,"col_index":22,"row_index":37}},{"id":1601,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386696182],[9.940208167,55.386606884],[9.940365372,55.386606884],[9.940365372,55.386696182],[9.940208167,55.386696182]]]},"properties":{"id":1601,"top":7437280.5681,"id_0":1601,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437263.0681,"col_index":22,"row_index":38}},{"id":1602,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386606884],[9.940208167,55.386517586],[9.940365372,55.386517586],[9.940365372,55.386606884],[9.940208167,55.386606884]]]},"properties":{"id":1602,"top":7437263.0681,"id_0":1602,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437245.5681,"col_index":22,"row_index":39}},{"id":1603,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386517586],[9.940208167,55.386428287],[9.940365372,55.386428287],[9.940365372,55.386517586],[9.940208167,55.386517586]]]},"properties":{"id":1603,"top":7437245.5681,"id_0":1603,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437228.0681,"col_index":22,"row_index":40}},{"id":1604,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386428287],[9.940208167,55.386338989],[9.940365372,55.386338989],[9.940365372,55.386428287],[9.940208167,55.386428287]]]},"properties":{"id":1604,"top":7437228.0681,"id_0":1604,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437210.5681,"col_index":22,"row_index":41}},{"id":1605,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386338989],[9.940208167,55.38624969],[9.940365372,55.38624969],[9.940365372,55.386338989],[9.940208167,55.386338989]]]},"properties":{"id":1605,"top":7437210.5681,"id_0":1605,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437193.0681,"col_index":22,"row_index":42}},{"id":1606,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38624969],[9.940208167,55.386160391],[9.940365372,55.386160391],[9.940365372,55.38624969],[9.940208167,55.38624969]]]},"properties":{"id":1606,"top":7437193.0681,"id_0":1606,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437175.5681,"col_index":22,"row_index":43}},{"id":1607,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386160391],[9.940208167,55.386071091],[9.940365372,55.386071091],[9.940365372,55.386160391],[9.940208167,55.386160391]]]},"properties":{"id":1607,"top":7437175.5681,"id_0":1607,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437158.0681,"col_index":22,"row_index":44}},{"id":1608,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.386071091],[9.940208167,55.385981792],[9.940365372,55.385981792],[9.940365372,55.386071091],[9.940208167,55.386071091]]]},"properties":{"id":1608,"top":7437158.0681,"id_0":1608,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437140.5681,"col_index":22,"row_index":45}},{"id":1609,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385981792],[9.940208167,55.385892492],[9.940365372,55.385892492],[9.940365372,55.385981792],[9.940208167,55.385981792]]]},"properties":{"id":1609,"top":7437140.5681,"id_0":1609,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437123.0681,"col_index":22,"row_index":46}},{"id":1610,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385892492],[9.940208167,55.385803192],[9.940365372,55.385803192],[9.940365372,55.385892492],[9.940208167,55.385892492]]]},"properties":{"id":1610,"top":7437123.0681,"id_0":1610,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437105.5681,"col_index":22,"row_index":47}},{"id":1611,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385803192],[9.940208167,55.385713892],[9.940365372,55.385713892],[9.940365372,55.385803192],[9.940208167,55.385803192]]]},"properties":{"id":1611,"top":7437105.5681,"id_0":1611,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437088.0681,"col_index":22,"row_index":48}},{"id":1612,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385713892],[9.940208167,55.385624592],[9.940365372,55.385624592],[9.940365372,55.385713892],[9.940208167,55.385713892]]]},"properties":{"id":1612,"top":7437088.0681,"id_0":1612,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437070.5681,"col_index":22,"row_index":49}},{"id":1613,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385624592],[9.940208167,55.385535291],[9.940365372,55.385535291],[9.940365372,55.385624592],[9.940208167,55.385624592]]]},"properties":{"id":1613,"top":7437070.5681,"id_0":1613,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437053.0681,"col_index":22,"row_index":50}},{"id":1614,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385535291],[9.940208167,55.38544599],[9.940365372,55.38544599],[9.940365372,55.385535291],[9.940208167,55.385535291]]]},"properties":{"id":1614,"top":7437053.0681,"id_0":1614,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437035.5681,"col_index":22,"row_index":51}},{"id":1615,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38544599],[9.940208167,55.385356689],[9.940365372,55.385356689],[9.940365372,55.38544599],[9.940208167,55.38544599]]]},"properties":{"id":1615,"top":7437035.5681,"id_0":1615,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437018.0681,"col_index":22,"row_index":52}},{"id":1616,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385356689],[9.940208167,55.385267388],[9.940365372,55.385267388],[9.940365372,55.385356689],[9.940208167,55.385356689]]]},"properties":{"id":1616,"top":7437018.0681,"id_0":1616,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7437000.5681,"col_index":22,"row_index":53}},{"id":1617,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385267388],[9.940208167,55.385178087],[9.940365372,55.385178087],[9.940365372,55.385267388],[9.940208167,55.385267388]]]},"properties":{"id":1617,"top":7437000.5681,"id_0":1617,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436983.0681,"col_index":22,"row_index":54}},{"id":1618,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385178087],[9.940208167,55.385088785],[9.940365372,55.385088785],[9.940365372,55.385178087],[9.940208167,55.385178087]]]},"properties":{"id":1618,"top":7436983.0681,"id_0":1618,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436965.5681,"col_index":22,"row_index":55}},{"id":1619,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.385088785],[9.940208167,55.384999484],[9.940365372,55.384999484],[9.940365372,55.385088785],[9.940208167,55.385088785]]]},"properties":{"id":1619,"top":7436965.5681,"id_0":1619,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436948.0681,"col_index":22,"row_index":56}},{"id":1620,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384999484],[9.940208167,55.384910182],[9.940365372,55.384910182],[9.940365372,55.384999484],[9.940208167,55.384999484]]]},"properties":{"id":1620,"top":7436948.0681,"id_0":1620,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436930.5681,"col_index":22,"row_index":57}},{"id":1621,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384910182],[9.940208167,55.38482088],[9.940365372,55.38482088],[9.940365372,55.384910182],[9.940208167,55.384910182]]]},"properties":{"id":1621,"top":7436930.5681,"id_0":1621,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436913.0681,"col_index":22,"row_index":58}},{"id":1622,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.38482088],[9.940208167,55.384731577],[9.940365372,55.384731577],[9.940365372,55.38482088],[9.940208167,55.38482088]]]},"properties":{"id":1622,"top":7436913.0681,"id_0":1622,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436895.5681,"col_index":22,"row_index":59}},{"id":1623,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384731577],[9.940208167,55.384642275],[9.940365372,55.384642275],[9.940365372,55.384731577],[9.940208167,55.384731577]]]},"properties":{"id":1623,"top":7436895.5681,"id_0":1623,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436878.0681,"col_index":22,"row_index":60}},{"id":1624,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384642275],[9.940208167,55.384552972],[9.940365372,55.384552972],[9.940365372,55.384642275],[9.940208167,55.384642275]]]},"properties":{"id":1624,"top":7436878.0681,"id_0":1624,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436860.5681,"col_index":22,"row_index":61}},{"id":1625,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384552972],[9.940208167,55.384463669],[9.940365372,55.384463669],[9.940365372,55.384552972],[9.940208167,55.384552972]]]},"properties":{"id":1625,"top":7436860.5681,"id_0":1625,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436843.0681,"col_index":22,"row_index":62}},{"id":1626,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384463669],[9.940208167,55.384374366],[9.940365372,55.384374366],[9.940365372,55.384463669],[9.940208167,55.384463669]]]},"properties":{"id":1626,"top":7436843.0681,"id_0":1626,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436825.5681,"col_index":22,"row_index":63}},{"id":1627,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384374366],[9.940208167,55.384285062],[9.940365372,55.384285062],[9.940365372,55.384374366],[9.940208167,55.384374366]]]},"properties":{"id":1627,"top":7436825.5681,"id_0":1627,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436808.0681,"col_index":22,"row_index":64}},{"id":1628,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384285062],[9.940208167,55.384195759],[9.940365372,55.384195759],[9.940365372,55.384285062],[9.940208167,55.384285062]]]},"properties":{"id":1628,"top":7436808.0681,"id_0":1628,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436790.5681,"col_index":22,"row_index":65}},{"id":1629,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384195759],[9.940208167,55.384106455],[9.940365372,55.384106455],[9.940365372,55.384195759],[9.940208167,55.384195759]]]},"properties":{"id":1629,"top":7436790.5681,"id_0":1629,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436773.0681,"col_index":22,"row_index":66}},{"id":1630,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384106455],[9.940208167,55.384017151],[9.940365372,55.384017151],[9.940365372,55.384106455],[9.940208167,55.384106455]]]},"properties":{"id":1630,"top":7436773.0681,"id_0":1630,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436755.5681,"col_index":22,"row_index":67}},{"id":1631,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.384017151],[9.940208167,55.383927847],[9.940365372,55.383927847],[9.940365372,55.384017151],[9.940208167,55.384017151]]]},"properties":{"id":1631,"top":7436755.5681,"id_0":1631,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436738.0681,"col_index":22,"row_index":68}},{"id":1632,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.383927847],[9.940208167,55.383838543],[9.940365372,55.383838543],[9.940365372,55.383927847],[9.940208167,55.383927847]]]},"properties":{"id":1632,"top":7436738.0681,"id_0":1632,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436720.5681,"col_index":22,"row_index":69}},{"id":1633,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.383838543],[9.940208167,55.383749238],[9.940365372,55.383749238],[9.940365372,55.383838543],[9.940208167,55.383838543]]]},"properties":{"id":1633,"top":7436720.5681,"id_0":1633,"left":1106538.9115,"Label":null,"right":1106556.4115,"bottom":7436703.0681,"col_index":22,"row_index":70}},{"id":1635,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.390000071],[9.940365372,55.38991078],[9.940522577,55.38991078],[9.940522577,55.390000071],[9.940365372,55.390000071]]]},"properties":{"id":1635,"top":7437928.0681,"id_0":1635,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437910.5681,"col_index":23,"row_index":1}},{"id":1636,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38991078],[9.940365372,55.38982149],[9.940522577,55.38982149],[9.940522577,55.38991078],[9.940365372,55.38991078]]]},"properties":{"id":1636,"top":7437910.5681,"id_0":1636,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437893.0681,"col_index":23,"row_index":2}},{"id":1637,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38982149],[9.940365372,55.389732199],[9.940522577,55.389732199],[9.940522577,55.38982149],[9.940365372,55.38982149]]]},"properties":{"id":1637,"top":7437893.0681,"id_0":1637,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437875.5681,"col_index":23,"row_index":3}},{"id":1638,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389732199],[9.940365372,55.389642907],[9.940522577,55.389642907],[9.940522577,55.389732199],[9.940365372,55.389732199]]]},"properties":{"id":1638,"top":7437875.5681,"id_0":1638,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437858.0681,"col_index":23,"row_index":4}},{"id":1639,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389642907],[9.940365372,55.389553616],[9.940522577,55.389553616],[9.940522577,55.389642907],[9.940365372,55.389642907]]]},"properties":{"id":1639,"top":7437858.0681,"id_0":1639,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437840.5681,"col_index":23,"row_index":5}},{"id":1640,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389553616],[9.940365372,55.389464324],[9.940522577,55.389464324],[9.940522577,55.389553616],[9.940365372,55.389553616]]]},"properties":{"id":1640,"top":7437840.5681,"id_0":1640,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437823.0681,"col_index":23,"row_index":6}},{"id":1641,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389464324],[9.940365372,55.389375032],[9.940522577,55.389375032],[9.940522577,55.389464324],[9.940365372,55.389464324]]]},"properties":{"id":1641,"top":7437823.0681,"id_0":1641,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437805.5681,"col_index":23,"row_index":7}},{"id":1642,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389375032],[9.940365372,55.38928574],[9.940522577,55.38928574],[9.940522577,55.389375032],[9.940365372,55.389375032]]]},"properties":{"id":1642,"top":7437805.5681,"id_0":1642,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437788.0681,"col_index":23,"row_index":8}},{"id":1643,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38928574],[9.940365372,55.389196448],[9.940522577,55.389196448],[9.940522577,55.38928574],[9.940365372,55.38928574]]]},"properties":{"id":1643,"top":7437788.0681,"id_0":1643,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437770.5681,"col_index":23,"row_index":9}},{"id":1644,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389196448],[9.940365372,55.389107155],[9.940522577,55.389107155],[9.940522577,55.389196448],[9.940365372,55.389196448]]]},"properties":{"id":1644,"top":7437770.5681,"id_0":1644,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437753.0681,"col_index":23,"row_index":10}},{"id":1645,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389107155],[9.940365372,55.389017863],[9.940522577,55.389017863],[9.940522577,55.389107155],[9.940365372,55.389107155]]]},"properties":{"id":1645,"top":7437753.0681,"id_0":1645,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437735.5681,"col_index":23,"row_index":11}},{"id":1646,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.389017863],[9.940365372,55.38892857],[9.940522577,55.38892857],[9.940522577,55.389017863],[9.940365372,55.389017863]]]},"properties":{"id":1646,"top":7437735.5681,"id_0":1646,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437718.0681,"col_index":23,"row_index":12}},{"id":1647,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38892857],[9.940365372,55.388839277],[9.940522577,55.388839277],[9.940522577,55.38892857],[9.940365372,55.38892857]]]},"properties":{"id":1647,"top":7437718.0681,"id_0":1647,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437700.5681,"col_index":23,"row_index":13}},{"id":1648,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388839277],[9.940365372,55.388749984],[9.940522577,55.388749984],[9.940522577,55.388839277],[9.940365372,55.388839277]]]},"properties":{"id":1648,"top":7437700.5681,"id_0":1648,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437683.0681,"col_index":23,"row_index":14}},{"id":1649,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388749984],[9.940365372,55.38866069],[9.940522577,55.38866069],[9.940522577,55.388749984],[9.940365372,55.388749984]]]},"properties":{"id":1649,"top":7437683.0681,"id_0":1649,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437665.5681,"col_index":23,"row_index":15}},{"id":1650,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38866069],[9.940365372,55.388571396],[9.940522577,55.388571396],[9.940522577,55.38866069],[9.940365372,55.38866069]]]},"properties":{"id":1650,"top":7437665.5681,"id_0":1650,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437648.0681,"col_index":23,"row_index":16}},{"id":1651,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388571396],[9.940365372,55.388482103],[9.940522577,55.388482103],[9.940522577,55.388571396],[9.940365372,55.388571396]]]},"properties":{"id":1651,"top":7437648.0681,"id_0":1651,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437630.5681,"col_index":23,"row_index":17}},{"id":1652,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388482103],[9.940365372,55.388392808],[9.940522577,55.388392808],[9.940522577,55.388482103],[9.940365372,55.388482103]]]},"properties":{"id":1652,"top":7437630.5681,"id_0":1652,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437613.0681,"col_index":23,"row_index":18}},{"id":1653,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388392808],[9.940365372,55.388303514],[9.940522577,55.388303514],[9.940522577,55.388392808],[9.940365372,55.388392808]]]},"properties":{"id":1653,"top":7437613.0681,"id_0":1653,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437595.5681,"col_index":23,"row_index":19}},{"id":1654,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388303514],[9.940365372,55.38821422],[9.940522577,55.38821422],[9.940522577,55.388303514],[9.940365372,55.388303514]]]},"properties":{"id":1654,"top":7437595.5681,"id_0":1654,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437578.0681,"col_index":23,"row_index":20}},{"id":1655,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38821422],[9.940365372,55.388124925],[9.940522577,55.388124925],[9.940522577,55.38821422],[9.940365372,55.38821422]]]},"properties":{"id":1655,"top":7437578.0681,"id_0":1655,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437560.5681,"col_index":23,"row_index":21}},{"id":1656,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.388124925],[9.940365372,55.38803563],[9.940522577,55.38803563],[9.940522577,55.388124925],[9.940365372,55.388124925]]]},"properties":{"id":1656,"top":7437560.5681,"id_0":1656,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437543.0681,"col_index":23,"row_index":22}},{"id":1657,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38803563],[9.940365372,55.387946335],[9.940522577,55.387946335],[9.940522577,55.38803563],[9.940365372,55.38803563]]]},"properties":{"id":1657,"top":7437543.0681,"id_0":1657,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437525.5681,"col_index":23,"row_index":23}},{"id":1658,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387946335],[9.940365372,55.38785704],[9.940522577,55.38785704],[9.940522577,55.387946335],[9.940365372,55.387946335]]]},"properties":{"id":1658,"top":7437525.5681,"id_0":1658,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437508.0681,"col_index":23,"row_index":24}},{"id":1659,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38785704],[9.940365372,55.387767744],[9.940522577,55.387767744],[9.940522577,55.38785704],[9.940365372,55.38785704]]]},"properties":{"id":1659,"top":7437508.0681,"id_0":1659,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437490.5681,"col_index":23,"row_index":25}},{"id":1660,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387767744],[9.940365372,55.387678448],[9.940522577,55.387678448],[9.940522577,55.387767744],[9.940365372,55.387767744]]]},"properties":{"id":1660,"top":7437490.5681,"id_0":1660,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437473.0681,"col_index":23,"row_index":26}},{"id":1661,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387678448],[9.940365372,55.387589153],[9.940522577,55.387589153],[9.940522577,55.387678448],[9.940365372,55.387678448]]]},"properties":{"id":1661,"top":7437473.0681,"id_0":1661,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437455.5681,"col_index":23,"row_index":27}},{"id":1662,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387589153],[9.940365372,55.387499856],[9.940522577,55.387499856],[9.940522577,55.387589153],[9.940365372,55.387589153]]]},"properties":{"id":1662,"top":7437455.5681,"id_0":1662,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437438.0681,"col_index":23,"row_index":28}},{"id":1663,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387499856],[9.940365372,55.38741056],[9.940522577,55.38741056],[9.940522577,55.387499856],[9.940365372,55.387499856]]]},"properties":{"id":1663,"top":7437438.0681,"id_0":1663,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437420.5681,"col_index":23,"row_index":29}},{"id":1664,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38741056],[9.940365372,55.387321264],[9.940522577,55.387321264],[9.940522577,55.38741056],[9.940365372,55.38741056]]]},"properties":{"id":1664,"top":7437420.5681,"id_0":1664,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437403.0681,"col_index":23,"row_index":30}},{"id":1665,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387321264],[9.940365372,55.387231967],[9.940522577,55.387231967],[9.940522577,55.387321264],[9.940365372,55.387321264]]]},"properties":{"id":1665,"top":7437403.0681,"id_0":1665,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437385.5681,"col_index":23,"row_index":31}},{"id":1666,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387231967],[9.940365372,55.38714267],[9.940522577,55.38714267],[9.940522577,55.387231967],[9.940365372,55.387231967]]]},"properties":{"id":1666,"top":7437385.5681,"id_0":1666,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437368.0681,"col_index":23,"row_index":32}},{"id":1667,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38714267],[9.940365372,55.387053373],[9.940522577,55.387053373],[9.940522577,55.38714267],[9.940365372,55.38714267]]]},"properties":{"id":1667,"top":7437368.0681,"id_0":1667,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437350.5681,"col_index":23,"row_index":33}},{"id":1668,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.387053373],[9.940365372,55.386964076],[9.940522577,55.386964076],[9.940522577,55.387053373],[9.940365372,55.387053373]]]},"properties":{"id":1668,"top":7437350.5681,"id_0":1668,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437333.0681,"col_index":23,"row_index":34}},{"id":1669,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386964076],[9.940365372,55.386874778],[9.940522577,55.386874778],[9.940522577,55.386964076],[9.940365372,55.386964076]]]},"properties":{"id":1669,"top":7437333.0681,"id_0":1669,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437315.5681,"col_index":23,"row_index":35}},{"id":1670,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386874778],[9.940365372,55.38678548],[9.940522577,55.38678548],[9.940522577,55.386874778],[9.940365372,55.386874778]]]},"properties":{"id":1670,"top":7437315.5681,"id_0":1670,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437298.0681,"col_index":23,"row_index":36}},{"id":1671,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38678548],[9.940365372,55.386696182],[9.940522577,55.386696182],[9.940522577,55.38678548],[9.940365372,55.38678548]]]},"properties":{"id":1671,"top":7437298.0681,"id_0":1671,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437280.5681,"col_index":23,"row_index":37}},{"id":1672,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386696182],[9.940365372,55.386606884],[9.940522577,55.386606884],[9.940522577,55.386696182],[9.940365372,55.386696182]]]},"properties":{"id":1672,"top":7437280.5681,"id_0":1672,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437263.0681,"col_index":23,"row_index":38}},{"id":1673,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386606884],[9.940365372,55.386517586],[9.940522577,55.386517586],[9.940522577,55.386606884],[9.940365372,55.386606884]]]},"properties":{"id":1673,"top":7437263.0681,"id_0":1673,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437245.5681,"col_index":23,"row_index":39}},{"id":1674,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386517586],[9.940365372,55.386428287],[9.940522577,55.386428287],[9.940522577,55.386517586],[9.940365372,55.386517586]]]},"properties":{"id":1674,"top":7437245.5681,"id_0":1674,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437228.0681,"col_index":23,"row_index":40}},{"id":1675,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386428287],[9.940365372,55.386338989],[9.940522577,55.386338989],[9.940522577,55.386428287],[9.940365372,55.386428287]]]},"properties":{"id":1675,"top":7437228.0681,"id_0":1675,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437210.5681,"col_index":23,"row_index":41}},{"id":1676,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386338989],[9.940365372,55.38624969],[9.940522577,55.38624969],[9.940522577,55.386338989],[9.940365372,55.386338989]]]},"properties":{"id":1676,"top":7437210.5681,"id_0":1676,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437193.0681,"col_index":23,"row_index":42}},{"id":1677,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38624969],[9.940365372,55.386160391],[9.940522577,55.386160391],[9.940522577,55.38624969],[9.940365372,55.38624969]]]},"properties":{"id":1677,"top":7437193.0681,"id_0":1677,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437175.5681,"col_index":23,"row_index":43}},{"id":1678,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386160391],[9.940365372,55.386071091],[9.940522577,55.386071091],[9.940522577,55.386160391],[9.940365372,55.386160391]]]},"properties":{"id":1678,"top":7437175.5681,"id_0":1678,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437158.0681,"col_index":23,"row_index":44}},{"id":1679,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.386071091],[9.940365372,55.385981792],[9.940522577,55.385981792],[9.940522577,55.386071091],[9.940365372,55.386071091]]]},"properties":{"id":1679,"top":7437158.0681,"id_0":1679,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437140.5681,"col_index":23,"row_index":45}},{"id":1680,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385981792],[9.940365372,55.385892492],[9.940522577,55.385892492],[9.940522577,55.385981792],[9.940365372,55.385981792]]]},"properties":{"id":1680,"top":7437140.5681,"id_0":1680,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437123.0681,"col_index":23,"row_index":46}},{"id":1681,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385892492],[9.940365372,55.385803192],[9.940522577,55.385803192],[9.940522577,55.385892492],[9.940365372,55.385892492]]]},"properties":{"id":1681,"top":7437123.0681,"id_0":1681,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437105.5681,"col_index":23,"row_index":47}},{"id":1682,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385803192],[9.940365372,55.385713892],[9.940522577,55.385713892],[9.940522577,55.385803192],[9.940365372,55.385803192]]]},"properties":{"id":1682,"top":7437105.5681,"id_0":1682,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437088.0681,"col_index":23,"row_index":48}},{"id":1683,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385713892],[9.940365372,55.385624592],[9.940522577,55.385624592],[9.940522577,55.385713892],[9.940365372,55.385713892]]]},"properties":{"id":1683,"top":7437088.0681,"id_0":1683,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437070.5681,"col_index":23,"row_index":49}},{"id":1684,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385624592],[9.940365372,55.385535291],[9.940522577,55.385535291],[9.940522577,55.385624592],[9.940365372,55.385624592]]]},"properties":{"id":1684,"top":7437070.5681,"id_0":1684,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437053.0681,"col_index":23,"row_index":50}},{"id":1685,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385535291],[9.940365372,55.38544599],[9.940522577,55.38544599],[9.940522577,55.385535291],[9.940365372,55.385535291]]]},"properties":{"id":1685,"top":7437053.0681,"id_0":1685,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437035.5681,"col_index":23,"row_index":51}},{"id":1686,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38544599],[9.940365372,55.385356689],[9.940522577,55.385356689],[9.940522577,55.38544599],[9.940365372,55.38544599]]]},"properties":{"id":1686,"top":7437035.5681,"id_0":1686,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437018.0681,"col_index":23,"row_index":52}},{"id":1687,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385356689],[9.940365372,55.385267388],[9.940522577,55.385267388],[9.940522577,55.385356689],[9.940365372,55.385356689]]]},"properties":{"id":1687,"top":7437018.0681,"id_0":1687,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7437000.5681,"col_index":23,"row_index":53}},{"id":1688,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385267388],[9.940365372,55.385178087],[9.940522577,55.385178087],[9.940522577,55.385267388],[9.940365372,55.385267388]]]},"properties":{"id":1688,"top":7437000.5681,"id_0":1688,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436983.0681,"col_index":23,"row_index":54}},{"id":1689,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385178087],[9.940365372,55.385088785],[9.940522577,55.385088785],[9.940522577,55.385178087],[9.940365372,55.385178087]]]},"properties":{"id":1689,"top":7436983.0681,"id_0":1689,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436965.5681,"col_index":23,"row_index":55}},{"id":1690,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.385088785],[9.940365372,55.384999484],[9.940522577,55.384999484],[9.940522577,55.385088785],[9.940365372,55.385088785]]]},"properties":{"id":1690,"top":7436965.5681,"id_0":1690,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436948.0681,"col_index":23,"row_index":56}},{"id":1691,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384999484],[9.940365372,55.384910182],[9.940522577,55.384910182],[9.940522577,55.384999484],[9.940365372,55.384999484]]]},"properties":{"id":1691,"top":7436948.0681,"id_0":1691,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436930.5681,"col_index":23,"row_index":57}},{"id":1692,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384910182],[9.940365372,55.38482088],[9.940522577,55.38482088],[9.940522577,55.384910182],[9.940365372,55.384910182]]]},"properties":{"id":1692,"top":7436930.5681,"id_0":1692,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436913.0681,"col_index":23,"row_index":58}},{"id":1693,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.38482088],[9.940365372,55.384731577],[9.940522577,55.384731577],[9.940522577,55.38482088],[9.940365372,55.38482088]]]},"properties":{"id":1693,"top":7436913.0681,"id_0":1693,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436895.5681,"col_index":23,"row_index":59}},{"id":1694,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384731577],[9.940365372,55.384642275],[9.940522577,55.384642275],[9.940522577,55.384731577],[9.940365372,55.384731577]]]},"properties":{"id":1694,"top":7436895.5681,"id_0":1694,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436878.0681,"col_index":23,"row_index":60}},{"id":1695,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384642275],[9.940365372,55.384552972],[9.940522577,55.384552972],[9.940522577,55.384642275],[9.940365372,55.384642275]]]},"properties":{"id":1695,"top":7436878.0681,"id_0":1695,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436860.5681,"col_index":23,"row_index":61}},{"id":1696,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384552972],[9.940365372,55.384463669],[9.940522577,55.384463669],[9.940522577,55.384552972],[9.940365372,55.384552972]]]},"properties":{"id":1696,"top":7436860.5681,"id_0":1696,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436843.0681,"col_index":23,"row_index":62}},{"id":1697,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384463669],[9.940365372,55.384374366],[9.940522577,55.384374366],[9.940522577,55.384463669],[9.940365372,55.384463669]]]},"properties":{"id":1697,"top":7436843.0681,"id_0":1697,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436825.5681,"col_index":23,"row_index":63}},{"id":1698,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384374366],[9.940365372,55.384285062],[9.940522577,55.384285062],[9.940522577,55.384374366],[9.940365372,55.384374366]]]},"properties":{"id":1698,"top":7436825.5681,"id_0":1698,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436808.0681,"col_index":23,"row_index":64}},{"id":1699,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384285062],[9.940365372,55.384195759],[9.940522577,55.384195759],[9.940522577,55.384285062],[9.940365372,55.384285062]]]},"properties":{"id":1699,"top":7436808.0681,"id_0":1699,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436790.5681,"col_index":23,"row_index":65}},{"id":1700,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384195759],[9.940365372,55.384106455],[9.940522577,55.384106455],[9.940522577,55.384195759],[9.940365372,55.384195759]]]},"properties":{"id":1700,"top":7436790.5681,"id_0":1700,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436773.0681,"col_index":23,"row_index":66}},{"id":1701,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384106455],[9.940365372,55.384017151],[9.940522577,55.384017151],[9.940522577,55.384106455],[9.940365372,55.384106455]]]},"properties":{"id":1701,"top":7436773.0681,"id_0":1701,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436755.5681,"col_index":23,"row_index":67}},{"id":1702,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.384017151],[9.940365372,55.383927847],[9.940522577,55.383927847],[9.940522577,55.384017151],[9.940365372,55.384017151]]]},"properties":{"id":1702,"top":7436755.5681,"id_0":1702,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436738.0681,"col_index":23,"row_index":68}},{"id":1703,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.383927847],[9.940365372,55.383838543],[9.940522577,55.383838543],[9.940522577,55.383927847],[9.940365372,55.383927847]]]},"properties":{"id":1703,"top":7436738.0681,"id_0":1703,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436720.5681,"col_index":23,"row_index":69}},{"id":1704,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.383838543],[9.940365372,55.383749238],[9.940522577,55.383749238],[9.940522577,55.383838543],[9.940365372,55.383838543]]]},"properties":{"id":1704,"top":7436720.5681,"id_0":1704,"left":1106556.4115,"Label":null,"right":1106573.9115,"bottom":7436703.0681,"col_index":23,"row_index":70}},{"id":1706,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.390000071],[9.940522577,55.38991078],[9.940679782,55.38991078],[9.940679782,55.390000071],[9.940522577,55.390000071]]]},"properties":{"id":1706,"top":7437928.0681,"id_0":1706,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437910.5681,"col_index":24,"row_index":1}},{"id":1707,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38991078],[9.940522577,55.38982149],[9.940679782,55.38982149],[9.940679782,55.38991078],[9.940522577,55.38991078]]]},"properties":{"id":1707,"top":7437910.5681,"id_0":1707,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437893.0681,"col_index":24,"row_index":2}},{"id":1708,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38982149],[9.940522577,55.389732199],[9.940679782,55.389732199],[9.940679782,55.38982149],[9.940522577,55.38982149]]]},"properties":{"id":1708,"top":7437893.0681,"id_0":1708,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437875.5681,"col_index":24,"row_index":3}},{"id":1709,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389732199],[9.940522577,55.389642907],[9.940679782,55.389642907],[9.940679782,55.389732199],[9.940522577,55.389732199]]]},"properties":{"id":1709,"top":7437875.5681,"id_0":1709,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437858.0681,"col_index":24,"row_index":4}},{"id":1710,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389642907],[9.940522577,55.389553616],[9.940679782,55.389553616],[9.940679782,55.389642907],[9.940522577,55.389642907]]]},"properties":{"id":1710,"top":7437858.0681,"id_0":1710,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437840.5681,"col_index":24,"row_index":5}},{"id":1711,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389553616],[9.940522577,55.389464324],[9.940679782,55.389464324],[9.940679782,55.389553616],[9.940522577,55.389553616]]]},"properties":{"id":1711,"top":7437840.5681,"id_0":1711,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437823.0681,"col_index":24,"row_index":6}},{"id":1712,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389464324],[9.940522577,55.389375032],[9.940679782,55.389375032],[9.940679782,55.389464324],[9.940522577,55.389464324]]]},"properties":{"id":1712,"top":7437823.0681,"id_0":1712,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437805.5681,"col_index":24,"row_index":7}},{"id":1713,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389375032],[9.940522577,55.38928574],[9.940679782,55.38928574],[9.940679782,55.389375032],[9.940522577,55.389375032]]]},"properties":{"id":1713,"top":7437805.5681,"id_0":1713,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437788.0681,"col_index":24,"row_index":8}},{"id":1714,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38928574],[9.940522577,55.389196448],[9.940679782,55.389196448],[9.940679782,55.38928574],[9.940522577,55.38928574]]]},"properties":{"id":1714,"top":7437788.0681,"id_0":1714,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437770.5681,"col_index":24,"row_index":9}},{"id":1715,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389196448],[9.940522577,55.389107155],[9.940679782,55.389107155],[9.940679782,55.389196448],[9.940522577,55.389196448]]]},"properties":{"id":1715,"top":7437770.5681,"id_0":1715,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437753.0681,"col_index":24,"row_index":10}},{"id":1716,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389107155],[9.940522577,55.389017863],[9.940679782,55.389017863],[9.940679782,55.389107155],[9.940522577,55.389107155]]]},"properties":{"id":1716,"top":7437753.0681,"id_0":1716,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437735.5681,"col_index":24,"row_index":11}},{"id":1717,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.389017863],[9.940522577,55.38892857],[9.940679782,55.38892857],[9.940679782,55.389017863],[9.940522577,55.389017863]]]},"properties":{"id":1717,"top":7437735.5681,"id_0":1717,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437718.0681,"col_index":24,"row_index":12}},{"id":1718,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38892857],[9.940522577,55.388839277],[9.940679782,55.388839277],[9.940679782,55.38892857],[9.940522577,55.38892857]]]},"properties":{"id":1718,"top":7437718.0681,"id_0":1718,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437700.5681,"col_index":24,"row_index":13}},{"id":1719,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388839277],[9.940522577,55.388749984],[9.940679782,55.388749984],[9.940679782,55.388839277],[9.940522577,55.388839277]]]},"properties":{"id":1719,"top":7437700.5681,"id_0":1719,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437683.0681,"col_index":24,"row_index":14}},{"id":1720,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388749984],[9.940522577,55.38866069],[9.940679782,55.38866069],[9.940679782,55.388749984],[9.940522577,55.388749984]]]},"properties":{"id":1720,"top":7437683.0681,"id_0":1720,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437665.5681,"col_index":24,"row_index":15}},{"id":1721,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38866069],[9.940522577,55.388571396],[9.940679782,55.388571396],[9.940679782,55.38866069],[9.940522577,55.38866069]]]},"properties":{"id":1721,"top":7437665.5681,"id_0":1721,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437648.0681,"col_index":24,"row_index":16}},{"id":1722,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388571396],[9.940522577,55.388482103],[9.940679782,55.388482103],[9.940679782,55.388571396],[9.940522577,55.388571396]]]},"properties":{"id":1722,"top":7437648.0681,"id_0":1722,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437630.5681,"col_index":24,"row_index":17}},{"id":1723,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388482103],[9.940522577,55.388392808],[9.940679782,55.388392808],[9.940679782,55.388482103],[9.940522577,55.388482103]]]},"properties":{"id":1723,"top":7437630.5681,"id_0":1723,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437613.0681,"col_index":24,"row_index":18}},{"id":1724,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388392808],[9.940522577,55.388303514],[9.940679782,55.388303514],[9.940679782,55.388392808],[9.940522577,55.388392808]]]},"properties":{"id":1724,"top":7437613.0681,"id_0":1724,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437595.5681,"col_index":24,"row_index":19}},{"id":1725,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388303514],[9.940522577,55.38821422],[9.940679782,55.38821422],[9.940679782,55.388303514],[9.940522577,55.388303514]]]},"properties":{"id":1725,"top":7437595.5681,"id_0":1725,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437578.0681,"col_index":24,"row_index":20}},{"id":1726,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38821422],[9.940522577,55.388124925],[9.940679782,55.388124925],[9.940679782,55.38821422],[9.940522577,55.38821422]]]},"properties":{"id":1726,"top":7437578.0681,"id_0":1726,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437560.5681,"col_index":24,"row_index":21}},{"id":1727,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.388124925],[9.940522577,55.38803563],[9.940679782,55.38803563],[9.940679782,55.388124925],[9.940522577,55.388124925]]]},"properties":{"id":1727,"top":7437560.5681,"id_0":1727,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437543.0681,"col_index":24,"row_index":22}},{"id":1728,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38803563],[9.940522577,55.387946335],[9.940679782,55.387946335],[9.940679782,55.38803563],[9.940522577,55.38803563]]]},"properties":{"id":1728,"top":7437543.0681,"id_0":1728,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437525.5681,"col_index":24,"row_index":23}},{"id":1729,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387946335],[9.940522577,55.38785704],[9.940679782,55.38785704],[9.940679782,55.387946335],[9.940522577,55.387946335]]]},"properties":{"id":1729,"top":7437525.5681,"id_0":1729,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437508.0681,"col_index":24,"row_index":24}},{"id":1730,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38785704],[9.940522577,55.387767744],[9.940679782,55.387767744],[9.940679782,55.38785704],[9.940522577,55.38785704]]]},"properties":{"id":1730,"top":7437508.0681,"id_0":1730,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437490.5681,"col_index":24,"row_index":25}},{"id":1731,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387767744],[9.940522577,55.387678448],[9.940679782,55.387678448],[9.940679782,55.387767744],[9.940522577,55.387767744]]]},"properties":{"id":1731,"top":7437490.5681,"id_0":1731,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437473.0681,"col_index":24,"row_index":26}},{"id":1732,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387678448],[9.940522577,55.387589153],[9.940679782,55.387589153],[9.940679782,55.387678448],[9.940522577,55.387678448]]]},"properties":{"id":1732,"top":7437473.0681,"id_0":1732,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437455.5681,"col_index":24,"row_index":27}},{"id":1733,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387589153],[9.940522577,55.387499856],[9.940679782,55.387499856],[9.940679782,55.387589153],[9.940522577,55.387589153]]]},"properties":{"id":1733,"top":7437455.5681,"id_0":1733,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437438.0681,"col_index":24,"row_index":28}},{"id":1734,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387499856],[9.940522577,55.38741056],[9.940679782,55.38741056],[9.940679782,55.387499856],[9.940522577,55.387499856]]]},"properties":{"id":1734,"top":7437438.0681,"id_0":1734,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437420.5681,"col_index":24,"row_index":29}},{"id":1735,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38741056],[9.940522577,55.387321264],[9.940679782,55.387321264],[9.940679782,55.38741056],[9.940522577,55.38741056]]]},"properties":{"id":1735,"top":7437420.5681,"id_0":1735,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437403.0681,"col_index":24,"row_index":30}},{"id":1736,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387321264],[9.940522577,55.387231967],[9.940679782,55.387231967],[9.940679782,55.387321264],[9.940522577,55.387321264]]]},"properties":{"id":1736,"top":7437403.0681,"id_0":1736,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437385.5681,"col_index":24,"row_index":31}},{"id":1737,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387231967],[9.940522577,55.38714267],[9.940679782,55.38714267],[9.940679782,55.387231967],[9.940522577,55.387231967]]]},"properties":{"id":1737,"top":7437385.5681,"id_0":1737,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437368.0681,"col_index":24,"row_index":32}},{"id":1738,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38714267],[9.940522577,55.387053373],[9.940679782,55.387053373],[9.940679782,55.38714267],[9.940522577,55.38714267]]]},"properties":{"id":1738,"top":7437368.0681,"id_0":1738,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437350.5681,"col_index":24,"row_index":33}},{"id":1739,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.387053373],[9.940522577,55.386964076],[9.940679782,55.386964076],[9.940679782,55.387053373],[9.940522577,55.387053373]]]},"properties":{"id":1739,"top":7437350.5681,"id_0":1739,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437333.0681,"col_index":24,"row_index":34}},{"id":1740,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386964076],[9.940522577,55.386874778],[9.940679782,55.386874778],[9.940679782,55.386964076],[9.940522577,55.386964076]]]},"properties":{"id":1740,"top":7437333.0681,"id_0":1740,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437315.5681,"col_index":24,"row_index":35}},{"id":1741,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386874778],[9.940522577,55.38678548],[9.940679782,55.38678548],[9.940679782,55.386874778],[9.940522577,55.386874778]]]},"properties":{"id":1741,"top":7437315.5681,"id_0":1741,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437298.0681,"col_index":24,"row_index":36}},{"id":1742,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38678548],[9.940522577,55.386696182],[9.940679782,55.386696182],[9.940679782,55.38678548],[9.940522577,55.38678548]]]},"properties":{"id":1742,"top":7437298.0681,"id_0":1742,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437280.5681,"col_index":24,"row_index":37}},{"id":1743,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386696182],[9.940522577,55.386606884],[9.940679782,55.386606884],[9.940679782,55.386696182],[9.940522577,55.386696182]]]},"properties":{"id":1743,"top":7437280.5681,"id_0":1743,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437263.0681,"col_index":24,"row_index":38}},{"id":1744,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386606884],[9.940522577,55.386517586],[9.940679782,55.386517586],[9.940679782,55.386606884],[9.940522577,55.386606884]]]},"properties":{"id":1744,"top":7437263.0681,"id_0":1744,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437245.5681,"col_index":24,"row_index":39}},{"id":1745,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386517586],[9.940522577,55.386428287],[9.940679782,55.386428287],[9.940679782,55.386517586],[9.940522577,55.386517586]]]},"properties":{"id":1745,"top":7437245.5681,"id_0":1745,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437228.0681,"col_index":24,"row_index":40}},{"id":1746,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386428287],[9.940522577,55.386338989],[9.940679782,55.386338989],[9.940679782,55.386428287],[9.940522577,55.386428287]]]},"properties":{"id":1746,"top":7437228.0681,"id_0":1746,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437210.5681,"col_index":24,"row_index":41}},{"id":1747,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386338989],[9.940522577,55.38624969],[9.940679782,55.38624969],[9.940679782,55.386338989],[9.940522577,55.386338989]]]},"properties":{"id":1747,"top":7437210.5681,"id_0":1747,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437193.0681,"col_index":24,"row_index":42}},{"id":1748,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38624969],[9.940522577,55.386160391],[9.940679782,55.386160391],[9.940679782,55.38624969],[9.940522577,55.38624969]]]},"properties":{"id":1748,"top":7437193.0681,"id_0":1748,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437175.5681,"col_index":24,"row_index":43}},{"id":1749,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386160391],[9.940522577,55.386071091],[9.940679782,55.386071091],[9.940679782,55.386160391],[9.940522577,55.386160391]]]},"properties":{"id":1749,"top":7437175.5681,"id_0":1749,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437158.0681,"col_index":24,"row_index":44}},{"id":1750,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.386071091],[9.940522577,55.385981792],[9.940679782,55.385981792],[9.940679782,55.386071091],[9.940522577,55.386071091]]]},"properties":{"id":1750,"top":7437158.0681,"id_0":1750,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437140.5681,"col_index":24,"row_index":45}},{"id":1751,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385981792],[9.940522577,55.385892492],[9.940679782,55.385892492],[9.940679782,55.385981792],[9.940522577,55.385981792]]]},"properties":{"id":1751,"top":7437140.5681,"id_0":1751,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437123.0681,"col_index":24,"row_index":46}},{"id":1752,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385892492],[9.940522577,55.385803192],[9.940679782,55.385803192],[9.940679782,55.385892492],[9.940522577,55.385892492]]]},"properties":{"id":1752,"top":7437123.0681,"id_0":1752,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437105.5681,"col_index":24,"row_index":47}},{"id":1753,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385803192],[9.940522577,55.385713892],[9.940679782,55.385713892],[9.940679782,55.385803192],[9.940522577,55.385803192]]]},"properties":{"id":1753,"top":7437105.5681,"id_0":1753,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437088.0681,"col_index":24,"row_index":48}},{"id":1754,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385713892],[9.940522577,55.385624592],[9.940679782,55.385624592],[9.940679782,55.385713892],[9.940522577,55.385713892]]]},"properties":{"id":1754,"top":7437088.0681,"id_0":1754,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437070.5681,"col_index":24,"row_index":49}},{"id":1755,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385624592],[9.940522577,55.385535291],[9.940679782,55.385535291],[9.940679782,55.385624592],[9.940522577,55.385624592]]]},"properties":{"id":1755,"top":7437070.5681,"id_0":1755,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437053.0681,"col_index":24,"row_index":50}},{"id":1756,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385535291],[9.940522577,55.38544599],[9.940679782,55.38544599],[9.940679782,55.385535291],[9.940522577,55.385535291]]]},"properties":{"id":1756,"top":7437053.0681,"id_0":1756,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437035.5681,"col_index":24,"row_index":51}},{"id":1757,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38544599],[9.940522577,55.385356689],[9.940679782,55.385356689],[9.940679782,55.38544599],[9.940522577,55.38544599]]]},"properties":{"id":1757,"top":7437035.5681,"id_0":1757,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437018.0681,"col_index":24,"row_index":52}},{"id":1758,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385356689],[9.940522577,55.385267388],[9.940679782,55.385267388],[9.940679782,55.385356689],[9.940522577,55.385356689]]]},"properties":{"id":1758,"top":7437018.0681,"id_0":1758,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7437000.5681,"col_index":24,"row_index":53}},{"id":1759,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385267388],[9.940522577,55.385178087],[9.940679782,55.385178087],[9.940679782,55.385267388],[9.940522577,55.385267388]]]},"properties":{"id":1759,"top":7437000.5681,"id_0":1759,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436983.0681,"col_index":24,"row_index":54}},{"id":1760,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385178087],[9.940522577,55.385088785],[9.940679782,55.385088785],[9.940679782,55.385178087],[9.940522577,55.385178087]]]},"properties":{"id":1760,"top":7436983.0681,"id_0":1760,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436965.5681,"col_index":24,"row_index":55}},{"id":1761,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.385088785],[9.940522577,55.384999484],[9.940679782,55.384999484],[9.940679782,55.385088785],[9.940522577,55.385088785]]]},"properties":{"id":1761,"top":7436965.5681,"id_0":1761,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436948.0681,"col_index":24,"row_index":56}},{"id":1762,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384999484],[9.940522577,55.384910182],[9.940679782,55.384910182],[9.940679782,55.384999484],[9.940522577,55.384999484]]]},"properties":{"id":1762,"top":7436948.0681,"id_0":1762,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436930.5681,"col_index":24,"row_index":57}},{"id":1763,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384910182],[9.940522577,55.38482088],[9.940679782,55.38482088],[9.940679782,55.384910182],[9.940522577,55.384910182]]]},"properties":{"id":1763,"top":7436930.5681,"id_0":1763,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436913.0681,"col_index":24,"row_index":58}},{"id":1764,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.38482088],[9.940522577,55.384731577],[9.940679782,55.384731577],[9.940679782,55.38482088],[9.940522577,55.38482088]]]},"properties":{"id":1764,"top":7436913.0681,"id_0":1764,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436895.5681,"col_index":24,"row_index":59}},{"id":1765,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384731577],[9.940522577,55.384642275],[9.940679782,55.384642275],[9.940679782,55.384731577],[9.940522577,55.384731577]]]},"properties":{"id":1765,"top":7436895.5681,"id_0":1765,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436878.0681,"col_index":24,"row_index":60}},{"id":1766,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384642275],[9.940522577,55.384552972],[9.940679782,55.384552972],[9.940679782,55.384642275],[9.940522577,55.384642275]]]},"properties":{"id":1766,"top":7436878.0681,"id_0":1766,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436860.5681,"col_index":24,"row_index":61}},{"id":1767,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384552972],[9.940522577,55.384463669],[9.940679782,55.384463669],[9.940679782,55.384552972],[9.940522577,55.384552972]]]},"properties":{"id":1767,"top":7436860.5681,"id_0":1767,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436843.0681,"col_index":24,"row_index":62}},{"id":1768,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384463669],[9.940522577,55.384374366],[9.940679782,55.384374366],[9.940679782,55.384463669],[9.940522577,55.384463669]]]},"properties":{"id":1768,"top":7436843.0681,"id_0":1768,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436825.5681,"col_index":24,"row_index":63}},{"id":1769,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384374366],[9.940522577,55.384285062],[9.940679782,55.384285062],[9.940679782,55.384374366],[9.940522577,55.384374366]]]},"properties":{"id":1769,"top":7436825.5681,"id_0":1769,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436808.0681,"col_index":24,"row_index":64}},{"id":1770,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384285062],[9.940522577,55.384195759],[9.940679782,55.384195759],[9.940679782,55.384285062],[9.940522577,55.384285062]]]},"properties":{"id":1770,"top":7436808.0681,"id_0":1770,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436790.5681,"col_index":24,"row_index":65}},{"id":1771,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384195759],[9.940522577,55.384106455],[9.940679782,55.384106455],[9.940679782,55.384195759],[9.940522577,55.384195759]]]},"properties":{"id":1771,"top":7436790.5681,"id_0":1771,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436773.0681,"col_index":24,"row_index":66}},{"id":1772,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384106455],[9.940522577,55.384017151],[9.940679782,55.384017151],[9.940679782,55.384106455],[9.940522577,55.384106455]]]},"properties":{"id":1772,"top":7436773.0681,"id_0":1772,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436755.5681,"col_index":24,"row_index":67}},{"id":1773,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.384017151],[9.940522577,55.383927847],[9.940679782,55.383927847],[9.940679782,55.384017151],[9.940522577,55.384017151]]]},"properties":{"id":1773,"top":7436755.5681,"id_0":1773,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436738.0681,"col_index":24,"row_index":68}},{"id":1774,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.383927847],[9.940522577,55.383838543],[9.940679782,55.383838543],[9.940679782,55.383927847],[9.940522577,55.383927847]]]},"properties":{"id":1774,"top":7436738.0681,"id_0":1774,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436720.5681,"col_index":24,"row_index":69}},{"id":1775,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.383838543],[9.940522577,55.383749238],[9.940679782,55.383749238],[9.940679782,55.383838543],[9.940522577,55.383838543]]]},"properties":{"id":1775,"top":7436720.5681,"id_0":1775,"left":1106573.9115,"Label":null,"right":1106591.4115,"bottom":7436703.0681,"col_index":24,"row_index":70}},{"id":1777,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.390000071],[9.940679782,55.38991078],[9.940836987,55.38991078],[9.940836987,55.390000071],[9.940679782,55.390000071]]]},"properties":{"id":1777,"top":7437928.0681,"id_0":1777,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437910.5681,"col_index":25,"row_index":1}},{"id":1778,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38991078],[9.940679782,55.38982149],[9.940836987,55.38982149],[9.940836987,55.38991078],[9.940679782,55.38991078]]]},"properties":{"id":1778,"top":7437910.5681,"id_0":1778,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437893.0681,"col_index":25,"row_index":2}},{"id":1779,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38982149],[9.940679782,55.389732199],[9.940836987,55.389732199],[9.940836987,55.38982149],[9.940679782,55.38982149]]]},"properties":{"id":1779,"top":7437893.0681,"id_0":1779,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437875.5681,"col_index":25,"row_index":3}},{"id":1780,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389732199],[9.940679782,55.389642907],[9.940836987,55.389642907],[9.940836987,55.389732199],[9.940679782,55.389732199]]]},"properties":{"id":1780,"top":7437875.5681,"id_0":1780,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437858.0681,"col_index":25,"row_index":4}},{"id":1781,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389642907],[9.940679782,55.389553616],[9.940836987,55.389553616],[9.940836987,55.389642907],[9.940679782,55.389642907]]]},"properties":{"id":1781,"top":7437858.0681,"id_0":1781,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437840.5681,"col_index":25,"row_index":5}},{"id":1782,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389553616],[9.940679782,55.389464324],[9.940836987,55.389464324],[9.940836987,55.389553616],[9.940679782,55.389553616]]]},"properties":{"id":1782,"top":7437840.5681,"id_0":1782,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437823.0681,"col_index":25,"row_index":6}},{"id":1783,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389464324],[9.940679782,55.389375032],[9.940836987,55.389375032],[9.940836987,55.389464324],[9.940679782,55.389464324]]]},"properties":{"id":1783,"top":7437823.0681,"id_0":1783,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437805.5681,"col_index":25,"row_index":7}},{"id":1784,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389375032],[9.940679782,55.38928574],[9.940836987,55.38928574],[9.940836987,55.389375032],[9.940679782,55.389375032]]]},"properties":{"id":1784,"top":7437805.5681,"id_0":1784,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437788.0681,"col_index":25,"row_index":8}},{"id":1785,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38928574],[9.940679782,55.389196448],[9.940836987,55.389196448],[9.940836987,55.38928574],[9.940679782,55.38928574]]]},"properties":{"id":1785,"top":7437788.0681,"id_0":1785,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437770.5681,"col_index":25,"row_index":9}},{"id":1786,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389196448],[9.940679782,55.389107155],[9.940836987,55.389107155],[9.940836987,55.389196448],[9.940679782,55.389196448]]]},"properties":{"id":1786,"top":7437770.5681,"id_0":1786,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437753.0681,"col_index":25,"row_index":10}},{"id":1787,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389107155],[9.940679782,55.389017863],[9.940836987,55.389017863],[9.940836987,55.389107155],[9.940679782,55.389107155]]]},"properties":{"id":1787,"top":7437753.0681,"id_0":1787,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437735.5681,"col_index":25,"row_index":11}},{"id":1788,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.389017863],[9.940679782,55.38892857],[9.940836987,55.38892857],[9.940836987,55.389017863],[9.940679782,55.389017863]]]},"properties":{"id":1788,"top":7437735.5681,"id_0":1788,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437718.0681,"col_index":25,"row_index":12}},{"id":1789,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38892857],[9.940679782,55.388839277],[9.940836987,55.388839277],[9.940836987,55.38892857],[9.940679782,55.38892857]]]},"properties":{"id":1789,"top":7437718.0681,"id_0":1789,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437700.5681,"col_index":25,"row_index":13}},{"id":1790,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388839277],[9.940679782,55.388749984],[9.940836987,55.388749984],[9.940836987,55.388839277],[9.940679782,55.388839277]]]},"properties":{"id":1790,"top":7437700.5681,"id_0":1790,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437683.0681,"col_index":25,"row_index":14}},{"id":1791,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388749984],[9.940679782,55.38866069],[9.940836987,55.38866069],[9.940836987,55.388749984],[9.940679782,55.388749984]]]},"properties":{"id":1791,"top":7437683.0681,"id_0":1791,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437665.5681,"col_index":25,"row_index":15}},{"id":1792,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38866069],[9.940679782,55.388571396],[9.940836987,55.388571396],[9.940836987,55.38866069],[9.940679782,55.38866069]]]},"properties":{"id":1792,"top":7437665.5681,"id_0":1792,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437648.0681,"col_index":25,"row_index":16}},{"id":1793,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388571396],[9.940679782,55.388482103],[9.940836987,55.388482103],[9.940836987,55.388571396],[9.940679782,55.388571396]]]},"properties":{"id":1793,"top":7437648.0681,"id_0":1793,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437630.5681,"col_index":25,"row_index":17}},{"id":1794,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388482103],[9.940679782,55.388392808],[9.940836987,55.388392808],[9.940836987,55.388482103],[9.940679782,55.388482103]]]},"properties":{"id":1794,"top":7437630.5681,"id_0":1794,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437613.0681,"col_index":25,"row_index":18}},{"id":1795,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388392808],[9.940679782,55.388303514],[9.940836987,55.388303514],[9.940836987,55.388392808],[9.940679782,55.388392808]]]},"properties":{"id":1795,"top":7437613.0681,"id_0":1795,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437595.5681,"col_index":25,"row_index":19}},{"id":1796,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388303514],[9.940679782,55.38821422],[9.940836987,55.38821422],[9.940836987,55.388303514],[9.940679782,55.388303514]]]},"properties":{"id":1796,"top":7437595.5681,"id_0":1796,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437578.0681,"col_index":25,"row_index":20}},{"id":1797,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38821422],[9.940679782,55.388124925],[9.940836987,55.388124925],[9.940836987,55.38821422],[9.940679782,55.38821422]]]},"properties":{"id":1797,"top":7437578.0681,"id_0":1797,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437560.5681,"col_index":25,"row_index":21}},{"id":1798,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.388124925],[9.940679782,55.38803563],[9.940836987,55.38803563],[9.940836987,55.388124925],[9.940679782,55.388124925]]]},"properties":{"id":1798,"top":7437560.5681,"id_0":1798,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437543.0681,"col_index":25,"row_index":22}},{"id":1799,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38803563],[9.940679782,55.387946335],[9.940836987,55.387946335],[9.940836987,55.38803563],[9.940679782,55.38803563]]]},"properties":{"id":1799,"top":7437543.0681,"id_0":1799,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437525.5681,"col_index":25,"row_index":23}},{"id":1800,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387946335],[9.940679782,55.38785704],[9.940836987,55.38785704],[9.940836987,55.387946335],[9.940679782,55.387946335]]]},"properties":{"id":1800,"top":7437525.5681,"id_0":1800,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437508.0681,"col_index":25,"row_index":24}},{"id":1801,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38785704],[9.940679782,55.387767744],[9.940836987,55.387767744],[9.940836987,55.38785704],[9.940679782,55.38785704]]]},"properties":{"id":1801,"top":7437508.0681,"id_0":1801,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437490.5681,"col_index":25,"row_index":25}},{"id":1802,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387767744],[9.940679782,55.387678448],[9.940836987,55.387678448],[9.940836987,55.387767744],[9.940679782,55.387767744]]]},"properties":{"id":1802,"top":7437490.5681,"id_0":1802,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437473.0681,"col_index":25,"row_index":26}},{"id":1803,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387678448],[9.940679782,55.387589153],[9.940836987,55.387589153],[9.940836987,55.387678448],[9.940679782,55.387678448]]]},"properties":{"id":1803,"top":7437473.0681,"id_0":1803,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437455.5681,"col_index":25,"row_index":27}},{"id":1804,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387589153],[9.940679782,55.387499856],[9.940836987,55.387499856],[9.940836987,55.387589153],[9.940679782,55.387589153]]]},"properties":{"id":1804,"top":7437455.5681,"id_0":1804,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437438.0681,"col_index":25,"row_index":28}},{"id":1805,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387499856],[9.940679782,55.38741056],[9.940836987,55.38741056],[9.940836987,55.387499856],[9.940679782,55.387499856]]]},"properties":{"id":1805,"top":7437438.0681,"id_0":1805,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437420.5681,"col_index":25,"row_index":29}},{"id":1806,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38741056],[9.940679782,55.387321264],[9.940836987,55.387321264],[9.940836987,55.38741056],[9.940679782,55.38741056]]]},"properties":{"id":1806,"top":7437420.5681,"id_0":1806,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437403.0681,"col_index":25,"row_index":30}},{"id":1807,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387321264],[9.940679782,55.387231967],[9.940836987,55.387231967],[9.940836987,55.387321264],[9.940679782,55.387321264]]]},"properties":{"id":1807,"top":7437403.0681,"id_0":1807,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437385.5681,"col_index":25,"row_index":31}},{"id":1808,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387231967],[9.940679782,55.38714267],[9.940836987,55.38714267],[9.940836987,55.387231967],[9.940679782,55.387231967]]]},"properties":{"id":1808,"top":7437385.5681,"id_0":1808,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437368.0681,"col_index":25,"row_index":32}},{"id":1809,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38714267],[9.940679782,55.387053373],[9.940836987,55.387053373],[9.940836987,55.38714267],[9.940679782,55.38714267]]]},"properties":{"id":1809,"top":7437368.0681,"id_0":1809,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437350.5681,"col_index":25,"row_index":33}},{"id":1810,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.387053373],[9.940679782,55.386964076],[9.940836987,55.386964076],[9.940836987,55.387053373],[9.940679782,55.387053373]]]},"properties":{"id":1810,"top":7437350.5681,"id_0":1810,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437333.0681,"col_index":25,"row_index":34}},{"id":1811,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386964076],[9.940679782,55.386874778],[9.940836987,55.386874778],[9.940836987,55.386964076],[9.940679782,55.386964076]]]},"properties":{"id":1811,"top":7437333.0681,"id_0":1811,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437315.5681,"col_index":25,"row_index":35}},{"id":1812,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386874778],[9.940679782,55.38678548],[9.940836987,55.38678548],[9.940836987,55.386874778],[9.940679782,55.386874778]]]},"properties":{"id":1812,"top":7437315.5681,"id_0":1812,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437298.0681,"col_index":25,"row_index":36}},{"id":1813,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38678548],[9.940679782,55.386696182],[9.940836987,55.386696182],[9.940836987,55.38678548],[9.940679782,55.38678548]]]},"properties":{"id":1813,"top":7437298.0681,"id_0":1813,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437280.5681,"col_index":25,"row_index":37}},{"id":1814,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386696182],[9.940679782,55.386606884],[9.940836987,55.386606884],[9.940836987,55.386696182],[9.940679782,55.386696182]]]},"properties":{"id":1814,"top":7437280.5681,"id_0":1814,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437263.0681,"col_index":25,"row_index":38}},{"id":1815,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386606884],[9.940679782,55.386517586],[9.940836987,55.386517586],[9.940836987,55.386606884],[9.940679782,55.386606884]]]},"properties":{"id":1815,"top":7437263.0681,"id_0":1815,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437245.5681,"col_index":25,"row_index":39}},{"id":1816,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386517586],[9.940679782,55.386428287],[9.940836987,55.386428287],[9.940836987,55.386517586],[9.940679782,55.386517586]]]},"properties":{"id":1816,"top":7437245.5681,"id_0":1816,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437228.0681,"col_index":25,"row_index":40}},{"id":1817,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386428287],[9.940679782,55.386338989],[9.940836987,55.386338989],[9.940836987,55.386428287],[9.940679782,55.386428287]]]},"properties":{"id":1817,"top":7437228.0681,"id_0":1817,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437210.5681,"col_index":25,"row_index":41}},{"id":1818,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386338989],[9.940679782,55.38624969],[9.940836987,55.38624969],[9.940836987,55.386338989],[9.940679782,55.386338989]]]},"properties":{"id":1818,"top":7437210.5681,"id_0":1818,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437193.0681,"col_index":25,"row_index":42}},{"id":1819,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38624969],[9.940679782,55.386160391],[9.940836987,55.386160391],[9.940836987,55.38624969],[9.940679782,55.38624969]]]},"properties":{"id":1819,"top":7437193.0681,"id_0":1819,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437175.5681,"col_index":25,"row_index":43}},{"id":1820,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386160391],[9.940679782,55.386071091],[9.940836987,55.386071091],[9.940836987,55.386160391],[9.940679782,55.386160391]]]},"properties":{"id":1820,"top":7437175.5681,"id_0":1820,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437158.0681,"col_index":25,"row_index":44}},{"id":1821,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.386071091],[9.940679782,55.385981792],[9.940836987,55.385981792],[9.940836987,55.386071091],[9.940679782,55.386071091]]]},"properties":{"id":1821,"top":7437158.0681,"id_0":1821,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437140.5681,"col_index":25,"row_index":45}},{"id":1822,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385981792],[9.940679782,55.385892492],[9.940836987,55.385892492],[9.940836987,55.385981792],[9.940679782,55.385981792]]]},"properties":{"id":1822,"top":7437140.5681,"id_0":1822,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437123.0681,"col_index":25,"row_index":46}},{"id":1823,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385892492],[9.940679782,55.385803192],[9.940836987,55.385803192],[9.940836987,55.385892492],[9.940679782,55.385892492]]]},"properties":{"id":1823,"top":7437123.0681,"id_0":1823,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437105.5681,"col_index":25,"row_index":47}},{"id":1824,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385803192],[9.940679782,55.385713892],[9.940836987,55.385713892],[9.940836987,55.385803192],[9.940679782,55.385803192]]]},"properties":{"id":1824,"top":7437105.5681,"id_0":1824,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437088.0681,"col_index":25,"row_index":48}},{"id":1825,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385713892],[9.940679782,55.385624592],[9.940836987,55.385624592],[9.940836987,55.385713892],[9.940679782,55.385713892]]]},"properties":{"id":1825,"top":7437088.0681,"id_0":1825,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437070.5681,"col_index":25,"row_index":49}},{"id":1826,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385624592],[9.940679782,55.385535291],[9.940836987,55.385535291],[9.940836987,55.385624592],[9.940679782,55.385624592]]]},"properties":{"id":1826,"top":7437070.5681,"id_0":1826,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437053.0681,"col_index":25,"row_index":50}},{"id":1827,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385535291],[9.940679782,55.38544599],[9.940836987,55.38544599],[9.940836987,55.385535291],[9.940679782,55.385535291]]]},"properties":{"id":1827,"top":7437053.0681,"id_0":1827,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437035.5681,"col_index":25,"row_index":51}},{"id":1828,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38544599],[9.940679782,55.385356689],[9.940836987,55.385356689],[9.940836987,55.38544599],[9.940679782,55.38544599]]]},"properties":{"id":1828,"top":7437035.5681,"id_0":1828,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437018.0681,"col_index":25,"row_index":52}},{"id":1829,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385356689],[9.940679782,55.385267388],[9.940836987,55.385267388],[9.940836987,55.385356689],[9.940679782,55.385356689]]]},"properties":{"id":1829,"top":7437018.0681,"id_0":1829,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7437000.5681,"col_index":25,"row_index":53}},{"id":1830,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385267388],[9.940679782,55.385178087],[9.940836987,55.385178087],[9.940836987,55.385267388],[9.940679782,55.385267388]]]},"properties":{"id":1830,"top":7437000.5681,"id_0":1830,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436983.0681,"col_index":25,"row_index":54}},{"id":1831,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385178087],[9.940679782,55.385088785],[9.940836987,55.385088785],[9.940836987,55.385178087],[9.940679782,55.385178087]]]},"properties":{"id":1831,"top":7436983.0681,"id_0":1831,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436965.5681,"col_index":25,"row_index":55}},{"id":1832,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.385088785],[9.940679782,55.384999484],[9.940836987,55.384999484],[9.940836987,55.385088785],[9.940679782,55.385088785]]]},"properties":{"id":1832,"top":7436965.5681,"id_0":1832,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436948.0681,"col_index":25,"row_index":56}},{"id":1833,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384999484],[9.940679782,55.384910182],[9.940836987,55.384910182],[9.940836987,55.384999484],[9.940679782,55.384999484]]]},"properties":{"id":1833,"top":7436948.0681,"id_0":1833,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436930.5681,"col_index":25,"row_index":57}},{"id":1834,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384910182],[9.940679782,55.38482088],[9.940836987,55.38482088],[9.940836987,55.384910182],[9.940679782,55.384910182]]]},"properties":{"id":1834,"top":7436930.5681,"id_0":1834,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436913.0681,"col_index":25,"row_index":58}},{"id":1835,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.38482088],[9.940679782,55.384731577],[9.940836987,55.384731577],[9.940836987,55.38482088],[9.940679782,55.38482088]]]},"properties":{"id":1835,"top":7436913.0681,"id_0":1835,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436895.5681,"col_index":25,"row_index":59}},{"id":1836,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384731577],[9.940679782,55.384642275],[9.940836987,55.384642275],[9.940836987,55.384731577],[9.940679782,55.384731577]]]},"properties":{"id":1836,"top":7436895.5681,"id_0":1836,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436878.0681,"col_index":25,"row_index":60}},{"id":1837,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384642275],[9.940679782,55.384552972],[9.940836987,55.384552972],[9.940836987,55.384642275],[9.940679782,55.384642275]]]},"properties":{"id":1837,"top":7436878.0681,"id_0":1837,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436860.5681,"col_index":25,"row_index":61}},{"id":1838,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384552972],[9.940679782,55.384463669],[9.940836987,55.384463669],[9.940836987,55.384552972],[9.940679782,55.384552972]]]},"properties":{"id":1838,"top":7436860.5681,"id_0":1838,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436843.0681,"col_index":25,"row_index":62}},{"id":1839,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384463669],[9.940679782,55.384374366],[9.940836987,55.384374366],[9.940836987,55.384463669],[9.940679782,55.384463669]]]},"properties":{"id":1839,"top":7436843.0681,"id_0":1839,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436825.5681,"col_index":25,"row_index":63}},{"id":1840,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384374366],[9.940679782,55.384285062],[9.940836987,55.384285062],[9.940836987,55.384374366],[9.940679782,55.384374366]]]},"properties":{"id":1840,"top":7436825.5681,"id_0":1840,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436808.0681,"col_index":25,"row_index":64}},{"id":1841,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384285062],[9.940679782,55.384195759],[9.940836987,55.384195759],[9.940836987,55.384285062],[9.940679782,55.384285062]]]},"properties":{"id":1841,"top":7436808.0681,"id_0":1841,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436790.5681,"col_index":25,"row_index":65}},{"id":1842,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384195759],[9.940679782,55.384106455],[9.940836987,55.384106455],[9.940836987,55.384195759],[9.940679782,55.384195759]]]},"properties":{"id":1842,"top":7436790.5681,"id_0":1842,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436773.0681,"col_index":25,"row_index":66}},{"id":1843,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384106455],[9.940679782,55.384017151],[9.940836987,55.384017151],[9.940836987,55.384106455],[9.940679782,55.384106455]]]},"properties":{"id":1843,"top":7436773.0681,"id_0":1843,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436755.5681,"col_index":25,"row_index":67}},{"id":1844,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.384017151],[9.940679782,55.383927847],[9.940836987,55.383927847],[9.940836987,55.384017151],[9.940679782,55.384017151]]]},"properties":{"id":1844,"top":7436755.5681,"id_0":1844,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436738.0681,"col_index":25,"row_index":68}},{"id":1845,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.383927847],[9.940679782,55.383838543],[9.940836987,55.383838543],[9.940836987,55.383927847],[9.940679782,55.383927847]]]},"properties":{"id":1845,"top":7436738.0681,"id_0":1845,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436720.5681,"col_index":25,"row_index":69}},{"id":1846,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.383838543],[9.940679782,55.383749238],[9.940836987,55.383749238],[9.940836987,55.383838543],[9.940679782,55.383838543]]]},"properties":{"id":1846,"top":7436720.5681,"id_0":1846,"left":1106591.4115,"Label":null,"right":1106608.9115,"bottom":7436703.0681,"col_index":25,"row_index":70}},{"id":1848,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.390000071],[9.940836987,55.38991078],[9.940994193,55.38991078],[9.940994193,55.390000071],[9.940836987,55.390000071]]]},"properties":{"id":1848,"top":7437928.0681,"id_0":1848,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437910.5681,"col_index":26,"row_index":1}},{"id":1849,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38991078],[9.940836987,55.38982149],[9.940994193,55.38982149],[9.940994193,55.38991078],[9.940836987,55.38991078]]]},"properties":{"id":1849,"top":7437910.5681,"id_0":1849,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437893.0681,"col_index":26,"row_index":2}},{"id":1850,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38982149],[9.940836987,55.389732199],[9.940994193,55.389732199],[9.940994193,55.38982149],[9.940836987,55.38982149]]]},"properties":{"id":1850,"top":7437893.0681,"id_0":1850,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437875.5681,"col_index":26,"row_index":3}},{"id":1851,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389732199],[9.940836987,55.389642907],[9.940994193,55.389642907],[9.940994193,55.389732199],[9.940836987,55.389732199]]]},"properties":{"id":1851,"top":7437875.5681,"id_0":1851,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437858.0681,"col_index":26,"row_index":4}},{"id":1852,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389642907],[9.940836987,55.389553616],[9.940994193,55.389553616],[9.940994193,55.389642907],[9.940836987,55.389642907]]]},"properties":{"id":1852,"top":7437858.0681,"id_0":1852,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437840.5681,"col_index":26,"row_index":5}},{"id":1853,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389553616],[9.940836987,55.389464324],[9.940994193,55.389464324],[9.940994193,55.389553616],[9.940836987,55.389553616]]]},"properties":{"id":1853,"top":7437840.5681,"id_0":1853,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437823.0681,"col_index":26,"row_index":6}},{"id":1854,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389464324],[9.940836987,55.389375032],[9.940994193,55.389375032],[9.940994193,55.389464324],[9.940836987,55.389464324]]]},"properties":{"id":1854,"top":7437823.0681,"id_0":1854,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437805.5681,"col_index":26,"row_index":7}},{"id":1855,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389375032],[9.940836987,55.38928574],[9.940994193,55.38928574],[9.940994193,55.389375032],[9.940836987,55.389375032]]]},"properties":{"id":1855,"top":7437805.5681,"id_0":1855,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437788.0681,"col_index":26,"row_index":8}},{"id":1856,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38928574],[9.940836987,55.389196448],[9.940994193,55.389196448],[9.940994193,55.38928574],[9.940836987,55.38928574]]]},"properties":{"id":1856,"top":7437788.0681,"id_0":1856,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437770.5681,"col_index":26,"row_index":9}},{"id":1857,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389196448],[9.940836987,55.389107155],[9.940994193,55.389107155],[9.940994193,55.389196448],[9.940836987,55.389196448]]]},"properties":{"id":1857,"top":7437770.5681,"id_0":1857,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437753.0681,"col_index":26,"row_index":10}},{"id":1858,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389107155],[9.940836987,55.389017863],[9.940994193,55.389017863],[9.940994193,55.389107155],[9.940836987,55.389107155]]]},"properties":{"id":1858,"top":7437753.0681,"id_0":1858,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437735.5681,"col_index":26,"row_index":11}},{"id":1859,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.389017863],[9.940836987,55.38892857],[9.940994193,55.38892857],[9.940994193,55.389017863],[9.940836987,55.389017863]]]},"properties":{"id":1859,"top":7437735.5681,"id_0":1859,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437718.0681,"col_index":26,"row_index":12}},{"id":1860,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38892857],[9.940836987,55.388839277],[9.940994193,55.388839277],[9.940994193,55.38892857],[9.940836987,55.38892857]]]},"properties":{"id":1860,"top":7437718.0681,"id_0":1860,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437700.5681,"col_index":26,"row_index":13}},{"id":1861,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388839277],[9.940836987,55.388749984],[9.940994193,55.388749984],[9.940994193,55.388839277],[9.940836987,55.388839277]]]},"properties":{"id":1861,"top":7437700.5681,"id_0":1861,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437683.0681,"col_index":26,"row_index":14}},{"id":1862,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388749984],[9.940836987,55.38866069],[9.940994193,55.38866069],[9.940994193,55.388749984],[9.940836987,55.388749984]]]},"properties":{"id":1862,"top":7437683.0681,"id_0":1862,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437665.5681,"col_index":26,"row_index":15}},{"id":1863,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38866069],[9.940836987,55.388571396],[9.940994193,55.388571396],[9.940994193,55.38866069],[9.940836987,55.38866069]]]},"properties":{"id":1863,"top":7437665.5681,"id_0":1863,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437648.0681,"col_index":26,"row_index":16}},{"id":1864,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388571396],[9.940836987,55.388482103],[9.940994193,55.388482103],[9.940994193,55.388571396],[9.940836987,55.388571396]]]},"properties":{"id":1864,"top":7437648.0681,"id_0":1864,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437630.5681,"col_index":26,"row_index":17}},{"id":1865,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388482103],[9.940836987,55.388392808],[9.940994193,55.388392808],[9.940994193,55.388482103],[9.940836987,55.388482103]]]},"properties":{"id":1865,"top":7437630.5681,"id_0":1865,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437613.0681,"col_index":26,"row_index":18}},{"id":1866,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388392808],[9.940836987,55.388303514],[9.940994193,55.388303514],[9.940994193,55.388392808],[9.940836987,55.388392808]]]},"properties":{"id":1866,"top":7437613.0681,"id_0":1866,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437595.5681,"col_index":26,"row_index":19}},{"id":1867,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388303514],[9.940836987,55.38821422],[9.940994193,55.38821422],[9.940994193,55.388303514],[9.940836987,55.388303514]]]},"properties":{"id":1867,"top":7437595.5681,"id_0":1867,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437578.0681,"col_index":26,"row_index":20}},{"id":1868,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38821422],[9.940836987,55.388124925],[9.940994193,55.388124925],[9.940994193,55.38821422],[9.940836987,55.38821422]]]},"properties":{"id":1868,"top":7437578.0681,"id_0":1868,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437560.5681,"col_index":26,"row_index":21}},{"id":1869,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.388124925],[9.940836987,55.38803563],[9.940994193,55.38803563],[9.940994193,55.388124925],[9.940836987,55.388124925]]]},"properties":{"id":1869,"top":7437560.5681,"id_0":1869,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437543.0681,"col_index":26,"row_index":22}},{"id":1870,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38803563],[9.940836987,55.387946335],[9.940994193,55.387946335],[9.940994193,55.38803563],[9.940836987,55.38803563]]]},"properties":{"id":1870,"top":7437543.0681,"id_0":1870,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437525.5681,"col_index":26,"row_index":23}},{"id":1871,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387946335],[9.940836987,55.38785704],[9.940994193,55.38785704],[9.940994193,55.387946335],[9.940836987,55.387946335]]]},"properties":{"id":1871,"top":7437525.5681,"id_0":1871,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437508.0681,"col_index":26,"row_index":24}},{"id":1872,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38785704],[9.940836987,55.387767744],[9.940994193,55.387767744],[9.940994193,55.38785704],[9.940836987,55.38785704]]]},"properties":{"id":1872,"top":7437508.0681,"id_0":1872,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437490.5681,"col_index":26,"row_index":25}},{"id":1873,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387767744],[9.940836987,55.387678448],[9.940994193,55.387678448],[9.940994193,55.387767744],[9.940836987,55.387767744]]]},"properties":{"id":1873,"top":7437490.5681,"id_0":1873,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437473.0681,"col_index":26,"row_index":26}},{"id":1874,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387678448],[9.940836987,55.387589153],[9.940994193,55.387589153],[9.940994193,55.387678448],[9.940836987,55.387678448]]]},"properties":{"id":1874,"top":7437473.0681,"id_0":1874,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437455.5681,"col_index":26,"row_index":27}},{"id":1875,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387589153],[9.940836987,55.387499856],[9.940994193,55.387499856],[9.940994193,55.387589153],[9.940836987,55.387589153]]]},"properties":{"id":1875,"top":7437455.5681,"id_0":1875,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437438.0681,"col_index":26,"row_index":28}},{"id":1876,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387499856],[9.940836987,55.38741056],[9.940994193,55.38741056],[9.940994193,55.387499856],[9.940836987,55.387499856]]]},"properties":{"id":1876,"top":7437438.0681,"id_0":1876,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437420.5681,"col_index":26,"row_index":29}},{"id":1877,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38741056],[9.940836987,55.387321264],[9.940994193,55.387321264],[9.940994193,55.38741056],[9.940836987,55.38741056]]]},"properties":{"id":1877,"top":7437420.5681,"id_0":1877,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437403.0681,"col_index":26,"row_index":30}},{"id":1878,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387321264],[9.940836987,55.387231967],[9.940994193,55.387231967],[9.940994193,55.387321264],[9.940836987,55.387321264]]]},"properties":{"id":1878,"top":7437403.0681,"id_0":1878,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437385.5681,"col_index":26,"row_index":31}},{"id":1879,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387231967],[9.940836987,55.38714267],[9.940994193,55.38714267],[9.940994193,55.387231967],[9.940836987,55.387231967]]]},"properties":{"id":1879,"top":7437385.5681,"id_0":1879,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437368.0681,"col_index":26,"row_index":32}},{"id":1880,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38714267],[9.940836987,55.387053373],[9.940994193,55.387053373],[9.940994193,55.38714267],[9.940836987,55.38714267]]]},"properties":{"id":1880,"top":7437368.0681,"id_0":1880,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437350.5681,"col_index":26,"row_index":33}},{"id":1881,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.387053373],[9.940836987,55.386964076],[9.940994193,55.386964076],[9.940994193,55.387053373],[9.940836987,55.387053373]]]},"properties":{"id":1881,"top":7437350.5681,"id_0":1881,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437333.0681,"col_index":26,"row_index":34}},{"id":1882,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386964076],[9.940836987,55.386874778],[9.940994193,55.386874778],[9.940994193,55.386964076],[9.940836987,55.386964076]]]},"properties":{"id":1882,"top":7437333.0681,"id_0":1882,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437315.5681,"col_index":26,"row_index":35}},{"id":1883,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386874778],[9.940836987,55.38678548],[9.940994193,55.38678548],[9.940994193,55.386874778],[9.940836987,55.386874778]]]},"properties":{"id":1883,"top":7437315.5681,"id_0":1883,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437298.0681,"col_index":26,"row_index":36}},{"id":1884,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38678548],[9.940836987,55.386696182],[9.940994193,55.386696182],[9.940994193,55.38678548],[9.940836987,55.38678548]]]},"properties":{"id":1884,"top":7437298.0681,"id_0":1884,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437280.5681,"col_index":26,"row_index":37}},{"id":1885,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386696182],[9.940836987,55.386606884],[9.940994193,55.386606884],[9.940994193,55.386696182],[9.940836987,55.386696182]]]},"properties":{"id":1885,"top":7437280.5681,"id_0":1885,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437263.0681,"col_index":26,"row_index":38}},{"id":1886,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386606884],[9.940836987,55.386517586],[9.940994193,55.386517586],[9.940994193,55.386606884],[9.940836987,55.386606884]]]},"properties":{"id":1886,"top":7437263.0681,"id_0":1886,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437245.5681,"col_index":26,"row_index":39}},{"id":1887,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386517586],[9.940836987,55.386428287],[9.940994193,55.386428287],[9.940994193,55.386517586],[9.940836987,55.386517586]]]},"properties":{"id":1887,"top":7437245.5681,"id_0":1887,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437228.0681,"col_index":26,"row_index":40}},{"id":1888,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386428287],[9.940836987,55.386338989],[9.940994193,55.386338989],[9.940994193,55.386428287],[9.940836987,55.386428287]]]},"properties":{"id":1888,"top":7437228.0681,"id_0":1888,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437210.5681,"col_index":26,"row_index":41}},{"id":1889,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386338989],[9.940836987,55.38624969],[9.940994193,55.38624969],[9.940994193,55.386338989],[9.940836987,55.386338989]]]},"properties":{"id":1889,"top":7437210.5681,"id_0":1889,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437193.0681,"col_index":26,"row_index":42}},{"id":1890,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38624969],[9.940836987,55.386160391],[9.940994193,55.386160391],[9.940994193,55.38624969],[9.940836987,55.38624969]]]},"properties":{"id":1890,"top":7437193.0681,"id_0":1890,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437175.5681,"col_index":26,"row_index":43}},{"id":1891,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386160391],[9.940836987,55.386071091],[9.940994193,55.386071091],[9.940994193,55.386160391],[9.940836987,55.386160391]]]},"properties":{"id":1891,"top":7437175.5681,"id_0":1891,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437158.0681,"col_index":26,"row_index":44}},{"id":1892,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.386071091],[9.940836987,55.385981792],[9.940994193,55.385981792],[9.940994193,55.386071091],[9.940836987,55.386071091]]]},"properties":{"id":1892,"top":7437158.0681,"id_0":1892,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437140.5681,"col_index":26,"row_index":45}},{"id":1893,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385981792],[9.940836987,55.385892492],[9.940994193,55.385892492],[9.940994193,55.385981792],[9.940836987,55.385981792]]]},"properties":{"id":1893,"top":7437140.5681,"id_0":1893,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437123.0681,"col_index":26,"row_index":46}},{"id":1894,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385892492],[9.940836987,55.385803192],[9.940994193,55.385803192],[9.940994193,55.385892492],[9.940836987,55.385892492]]]},"properties":{"id":1894,"top":7437123.0681,"id_0":1894,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437105.5681,"col_index":26,"row_index":47}},{"id":1895,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385803192],[9.940836987,55.385713892],[9.940994193,55.385713892],[9.940994193,55.385803192],[9.940836987,55.385803192]]]},"properties":{"id":1895,"top":7437105.5681,"id_0":1895,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437088.0681,"col_index":26,"row_index":48}},{"id":1896,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385713892],[9.940836987,55.385624592],[9.940994193,55.385624592],[9.940994193,55.385713892],[9.940836987,55.385713892]]]},"properties":{"id":1896,"top":7437088.0681,"id_0":1896,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437070.5681,"col_index":26,"row_index":49}},{"id":1897,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385624592],[9.940836987,55.385535291],[9.940994193,55.385535291],[9.940994193,55.385624592],[9.940836987,55.385624592]]]},"properties":{"id":1897,"top":7437070.5681,"id_0":1897,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437053.0681,"col_index":26,"row_index":50}},{"id":1898,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385535291],[9.940836987,55.38544599],[9.940994193,55.38544599],[9.940994193,55.385535291],[9.940836987,55.385535291]]]},"properties":{"id":1898,"top":7437053.0681,"id_0":1898,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437035.5681,"col_index":26,"row_index":51}},{"id":1899,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38544599],[9.940836987,55.385356689],[9.940994193,55.385356689],[9.940994193,55.38544599],[9.940836987,55.38544599]]]},"properties":{"id":1899,"top":7437035.5681,"id_0":1899,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437018.0681,"col_index":26,"row_index":52}},{"id":1900,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385356689],[9.940836987,55.385267388],[9.940994193,55.385267388],[9.940994193,55.385356689],[9.940836987,55.385356689]]]},"properties":{"id":1900,"top":7437018.0681,"id_0":1900,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7437000.5681,"col_index":26,"row_index":53}},{"id":1901,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385267388],[9.940836987,55.385178087],[9.940994193,55.385178087],[9.940994193,55.385267388],[9.940836987,55.385267388]]]},"properties":{"id":1901,"top":7437000.5681,"id_0":1901,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436983.0681,"col_index":26,"row_index":54}},{"id":1902,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385178087],[9.940836987,55.385088785],[9.940994193,55.385088785],[9.940994193,55.385178087],[9.940836987,55.385178087]]]},"properties":{"id":1902,"top":7436983.0681,"id_0":1902,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436965.5681,"col_index":26,"row_index":55}},{"id":1903,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.385088785],[9.940836987,55.384999484],[9.940994193,55.384999484],[9.940994193,55.385088785],[9.940836987,55.385088785]]]},"properties":{"id":1903,"top":7436965.5681,"id_0":1903,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436948.0681,"col_index":26,"row_index":56}},{"id":1904,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384999484],[9.940836987,55.384910182],[9.940994193,55.384910182],[9.940994193,55.384999484],[9.940836987,55.384999484]]]},"properties":{"id":1904,"top":7436948.0681,"id_0":1904,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436930.5681,"col_index":26,"row_index":57}},{"id":1905,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384910182],[9.940836987,55.38482088],[9.940994193,55.38482088],[9.940994193,55.384910182],[9.940836987,55.384910182]]]},"properties":{"id":1905,"top":7436930.5681,"id_0":1905,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436913.0681,"col_index":26,"row_index":58}},{"id":1906,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.38482088],[9.940836987,55.384731577],[9.940994193,55.384731577],[9.940994193,55.38482088],[9.940836987,55.38482088]]]},"properties":{"id":1906,"top":7436913.0681,"id_0":1906,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436895.5681,"col_index":26,"row_index":59}},{"id":1907,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384731577],[9.940836987,55.384642275],[9.940994193,55.384642275],[9.940994193,55.384731577],[9.940836987,55.384731577]]]},"properties":{"id":1907,"top":7436895.5681,"id_0":1907,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436878.0681,"col_index":26,"row_index":60}},{"id":1908,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384642275],[9.940836987,55.384552972],[9.940994193,55.384552972],[9.940994193,55.384642275],[9.940836987,55.384642275]]]},"properties":{"id":1908,"top":7436878.0681,"id_0":1908,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436860.5681,"col_index":26,"row_index":61}},{"id":1909,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384552972],[9.940836987,55.384463669],[9.940994193,55.384463669],[9.940994193,55.384552972],[9.940836987,55.384552972]]]},"properties":{"id":1909,"top":7436860.5681,"id_0":1909,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436843.0681,"col_index":26,"row_index":62}},{"id":1910,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384463669],[9.940836987,55.384374366],[9.940994193,55.384374366],[9.940994193,55.384463669],[9.940836987,55.384463669]]]},"properties":{"id":1910,"top":7436843.0681,"id_0":1910,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436825.5681,"col_index":26,"row_index":63}},{"id":1911,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384374366],[9.940836987,55.384285062],[9.940994193,55.384285062],[9.940994193,55.384374366],[9.940836987,55.384374366]]]},"properties":{"id":1911,"top":7436825.5681,"id_0":1911,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436808.0681,"col_index":26,"row_index":64}},{"id":1912,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384285062],[9.940836987,55.384195759],[9.940994193,55.384195759],[9.940994193,55.384285062],[9.940836987,55.384285062]]]},"properties":{"id":1912,"top":7436808.0681,"id_0":1912,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436790.5681,"col_index":26,"row_index":65}},{"id":1913,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384195759],[9.940836987,55.384106455],[9.940994193,55.384106455],[9.940994193,55.384195759],[9.940836987,55.384195759]]]},"properties":{"id":1913,"top":7436790.5681,"id_0":1913,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436773.0681,"col_index":26,"row_index":66}},{"id":1914,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384106455],[9.940836987,55.384017151],[9.940994193,55.384017151],[9.940994193,55.384106455],[9.940836987,55.384106455]]]},"properties":{"id":1914,"top":7436773.0681,"id_0":1914,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436755.5681,"col_index":26,"row_index":67}},{"id":1915,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.384017151],[9.940836987,55.383927847],[9.940994193,55.383927847],[9.940994193,55.384017151],[9.940836987,55.384017151]]]},"properties":{"id":1915,"top":7436755.5681,"id_0":1915,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436738.0681,"col_index":26,"row_index":68}},{"id":1916,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.383927847],[9.940836987,55.383838543],[9.940994193,55.383838543],[9.940994193,55.383927847],[9.940836987,55.383927847]]]},"properties":{"id":1916,"top":7436738.0681,"id_0":1916,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436720.5681,"col_index":26,"row_index":69}},{"id":1917,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.383838543],[9.940836987,55.383749238],[9.940994193,55.383749238],[9.940994193,55.383838543],[9.940836987,55.383838543]]]},"properties":{"id":1917,"top":7436720.5681,"id_0":1917,"left":1106608.9115,"Label":null,"right":1106626.4115,"bottom":7436703.0681,"col_index":26,"row_index":70}},{"id":1919,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.390000071],[9.940994193,55.38991078],[9.941151398,55.38991078],[9.941151398,55.390000071],[9.940994193,55.390000071]]]},"properties":{"id":1919,"top":7437928.0681,"id_0":1919,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437910.5681,"col_index":27,"row_index":1}},{"id":1920,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38991078],[9.940994193,55.38982149],[9.941151398,55.38982149],[9.941151398,55.38991078],[9.940994193,55.38991078]]]},"properties":{"id":1920,"top":7437910.5681,"id_0":1920,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437893.0681,"col_index":27,"row_index":2}},{"id":1921,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38982149],[9.940994193,55.389732199],[9.941151398,55.389732199],[9.941151398,55.38982149],[9.940994193,55.38982149]]]},"properties":{"id":1921,"top":7437893.0681,"id_0":1921,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437875.5681,"col_index":27,"row_index":3}},{"id":1922,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389732199],[9.940994193,55.389642907],[9.941151398,55.389642907],[9.941151398,55.389732199],[9.940994193,55.389732199]]]},"properties":{"id":1922,"top":7437875.5681,"id_0":1922,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437858.0681,"col_index":27,"row_index":4}},{"id":1923,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389642907],[9.940994193,55.389553616],[9.941151398,55.389553616],[9.941151398,55.389642907],[9.940994193,55.389642907]]]},"properties":{"id":1923,"top":7437858.0681,"id_0":1923,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437840.5681,"col_index":27,"row_index":5}},{"id":1924,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389553616],[9.940994193,55.389464324],[9.941151398,55.389464324],[9.941151398,55.389553616],[9.940994193,55.389553616]]]},"properties":{"id":1924,"top":7437840.5681,"id_0":1924,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437823.0681,"col_index":27,"row_index":6}},{"id":1925,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389464324],[9.940994193,55.389375032],[9.941151398,55.389375032],[9.941151398,55.389464324],[9.940994193,55.389464324]]]},"properties":{"id":1925,"top":7437823.0681,"id_0":1925,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437805.5681,"col_index":27,"row_index":7}},{"id":1926,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389375032],[9.940994193,55.38928574],[9.941151398,55.38928574],[9.941151398,55.389375032],[9.940994193,55.389375032]]]},"properties":{"id":1926,"top":7437805.5681,"id_0":1926,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437788.0681,"col_index":27,"row_index":8}},{"id":1927,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38928574],[9.940994193,55.389196448],[9.941151398,55.389196448],[9.941151398,55.38928574],[9.940994193,55.38928574]]]},"properties":{"id":1927,"top":7437788.0681,"id_0":1927,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437770.5681,"col_index":27,"row_index":9}},{"id":1928,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389196448],[9.940994193,55.389107155],[9.941151398,55.389107155],[9.941151398,55.389196448],[9.940994193,55.389196448]]]},"properties":{"id":1928,"top":7437770.5681,"id_0":1928,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437753.0681,"col_index":27,"row_index":10}},{"id":1929,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389107155],[9.940994193,55.389017863],[9.941151398,55.389017863],[9.941151398,55.389107155],[9.940994193,55.389107155]]]},"properties":{"id":1929,"top":7437753.0681,"id_0":1929,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437735.5681,"col_index":27,"row_index":11}},{"id":1930,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.389017863],[9.940994193,55.38892857],[9.941151398,55.38892857],[9.941151398,55.389017863],[9.940994193,55.389017863]]]},"properties":{"id":1930,"top":7437735.5681,"id_0":1930,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437718.0681,"col_index":27,"row_index":12}},{"id":1931,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38892857],[9.940994193,55.388839277],[9.941151398,55.388839277],[9.941151398,55.38892857],[9.940994193,55.38892857]]]},"properties":{"id":1931,"top":7437718.0681,"id_0":1931,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437700.5681,"col_index":27,"row_index":13}},{"id":1932,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388839277],[9.940994193,55.388749984],[9.941151398,55.388749984],[9.941151398,55.388839277],[9.940994193,55.388839277]]]},"properties":{"id":1932,"top":7437700.5681,"id_0":1932,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437683.0681,"col_index":27,"row_index":14}},{"id":1933,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388749984],[9.940994193,55.38866069],[9.941151398,55.38866069],[9.941151398,55.388749984],[9.940994193,55.388749984]]]},"properties":{"id":1933,"top":7437683.0681,"id_0":1933,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437665.5681,"col_index":27,"row_index":15}},{"id":1934,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38866069],[9.940994193,55.388571396],[9.941151398,55.388571396],[9.941151398,55.38866069],[9.940994193,55.38866069]]]},"properties":{"id":1934,"top":7437665.5681,"id_0":1934,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437648.0681,"col_index":27,"row_index":16}},{"id":1935,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388571396],[9.940994193,55.388482103],[9.941151398,55.388482103],[9.941151398,55.388571396],[9.940994193,55.388571396]]]},"properties":{"id":1935,"top":7437648.0681,"id_0":1935,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437630.5681,"col_index":27,"row_index":17}},{"id":1936,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388482103],[9.940994193,55.388392808],[9.941151398,55.388392808],[9.941151398,55.388482103],[9.940994193,55.388482103]]]},"properties":{"id":1936,"top":7437630.5681,"id_0":1936,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437613.0681,"col_index":27,"row_index":18}},{"id":1937,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388392808],[9.940994193,55.388303514],[9.941151398,55.388303514],[9.941151398,55.388392808],[9.940994193,55.388392808]]]},"properties":{"id":1937,"top":7437613.0681,"id_0":1937,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437595.5681,"col_index":27,"row_index":19}},{"id":1938,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388303514],[9.940994193,55.38821422],[9.941151398,55.38821422],[9.941151398,55.388303514],[9.940994193,55.388303514]]]},"properties":{"id":1938,"top":7437595.5681,"id_0":1938,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437578.0681,"col_index":27,"row_index":20}},{"id":1939,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38821422],[9.940994193,55.388124925],[9.941151398,55.388124925],[9.941151398,55.38821422],[9.940994193,55.38821422]]]},"properties":{"id":1939,"top":7437578.0681,"id_0":1939,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437560.5681,"col_index":27,"row_index":21}},{"id":1940,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.388124925],[9.940994193,55.38803563],[9.941151398,55.38803563],[9.941151398,55.388124925],[9.940994193,55.388124925]]]},"properties":{"id":1940,"top":7437560.5681,"id_0":1940,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437543.0681,"col_index":27,"row_index":22}},{"id":1941,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38803563],[9.940994193,55.387946335],[9.941151398,55.387946335],[9.941151398,55.38803563],[9.940994193,55.38803563]]]},"properties":{"id":1941,"top":7437543.0681,"id_0":1941,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437525.5681,"col_index":27,"row_index":23}},{"id":1942,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387946335],[9.940994193,55.38785704],[9.941151398,55.38785704],[9.941151398,55.387946335],[9.940994193,55.387946335]]]},"properties":{"id":1942,"top":7437525.5681,"id_0":1942,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437508.0681,"col_index":27,"row_index":24}},{"id":1943,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38785704],[9.940994193,55.387767744],[9.941151398,55.387767744],[9.941151398,55.38785704],[9.940994193,55.38785704]]]},"properties":{"id":1943,"top":7437508.0681,"id_0":1943,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437490.5681,"col_index":27,"row_index":25}},{"id":1944,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387767744],[9.940994193,55.387678448],[9.941151398,55.387678448],[9.941151398,55.387767744],[9.940994193,55.387767744]]]},"properties":{"id":1944,"top":7437490.5681,"id_0":1944,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437473.0681,"col_index":27,"row_index":26}},{"id":1945,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387678448],[9.940994193,55.387589153],[9.941151398,55.387589153],[9.941151398,55.387678448],[9.940994193,55.387678448]]]},"properties":{"id":1945,"top":7437473.0681,"id_0":1945,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437455.5681,"col_index":27,"row_index":27}},{"id":1946,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387589153],[9.940994193,55.387499856],[9.941151398,55.387499856],[9.941151398,55.387589153],[9.940994193,55.387589153]]]},"properties":{"id":1946,"top":7437455.5681,"id_0":1946,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437438.0681,"col_index":27,"row_index":28}},{"id":1947,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387499856],[9.940994193,55.38741056],[9.941151398,55.38741056],[9.941151398,55.387499856],[9.940994193,55.387499856]]]},"properties":{"id":1947,"top":7437438.0681,"id_0":1947,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437420.5681,"col_index":27,"row_index":29}},{"id":1948,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38741056],[9.940994193,55.387321264],[9.941151398,55.387321264],[9.941151398,55.38741056],[9.940994193,55.38741056]]]},"properties":{"id":1948,"top":7437420.5681,"id_0":1948,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437403.0681,"col_index":27,"row_index":30}},{"id":1949,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387321264],[9.940994193,55.387231967],[9.941151398,55.387231967],[9.941151398,55.387321264],[9.940994193,55.387321264]]]},"properties":{"id":1949,"top":7437403.0681,"id_0":1949,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437385.5681,"col_index":27,"row_index":31}},{"id":1950,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387231967],[9.940994193,55.38714267],[9.941151398,55.38714267],[9.941151398,55.387231967],[9.940994193,55.387231967]]]},"properties":{"id":1950,"top":7437385.5681,"id_0":1950,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437368.0681,"col_index":27,"row_index":32}},{"id":1951,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38714267],[9.940994193,55.387053373],[9.941151398,55.387053373],[9.941151398,55.38714267],[9.940994193,55.38714267]]]},"properties":{"id":1951,"top":7437368.0681,"id_0":1951,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437350.5681,"col_index":27,"row_index":33}},{"id":1952,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.387053373],[9.940994193,55.386964076],[9.941151398,55.386964076],[9.941151398,55.387053373],[9.940994193,55.387053373]]]},"properties":{"id":1952,"top":7437350.5681,"id_0":1952,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437333.0681,"col_index":27,"row_index":34}},{"id":1953,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386964076],[9.940994193,55.386874778],[9.941151398,55.386874778],[9.941151398,55.386964076],[9.940994193,55.386964076]]]},"properties":{"id":1953,"top":7437333.0681,"id_0":1953,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437315.5681,"col_index":27,"row_index":35}},{"id":1954,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386874778],[9.940994193,55.38678548],[9.941151398,55.38678548],[9.941151398,55.386874778],[9.940994193,55.386874778]]]},"properties":{"id":1954,"top":7437315.5681,"id_0":1954,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437298.0681,"col_index":27,"row_index":36}},{"id":1955,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38678548],[9.940994193,55.386696182],[9.941151398,55.386696182],[9.941151398,55.38678548],[9.940994193,55.38678548]]]},"properties":{"id":1955,"top":7437298.0681,"id_0":1955,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437280.5681,"col_index":27,"row_index":37}},{"id":1956,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386696182],[9.940994193,55.386606884],[9.941151398,55.386606884],[9.941151398,55.386696182],[9.940994193,55.386696182]]]},"properties":{"id":1956,"top":7437280.5681,"id_0":1956,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437263.0681,"col_index":27,"row_index":38}},{"id":1957,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386606884],[9.940994193,55.386517586],[9.941151398,55.386517586],[9.941151398,55.386606884],[9.940994193,55.386606884]]]},"properties":{"id":1957,"top":7437263.0681,"id_0":1957,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437245.5681,"col_index":27,"row_index":39}},{"id":1958,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386517586],[9.940994193,55.386428287],[9.941151398,55.386428287],[9.941151398,55.386517586],[9.940994193,55.386517586]]]},"properties":{"id":1958,"top":7437245.5681,"id_0":1958,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437228.0681,"col_index":27,"row_index":40}},{"id":1959,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386428287],[9.940994193,55.386338989],[9.941151398,55.386338989],[9.941151398,55.386428287],[9.940994193,55.386428287]]]},"properties":{"id":1959,"top":7437228.0681,"id_0":1959,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437210.5681,"col_index":27,"row_index":41}},{"id":1960,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386338989],[9.940994193,55.38624969],[9.941151398,55.38624969],[9.941151398,55.386338989],[9.940994193,55.386338989]]]},"properties":{"id":1960,"top":7437210.5681,"id_0":1960,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437193.0681,"col_index":27,"row_index":42}},{"id":1961,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38624969],[9.940994193,55.386160391],[9.941151398,55.386160391],[9.941151398,55.38624969],[9.940994193,55.38624969]]]},"properties":{"id":1961,"top":7437193.0681,"id_0":1961,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437175.5681,"col_index":27,"row_index":43}},{"id":1962,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386160391],[9.940994193,55.386071091],[9.941151398,55.386071091],[9.941151398,55.386160391],[9.940994193,55.386160391]]]},"properties":{"id":1962,"top":7437175.5681,"id_0":1962,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437158.0681,"col_index":27,"row_index":44}},{"id":1963,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.386071091],[9.940994193,55.385981792],[9.941151398,55.385981792],[9.941151398,55.386071091],[9.940994193,55.386071091]]]},"properties":{"id":1963,"top":7437158.0681,"id_0":1963,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437140.5681,"col_index":27,"row_index":45}},{"id":1964,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385981792],[9.940994193,55.385892492],[9.941151398,55.385892492],[9.941151398,55.385981792],[9.940994193,55.385981792]]]},"properties":{"id":1964,"top":7437140.5681,"id_0":1964,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437123.0681,"col_index":27,"row_index":46}},{"id":1965,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385892492],[9.940994193,55.385803192],[9.941151398,55.385803192],[9.941151398,55.385892492],[9.940994193,55.385892492]]]},"properties":{"id":1965,"top":7437123.0681,"id_0":1965,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437105.5681,"col_index":27,"row_index":47}},{"id":1966,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385803192],[9.940994193,55.385713892],[9.941151398,55.385713892],[9.941151398,55.385803192],[9.940994193,55.385803192]]]},"properties":{"id":1966,"top":7437105.5681,"id_0":1966,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437088.0681,"col_index":27,"row_index":48}},{"id":1967,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385713892],[9.940994193,55.385624592],[9.941151398,55.385624592],[9.941151398,55.385713892],[9.940994193,55.385713892]]]},"properties":{"id":1967,"top":7437088.0681,"id_0":1967,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437070.5681,"col_index":27,"row_index":49}},{"id":1968,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385624592],[9.940994193,55.385535291],[9.941151398,55.385535291],[9.941151398,55.385624592],[9.940994193,55.385624592]]]},"properties":{"id":1968,"top":7437070.5681,"id_0":1968,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437053.0681,"col_index":27,"row_index":50}},{"id":1969,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385535291],[9.940994193,55.38544599],[9.941151398,55.38544599],[9.941151398,55.385535291],[9.940994193,55.385535291]]]},"properties":{"id":1969,"top":7437053.0681,"id_0":1969,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437035.5681,"col_index":27,"row_index":51}},{"id":1970,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38544599],[9.940994193,55.385356689],[9.941151398,55.385356689],[9.941151398,55.38544599],[9.940994193,55.38544599]]]},"properties":{"id":1970,"top":7437035.5681,"id_0":1970,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437018.0681,"col_index":27,"row_index":52}},{"id":1971,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385356689],[9.940994193,55.385267388],[9.941151398,55.385267388],[9.941151398,55.385356689],[9.940994193,55.385356689]]]},"properties":{"id":1971,"top":7437018.0681,"id_0":1971,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7437000.5681,"col_index":27,"row_index":53}},{"id":1972,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385267388],[9.940994193,55.385178087],[9.941151398,55.385178087],[9.941151398,55.385267388],[9.940994193,55.385267388]]]},"properties":{"id":1972,"top":7437000.5681,"id_0":1972,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436983.0681,"col_index":27,"row_index":54}},{"id":1973,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385178087],[9.940994193,55.385088785],[9.941151398,55.385088785],[9.941151398,55.385178087],[9.940994193,55.385178087]]]},"properties":{"id":1973,"top":7436983.0681,"id_0":1973,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436965.5681,"col_index":27,"row_index":55}},{"id":1974,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.385088785],[9.940994193,55.384999484],[9.941151398,55.384999484],[9.941151398,55.385088785],[9.940994193,55.385088785]]]},"properties":{"id":1974,"top":7436965.5681,"id_0":1974,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436948.0681,"col_index":27,"row_index":56}},{"id":1975,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384999484],[9.940994193,55.384910182],[9.941151398,55.384910182],[9.941151398,55.384999484],[9.940994193,55.384999484]]]},"properties":{"id":1975,"top":7436948.0681,"id_0":1975,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436930.5681,"col_index":27,"row_index":57}},{"id":1976,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384910182],[9.940994193,55.38482088],[9.941151398,55.38482088],[9.941151398,55.384910182],[9.940994193,55.384910182]]]},"properties":{"id":1976,"top":7436930.5681,"id_0":1976,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436913.0681,"col_index":27,"row_index":58}},{"id":1977,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.38482088],[9.940994193,55.384731577],[9.941151398,55.384731577],[9.941151398,55.38482088],[9.940994193,55.38482088]]]},"properties":{"id":1977,"top":7436913.0681,"id_0":1977,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436895.5681,"col_index":27,"row_index":59}},{"id":1978,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384731577],[9.940994193,55.384642275],[9.941151398,55.384642275],[9.941151398,55.384731577],[9.940994193,55.384731577]]]},"properties":{"id":1978,"top":7436895.5681,"id_0":1978,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436878.0681,"col_index":27,"row_index":60}},{"id":1979,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384642275],[9.940994193,55.384552972],[9.941151398,55.384552972],[9.941151398,55.384642275],[9.940994193,55.384642275]]]},"properties":{"id":1979,"top":7436878.0681,"id_0":1979,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436860.5681,"col_index":27,"row_index":61}},{"id":1980,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384552972],[9.940994193,55.384463669],[9.941151398,55.384463669],[9.941151398,55.384552972],[9.940994193,55.384552972]]]},"properties":{"id":1980,"top":7436860.5681,"id_0":1980,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436843.0681,"col_index":27,"row_index":62}},{"id":1981,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384463669],[9.940994193,55.384374366],[9.941151398,55.384374366],[9.941151398,55.384463669],[9.940994193,55.384463669]]]},"properties":{"id":1981,"top":7436843.0681,"id_0":1981,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436825.5681,"col_index":27,"row_index":63}},{"id":1982,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384374366],[9.940994193,55.384285062],[9.941151398,55.384285062],[9.941151398,55.384374366],[9.940994193,55.384374366]]]},"properties":{"id":1982,"top":7436825.5681,"id_0":1982,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436808.0681,"col_index":27,"row_index":64}},{"id":1983,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384285062],[9.940994193,55.384195759],[9.941151398,55.384195759],[9.941151398,55.384285062],[9.940994193,55.384285062]]]},"properties":{"id":1983,"top":7436808.0681,"id_0":1983,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436790.5681,"col_index":27,"row_index":65}},{"id":1984,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384195759],[9.940994193,55.384106455],[9.941151398,55.384106455],[9.941151398,55.384195759],[9.940994193,55.384195759]]]},"properties":{"id":1984,"top":7436790.5681,"id_0":1984,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436773.0681,"col_index":27,"row_index":66}},{"id":1985,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384106455],[9.940994193,55.384017151],[9.941151398,55.384017151],[9.941151398,55.384106455],[9.940994193,55.384106455]]]},"properties":{"id":1985,"top":7436773.0681,"id_0":1985,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436755.5681,"col_index":27,"row_index":67}},{"id":1986,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.384017151],[9.940994193,55.383927847],[9.941151398,55.383927847],[9.941151398,55.384017151],[9.940994193,55.384017151]]]},"properties":{"id":1986,"top":7436755.5681,"id_0":1986,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436738.0681,"col_index":27,"row_index":68}},{"id":1987,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.383927847],[9.940994193,55.383838543],[9.941151398,55.383838543],[9.941151398,55.383927847],[9.940994193,55.383927847]]]},"properties":{"id":1987,"top":7436738.0681,"id_0":1987,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436720.5681,"col_index":27,"row_index":69}},{"id":1988,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.383838543],[9.940994193,55.383749238],[9.941151398,55.383749238],[9.941151398,55.383838543],[9.940994193,55.383838543]]]},"properties":{"id":1988,"top":7436720.5681,"id_0":1988,"left":1106626.4115,"Label":null,"right":1106643.9115,"bottom":7436703.0681,"col_index":27,"row_index":70}},{"id":1990,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.390000071],[9.941151398,55.38991078],[9.941308603,55.38991078],[9.941308603,55.390000071],[9.941151398,55.390000071]]]},"properties":{"id":1990,"top":7437928.0681,"id_0":1990,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437910.5681,"col_index":28,"row_index":1}},{"id":1991,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38991078],[9.941151398,55.38982149],[9.941308603,55.38982149],[9.941308603,55.38991078],[9.941151398,55.38991078]]]},"properties":{"id":1991,"top":7437910.5681,"id_0":1991,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437893.0681,"col_index":28,"row_index":2}},{"id":1992,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38982149],[9.941151398,55.389732199],[9.941308603,55.389732199],[9.941308603,55.38982149],[9.941151398,55.38982149]]]},"properties":{"id":1992,"top":7437893.0681,"id_0":1992,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437875.5681,"col_index":28,"row_index":3}},{"id":1993,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389732199],[9.941151398,55.389642907],[9.941308603,55.389642907],[9.941308603,55.389732199],[9.941151398,55.389732199]]]},"properties":{"id":1993,"top":7437875.5681,"id_0":1993,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437858.0681,"col_index":28,"row_index":4}},{"id":1994,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389642907],[9.941151398,55.389553616],[9.941308603,55.389553616],[9.941308603,55.389642907],[9.941151398,55.389642907]]]},"properties":{"id":1994,"top":7437858.0681,"id_0":1994,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437840.5681,"col_index":28,"row_index":5}},{"id":1995,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389553616],[9.941151398,55.389464324],[9.941308603,55.389464324],[9.941308603,55.389553616],[9.941151398,55.389553616]]]},"properties":{"id":1995,"top":7437840.5681,"id_0":1995,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437823.0681,"col_index":28,"row_index":6}},{"id":1996,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389464324],[9.941151398,55.389375032],[9.941308603,55.389375032],[9.941308603,55.389464324],[9.941151398,55.389464324]]]},"properties":{"id":1996,"top":7437823.0681,"id_0":1996,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437805.5681,"col_index":28,"row_index":7}},{"id":1997,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389375032],[9.941151398,55.38928574],[9.941308603,55.38928574],[9.941308603,55.389375032],[9.941151398,55.389375032]]]},"properties":{"id":1997,"top":7437805.5681,"id_0":1997,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437788.0681,"col_index":28,"row_index":8}},{"id":1998,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38928574],[9.941151398,55.389196448],[9.941308603,55.389196448],[9.941308603,55.38928574],[9.941151398,55.38928574]]]},"properties":{"id":1998,"top":7437788.0681,"id_0":1998,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437770.5681,"col_index":28,"row_index":9}},{"id":1999,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389196448],[9.941151398,55.389107155],[9.941308603,55.389107155],[9.941308603,55.389196448],[9.941151398,55.389196448]]]},"properties":{"id":1999,"top":7437770.5681,"id_0":1999,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437753.0681,"col_index":28,"row_index":10}},{"id":2000,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389107155],[9.941151398,55.389017863],[9.941308603,55.389017863],[9.941308603,55.389107155],[9.941151398,55.389107155]]]},"properties":{"id":2000,"top":7437753.0681,"id_0":2000,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437735.5681,"col_index":28,"row_index":11}},{"id":2001,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.389017863],[9.941151398,55.38892857],[9.941308603,55.38892857],[9.941308603,55.389017863],[9.941151398,55.389017863]]]},"properties":{"id":2001,"top":7437735.5681,"id_0":2001,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437718.0681,"col_index":28,"row_index":12}},{"id":2002,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38892857],[9.941151398,55.388839277],[9.941308603,55.388839277],[9.941308603,55.38892857],[9.941151398,55.38892857]]]},"properties":{"id":2002,"top":7437718.0681,"id_0":2002,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437700.5681,"col_index":28,"row_index":13}},{"id":2003,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388839277],[9.941151398,55.388749984],[9.941308603,55.388749984],[9.941308603,55.388839277],[9.941151398,55.388839277]]]},"properties":{"id":2003,"top":7437700.5681,"id_0":2003,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437683.0681,"col_index":28,"row_index":14}},{"id":2004,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388749984],[9.941151398,55.38866069],[9.941308603,55.38866069],[9.941308603,55.388749984],[9.941151398,55.388749984]]]},"properties":{"id":2004,"top":7437683.0681,"id_0":2004,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437665.5681,"col_index":28,"row_index":15}},{"id":2005,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38866069],[9.941151398,55.388571396],[9.941308603,55.388571396],[9.941308603,55.38866069],[9.941151398,55.38866069]]]},"properties":{"id":2005,"top":7437665.5681,"id_0":2005,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437648.0681,"col_index":28,"row_index":16}},{"id":2006,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388571396],[9.941151398,55.388482103],[9.941308603,55.388482103],[9.941308603,55.388571396],[9.941151398,55.388571396]]]},"properties":{"id":2006,"top":7437648.0681,"id_0":2006,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437630.5681,"col_index":28,"row_index":17}},{"id":2007,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388482103],[9.941151398,55.388392808],[9.941308603,55.388392808],[9.941308603,55.388482103],[9.941151398,55.388482103]]]},"properties":{"id":2007,"top":7437630.5681,"id_0":2007,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437613.0681,"col_index":28,"row_index":18}},{"id":2008,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388392808],[9.941151398,55.388303514],[9.941308603,55.388303514],[9.941308603,55.388392808],[9.941151398,55.388392808]]]},"properties":{"id":2008,"top":7437613.0681,"id_0":2008,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437595.5681,"col_index":28,"row_index":19}},{"id":2009,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388303514],[9.941151398,55.38821422],[9.941308603,55.38821422],[9.941308603,55.388303514],[9.941151398,55.388303514]]]},"properties":{"id":2009,"top":7437595.5681,"id_0":2009,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437578.0681,"col_index":28,"row_index":20}},{"id":2010,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38821422],[9.941151398,55.388124925],[9.941308603,55.388124925],[9.941308603,55.38821422],[9.941151398,55.38821422]]]},"properties":{"id":2010,"top":7437578.0681,"id_0":2010,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437560.5681,"col_index":28,"row_index":21}},{"id":2011,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.388124925],[9.941151398,55.38803563],[9.941308603,55.38803563],[9.941308603,55.388124925],[9.941151398,55.388124925]]]},"properties":{"id":2011,"top":7437560.5681,"id_0":2011,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437543.0681,"col_index":28,"row_index":22}},{"id":2012,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38803563],[9.941151398,55.387946335],[9.941308603,55.387946335],[9.941308603,55.38803563],[9.941151398,55.38803563]]]},"properties":{"id":2012,"top":7437543.0681,"id_0":2012,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437525.5681,"col_index":28,"row_index":23}},{"id":2013,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387946335],[9.941151398,55.38785704],[9.941308603,55.38785704],[9.941308603,55.387946335],[9.941151398,55.387946335]]]},"properties":{"id":2013,"top":7437525.5681,"id_0":2013,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437508.0681,"col_index":28,"row_index":24}},{"id":2014,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38785704],[9.941151398,55.387767744],[9.941308603,55.387767744],[9.941308603,55.38785704],[9.941151398,55.38785704]]]},"properties":{"id":2014,"top":7437508.0681,"id_0":2014,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437490.5681,"col_index":28,"row_index":25}},{"id":2015,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387767744],[9.941151398,55.387678448],[9.941308603,55.387678448],[9.941308603,55.387767744],[9.941151398,55.387767744]]]},"properties":{"id":2015,"top":7437490.5681,"id_0":2015,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437473.0681,"col_index":28,"row_index":26}},{"id":2016,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387678448],[9.941151398,55.387589153],[9.941308603,55.387589153],[9.941308603,55.387678448],[9.941151398,55.387678448]]]},"properties":{"id":2016,"top":7437473.0681,"id_0":2016,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437455.5681,"col_index":28,"row_index":27}},{"id":2017,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387589153],[9.941151398,55.387499856],[9.941308603,55.387499856],[9.941308603,55.387589153],[9.941151398,55.387589153]]]},"properties":{"id":2017,"top":7437455.5681,"id_0":2017,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437438.0681,"col_index":28,"row_index":28}},{"id":2018,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387499856],[9.941151398,55.38741056],[9.941308603,55.38741056],[9.941308603,55.387499856],[9.941151398,55.387499856]]]},"properties":{"id":2018,"top":7437438.0681,"id_0":2018,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437420.5681,"col_index":28,"row_index":29}},{"id":2019,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38741056],[9.941151398,55.387321264],[9.941308603,55.387321264],[9.941308603,55.38741056],[9.941151398,55.38741056]]]},"properties":{"id":2019,"top":7437420.5681,"id_0":2019,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437403.0681,"col_index":28,"row_index":30}},{"id":2020,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387321264],[9.941151398,55.387231967],[9.941308603,55.387231967],[9.941308603,55.387321264],[9.941151398,55.387321264]]]},"properties":{"id":2020,"top":7437403.0681,"id_0":2020,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437385.5681,"col_index":28,"row_index":31}},{"id":2021,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387231967],[9.941151398,55.38714267],[9.941308603,55.38714267],[9.941308603,55.387231967],[9.941151398,55.387231967]]]},"properties":{"id":2021,"top":7437385.5681,"id_0":2021,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437368.0681,"col_index":28,"row_index":32}},{"id":2022,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38714267],[9.941151398,55.387053373],[9.941308603,55.387053373],[9.941308603,55.38714267],[9.941151398,55.38714267]]]},"properties":{"id":2022,"top":7437368.0681,"id_0":2022,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437350.5681,"col_index":28,"row_index":33}},{"id":2023,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.387053373],[9.941151398,55.386964076],[9.941308603,55.386964076],[9.941308603,55.387053373],[9.941151398,55.387053373]]]},"properties":{"id":2023,"top":7437350.5681,"id_0":2023,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437333.0681,"col_index":28,"row_index":34}},{"id":2024,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386964076],[9.941151398,55.386874778],[9.941308603,55.386874778],[9.941308603,55.386964076],[9.941151398,55.386964076]]]},"properties":{"id":2024,"top":7437333.0681,"id_0":2024,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437315.5681,"col_index":28,"row_index":35}},{"id":2025,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386874778],[9.941151398,55.38678548],[9.941308603,55.38678548],[9.941308603,55.386874778],[9.941151398,55.386874778]]]},"properties":{"id":2025,"top":7437315.5681,"id_0":2025,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437298.0681,"col_index":28,"row_index":36}},{"id":2026,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38678548],[9.941151398,55.386696182],[9.941308603,55.386696182],[9.941308603,55.38678548],[9.941151398,55.38678548]]]},"properties":{"id":2026,"top":7437298.0681,"id_0":2026,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437280.5681,"col_index":28,"row_index":37}},{"id":2027,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386696182],[9.941151398,55.386606884],[9.941308603,55.386606884],[9.941308603,55.386696182],[9.941151398,55.386696182]]]},"properties":{"id":2027,"top":7437280.5681,"id_0":2027,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437263.0681,"col_index":28,"row_index":38}},{"id":2028,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386606884],[9.941151398,55.386517586],[9.941308603,55.386517586],[9.941308603,55.386606884],[9.941151398,55.386606884]]]},"properties":{"id":2028,"top":7437263.0681,"id_0":2028,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437245.5681,"col_index":28,"row_index":39}},{"id":2029,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386517586],[9.941151398,55.386428287],[9.941308603,55.386428287],[9.941308603,55.386517586],[9.941151398,55.386517586]]]},"properties":{"id":2029,"top":7437245.5681,"id_0":2029,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437228.0681,"col_index":28,"row_index":40}},{"id":2030,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386428287],[9.941151398,55.386338989],[9.941308603,55.386338989],[9.941308603,55.386428287],[9.941151398,55.386428287]]]},"properties":{"id":2030,"top":7437228.0681,"id_0":2030,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437210.5681,"col_index":28,"row_index":41}},{"id":2031,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386338989],[9.941151398,55.38624969],[9.941308603,55.38624969],[9.941308603,55.386338989],[9.941151398,55.386338989]]]},"properties":{"id":2031,"top":7437210.5681,"id_0":2031,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437193.0681,"col_index":28,"row_index":42}},{"id":2032,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38624969],[9.941151398,55.386160391],[9.941308603,55.386160391],[9.941308603,55.38624969],[9.941151398,55.38624969]]]},"properties":{"id":2032,"top":7437193.0681,"id_0":2032,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437175.5681,"col_index":28,"row_index":43}},{"id":2033,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386160391],[9.941151398,55.386071091],[9.941308603,55.386071091],[9.941308603,55.386160391],[9.941151398,55.386160391]]]},"properties":{"id":2033,"top":7437175.5681,"id_0":2033,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437158.0681,"col_index":28,"row_index":44}},{"id":2034,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.386071091],[9.941151398,55.385981792],[9.941308603,55.385981792],[9.941308603,55.386071091],[9.941151398,55.386071091]]]},"properties":{"id":2034,"top":7437158.0681,"id_0":2034,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437140.5681,"col_index":28,"row_index":45}},{"id":2035,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385981792],[9.941151398,55.385892492],[9.941308603,55.385892492],[9.941308603,55.385981792],[9.941151398,55.385981792]]]},"properties":{"id":2035,"top":7437140.5681,"id_0":2035,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437123.0681,"col_index":28,"row_index":46}},{"id":2036,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385892492],[9.941151398,55.385803192],[9.941308603,55.385803192],[9.941308603,55.385892492],[9.941151398,55.385892492]]]},"properties":{"id":2036,"top":7437123.0681,"id_0":2036,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437105.5681,"col_index":28,"row_index":47}},{"id":2037,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385803192],[9.941151398,55.385713892],[9.941308603,55.385713892],[9.941308603,55.385803192],[9.941151398,55.385803192]]]},"properties":{"id":2037,"top":7437105.5681,"id_0":2037,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437088.0681,"col_index":28,"row_index":48}},{"id":2038,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385713892],[9.941151398,55.385624592],[9.941308603,55.385624592],[9.941308603,55.385713892],[9.941151398,55.385713892]]]},"properties":{"id":2038,"top":7437088.0681,"id_0":2038,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437070.5681,"col_index":28,"row_index":49}},{"id":2039,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385624592],[9.941151398,55.385535291],[9.941308603,55.385535291],[9.941308603,55.385624592],[9.941151398,55.385624592]]]},"properties":{"id":2039,"top":7437070.5681,"id_0":2039,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437053.0681,"col_index":28,"row_index":50}},{"id":2040,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385535291],[9.941151398,55.38544599],[9.941308603,55.38544599],[9.941308603,55.385535291],[9.941151398,55.385535291]]]},"properties":{"id":2040,"top":7437053.0681,"id_0":2040,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437035.5681,"col_index":28,"row_index":51}},{"id":2041,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38544599],[9.941151398,55.385356689],[9.941308603,55.385356689],[9.941308603,55.38544599],[9.941151398,55.38544599]]]},"properties":{"id":2041,"top":7437035.5681,"id_0":2041,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437018.0681,"col_index":28,"row_index":52}},{"id":2042,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385356689],[9.941151398,55.385267388],[9.941308603,55.385267388],[9.941308603,55.385356689],[9.941151398,55.385356689]]]},"properties":{"id":2042,"top":7437018.0681,"id_0":2042,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7437000.5681,"col_index":28,"row_index":53}},{"id":2043,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385267388],[9.941151398,55.385178087],[9.941308603,55.385178087],[9.941308603,55.385267388],[9.941151398,55.385267388]]]},"properties":{"id":2043,"top":7437000.5681,"id_0":2043,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436983.0681,"col_index":28,"row_index":54}},{"id":2044,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385178087],[9.941151398,55.385088785],[9.941308603,55.385088785],[9.941308603,55.385178087],[9.941151398,55.385178087]]]},"properties":{"id":2044,"top":7436983.0681,"id_0":2044,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436965.5681,"col_index":28,"row_index":55}},{"id":2045,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.385088785],[9.941151398,55.384999484],[9.941308603,55.384999484],[9.941308603,55.385088785],[9.941151398,55.385088785]]]},"properties":{"id":2045,"top":7436965.5681,"id_0":2045,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436948.0681,"col_index":28,"row_index":56}},{"id":2046,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384999484],[9.941151398,55.384910182],[9.941308603,55.384910182],[9.941308603,55.384999484],[9.941151398,55.384999484]]]},"properties":{"id":2046,"top":7436948.0681,"id_0":2046,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436930.5681,"col_index":28,"row_index":57}},{"id":2047,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384910182],[9.941151398,55.38482088],[9.941308603,55.38482088],[9.941308603,55.384910182],[9.941151398,55.384910182]]]},"properties":{"id":2047,"top":7436930.5681,"id_0":2047,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436913.0681,"col_index":28,"row_index":58}},{"id":2048,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.38482088],[9.941151398,55.384731577],[9.941308603,55.384731577],[9.941308603,55.38482088],[9.941151398,55.38482088]]]},"properties":{"id":2048,"top":7436913.0681,"id_0":2048,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436895.5681,"col_index":28,"row_index":59}},{"id":2049,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384731577],[9.941151398,55.384642275],[9.941308603,55.384642275],[9.941308603,55.384731577],[9.941151398,55.384731577]]]},"properties":{"id":2049,"top":7436895.5681,"id_0":2049,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436878.0681,"col_index":28,"row_index":60}},{"id":2050,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384642275],[9.941151398,55.384552972],[9.941308603,55.384552972],[9.941308603,55.384642275],[9.941151398,55.384642275]]]},"properties":{"id":2050,"top":7436878.0681,"id_0":2050,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436860.5681,"col_index":28,"row_index":61}},{"id":2051,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384552972],[9.941151398,55.384463669],[9.941308603,55.384463669],[9.941308603,55.384552972],[9.941151398,55.384552972]]]},"properties":{"id":2051,"top":7436860.5681,"id_0":2051,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436843.0681,"col_index":28,"row_index":62}},{"id":2052,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384463669],[9.941151398,55.384374366],[9.941308603,55.384374366],[9.941308603,55.384463669],[9.941151398,55.384463669]]]},"properties":{"id":2052,"top":7436843.0681,"id_0":2052,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436825.5681,"col_index":28,"row_index":63}},{"id":2053,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384374366],[9.941151398,55.384285062],[9.941308603,55.384285062],[9.941308603,55.384374366],[9.941151398,55.384374366]]]},"properties":{"id":2053,"top":7436825.5681,"id_0":2053,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436808.0681,"col_index":28,"row_index":64}},{"id":2054,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384285062],[9.941151398,55.384195759],[9.941308603,55.384195759],[9.941308603,55.384285062],[9.941151398,55.384285062]]]},"properties":{"id":2054,"top":7436808.0681,"id_0":2054,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436790.5681,"col_index":28,"row_index":65}},{"id":2055,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384195759],[9.941151398,55.384106455],[9.941308603,55.384106455],[9.941308603,55.384195759],[9.941151398,55.384195759]]]},"properties":{"id":2055,"top":7436790.5681,"id_0":2055,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436773.0681,"col_index":28,"row_index":66}},{"id":2056,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384106455],[9.941151398,55.384017151],[9.941308603,55.384017151],[9.941308603,55.384106455],[9.941151398,55.384106455]]]},"properties":{"id":2056,"top":7436773.0681,"id_0":2056,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436755.5681,"col_index":28,"row_index":67}},{"id":2057,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.384017151],[9.941151398,55.383927847],[9.941308603,55.383927847],[9.941308603,55.384017151],[9.941151398,55.384017151]]]},"properties":{"id":2057,"top":7436755.5681,"id_0":2057,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436738.0681,"col_index":28,"row_index":68}},{"id":2058,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.383927847],[9.941151398,55.383838543],[9.941308603,55.383838543],[9.941308603,55.383927847],[9.941151398,55.383927847]]]},"properties":{"id":2058,"top":7436738.0681,"id_0":2058,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436720.5681,"col_index":28,"row_index":69}},{"id":2059,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.383838543],[9.941151398,55.383749238],[9.941308603,55.383749238],[9.941308603,55.383838543],[9.941151398,55.383838543]]]},"properties":{"id":2059,"top":7436720.5681,"id_0":2059,"left":1106643.9115,"Label":null,"right":1106661.4115,"bottom":7436703.0681,"col_index":28,"row_index":70}},{"id":2061,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.390000071],[9.941308603,55.38991078],[9.941465808,55.38991078],[9.941465808,55.390000071],[9.941308603,55.390000071]]]},"properties":{"id":2061,"top":7437928.0681,"id_0":2061,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437910.5681,"col_index":29,"row_index":1}},{"id":2062,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38991078],[9.941308603,55.38982149],[9.941465808,55.38982149],[9.941465808,55.38991078],[9.941308603,55.38991078]]]},"properties":{"id":2062,"top":7437910.5681,"id_0":2062,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437893.0681,"col_index":29,"row_index":2}},{"id":2063,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38982149],[9.941308603,55.389732199],[9.941465808,55.389732199],[9.941465808,55.38982149],[9.941308603,55.38982149]]]},"properties":{"id":2063,"top":7437893.0681,"id_0":2063,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437875.5681,"col_index":29,"row_index":3}},{"id":2064,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389732199],[9.941308603,55.389642907],[9.941465808,55.389642907],[9.941465808,55.389732199],[9.941308603,55.389732199]]]},"properties":{"id":2064,"top":7437875.5681,"id_0":2064,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437858.0681,"col_index":29,"row_index":4}},{"id":2065,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389642907],[9.941308603,55.389553616],[9.941465808,55.389553616],[9.941465808,55.389642907],[9.941308603,55.389642907]]]},"properties":{"id":2065,"top":7437858.0681,"id_0":2065,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437840.5681,"col_index":29,"row_index":5}},{"id":2066,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389553616],[9.941308603,55.389464324],[9.941465808,55.389464324],[9.941465808,55.389553616],[9.941308603,55.389553616]]]},"properties":{"id":2066,"top":7437840.5681,"id_0":2066,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437823.0681,"col_index":29,"row_index":6}},{"id":2067,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389464324],[9.941308603,55.389375032],[9.941465808,55.389375032],[9.941465808,55.389464324],[9.941308603,55.389464324]]]},"properties":{"id":2067,"top":7437823.0681,"id_0":2067,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437805.5681,"col_index":29,"row_index":7}},{"id":2068,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389375032],[9.941308603,55.38928574],[9.941465808,55.38928574],[9.941465808,55.389375032],[9.941308603,55.389375032]]]},"properties":{"id":2068,"top":7437805.5681,"id_0":2068,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437788.0681,"col_index":29,"row_index":8}},{"id":2069,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38928574],[9.941308603,55.389196448],[9.941465808,55.389196448],[9.941465808,55.38928574],[9.941308603,55.38928574]]]},"properties":{"id":2069,"top":7437788.0681,"id_0":2069,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437770.5681,"col_index":29,"row_index":9}},{"id":2070,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389196448],[9.941308603,55.389107155],[9.941465808,55.389107155],[9.941465808,55.389196448],[9.941308603,55.389196448]]]},"properties":{"id":2070,"top":7437770.5681,"id_0":2070,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437753.0681,"col_index":29,"row_index":10}},{"id":2071,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389107155],[9.941308603,55.389017863],[9.941465808,55.389017863],[9.941465808,55.389107155],[9.941308603,55.389107155]]]},"properties":{"id":2071,"top":7437753.0681,"id_0":2071,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437735.5681,"col_index":29,"row_index":11}},{"id":2072,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.389017863],[9.941308603,55.38892857],[9.941465808,55.38892857],[9.941465808,55.389017863],[9.941308603,55.389017863]]]},"properties":{"id":2072,"top":7437735.5681,"id_0":2072,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437718.0681,"col_index":29,"row_index":12}},{"id":2073,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38892857],[9.941308603,55.388839277],[9.941465808,55.388839277],[9.941465808,55.38892857],[9.941308603,55.38892857]]]},"properties":{"id":2073,"top":7437718.0681,"id_0":2073,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437700.5681,"col_index":29,"row_index":13}},{"id":2074,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388839277],[9.941308603,55.388749984],[9.941465808,55.388749984],[9.941465808,55.388839277],[9.941308603,55.388839277]]]},"properties":{"id":2074,"top":7437700.5681,"id_0":2074,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437683.0681,"col_index":29,"row_index":14}},{"id":2075,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388749984],[9.941308603,55.38866069],[9.941465808,55.38866069],[9.941465808,55.388749984],[9.941308603,55.388749984]]]},"properties":{"id":2075,"top":7437683.0681,"id_0":2075,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437665.5681,"col_index":29,"row_index":15}},{"id":2076,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38866069],[9.941308603,55.388571396],[9.941465808,55.388571396],[9.941465808,55.38866069],[9.941308603,55.38866069]]]},"properties":{"id":2076,"top":7437665.5681,"id_0":2076,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437648.0681,"col_index":29,"row_index":16}},{"id":2077,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388571396],[9.941308603,55.388482103],[9.941465808,55.388482103],[9.941465808,55.388571396],[9.941308603,55.388571396]]]},"properties":{"id":2077,"top":7437648.0681,"id_0":2077,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437630.5681,"col_index":29,"row_index":17}},{"id":2078,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388482103],[9.941308603,55.388392808],[9.941465808,55.388392808],[9.941465808,55.388482103],[9.941308603,55.388482103]]]},"properties":{"id":2078,"top":7437630.5681,"id_0":2078,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437613.0681,"col_index":29,"row_index":18}},{"id":2079,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388392808],[9.941308603,55.388303514],[9.941465808,55.388303514],[9.941465808,55.388392808],[9.941308603,55.388392808]]]},"properties":{"id":2079,"top":7437613.0681,"id_0":2079,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437595.5681,"col_index":29,"row_index":19}},{"id":2080,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388303514],[9.941308603,55.38821422],[9.941465808,55.38821422],[9.941465808,55.388303514],[9.941308603,55.388303514]]]},"properties":{"id":2080,"top":7437595.5681,"id_0":2080,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437578.0681,"col_index":29,"row_index":20}},{"id":2081,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38821422],[9.941308603,55.388124925],[9.941465808,55.388124925],[9.941465808,55.38821422],[9.941308603,55.38821422]]]},"properties":{"id":2081,"top":7437578.0681,"id_0":2081,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437560.5681,"col_index":29,"row_index":21}},{"id":2082,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.388124925],[9.941308603,55.38803563],[9.941465808,55.38803563],[9.941465808,55.388124925],[9.941308603,55.388124925]]]},"properties":{"id":2082,"top":7437560.5681,"id_0":2082,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437543.0681,"col_index":29,"row_index":22}},{"id":2083,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38803563],[9.941308603,55.387946335],[9.941465808,55.387946335],[9.941465808,55.38803563],[9.941308603,55.38803563]]]},"properties":{"id":2083,"top":7437543.0681,"id_0":2083,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437525.5681,"col_index":29,"row_index":23}},{"id":2084,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387946335],[9.941308603,55.38785704],[9.941465808,55.38785704],[9.941465808,55.387946335],[9.941308603,55.387946335]]]},"properties":{"id":2084,"top":7437525.5681,"id_0":2084,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437508.0681,"col_index":29,"row_index":24}},{"id":2085,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38785704],[9.941308603,55.387767744],[9.941465808,55.387767744],[9.941465808,55.38785704],[9.941308603,55.38785704]]]},"properties":{"id":2085,"top":7437508.0681,"id_0":2085,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437490.5681,"col_index":29,"row_index":25}},{"id":2086,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387767744],[9.941308603,55.387678448],[9.941465808,55.387678448],[9.941465808,55.387767744],[9.941308603,55.387767744]]]},"properties":{"id":2086,"top":7437490.5681,"id_0":2086,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437473.0681,"col_index":29,"row_index":26}},{"id":2087,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387678448],[9.941308603,55.387589153],[9.941465808,55.387589153],[9.941465808,55.387678448],[9.941308603,55.387678448]]]},"properties":{"id":2087,"top":7437473.0681,"id_0":2087,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437455.5681,"col_index":29,"row_index":27}},{"id":2088,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387589153],[9.941308603,55.387499856],[9.941465808,55.387499856],[9.941465808,55.387589153],[9.941308603,55.387589153]]]},"properties":{"id":2088,"top":7437455.5681,"id_0":2088,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437438.0681,"col_index":29,"row_index":28}},{"id":2089,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387499856],[9.941308603,55.38741056],[9.941465808,55.38741056],[9.941465808,55.387499856],[9.941308603,55.387499856]]]},"properties":{"id":2089,"top":7437438.0681,"id_0":2089,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437420.5681,"col_index":29,"row_index":29}},{"id":2090,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38741056],[9.941308603,55.387321264],[9.941465808,55.387321264],[9.941465808,55.38741056],[9.941308603,55.38741056]]]},"properties":{"id":2090,"top":7437420.5681,"id_0":2090,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437403.0681,"col_index":29,"row_index":30}},{"id":2091,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387321264],[9.941308603,55.387231967],[9.941465808,55.387231967],[9.941465808,55.387321264],[9.941308603,55.387321264]]]},"properties":{"id":2091,"top":7437403.0681,"id_0":2091,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437385.5681,"col_index":29,"row_index":31}},{"id":2092,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387231967],[9.941308603,55.38714267],[9.941465808,55.38714267],[9.941465808,55.387231967],[9.941308603,55.387231967]]]},"properties":{"id":2092,"top":7437385.5681,"id_0":2092,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437368.0681,"col_index":29,"row_index":32}},{"id":2093,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38714267],[9.941308603,55.387053373],[9.941465808,55.387053373],[9.941465808,55.38714267],[9.941308603,55.38714267]]]},"properties":{"id":2093,"top":7437368.0681,"id_0":2093,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437350.5681,"col_index":29,"row_index":33}},{"id":2094,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.387053373],[9.941308603,55.386964076],[9.941465808,55.386964076],[9.941465808,55.387053373],[9.941308603,55.387053373]]]},"properties":{"id":2094,"top":7437350.5681,"id_0":2094,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437333.0681,"col_index":29,"row_index":34}},{"id":2095,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386964076],[9.941308603,55.386874778],[9.941465808,55.386874778],[9.941465808,55.386964076],[9.941308603,55.386964076]]]},"properties":{"id":2095,"top":7437333.0681,"id_0":2095,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437315.5681,"col_index":29,"row_index":35}},{"id":2096,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386874778],[9.941308603,55.38678548],[9.941465808,55.38678548],[9.941465808,55.386874778],[9.941308603,55.386874778]]]},"properties":{"id":2096,"top":7437315.5681,"id_0":2096,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437298.0681,"col_index":29,"row_index":36}},{"id":2097,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38678548],[9.941308603,55.386696182],[9.941465808,55.386696182],[9.941465808,55.38678548],[9.941308603,55.38678548]]]},"properties":{"id":2097,"top":7437298.0681,"id_0":2097,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437280.5681,"col_index":29,"row_index":37}},{"id":2098,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386696182],[9.941308603,55.386606884],[9.941465808,55.386606884],[9.941465808,55.386696182],[9.941308603,55.386696182]]]},"properties":{"id":2098,"top":7437280.5681,"id_0":2098,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437263.0681,"col_index":29,"row_index":38}},{"id":2099,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386606884],[9.941308603,55.386517586],[9.941465808,55.386517586],[9.941465808,55.386606884],[9.941308603,55.386606884]]]},"properties":{"id":2099,"top":7437263.0681,"id_0":2099,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437245.5681,"col_index":29,"row_index":39}},{"id":2100,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386517586],[9.941308603,55.386428287],[9.941465808,55.386428287],[9.941465808,55.386517586],[9.941308603,55.386517586]]]},"properties":{"id":2100,"top":7437245.5681,"id_0":2100,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437228.0681,"col_index":29,"row_index":40}},{"id":2101,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386428287],[9.941308603,55.386338989],[9.941465808,55.386338989],[9.941465808,55.386428287],[9.941308603,55.386428287]]]},"properties":{"id":2101,"top":7437228.0681,"id_0":2101,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437210.5681,"col_index":29,"row_index":41}},{"id":2102,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386338989],[9.941308603,55.38624969],[9.941465808,55.38624969],[9.941465808,55.386338989],[9.941308603,55.386338989]]]},"properties":{"id":2102,"top":7437210.5681,"id_0":2102,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437193.0681,"col_index":29,"row_index":42}},{"id":2103,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38624969],[9.941308603,55.386160391],[9.941465808,55.386160391],[9.941465808,55.38624969],[9.941308603,55.38624969]]]},"properties":{"id":2103,"top":7437193.0681,"id_0":2103,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437175.5681,"col_index":29,"row_index":43}},{"id":2104,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386160391],[9.941308603,55.386071091],[9.941465808,55.386071091],[9.941465808,55.386160391],[9.941308603,55.386160391]]]},"properties":{"id":2104,"top":7437175.5681,"id_0":2104,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437158.0681,"col_index":29,"row_index":44}},{"id":2105,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.386071091],[9.941308603,55.385981792],[9.941465808,55.385981792],[9.941465808,55.386071091],[9.941308603,55.386071091]]]},"properties":{"id":2105,"top":7437158.0681,"id_0":2105,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437140.5681,"col_index":29,"row_index":45}},{"id":2106,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385981792],[9.941308603,55.385892492],[9.941465808,55.385892492],[9.941465808,55.385981792],[9.941308603,55.385981792]]]},"properties":{"id":2106,"top":7437140.5681,"id_0":2106,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437123.0681,"col_index":29,"row_index":46}},{"id":2107,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385892492],[9.941308603,55.385803192],[9.941465808,55.385803192],[9.941465808,55.385892492],[9.941308603,55.385892492]]]},"properties":{"id":2107,"top":7437123.0681,"id_0":2107,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437105.5681,"col_index":29,"row_index":47}},{"id":2108,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385803192],[9.941308603,55.385713892],[9.941465808,55.385713892],[9.941465808,55.385803192],[9.941308603,55.385803192]]]},"properties":{"id":2108,"top":7437105.5681,"id_0":2108,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437088.0681,"col_index":29,"row_index":48}},{"id":2109,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385713892],[9.941308603,55.385624592],[9.941465808,55.385624592],[9.941465808,55.385713892],[9.941308603,55.385713892]]]},"properties":{"id":2109,"top":7437088.0681,"id_0":2109,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437070.5681,"col_index":29,"row_index":49}},{"id":2110,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385624592],[9.941308603,55.385535291],[9.941465808,55.385535291],[9.941465808,55.385624592],[9.941308603,55.385624592]]]},"properties":{"id":2110,"top":7437070.5681,"id_0":2110,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437053.0681,"col_index":29,"row_index":50}},{"id":2111,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385535291],[9.941308603,55.38544599],[9.941465808,55.38544599],[9.941465808,55.385535291],[9.941308603,55.385535291]]]},"properties":{"id":2111,"top":7437053.0681,"id_0":2111,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437035.5681,"col_index":29,"row_index":51}},{"id":2112,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38544599],[9.941308603,55.385356689],[9.941465808,55.385356689],[9.941465808,55.38544599],[9.941308603,55.38544599]]]},"properties":{"id":2112,"top":7437035.5681,"id_0":2112,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437018.0681,"col_index":29,"row_index":52}},{"id":2113,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385356689],[9.941308603,55.385267388],[9.941465808,55.385267388],[9.941465808,55.385356689],[9.941308603,55.385356689]]]},"properties":{"id":2113,"top":7437018.0681,"id_0":2113,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7437000.5681,"col_index":29,"row_index":53}},{"id":2114,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385267388],[9.941308603,55.385178087],[9.941465808,55.385178087],[9.941465808,55.385267388],[9.941308603,55.385267388]]]},"properties":{"id":2114,"top":7437000.5681,"id_0":2114,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436983.0681,"col_index":29,"row_index":54}},{"id":2115,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385178087],[9.941308603,55.385088785],[9.941465808,55.385088785],[9.941465808,55.385178087],[9.941308603,55.385178087]]]},"properties":{"id":2115,"top":7436983.0681,"id_0":2115,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436965.5681,"col_index":29,"row_index":55}},{"id":2116,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.385088785],[9.941308603,55.384999484],[9.941465808,55.384999484],[9.941465808,55.385088785],[9.941308603,55.385088785]]]},"properties":{"id":2116,"top":7436965.5681,"id_0":2116,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436948.0681,"col_index":29,"row_index":56}},{"id":2117,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384999484],[9.941308603,55.384910182],[9.941465808,55.384910182],[9.941465808,55.384999484],[9.941308603,55.384999484]]]},"properties":{"id":2117,"top":7436948.0681,"id_0":2117,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436930.5681,"col_index":29,"row_index":57}},{"id":2118,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384910182],[9.941308603,55.38482088],[9.941465808,55.38482088],[9.941465808,55.384910182],[9.941308603,55.384910182]]]},"properties":{"id":2118,"top":7436930.5681,"id_0":2118,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436913.0681,"col_index":29,"row_index":58}},{"id":2119,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.38482088],[9.941308603,55.384731577],[9.941465808,55.384731577],[9.941465808,55.38482088],[9.941308603,55.38482088]]]},"properties":{"id":2119,"top":7436913.0681,"id_0":2119,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436895.5681,"col_index":29,"row_index":59}},{"id":2120,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384731577],[9.941308603,55.384642275],[9.941465808,55.384642275],[9.941465808,55.384731577],[9.941308603,55.384731577]]]},"properties":{"id":2120,"top":7436895.5681,"id_0":2120,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436878.0681,"col_index":29,"row_index":60}},{"id":2121,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384642275],[9.941308603,55.384552972],[9.941465808,55.384552972],[9.941465808,55.384642275],[9.941308603,55.384642275]]]},"properties":{"id":2121,"top":7436878.0681,"id_0":2121,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436860.5681,"col_index":29,"row_index":61}},{"id":2122,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384552972],[9.941308603,55.384463669],[9.941465808,55.384463669],[9.941465808,55.384552972],[9.941308603,55.384552972]]]},"properties":{"id":2122,"top":7436860.5681,"id_0":2122,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436843.0681,"col_index":29,"row_index":62}},{"id":2123,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384463669],[9.941308603,55.384374366],[9.941465808,55.384374366],[9.941465808,55.384463669],[9.941308603,55.384463669]]]},"properties":{"id":2123,"top":7436843.0681,"id_0":2123,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436825.5681,"col_index":29,"row_index":63}},{"id":2124,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384374366],[9.941308603,55.384285062],[9.941465808,55.384285062],[9.941465808,55.384374366],[9.941308603,55.384374366]]]},"properties":{"id":2124,"top":7436825.5681,"id_0":2124,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436808.0681,"col_index":29,"row_index":64}},{"id":2125,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384285062],[9.941308603,55.384195759],[9.941465808,55.384195759],[9.941465808,55.384285062],[9.941308603,55.384285062]]]},"properties":{"id":2125,"top":7436808.0681,"id_0":2125,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436790.5681,"col_index":29,"row_index":65}},{"id":2126,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384195759],[9.941308603,55.384106455],[9.941465808,55.384106455],[9.941465808,55.384195759],[9.941308603,55.384195759]]]},"properties":{"id":2126,"top":7436790.5681,"id_0":2126,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436773.0681,"col_index":29,"row_index":66}},{"id":2127,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384106455],[9.941308603,55.384017151],[9.941465808,55.384017151],[9.941465808,55.384106455],[9.941308603,55.384106455]]]},"properties":{"id":2127,"top":7436773.0681,"id_0":2127,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436755.5681,"col_index":29,"row_index":67}},{"id":2128,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.384017151],[9.941308603,55.383927847],[9.941465808,55.383927847],[9.941465808,55.384017151],[9.941308603,55.384017151]]]},"properties":{"id":2128,"top":7436755.5681,"id_0":2128,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436738.0681,"col_index":29,"row_index":68}},{"id":2129,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.383927847],[9.941308603,55.383838543],[9.941465808,55.383838543],[9.941465808,55.383927847],[9.941308603,55.383927847]]]},"properties":{"id":2129,"top":7436738.0681,"id_0":2129,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436720.5681,"col_index":29,"row_index":69}},{"id":2130,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.383838543],[9.941308603,55.383749238],[9.941465808,55.383749238],[9.941465808,55.383838543],[9.941308603,55.383838543]]]},"properties":{"id":2130,"top":7436720.5681,"id_0":2130,"left":1106661.4115,"Label":null,"right":1106678.9115,"bottom":7436703.0681,"col_index":29,"row_index":70}},{"id":2132,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.390000071],[9.941465808,55.38991078],[9.941623013,55.38991078],[9.941623013,55.390000071],[9.941465808,55.390000071]]]},"properties":{"id":2132,"top":7437928.0681,"id_0":2132,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437910.5681,"col_index":30,"row_index":1}},{"id":2133,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38991078],[9.941465808,55.38982149],[9.941623013,55.38982149],[9.941623013,55.38991078],[9.941465808,55.38991078]]]},"properties":{"id":2133,"top":7437910.5681,"id_0":2133,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437893.0681,"col_index":30,"row_index":2}},{"id":2134,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38982149],[9.941465808,55.389732199],[9.941623013,55.389732199],[9.941623013,55.38982149],[9.941465808,55.38982149]]]},"properties":{"id":2134,"top":7437893.0681,"id_0":2134,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437875.5681,"col_index":30,"row_index":3}},{"id":2135,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389732199],[9.941465808,55.389642907],[9.941623013,55.389642907],[9.941623013,55.389732199],[9.941465808,55.389732199]]]},"properties":{"id":2135,"top":7437875.5681,"id_0":2135,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437858.0681,"col_index":30,"row_index":4}},{"id":2136,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389642907],[9.941465808,55.389553616],[9.941623013,55.389553616],[9.941623013,55.389642907],[9.941465808,55.389642907]]]},"properties":{"id":2136,"top":7437858.0681,"id_0":2136,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437840.5681,"col_index":30,"row_index":5}},{"id":2137,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389553616],[9.941465808,55.389464324],[9.941623013,55.389464324],[9.941623013,55.389553616],[9.941465808,55.389553616]]]},"properties":{"id":2137,"top":7437840.5681,"id_0":2137,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437823.0681,"col_index":30,"row_index":6}},{"id":2138,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389464324],[9.941465808,55.389375032],[9.941623013,55.389375032],[9.941623013,55.389464324],[9.941465808,55.389464324]]]},"properties":{"id":2138,"top":7437823.0681,"id_0":2138,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437805.5681,"col_index":30,"row_index":7}},{"id":2139,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389375032],[9.941465808,55.38928574],[9.941623013,55.38928574],[9.941623013,55.389375032],[9.941465808,55.389375032]]]},"properties":{"id":2139,"top":7437805.5681,"id_0":2139,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437788.0681,"col_index":30,"row_index":8}},{"id":2140,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38928574],[9.941465808,55.389196448],[9.941623013,55.389196448],[9.941623013,55.38928574],[9.941465808,55.38928574]]]},"properties":{"id":2140,"top":7437788.0681,"id_0":2140,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437770.5681,"col_index":30,"row_index":9}},{"id":2141,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389196448],[9.941465808,55.389107155],[9.941623013,55.389107155],[9.941623013,55.389196448],[9.941465808,55.389196448]]]},"properties":{"id":2141,"top":7437770.5681,"id_0":2141,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437753.0681,"col_index":30,"row_index":10}},{"id":2142,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389107155],[9.941465808,55.389017863],[9.941623013,55.389017863],[9.941623013,55.389107155],[9.941465808,55.389107155]]]},"properties":{"id":2142,"top":7437753.0681,"id_0":2142,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437735.5681,"col_index":30,"row_index":11}},{"id":2143,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.389017863],[9.941465808,55.38892857],[9.941623013,55.38892857],[9.941623013,55.389017863],[9.941465808,55.389017863]]]},"properties":{"id":2143,"top":7437735.5681,"id_0":2143,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437718.0681,"col_index":30,"row_index":12}},{"id":2144,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38892857],[9.941465808,55.388839277],[9.941623013,55.388839277],[9.941623013,55.38892857],[9.941465808,55.38892857]]]},"properties":{"id":2144,"top":7437718.0681,"id_0":2144,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437700.5681,"col_index":30,"row_index":13}},{"id":2145,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388839277],[9.941465808,55.388749984],[9.941623013,55.388749984],[9.941623013,55.388839277],[9.941465808,55.388839277]]]},"properties":{"id":2145,"top":7437700.5681,"id_0":2145,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437683.0681,"col_index":30,"row_index":14}},{"id":2146,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388749984],[9.941465808,55.38866069],[9.941623013,55.38866069],[9.941623013,55.388749984],[9.941465808,55.388749984]]]},"properties":{"id":2146,"top":7437683.0681,"id_0":2146,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437665.5681,"col_index":30,"row_index":15}},{"id":2147,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38866069],[9.941465808,55.388571396],[9.941623013,55.388571396],[9.941623013,55.38866069],[9.941465808,55.38866069]]]},"properties":{"id":2147,"top":7437665.5681,"id_0":2147,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437648.0681,"col_index":30,"row_index":16}},{"id":2148,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388571396],[9.941465808,55.388482103],[9.941623013,55.388482103],[9.941623013,55.388571396],[9.941465808,55.388571396]]]},"properties":{"id":2148,"top":7437648.0681,"id_0":2148,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437630.5681,"col_index":30,"row_index":17}},{"id":2149,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388482103],[9.941465808,55.388392808],[9.941623013,55.388392808],[9.941623013,55.388482103],[9.941465808,55.388482103]]]},"properties":{"id":2149,"top":7437630.5681,"id_0":2149,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437613.0681,"col_index":30,"row_index":18}},{"id":2150,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388392808],[9.941465808,55.388303514],[9.941623013,55.388303514],[9.941623013,55.388392808],[9.941465808,55.388392808]]]},"properties":{"id":2150,"top":7437613.0681,"id_0":2150,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437595.5681,"col_index":30,"row_index":19}},{"id":2151,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388303514],[9.941465808,55.38821422],[9.941623013,55.38821422],[9.941623013,55.388303514],[9.941465808,55.388303514]]]},"properties":{"id":2151,"top":7437595.5681,"id_0":2151,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437578.0681,"col_index":30,"row_index":20}},{"id":2152,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38821422],[9.941465808,55.388124925],[9.941623013,55.388124925],[9.941623013,55.38821422],[9.941465808,55.38821422]]]},"properties":{"id":2152,"top":7437578.0681,"id_0":2152,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437560.5681,"col_index":30,"row_index":21}},{"id":2153,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.388124925],[9.941465808,55.38803563],[9.941623013,55.38803563],[9.941623013,55.388124925],[9.941465808,55.388124925]]]},"properties":{"id":2153,"top":7437560.5681,"id_0":2153,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437543.0681,"col_index":30,"row_index":22}},{"id":2154,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38803563],[9.941465808,55.387946335],[9.941623013,55.387946335],[9.941623013,55.38803563],[9.941465808,55.38803563]]]},"properties":{"id":2154,"top":7437543.0681,"id_0":2154,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437525.5681,"col_index":30,"row_index":23}},{"id":2155,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387946335],[9.941465808,55.38785704],[9.941623013,55.38785704],[9.941623013,55.387946335],[9.941465808,55.387946335]]]},"properties":{"id":2155,"top":7437525.5681,"id_0":2155,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437508.0681,"col_index":30,"row_index":24}},{"id":2156,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38785704],[9.941465808,55.387767744],[9.941623013,55.387767744],[9.941623013,55.38785704],[9.941465808,55.38785704]]]},"properties":{"id":2156,"top":7437508.0681,"id_0":2156,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437490.5681,"col_index":30,"row_index":25}},{"id":2157,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387767744],[9.941465808,55.387678448],[9.941623013,55.387678448],[9.941623013,55.387767744],[9.941465808,55.387767744]]]},"properties":{"id":2157,"top":7437490.5681,"id_0":2157,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437473.0681,"col_index":30,"row_index":26}},{"id":2158,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387678448],[9.941465808,55.387589153],[9.941623013,55.387589153],[9.941623013,55.387678448],[9.941465808,55.387678448]]]},"properties":{"id":2158,"top":7437473.0681,"id_0":2158,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437455.5681,"col_index":30,"row_index":27}},{"id":2159,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387589153],[9.941465808,55.387499856],[9.941623013,55.387499856],[9.941623013,55.387589153],[9.941465808,55.387589153]]]},"properties":{"id":2159,"top":7437455.5681,"id_0":2159,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437438.0681,"col_index":30,"row_index":28}},{"id":2160,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387499856],[9.941465808,55.38741056],[9.941623013,55.38741056],[9.941623013,55.387499856],[9.941465808,55.387499856]]]},"properties":{"id":2160,"top":7437438.0681,"id_0":2160,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437420.5681,"col_index":30,"row_index":29}},{"id":2161,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38741056],[9.941465808,55.387321264],[9.941623013,55.387321264],[9.941623013,55.38741056],[9.941465808,55.38741056]]]},"properties":{"id":2161,"top":7437420.5681,"id_0":2161,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437403.0681,"col_index":30,"row_index":30}},{"id":2162,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387321264],[9.941465808,55.387231967],[9.941623013,55.387231967],[9.941623013,55.387321264],[9.941465808,55.387321264]]]},"properties":{"id":2162,"top":7437403.0681,"id_0":2162,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437385.5681,"col_index":30,"row_index":31}},{"id":2163,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387231967],[9.941465808,55.38714267],[9.941623013,55.38714267],[9.941623013,55.387231967],[9.941465808,55.387231967]]]},"properties":{"id":2163,"top":7437385.5681,"id_0":2163,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437368.0681,"col_index":30,"row_index":32}},{"id":2164,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38714267],[9.941465808,55.387053373],[9.941623013,55.387053373],[9.941623013,55.38714267],[9.941465808,55.38714267]]]},"properties":{"id":2164,"top":7437368.0681,"id_0":2164,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437350.5681,"col_index":30,"row_index":33}},{"id":2165,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.387053373],[9.941465808,55.386964076],[9.941623013,55.386964076],[9.941623013,55.387053373],[9.941465808,55.387053373]]]},"properties":{"id":2165,"top":7437350.5681,"id_0":2165,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437333.0681,"col_index":30,"row_index":34}},{"id":2166,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386964076],[9.941465808,55.386874778],[9.941623013,55.386874778],[9.941623013,55.386964076],[9.941465808,55.386964076]]]},"properties":{"id":2166,"top":7437333.0681,"id_0":2166,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437315.5681,"col_index":30,"row_index":35}},{"id":2167,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386874778],[9.941465808,55.38678548],[9.941623013,55.38678548],[9.941623013,55.386874778],[9.941465808,55.386874778]]]},"properties":{"id":2167,"top":7437315.5681,"id_0":2167,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437298.0681,"col_index":30,"row_index":36}},{"id":2168,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38678548],[9.941465808,55.386696182],[9.941623013,55.386696182],[9.941623013,55.38678548],[9.941465808,55.38678548]]]},"properties":{"id":2168,"top":7437298.0681,"id_0":2168,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437280.5681,"col_index":30,"row_index":37}},{"id":2169,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386696182],[9.941465808,55.386606884],[9.941623013,55.386606884],[9.941623013,55.386696182],[9.941465808,55.386696182]]]},"properties":{"id":2169,"top":7437280.5681,"id_0":2169,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437263.0681,"col_index":30,"row_index":38}},{"id":2170,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386606884],[9.941465808,55.386517586],[9.941623013,55.386517586],[9.941623013,55.386606884],[9.941465808,55.386606884]]]},"properties":{"id":2170,"top":7437263.0681,"id_0":2170,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437245.5681,"col_index":30,"row_index":39}},{"id":2171,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386517586],[9.941465808,55.386428287],[9.941623013,55.386428287],[9.941623013,55.386517586],[9.941465808,55.386517586]]]},"properties":{"id":2171,"top":7437245.5681,"id_0":2171,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437228.0681,"col_index":30,"row_index":40}},{"id":2172,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386428287],[9.941465808,55.386338989],[9.941623013,55.386338989],[9.941623013,55.386428287],[9.941465808,55.386428287]]]},"properties":{"id":2172,"top":7437228.0681,"id_0":2172,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437210.5681,"col_index":30,"row_index":41}},{"id":2173,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386338989],[9.941465808,55.38624969],[9.941623013,55.38624969],[9.941623013,55.386338989],[9.941465808,55.386338989]]]},"properties":{"id":2173,"top":7437210.5681,"id_0":2173,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437193.0681,"col_index":30,"row_index":42}},{"id":2174,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38624969],[9.941465808,55.386160391],[9.941623013,55.386160391],[9.941623013,55.38624969],[9.941465808,55.38624969]]]},"properties":{"id":2174,"top":7437193.0681,"id_0":2174,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437175.5681,"col_index":30,"row_index":43}},{"id":2175,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386160391],[9.941465808,55.386071091],[9.941623013,55.386071091],[9.941623013,55.386160391],[9.941465808,55.386160391]]]},"properties":{"id":2175,"top":7437175.5681,"id_0":2175,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437158.0681,"col_index":30,"row_index":44}},{"id":2176,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.386071091],[9.941465808,55.385981792],[9.941623013,55.385981792],[9.941623013,55.386071091],[9.941465808,55.386071091]]]},"properties":{"id":2176,"top":7437158.0681,"id_0":2176,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437140.5681,"col_index":30,"row_index":45}},{"id":2177,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385981792],[9.941465808,55.385892492],[9.941623013,55.385892492],[9.941623013,55.385981792],[9.941465808,55.385981792]]]},"properties":{"id":2177,"top":7437140.5681,"id_0":2177,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437123.0681,"col_index":30,"row_index":46}},{"id":2178,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385892492],[9.941465808,55.385803192],[9.941623013,55.385803192],[9.941623013,55.385892492],[9.941465808,55.385892492]]]},"properties":{"id":2178,"top":7437123.0681,"id_0":2178,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437105.5681,"col_index":30,"row_index":47}},{"id":2179,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385803192],[9.941465808,55.385713892],[9.941623013,55.385713892],[9.941623013,55.385803192],[9.941465808,55.385803192]]]},"properties":{"id":2179,"top":7437105.5681,"id_0":2179,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437088.0681,"col_index":30,"row_index":48}},{"id":2180,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385713892],[9.941465808,55.385624592],[9.941623013,55.385624592],[9.941623013,55.385713892],[9.941465808,55.385713892]]]},"properties":{"id":2180,"top":7437088.0681,"id_0":2180,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437070.5681,"col_index":30,"row_index":49}},{"id":2181,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385624592],[9.941465808,55.385535291],[9.941623013,55.385535291],[9.941623013,55.385624592],[9.941465808,55.385624592]]]},"properties":{"id":2181,"top":7437070.5681,"id_0":2181,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437053.0681,"col_index":30,"row_index":50}},{"id":2182,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385535291],[9.941465808,55.38544599],[9.941623013,55.38544599],[9.941623013,55.385535291],[9.941465808,55.385535291]]]},"properties":{"id":2182,"top":7437053.0681,"id_0":2182,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437035.5681,"col_index":30,"row_index":51}},{"id":2183,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38544599],[9.941465808,55.385356689],[9.941623013,55.385356689],[9.941623013,55.38544599],[9.941465808,55.38544599]]]},"properties":{"id":2183,"top":7437035.5681,"id_0":2183,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437018.0681,"col_index":30,"row_index":52}},{"id":2184,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385356689],[9.941465808,55.385267388],[9.941623013,55.385267388],[9.941623013,55.385356689],[9.941465808,55.385356689]]]},"properties":{"id":2184,"top":7437018.0681,"id_0":2184,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7437000.5681,"col_index":30,"row_index":53}},{"id":2185,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385267388],[9.941465808,55.385178087],[9.941623013,55.385178087],[9.941623013,55.385267388],[9.941465808,55.385267388]]]},"properties":{"id":2185,"top":7437000.5681,"id_0":2185,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436983.0681,"col_index":30,"row_index":54}},{"id":2186,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385178087],[9.941465808,55.385088785],[9.941623013,55.385088785],[9.941623013,55.385178087],[9.941465808,55.385178087]]]},"properties":{"id":2186,"top":7436983.0681,"id_0":2186,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436965.5681,"col_index":30,"row_index":55}},{"id":2187,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.385088785],[9.941465808,55.384999484],[9.941623013,55.384999484],[9.941623013,55.385088785],[9.941465808,55.385088785]]]},"properties":{"id":2187,"top":7436965.5681,"id_0":2187,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436948.0681,"col_index":30,"row_index":56}},{"id":2188,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384999484],[9.941465808,55.384910182],[9.941623013,55.384910182],[9.941623013,55.384999484],[9.941465808,55.384999484]]]},"properties":{"id":2188,"top":7436948.0681,"id_0":2188,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436930.5681,"col_index":30,"row_index":57}},{"id":2189,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384910182],[9.941465808,55.38482088],[9.941623013,55.38482088],[9.941623013,55.384910182],[9.941465808,55.384910182]]]},"properties":{"id":2189,"top":7436930.5681,"id_0":2189,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436913.0681,"col_index":30,"row_index":58}},{"id":2190,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.38482088],[9.941465808,55.384731577],[9.941623013,55.384731577],[9.941623013,55.38482088],[9.941465808,55.38482088]]]},"properties":{"id":2190,"top":7436913.0681,"id_0":2190,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436895.5681,"col_index":30,"row_index":59}},{"id":2191,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384731577],[9.941465808,55.384642275],[9.941623013,55.384642275],[9.941623013,55.384731577],[9.941465808,55.384731577]]]},"properties":{"id":2191,"top":7436895.5681,"id_0":2191,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436878.0681,"col_index":30,"row_index":60}},{"id":2192,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384642275],[9.941465808,55.384552972],[9.941623013,55.384552972],[9.941623013,55.384642275],[9.941465808,55.384642275]]]},"properties":{"id":2192,"top":7436878.0681,"id_0":2192,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436860.5681,"col_index":30,"row_index":61}},{"id":2193,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384552972],[9.941465808,55.384463669],[9.941623013,55.384463669],[9.941623013,55.384552972],[9.941465808,55.384552972]]]},"properties":{"id":2193,"top":7436860.5681,"id_0":2193,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436843.0681,"col_index":30,"row_index":62}},{"id":2194,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384463669],[9.941465808,55.384374366],[9.941623013,55.384374366],[9.941623013,55.384463669],[9.941465808,55.384463669]]]},"properties":{"id":2194,"top":7436843.0681,"id_0":2194,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436825.5681,"col_index":30,"row_index":63}},{"id":2195,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384374366],[9.941465808,55.384285062],[9.941623013,55.384285062],[9.941623013,55.384374366],[9.941465808,55.384374366]]]},"properties":{"id":2195,"top":7436825.5681,"id_0":2195,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436808.0681,"col_index":30,"row_index":64}},{"id":2196,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384285062],[9.941465808,55.384195759],[9.941623013,55.384195759],[9.941623013,55.384285062],[9.941465808,55.384285062]]]},"properties":{"id":2196,"top":7436808.0681,"id_0":2196,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436790.5681,"col_index":30,"row_index":65}},{"id":2197,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384195759],[9.941465808,55.384106455],[9.941623013,55.384106455],[9.941623013,55.384195759],[9.941465808,55.384195759]]]},"properties":{"id":2197,"top":7436790.5681,"id_0":2197,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436773.0681,"col_index":30,"row_index":66}},{"id":2198,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384106455],[9.941465808,55.384017151],[9.941623013,55.384017151],[9.941623013,55.384106455],[9.941465808,55.384106455]]]},"properties":{"id":2198,"top":7436773.0681,"id_0":2198,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436755.5681,"col_index":30,"row_index":67}},{"id":2199,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.384017151],[9.941465808,55.383927847],[9.941623013,55.383927847],[9.941623013,55.384017151],[9.941465808,55.384017151]]]},"properties":{"id":2199,"top":7436755.5681,"id_0":2199,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436738.0681,"col_index":30,"row_index":68}},{"id":2200,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.383927847],[9.941465808,55.383838543],[9.941623013,55.383838543],[9.941623013,55.383927847],[9.941465808,55.383927847]]]},"properties":{"id":2200,"top":7436738.0681,"id_0":2200,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436720.5681,"col_index":30,"row_index":69}},{"id":2201,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.383838543],[9.941465808,55.383749238],[9.941623013,55.383749238],[9.941623013,55.383838543],[9.941465808,55.383838543]]]},"properties":{"id":2201,"top":7436720.5681,"id_0":2201,"left":1106678.9115,"Label":null,"right":1106696.4115,"bottom":7436703.0681,"col_index":30,"row_index":70}},{"id":2203,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.390000071],[9.941623013,55.38991078],[9.941780218,55.38991078],[9.941780218,55.390000071],[9.941623013,55.390000071]]]},"properties":{"id":2203,"top":7437928.0681,"id_0":2203,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437910.5681,"col_index":31,"row_index":1}},{"id":2204,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38991078],[9.941623013,55.38982149],[9.941780218,55.38982149],[9.941780218,55.38991078],[9.941623013,55.38991078]]]},"properties":{"id":2204,"top":7437910.5681,"id_0":2204,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437893.0681,"col_index":31,"row_index":2}},{"id":2205,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38982149],[9.941623013,55.389732199],[9.941780218,55.389732199],[9.941780218,55.38982149],[9.941623013,55.38982149]]]},"properties":{"id":2205,"top":7437893.0681,"id_0":2205,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437875.5681,"col_index":31,"row_index":3}},{"id":2206,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389732199],[9.941623013,55.389642907],[9.941780218,55.389642907],[9.941780218,55.389732199],[9.941623013,55.389732199]]]},"properties":{"id":2206,"top":7437875.5681,"id_0":2206,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437858.0681,"col_index":31,"row_index":4}},{"id":2207,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389642907],[9.941623013,55.389553616],[9.941780218,55.389553616],[9.941780218,55.389642907],[9.941623013,55.389642907]]]},"properties":{"id":2207,"top":7437858.0681,"id_0":2207,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437840.5681,"col_index":31,"row_index":5}},{"id":2208,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389553616],[9.941623013,55.389464324],[9.941780218,55.389464324],[9.941780218,55.389553616],[9.941623013,55.389553616]]]},"properties":{"id":2208,"top":7437840.5681,"id_0":2208,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437823.0681,"col_index":31,"row_index":6}},{"id":2209,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389464324],[9.941623013,55.389375032],[9.941780218,55.389375032],[9.941780218,55.389464324],[9.941623013,55.389464324]]]},"properties":{"id":2209,"top":7437823.0681,"id_0":2209,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437805.5681,"col_index":31,"row_index":7}},{"id":2210,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389375032],[9.941623013,55.38928574],[9.941780218,55.38928574],[9.941780218,55.389375032],[9.941623013,55.389375032]]]},"properties":{"id":2210,"top":7437805.5681,"id_0":2210,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437788.0681,"col_index":31,"row_index":8}},{"id":2211,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38928574],[9.941623013,55.389196448],[9.941780218,55.389196448],[9.941780218,55.38928574],[9.941623013,55.38928574]]]},"properties":{"id":2211,"top":7437788.0681,"id_0":2211,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437770.5681,"col_index":31,"row_index":9}},{"id":2212,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389196448],[9.941623013,55.389107155],[9.941780218,55.389107155],[9.941780218,55.389196448],[9.941623013,55.389196448]]]},"properties":{"id":2212,"top":7437770.5681,"id_0":2212,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437753.0681,"col_index":31,"row_index":10}},{"id":2213,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389107155],[9.941623013,55.389017863],[9.941780218,55.389017863],[9.941780218,55.389107155],[9.941623013,55.389107155]]]},"properties":{"id":2213,"top":7437753.0681,"id_0":2213,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437735.5681,"col_index":31,"row_index":11}},{"id":2214,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.389017863],[9.941623013,55.38892857],[9.941780218,55.38892857],[9.941780218,55.389017863],[9.941623013,55.389017863]]]},"properties":{"id":2214,"top":7437735.5681,"id_0":2214,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437718.0681,"col_index":31,"row_index":12}},{"id":2215,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38892857],[9.941623013,55.388839277],[9.941780218,55.388839277],[9.941780218,55.38892857],[9.941623013,55.38892857]]]},"properties":{"id":2215,"top":7437718.0681,"id_0":2215,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437700.5681,"col_index":31,"row_index":13}},{"id":2216,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388839277],[9.941623013,55.388749984],[9.941780218,55.388749984],[9.941780218,55.388839277],[9.941623013,55.388839277]]]},"properties":{"id":2216,"top":7437700.5681,"id_0":2216,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437683.0681,"col_index":31,"row_index":14}},{"id":2217,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388749984],[9.941623013,55.38866069],[9.941780218,55.38866069],[9.941780218,55.388749984],[9.941623013,55.388749984]]]},"properties":{"id":2217,"top":7437683.0681,"id_0":2217,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437665.5681,"col_index":31,"row_index":15}},{"id":2218,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38866069],[9.941623013,55.388571396],[9.941780218,55.388571396],[9.941780218,55.38866069],[9.941623013,55.38866069]]]},"properties":{"id":2218,"top":7437665.5681,"id_0":2218,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437648.0681,"col_index":31,"row_index":16}},{"id":2219,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388571396],[9.941623013,55.388482103],[9.941780218,55.388482103],[9.941780218,55.388571396],[9.941623013,55.388571396]]]},"properties":{"id":2219,"top":7437648.0681,"id_0":2219,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437630.5681,"col_index":31,"row_index":17}},{"id":2220,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388482103],[9.941623013,55.388392808],[9.941780218,55.388392808],[9.941780218,55.388482103],[9.941623013,55.388482103]]]},"properties":{"id":2220,"top":7437630.5681,"id_0":2220,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437613.0681,"col_index":31,"row_index":18}},{"id":2221,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388392808],[9.941623013,55.388303514],[9.941780218,55.388303514],[9.941780218,55.388392808],[9.941623013,55.388392808]]]},"properties":{"id":2221,"top":7437613.0681,"id_0":2221,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437595.5681,"col_index":31,"row_index":19}},{"id":2222,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388303514],[9.941623013,55.38821422],[9.941780218,55.38821422],[9.941780218,55.388303514],[9.941623013,55.388303514]]]},"properties":{"id":2222,"top":7437595.5681,"id_0":2222,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437578.0681,"col_index":31,"row_index":20}},{"id":2223,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38821422],[9.941623013,55.388124925],[9.941780218,55.388124925],[9.941780218,55.38821422],[9.941623013,55.38821422]]]},"properties":{"id":2223,"top":7437578.0681,"id_0":2223,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437560.5681,"col_index":31,"row_index":21}},{"id":2224,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.388124925],[9.941623013,55.38803563],[9.941780218,55.38803563],[9.941780218,55.388124925],[9.941623013,55.388124925]]]},"properties":{"id":2224,"top":7437560.5681,"id_0":2224,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437543.0681,"col_index":31,"row_index":22}},{"id":2225,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38803563],[9.941623013,55.387946335],[9.941780218,55.387946335],[9.941780218,55.38803563],[9.941623013,55.38803563]]]},"properties":{"id":2225,"top":7437543.0681,"id_0":2225,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437525.5681,"col_index":31,"row_index":23}},{"id":2226,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387946335],[9.941623013,55.38785704],[9.941780218,55.38785704],[9.941780218,55.387946335],[9.941623013,55.387946335]]]},"properties":{"id":2226,"top":7437525.5681,"id_0":2226,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437508.0681,"col_index":31,"row_index":24}},{"id":2227,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38785704],[9.941623013,55.387767744],[9.941780218,55.387767744],[9.941780218,55.38785704],[9.941623013,55.38785704]]]},"properties":{"id":2227,"top":7437508.0681,"id_0":2227,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437490.5681,"col_index":31,"row_index":25}},{"id":2228,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387767744],[9.941623013,55.387678448],[9.941780218,55.387678448],[9.941780218,55.387767744],[9.941623013,55.387767744]]]},"properties":{"id":2228,"top":7437490.5681,"id_0":2228,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437473.0681,"col_index":31,"row_index":26}},{"id":2229,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387678448],[9.941623013,55.387589153],[9.941780218,55.387589153],[9.941780218,55.387678448],[9.941623013,55.387678448]]]},"properties":{"id":2229,"top":7437473.0681,"id_0":2229,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437455.5681,"col_index":31,"row_index":27}},{"id":2230,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387589153],[9.941623013,55.387499856],[9.941780218,55.387499856],[9.941780218,55.387589153],[9.941623013,55.387589153]]]},"properties":{"id":2230,"top":7437455.5681,"id_0":2230,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437438.0681,"col_index":31,"row_index":28}},{"id":2231,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387499856],[9.941623013,55.38741056],[9.941780218,55.38741056],[9.941780218,55.387499856],[9.941623013,55.387499856]]]},"properties":{"id":2231,"top":7437438.0681,"id_0":2231,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437420.5681,"col_index":31,"row_index":29}},{"id":2232,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38741056],[9.941623013,55.387321264],[9.941780218,55.387321264],[9.941780218,55.38741056],[9.941623013,55.38741056]]]},"properties":{"id":2232,"top":7437420.5681,"id_0":2232,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437403.0681,"col_index":31,"row_index":30}},{"id":2233,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387321264],[9.941623013,55.387231967],[9.941780218,55.387231967],[9.941780218,55.387321264],[9.941623013,55.387321264]]]},"properties":{"id":2233,"top":7437403.0681,"id_0":2233,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437385.5681,"col_index":31,"row_index":31}},{"id":2234,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387231967],[9.941623013,55.38714267],[9.941780218,55.38714267],[9.941780218,55.387231967],[9.941623013,55.387231967]]]},"properties":{"id":2234,"top":7437385.5681,"id_0":2234,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437368.0681,"col_index":31,"row_index":32}},{"id":2235,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38714267],[9.941623013,55.387053373],[9.941780218,55.387053373],[9.941780218,55.38714267],[9.941623013,55.38714267]]]},"properties":{"id":2235,"top":7437368.0681,"id_0":2235,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437350.5681,"col_index":31,"row_index":33}},{"id":2236,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.387053373],[9.941623013,55.386964076],[9.941780218,55.386964076],[9.941780218,55.387053373],[9.941623013,55.387053373]]]},"properties":{"id":2236,"top":7437350.5681,"id_0":2236,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437333.0681,"col_index":31,"row_index":34}},{"id":2237,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386964076],[9.941623013,55.386874778],[9.941780218,55.386874778],[9.941780218,55.386964076],[9.941623013,55.386964076]]]},"properties":{"id":2237,"top":7437333.0681,"id_0":2237,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437315.5681,"col_index":31,"row_index":35}},{"id":2238,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386874778],[9.941623013,55.38678548],[9.941780218,55.38678548],[9.941780218,55.386874778],[9.941623013,55.386874778]]]},"properties":{"id":2238,"top":7437315.5681,"id_0":2238,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437298.0681,"col_index":31,"row_index":36}},{"id":2239,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38678548],[9.941623013,55.386696182],[9.941780218,55.386696182],[9.941780218,55.38678548],[9.941623013,55.38678548]]]},"properties":{"id":2239,"top":7437298.0681,"id_0":2239,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437280.5681,"col_index":31,"row_index":37}},{"id":2240,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386696182],[9.941623013,55.386606884],[9.941780218,55.386606884],[9.941780218,55.386696182],[9.941623013,55.386696182]]]},"properties":{"id":2240,"top":7437280.5681,"id_0":2240,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437263.0681,"col_index":31,"row_index":38}},{"id":2241,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386606884],[9.941623013,55.386517586],[9.941780218,55.386517586],[9.941780218,55.386606884],[9.941623013,55.386606884]]]},"properties":{"id":2241,"top":7437263.0681,"id_0":2241,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437245.5681,"col_index":31,"row_index":39}},{"id":2242,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386517586],[9.941623013,55.386428287],[9.941780218,55.386428287],[9.941780218,55.386517586],[9.941623013,55.386517586]]]},"properties":{"id":2242,"top":7437245.5681,"id_0":2242,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437228.0681,"col_index":31,"row_index":40}},{"id":2243,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386428287],[9.941623013,55.386338989],[9.941780218,55.386338989],[9.941780218,55.386428287],[9.941623013,55.386428287]]]},"properties":{"id":2243,"top":7437228.0681,"id_0":2243,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437210.5681,"col_index":31,"row_index":41}},{"id":2244,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386338989],[9.941623013,55.38624969],[9.941780218,55.38624969],[9.941780218,55.386338989],[9.941623013,55.386338989]]]},"properties":{"id":2244,"top":7437210.5681,"id_0":2244,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437193.0681,"col_index":31,"row_index":42}},{"id":2245,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38624969],[9.941623013,55.386160391],[9.941780218,55.386160391],[9.941780218,55.38624969],[9.941623013,55.38624969]]]},"properties":{"id":2245,"top":7437193.0681,"id_0":2245,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437175.5681,"col_index":31,"row_index":43}},{"id":2246,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386160391],[9.941623013,55.386071091],[9.941780218,55.386071091],[9.941780218,55.386160391],[9.941623013,55.386160391]]]},"properties":{"id":2246,"top":7437175.5681,"id_0":2246,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437158.0681,"col_index":31,"row_index":44}},{"id":2247,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.386071091],[9.941623013,55.385981792],[9.941780218,55.385981792],[9.941780218,55.386071091],[9.941623013,55.386071091]]]},"properties":{"id":2247,"top":7437158.0681,"id_0":2247,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437140.5681,"col_index":31,"row_index":45}},{"id":2248,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385981792],[9.941623013,55.385892492],[9.941780218,55.385892492],[9.941780218,55.385981792],[9.941623013,55.385981792]]]},"properties":{"id":2248,"top":7437140.5681,"id_0":2248,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437123.0681,"col_index":31,"row_index":46}},{"id":2249,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385892492],[9.941623013,55.385803192],[9.941780218,55.385803192],[9.941780218,55.385892492],[9.941623013,55.385892492]]]},"properties":{"id":2249,"top":7437123.0681,"id_0":2249,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437105.5681,"col_index":31,"row_index":47}},{"id":2250,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385803192],[9.941623013,55.385713892],[9.941780218,55.385713892],[9.941780218,55.385803192],[9.941623013,55.385803192]]]},"properties":{"id":2250,"top":7437105.5681,"id_0":2250,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437088.0681,"col_index":31,"row_index":48}},{"id":2251,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385713892],[9.941623013,55.385624592],[9.941780218,55.385624592],[9.941780218,55.385713892],[9.941623013,55.385713892]]]},"properties":{"id":2251,"top":7437088.0681,"id_0":2251,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437070.5681,"col_index":31,"row_index":49}},{"id":2252,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385624592],[9.941623013,55.385535291],[9.941780218,55.385535291],[9.941780218,55.385624592],[9.941623013,55.385624592]]]},"properties":{"id":2252,"top":7437070.5681,"id_0":2252,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437053.0681,"col_index":31,"row_index":50}},{"id":2253,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385535291],[9.941623013,55.38544599],[9.941780218,55.38544599],[9.941780218,55.385535291],[9.941623013,55.385535291]]]},"properties":{"id":2253,"top":7437053.0681,"id_0":2253,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437035.5681,"col_index":31,"row_index":51}},{"id":2254,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38544599],[9.941623013,55.385356689],[9.941780218,55.385356689],[9.941780218,55.38544599],[9.941623013,55.38544599]]]},"properties":{"id":2254,"top":7437035.5681,"id_0":2254,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437018.0681,"col_index":31,"row_index":52}},{"id":2255,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385356689],[9.941623013,55.385267388],[9.941780218,55.385267388],[9.941780218,55.385356689],[9.941623013,55.385356689]]]},"properties":{"id":2255,"top":7437018.0681,"id_0":2255,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7437000.5681,"col_index":31,"row_index":53}},{"id":2256,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385267388],[9.941623013,55.385178087],[9.941780218,55.385178087],[9.941780218,55.385267388],[9.941623013,55.385267388]]]},"properties":{"id":2256,"top":7437000.5681,"id_0":2256,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436983.0681,"col_index":31,"row_index":54}},{"id":2257,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385178087],[9.941623013,55.385088785],[9.941780218,55.385088785],[9.941780218,55.385178087],[9.941623013,55.385178087]]]},"properties":{"id":2257,"top":7436983.0681,"id_0":2257,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436965.5681,"col_index":31,"row_index":55}},{"id":2258,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.385088785],[9.941623013,55.384999484],[9.941780218,55.384999484],[9.941780218,55.385088785],[9.941623013,55.385088785]]]},"properties":{"id":2258,"top":7436965.5681,"id_0":2258,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436948.0681,"col_index":31,"row_index":56}},{"id":2259,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384999484],[9.941623013,55.384910182],[9.941780218,55.384910182],[9.941780218,55.384999484],[9.941623013,55.384999484]]]},"properties":{"id":2259,"top":7436948.0681,"id_0":2259,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436930.5681,"col_index":31,"row_index":57}},{"id":2260,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384910182],[9.941623013,55.38482088],[9.941780218,55.38482088],[9.941780218,55.384910182],[9.941623013,55.384910182]]]},"properties":{"id":2260,"top":7436930.5681,"id_0":2260,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436913.0681,"col_index":31,"row_index":58}},{"id":2261,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.38482088],[9.941623013,55.384731577],[9.941780218,55.384731577],[9.941780218,55.38482088],[9.941623013,55.38482088]]]},"properties":{"id":2261,"top":7436913.0681,"id_0":2261,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436895.5681,"col_index":31,"row_index":59}},{"id":2262,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384731577],[9.941623013,55.384642275],[9.941780218,55.384642275],[9.941780218,55.384731577],[9.941623013,55.384731577]]]},"properties":{"id":2262,"top":7436895.5681,"id_0":2262,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436878.0681,"col_index":31,"row_index":60}},{"id":2263,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384642275],[9.941623013,55.384552972],[9.941780218,55.384552972],[9.941780218,55.384642275],[9.941623013,55.384642275]]]},"properties":{"id":2263,"top":7436878.0681,"id_0":2263,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436860.5681,"col_index":31,"row_index":61}},{"id":2264,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384552972],[9.941623013,55.384463669],[9.941780218,55.384463669],[9.941780218,55.384552972],[9.941623013,55.384552972]]]},"properties":{"id":2264,"top":7436860.5681,"id_0":2264,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436843.0681,"col_index":31,"row_index":62}},{"id":2265,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384463669],[9.941623013,55.384374366],[9.941780218,55.384374366],[9.941780218,55.384463669],[9.941623013,55.384463669]]]},"properties":{"id":2265,"top":7436843.0681,"id_0":2265,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436825.5681,"col_index":31,"row_index":63}},{"id":2266,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384374366],[9.941623013,55.384285062],[9.941780218,55.384285062],[9.941780218,55.384374366],[9.941623013,55.384374366]]]},"properties":{"id":2266,"top":7436825.5681,"id_0":2266,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436808.0681,"col_index":31,"row_index":64}},{"id":2267,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384285062],[9.941623013,55.384195759],[9.941780218,55.384195759],[9.941780218,55.384285062],[9.941623013,55.384285062]]]},"properties":{"id":2267,"top":7436808.0681,"id_0":2267,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436790.5681,"col_index":31,"row_index":65}},{"id":2268,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384195759],[9.941623013,55.384106455],[9.941780218,55.384106455],[9.941780218,55.384195759],[9.941623013,55.384195759]]]},"properties":{"id":2268,"top":7436790.5681,"id_0":2268,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436773.0681,"col_index":31,"row_index":66}},{"id":2269,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384106455],[9.941623013,55.384017151],[9.941780218,55.384017151],[9.941780218,55.384106455],[9.941623013,55.384106455]]]},"properties":{"id":2269,"top":7436773.0681,"id_0":2269,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436755.5681,"col_index":31,"row_index":67}},{"id":2270,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.384017151],[9.941623013,55.383927847],[9.941780218,55.383927847],[9.941780218,55.384017151],[9.941623013,55.384017151]]]},"properties":{"id":2270,"top":7436755.5681,"id_0":2270,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436738.0681,"col_index":31,"row_index":68}},{"id":2271,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.383927847],[9.941623013,55.383838543],[9.941780218,55.383838543],[9.941780218,55.383927847],[9.941623013,55.383927847]]]},"properties":{"id":2271,"top":7436738.0681,"id_0":2271,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436720.5681,"col_index":31,"row_index":69}},{"id":2272,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.383838543],[9.941623013,55.383749238],[9.941780218,55.383749238],[9.941780218,55.383838543],[9.941623013,55.383838543]]]},"properties":{"id":2272,"top":7436720.5681,"id_0":2272,"left":1106696.4115,"Label":null,"right":1106713.9115,"bottom":7436703.0681,"col_index":31,"row_index":70}},{"id":2274,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.390000071],[9.941780218,55.38991078],[9.941937424,55.38991078],[9.941937424,55.390000071],[9.941780218,55.390000071]]]},"properties":{"id":2274,"top":7437928.0681,"id_0":2274,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437910.5681,"col_index":32,"row_index":1}},{"id":2275,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38991078],[9.941780218,55.38982149],[9.941937424,55.38982149],[9.941937424,55.38991078],[9.941780218,55.38991078]]]},"properties":{"id":2275,"top":7437910.5681,"id_0":2275,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437893.0681,"col_index":32,"row_index":2}},{"id":2276,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38982149],[9.941780218,55.389732199],[9.941937424,55.389732199],[9.941937424,55.38982149],[9.941780218,55.38982149]]]},"properties":{"id":2276,"top":7437893.0681,"id_0":2276,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437875.5681,"col_index":32,"row_index":3}},{"id":2277,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389732199],[9.941780218,55.389642907],[9.941937424,55.389642907],[9.941937424,55.389732199],[9.941780218,55.389732199]]]},"properties":{"id":2277,"top":7437875.5681,"id_0":2277,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437858.0681,"col_index":32,"row_index":4}},{"id":2278,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389642907],[9.941780218,55.389553616],[9.941937424,55.389553616],[9.941937424,55.389642907],[9.941780218,55.389642907]]]},"properties":{"id":2278,"top":7437858.0681,"id_0":2278,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437840.5681,"col_index":32,"row_index":5}},{"id":2279,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389553616],[9.941780218,55.389464324],[9.941937424,55.389464324],[9.941937424,55.389553616],[9.941780218,55.389553616]]]},"properties":{"id":2279,"top":7437840.5681,"id_0":2279,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437823.0681,"col_index":32,"row_index":6}},{"id":2280,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389464324],[9.941780218,55.389375032],[9.941937424,55.389375032],[9.941937424,55.389464324],[9.941780218,55.389464324]]]},"properties":{"id":2280,"top":7437823.0681,"id_0":2280,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437805.5681,"col_index":32,"row_index":7}},{"id":2281,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389375032],[9.941780218,55.38928574],[9.941937424,55.38928574],[9.941937424,55.389375032],[9.941780218,55.389375032]]]},"properties":{"id":2281,"top":7437805.5681,"id_0":2281,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437788.0681,"col_index":32,"row_index":8}},{"id":2282,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38928574],[9.941780218,55.389196448],[9.941937424,55.389196448],[9.941937424,55.38928574],[9.941780218,55.38928574]]]},"properties":{"id":2282,"top":7437788.0681,"id_0":2282,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437770.5681,"col_index":32,"row_index":9}},{"id":2283,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389196448],[9.941780218,55.389107155],[9.941937424,55.389107155],[9.941937424,55.389196448],[9.941780218,55.389196448]]]},"properties":{"id":2283,"top":7437770.5681,"id_0":2283,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437753.0681,"col_index":32,"row_index":10}},{"id":2284,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389107155],[9.941780218,55.389017863],[9.941937424,55.389017863],[9.941937424,55.389107155],[9.941780218,55.389107155]]]},"properties":{"id":2284,"top":7437753.0681,"id_0":2284,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437735.5681,"col_index":32,"row_index":11}},{"id":2285,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.389017863],[9.941780218,55.38892857],[9.941937424,55.38892857],[9.941937424,55.389017863],[9.941780218,55.389017863]]]},"properties":{"id":2285,"top":7437735.5681,"id_0":2285,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437718.0681,"col_index":32,"row_index":12}},{"id":2286,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38892857],[9.941780218,55.388839277],[9.941937424,55.388839277],[9.941937424,55.38892857],[9.941780218,55.38892857]]]},"properties":{"id":2286,"top":7437718.0681,"id_0":2286,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437700.5681,"col_index":32,"row_index":13}},{"id":2287,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388839277],[9.941780218,55.388749984],[9.941937424,55.388749984],[9.941937424,55.388839277],[9.941780218,55.388839277]]]},"properties":{"id":2287,"top":7437700.5681,"id_0":2287,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437683.0681,"col_index":32,"row_index":14}},{"id":2288,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388749984],[9.941780218,55.38866069],[9.941937424,55.38866069],[9.941937424,55.388749984],[9.941780218,55.388749984]]]},"properties":{"id":2288,"top":7437683.0681,"id_0":2288,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437665.5681,"col_index":32,"row_index":15}},{"id":2289,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38866069],[9.941780218,55.388571396],[9.941937424,55.388571396],[9.941937424,55.38866069],[9.941780218,55.38866069]]]},"properties":{"id":2289,"top":7437665.5681,"id_0":2289,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437648.0681,"col_index":32,"row_index":16}},{"id":2290,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388571396],[9.941780218,55.388482103],[9.941937424,55.388482103],[9.941937424,55.388571396],[9.941780218,55.388571396]]]},"properties":{"id":2290,"top":7437648.0681,"id_0":2290,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437630.5681,"col_index":32,"row_index":17}},{"id":2291,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388482103],[9.941780218,55.388392808],[9.941937424,55.388392808],[9.941937424,55.388482103],[9.941780218,55.388482103]]]},"properties":{"id":2291,"top":7437630.5681,"id_0":2291,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437613.0681,"col_index":32,"row_index":18}},{"id":2292,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388392808],[9.941780218,55.388303514],[9.941937424,55.388303514],[9.941937424,55.388392808],[9.941780218,55.388392808]]]},"properties":{"id":2292,"top":7437613.0681,"id_0":2292,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437595.5681,"col_index":32,"row_index":19}},{"id":2293,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388303514],[9.941780218,55.38821422],[9.941937424,55.38821422],[9.941937424,55.388303514],[9.941780218,55.388303514]]]},"properties":{"id":2293,"top":7437595.5681,"id_0":2293,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437578.0681,"col_index":32,"row_index":20}},{"id":2294,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38821422],[9.941780218,55.388124925],[9.941937424,55.388124925],[9.941937424,55.38821422],[9.941780218,55.38821422]]]},"properties":{"id":2294,"top":7437578.0681,"id_0":2294,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437560.5681,"col_index":32,"row_index":21}},{"id":2295,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.388124925],[9.941780218,55.38803563],[9.941937424,55.38803563],[9.941937424,55.388124925],[9.941780218,55.388124925]]]},"properties":{"id":2295,"top":7437560.5681,"id_0":2295,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437543.0681,"col_index":32,"row_index":22}},{"id":2296,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38803563],[9.941780218,55.387946335],[9.941937424,55.387946335],[9.941937424,55.38803563],[9.941780218,55.38803563]]]},"properties":{"id":2296,"top":7437543.0681,"id_0":2296,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437525.5681,"col_index":32,"row_index":23}},{"id":2297,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387946335],[9.941780218,55.38785704],[9.941937424,55.38785704],[9.941937424,55.387946335],[9.941780218,55.387946335]]]},"properties":{"id":2297,"top":7437525.5681,"id_0":2297,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437508.0681,"col_index":32,"row_index":24}},{"id":2298,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38785704],[9.941780218,55.387767744],[9.941937424,55.387767744],[9.941937424,55.38785704],[9.941780218,55.38785704]]]},"properties":{"id":2298,"top":7437508.0681,"id_0":2298,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437490.5681,"col_index":32,"row_index":25}},{"id":2299,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387767744],[9.941780218,55.387678448],[9.941937424,55.387678448],[9.941937424,55.387767744],[9.941780218,55.387767744]]]},"properties":{"id":2299,"top":7437490.5681,"id_0":2299,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437473.0681,"col_index":32,"row_index":26}},{"id":2300,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387678448],[9.941780218,55.387589153],[9.941937424,55.387589153],[9.941937424,55.387678448],[9.941780218,55.387678448]]]},"properties":{"id":2300,"top":7437473.0681,"id_0":2300,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437455.5681,"col_index":32,"row_index":27}},{"id":2301,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387589153],[9.941780218,55.387499856],[9.941937424,55.387499856],[9.941937424,55.387589153],[9.941780218,55.387589153]]]},"properties":{"id":2301,"top":7437455.5681,"id_0":2301,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437438.0681,"col_index":32,"row_index":28}},{"id":2302,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387499856],[9.941780218,55.38741056],[9.941937424,55.38741056],[9.941937424,55.387499856],[9.941780218,55.387499856]]]},"properties":{"id":2302,"top":7437438.0681,"id_0":2302,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437420.5681,"col_index":32,"row_index":29}},{"id":2303,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38741056],[9.941780218,55.387321264],[9.941937424,55.387321264],[9.941937424,55.38741056],[9.941780218,55.38741056]]]},"properties":{"id":2303,"top":7437420.5681,"id_0":2303,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437403.0681,"col_index":32,"row_index":30}},{"id":2304,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387321264],[9.941780218,55.387231967],[9.941937424,55.387231967],[9.941937424,55.387321264],[9.941780218,55.387321264]]]},"properties":{"id":2304,"top":7437403.0681,"id_0":2304,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437385.5681,"col_index":32,"row_index":31}},{"id":2305,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387231967],[9.941780218,55.38714267],[9.941937424,55.38714267],[9.941937424,55.387231967],[9.941780218,55.387231967]]]},"properties":{"id":2305,"top":7437385.5681,"id_0":2305,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437368.0681,"col_index":32,"row_index":32}},{"id":2306,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38714267],[9.941780218,55.387053373],[9.941937424,55.387053373],[9.941937424,55.38714267],[9.941780218,55.38714267]]]},"properties":{"id":2306,"top":7437368.0681,"id_0":2306,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437350.5681,"col_index":32,"row_index":33}},{"id":2307,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.387053373],[9.941780218,55.386964076],[9.941937424,55.386964076],[9.941937424,55.387053373],[9.941780218,55.387053373]]]},"properties":{"id":2307,"top":7437350.5681,"id_0":2307,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437333.0681,"col_index":32,"row_index":34}},{"id":2308,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386964076],[9.941780218,55.386874778],[9.941937424,55.386874778],[9.941937424,55.386964076],[9.941780218,55.386964076]]]},"properties":{"id":2308,"top":7437333.0681,"id_0":2308,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437315.5681,"col_index":32,"row_index":35}},{"id":2309,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386874778],[9.941780218,55.38678548],[9.941937424,55.38678548],[9.941937424,55.386874778],[9.941780218,55.386874778]]]},"properties":{"id":2309,"top":7437315.5681,"id_0":2309,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437298.0681,"col_index":32,"row_index":36}},{"id":2310,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38678548],[9.941780218,55.386696182],[9.941937424,55.386696182],[9.941937424,55.38678548],[9.941780218,55.38678548]]]},"properties":{"id":2310,"top":7437298.0681,"id_0":2310,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437280.5681,"col_index":32,"row_index":37}},{"id":2311,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386696182],[9.941780218,55.386606884],[9.941937424,55.386606884],[9.941937424,55.386696182],[9.941780218,55.386696182]]]},"properties":{"id":2311,"top":7437280.5681,"id_0":2311,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437263.0681,"col_index":32,"row_index":38}},{"id":2312,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386606884],[9.941780218,55.386517586],[9.941937424,55.386517586],[9.941937424,55.386606884],[9.941780218,55.386606884]]]},"properties":{"id":2312,"top":7437263.0681,"id_0":2312,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437245.5681,"col_index":32,"row_index":39}},{"id":2313,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386517586],[9.941780218,55.386428287],[9.941937424,55.386428287],[9.941937424,55.386517586],[9.941780218,55.386517586]]]},"properties":{"id":2313,"top":7437245.5681,"id_0":2313,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437228.0681,"col_index":32,"row_index":40}},{"id":2314,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386428287],[9.941780218,55.386338989],[9.941937424,55.386338989],[9.941937424,55.386428287],[9.941780218,55.386428287]]]},"properties":{"id":2314,"top":7437228.0681,"id_0":2314,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437210.5681,"col_index":32,"row_index":41}},{"id":2315,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386338989],[9.941780218,55.38624969],[9.941937424,55.38624969],[9.941937424,55.386338989],[9.941780218,55.386338989]]]},"properties":{"id":2315,"top":7437210.5681,"id_0":2315,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437193.0681,"col_index":32,"row_index":42}},{"id":2316,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38624969],[9.941780218,55.386160391],[9.941937424,55.386160391],[9.941937424,55.38624969],[9.941780218,55.38624969]]]},"properties":{"id":2316,"top":7437193.0681,"id_0":2316,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437175.5681,"col_index":32,"row_index":43}},{"id":2317,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386160391],[9.941780218,55.386071091],[9.941937424,55.386071091],[9.941937424,55.386160391],[9.941780218,55.386160391]]]},"properties":{"id":2317,"top":7437175.5681,"id_0":2317,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437158.0681,"col_index":32,"row_index":44}},{"id":2318,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.386071091],[9.941780218,55.385981792],[9.941937424,55.385981792],[9.941937424,55.386071091],[9.941780218,55.386071091]]]},"properties":{"id":2318,"top":7437158.0681,"id_0":2318,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437140.5681,"col_index":32,"row_index":45}},{"id":2319,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385981792],[9.941780218,55.385892492],[9.941937424,55.385892492],[9.941937424,55.385981792],[9.941780218,55.385981792]]]},"properties":{"id":2319,"top":7437140.5681,"id_0":2319,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437123.0681,"col_index":32,"row_index":46}},{"id":2320,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385892492],[9.941780218,55.385803192],[9.941937424,55.385803192],[9.941937424,55.385892492],[9.941780218,55.385892492]]]},"properties":{"id":2320,"top":7437123.0681,"id_0":2320,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437105.5681,"col_index":32,"row_index":47}},{"id":2321,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385803192],[9.941780218,55.385713892],[9.941937424,55.385713892],[9.941937424,55.385803192],[9.941780218,55.385803192]]]},"properties":{"id":2321,"top":7437105.5681,"id_0":2321,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437088.0681,"col_index":32,"row_index":48}},{"id":2322,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385713892],[9.941780218,55.385624592],[9.941937424,55.385624592],[9.941937424,55.385713892],[9.941780218,55.385713892]]]},"properties":{"id":2322,"top":7437088.0681,"id_0":2322,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437070.5681,"col_index":32,"row_index":49}},{"id":2323,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385624592],[9.941780218,55.385535291],[9.941937424,55.385535291],[9.941937424,55.385624592],[9.941780218,55.385624592]]]},"properties":{"id":2323,"top":7437070.5681,"id_0":2323,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437053.0681,"col_index":32,"row_index":50}},{"id":2324,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385535291],[9.941780218,55.38544599],[9.941937424,55.38544599],[9.941937424,55.385535291],[9.941780218,55.385535291]]]},"properties":{"id":2324,"top":7437053.0681,"id_0":2324,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437035.5681,"col_index":32,"row_index":51}},{"id":2325,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38544599],[9.941780218,55.385356689],[9.941937424,55.385356689],[9.941937424,55.38544599],[9.941780218,55.38544599]]]},"properties":{"id":2325,"top":7437035.5681,"id_0":2325,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437018.0681,"col_index":32,"row_index":52}},{"id":2326,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385356689],[9.941780218,55.385267388],[9.941937424,55.385267388],[9.941937424,55.385356689],[9.941780218,55.385356689]]]},"properties":{"id":2326,"top":7437018.0681,"id_0":2326,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7437000.5681,"col_index":32,"row_index":53}},{"id":2327,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385267388],[9.941780218,55.385178087],[9.941937424,55.385178087],[9.941937424,55.385267388],[9.941780218,55.385267388]]]},"properties":{"id":2327,"top":7437000.5681,"id_0":2327,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436983.0681,"col_index":32,"row_index":54}},{"id":2328,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385178087],[9.941780218,55.385088785],[9.941937424,55.385088785],[9.941937424,55.385178087],[9.941780218,55.385178087]]]},"properties":{"id":2328,"top":7436983.0681,"id_0":2328,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436965.5681,"col_index":32,"row_index":55}},{"id":2329,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.385088785],[9.941780218,55.384999484],[9.941937424,55.384999484],[9.941937424,55.385088785],[9.941780218,55.385088785]]]},"properties":{"id":2329,"top":7436965.5681,"id_0":2329,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436948.0681,"col_index":32,"row_index":56}},{"id":2330,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384999484],[9.941780218,55.384910182],[9.941937424,55.384910182],[9.941937424,55.384999484],[9.941780218,55.384999484]]]},"properties":{"id":2330,"top":7436948.0681,"id_0":2330,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436930.5681,"col_index":32,"row_index":57}},{"id":2331,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384910182],[9.941780218,55.38482088],[9.941937424,55.38482088],[9.941937424,55.384910182],[9.941780218,55.384910182]]]},"properties":{"id":2331,"top":7436930.5681,"id_0":2331,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436913.0681,"col_index":32,"row_index":58}},{"id":2332,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.38482088],[9.941780218,55.384731577],[9.941937424,55.384731577],[9.941937424,55.38482088],[9.941780218,55.38482088]]]},"properties":{"id":2332,"top":7436913.0681,"id_0":2332,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436895.5681,"col_index":32,"row_index":59}},{"id":2333,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384731577],[9.941780218,55.384642275],[9.941937424,55.384642275],[9.941937424,55.384731577],[9.941780218,55.384731577]]]},"properties":{"id":2333,"top":7436895.5681,"id_0":2333,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436878.0681,"col_index":32,"row_index":60}},{"id":2334,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384642275],[9.941780218,55.384552972],[9.941937424,55.384552972],[9.941937424,55.384642275],[9.941780218,55.384642275]]]},"properties":{"id":2334,"top":7436878.0681,"id_0":2334,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436860.5681,"col_index":32,"row_index":61}},{"id":2335,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384552972],[9.941780218,55.384463669],[9.941937424,55.384463669],[9.941937424,55.384552972],[9.941780218,55.384552972]]]},"properties":{"id":2335,"top":7436860.5681,"id_0":2335,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436843.0681,"col_index":32,"row_index":62}},{"id":2336,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384463669],[9.941780218,55.384374366],[9.941937424,55.384374366],[9.941937424,55.384463669],[9.941780218,55.384463669]]]},"properties":{"id":2336,"top":7436843.0681,"id_0":2336,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436825.5681,"col_index":32,"row_index":63}},{"id":2337,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384374366],[9.941780218,55.384285062],[9.941937424,55.384285062],[9.941937424,55.384374366],[9.941780218,55.384374366]]]},"properties":{"id":2337,"top":7436825.5681,"id_0":2337,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436808.0681,"col_index":32,"row_index":64}},{"id":2338,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384285062],[9.941780218,55.384195759],[9.941937424,55.384195759],[9.941937424,55.384285062],[9.941780218,55.384285062]]]},"properties":{"id":2338,"top":7436808.0681,"id_0":2338,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436790.5681,"col_index":32,"row_index":65}},{"id":2339,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384195759],[9.941780218,55.384106455],[9.941937424,55.384106455],[9.941937424,55.384195759],[9.941780218,55.384195759]]]},"properties":{"id":2339,"top":7436790.5681,"id_0":2339,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436773.0681,"col_index":32,"row_index":66}},{"id":2340,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384106455],[9.941780218,55.384017151],[9.941937424,55.384017151],[9.941937424,55.384106455],[9.941780218,55.384106455]]]},"properties":{"id":2340,"top":7436773.0681,"id_0":2340,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436755.5681,"col_index":32,"row_index":67}},{"id":2341,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.384017151],[9.941780218,55.383927847],[9.941937424,55.383927847],[9.941937424,55.384017151],[9.941780218,55.384017151]]]},"properties":{"id":2341,"top":7436755.5681,"id_0":2341,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436738.0681,"col_index":32,"row_index":68}},{"id":2342,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.383927847],[9.941780218,55.383838543],[9.941937424,55.383838543],[9.941937424,55.383927847],[9.941780218,55.383927847]]]},"properties":{"id":2342,"top":7436738.0681,"id_0":2342,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436720.5681,"col_index":32,"row_index":69}},{"id":2343,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.383838543],[9.941780218,55.383749238],[9.941937424,55.383749238],[9.941937424,55.383838543],[9.941780218,55.383838543]]]},"properties":{"id":2343,"top":7436720.5681,"id_0":2343,"left":1106713.9115,"Label":null,"right":1106731.4115,"bottom":7436703.0681,"col_index":32,"row_index":70}},{"id":2345,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.390000071],[9.941937424,55.38991078],[9.942094629,55.38991078],[9.942094629,55.390000071],[9.941937424,55.390000071]]]},"properties":{"id":2345,"top":7437928.0681,"id_0":2345,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437910.5681,"col_index":33,"row_index":1}},{"id":2346,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38991078],[9.941937424,55.38982149],[9.942094629,55.38982149],[9.942094629,55.38991078],[9.941937424,55.38991078]]]},"properties":{"id":2346,"top":7437910.5681,"id_0":2346,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437893.0681,"col_index":33,"row_index":2}},{"id":2347,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38982149],[9.941937424,55.389732199],[9.942094629,55.389732199],[9.942094629,55.38982149],[9.941937424,55.38982149]]]},"properties":{"id":2347,"top":7437893.0681,"id_0":2347,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437875.5681,"col_index":33,"row_index":3}},{"id":2348,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389732199],[9.941937424,55.389642907],[9.942094629,55.389642907],[9.942094629,55.389732199],[9.941937424,55.389732199]]]},"properties":{"id":2348,"top":7437875.5681,"id_0":2348,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437858.0681,"col_index":33,"row_index":4}},{"id":2349,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389642907],[9.941937424,55.389553616],[9.942094629,55.389553616],[9.942094629,55.389642907],[9.941937424,55.389642907]]]},"properties":{"id":2349,"top":7437858.0681,"id_0":2349,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437840.5681,"col_index":33,"row_index":5}},{"id":2350,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389553616],[9.941937424,55.389464324],[9.942094629,55.389464324],[9.942094629,55.389553616],[9.941937424,55.389553616]]]},"properties":{"id":2350,"top":7437840.5681,"id_0":2350,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437823.0681,"col_index":33,"row_index":6}},{"id":2351,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389464324],[9.941937424,55.389375032],[9.942094629,55.389375032],[9.942094629,55.389464324],[9.941937424,55.389464324]]]},"properties":{"id":2351,"top":7437823.0681,"id_0":2351,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437805.5681,"col_index":33,"row_index":7}},{"id":2352,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389375032],[9.941937424,55.38928574],[9.942094629,55.38928574],[9.942094629,55.389375032],[9.941937424,55.389375032]]]},"properties":{"id":2352,"top":7437805.5681,"id_0":2352,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437788.0681,"col_index":33,"row_index":8}},{"id":2353,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38928574],[9.941937424,55.389196448],[9.942094629,55.389196448],[9.942094629,55.38928574],[9.941937424,55.38928574]]]},"properties":{"id":2353,"top":7437788.0681,"id_0":2353,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437770.5681,"col_index":33,"row_index":9}},{"id":2354,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389196448],[9.941937424,55.389107155],[9.942094629,55.389107155],[9.942094629,55.389196448],[9.941937424,55.389196448]]]},"properties":{"id":2354,"top":7437770.5681,"id_0":2354,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437753.0681,"col_index":33,"row_index":10}},{"id":2355,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389107155],[9.941937424,55.389017863],[9.942094629,55.389017863],[9.942094629,55.389107155],[9.941937424,55.389107155]]]},"properties":{"id":2355,"top":7437753.0681,"id_0":2355,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437735.5681,"col_index":33,"row_index":11}},{"id":2356,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.389017863],[9.941937424,55.38892857],[9.942094629,55.38892857],[9.942094629,55.389017863],[9.941937424,55.389017863]]]},"properties":{"id":2356,"top":7437735.5681,"id_0":2356,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437718.0681,"col_index":33,"row_index":12}},{"id":2357,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38892857],[9.941937424,55.388839277],[9.942094629,55.388839277],[9.942094629,55.38892857],[9.941937424,55.38892857]]]},"properties":{"id":2357,"top":7437718.0681,"id_0":2357,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437700.5681,"col_index":33,"row_index":13}},{"id":2358,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388839277],[9.941937424,55.388749984],[9.942094629,55.388749984],[9.942094629,55.388839277],[9.941937424,55.388839277]]]},"properties":{"id":2358,"top":7437700.5681,"id_0":2358,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437683.0681,"col_index":33,"row_index":14}},{"id":2359,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388749984],[9.941937424,55.38866069],[9.942094629,55.38866069],[9.942094629,55.388749984],[9.941937424,55.388749984]]]},"properties":{"id":2359,"top":7437683.0681,"id_0":2359,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437665.5681,"col_index":33,"row_index":15}},{"id":2360,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38866069],[9.941937424,55.388571396],[9.942094629,55.388571396],[9.942094629,55.38866069],[9.941937424,55.38866069]]]},"properties":{"id":2360,"top":7437665.5681,"id_0":2360,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437648.0681,"col_index":33,"row_index":16}},{"id":2361,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388571396],[9.941937424,55.388482103],[9.942094629,55.388482103],[9.942094629,55.388571396],[9.941937424,55.388571396]]]},"properties":{"id":2361,"top":7437648.0681,"id_0":2361,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437630.5681,"col_index":33,"row_index":17}},{"id":2362,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388482103],[9.941937424,55.388392808],[9.942094629,55.388392808],[9.942094629,55.388482103],[9.941937424,55.388482103]]]},"properties":{"id":2362,"top":7437630.5681,"id_0":2362,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437613.0681,"col_index":33,"row_index":18}},{"id":2363,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388392808],[9.941937424,55.388303514],[9.942094629,55.388303514],[9.942094629,55.388392808],[9.941937424,55.388392808]]]},"properties":{"id":2363,"top":7437613.0681,"id_0":2363,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437595.5681,"col_index":33,"row_index":19}},{"id":2364,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388303514],[9.941937424,55.38821422],[9.942094629,55.38821422],[9.942094629,55.388303514],[9.941937424,55.388303514]]]},"properties":{"id":2364,"top":7437595.5681,"id_0":2364,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437578.0681,"col_index":33,"row_index":20}},{"id":2365,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38821422],[9.941937424,55.388124925],[9.942094629,55.388124925],[9.942094629,55.38821422],[9.941937424,55.38821422]]]},"properties":{"id":2365,"top":7437578.0681,"id_0":2365,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437560.5681,"col_index":33,"row_index":21}},{"id":2366,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.388124925],[9.941937424,55.38803563],[9.942094629,55.38803563],[9.942094629,55.388124925],[9.941937424,55.388124925]]]},"properties":{"id":2366,"top":7437560.5681,"id_0":2366,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437543.0681,"col_index":33,"row_index":22}},{"id":2367,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38803563],[9.941937424,55.387946335],[9.942094629,55.387946335],[9.942094629,55.38803563],[9.941937424,55.38803563]]]},"properties":{"id":2367,"top":7437543.0681,"id_0":2367,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437525.5681,"col_index":33,"row_index":23}},{"id":2368,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387946335],[9.941937424,55.38785704],[9.942094629,55.38785704],[9.942094629,55.387946335],[9.941937424,55.387946335]]]},"properties":{"id":2368,"top":7437525.5681,"id_0":2368,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437508.0681,"col_index":33,"row_index":24}},{"id":2369,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38785704],[9.941937424,55.387767744],[9.942094629,55.387767744],[9.942094629,55.38785704],[9.941937424,55.38785704]]]},"properties":{"id":2369,"top":7437508.0681,"id_0":2369,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437490.5681,"col_index":33,"row_index":25}},{"id":2370,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387767744],[9.941937424,55.387678448],[9.942094629,55.387678448],[9.942094629,55.387767744],[9.941937424,55.387767744]]]},"properties":{"id":2370,"top":7437490.5681,"id_0":2370,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437473.0681,"col_index":33,"row_index":26}},{"id":2371,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387678448],[9.941937424,55.387589153],[9.942094629,55.387589153],[9.942094629,55.387678448],[9.941937424,55.387678448]]]},"properties":{"id":2371,"top":7437473.0681,"id_0":2371,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437455.5681,"col_index":33,"row_index":27}},{"id":2372,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387589153],[9.941937424,55.387499856],[9.942094629,55.387499856],[9.942094629,55.387589153],[9.941937424,55.387589153]]]},"properties":{"id":2372,"top":7437455.5681,"id_0":2372,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437438.0681,"col_index":33,"row_index":28}},{"id":2373,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387499856],[9.941937424,55.38741056],[9.942094629,55.38741056],[9.942094629,55.387499856],[9.941937424,55.387499856]]]},"properties":{"id":2373,"top":7437438.0681,"id_0":2373,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437420.5681,"col_index":33,"row_index":29}},{"id":2374,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38741056],[9.941937424,55.387321264],[9.942094629,55.387321264],[9.942094629,55.38741056],[9.941937424,55.38741056]]]},"properties":{"id":2374,"top":7437420.5681,"id_0":2374,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437403.0681,"col_index":33,"row_index":30}},{"id":2375,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387321264],[9.941937424,55.387231967],[9.942094629,55.387231967],[9.942094629,55.387321264],[9.941937424,55.387321264]]]},"properties":{"id":2375,"top":7437403.0681,"id_0":2375,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437385.5681,"col_index":33,"row_index":31}},{"id":2376,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387231967],[9.941937424,55.38714267],[9.942094629,55.38714267],[9.942094629,55.387231967],[9.941937424,55.387231967]]]},"properties":{"id":2376,"top":7437385.5681,"id_0":2376,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437368.0681,"col_index":33,"row_index":32}},{"id":2377,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38714267],[9.941937424,55.387053373],[9.942094629,55.387053373],[9.942094629,55.38714267],[9.941937424,55.38714267]]]},"properties":{"id":2377,"top":7437368.0681,"id_0":2377,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437350.5681,"col_index":33,"row_index":33}},{"id":2378,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.387053373],[9.941937424,55.386964076],[9.942094629,55.386964076],[9.942094629,55.387053373],[9.941937424,55.387053373]]]},"properties":{"id":2378,"top":7437350.5681,"id_0":2378,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437333.0681,"col_index":33,"row_index":34}},{"id":2379,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386964076],[9.941937424,55.386874778],[9.942094629,55.386874778],[9.942094629,55.386964076],[9.941937424,55.386964076]]]},"properties":{"id":2379,"top":7437333.0681,"id_0":2379,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437315.5681,"col_index":33,"row_index":35}},{"id":2380,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386874778],[9.941937424,55.38678548],[9.942094629,55.38678548],[9.942094629,55.386874778],[9.941937424,55.386874778]]]},"properties":{"id":2380,"top":7437315.5681,"id_0":2380,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437298.0681,"col_index":33,"row_index":36}},{"id":2381,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38678548],[9.941937424,55.386696182],[9.942094629,55.386696182],[9.942094629,55.38678548],[9.941937424,55.38678548]]]},"properties":{"id":2381,"top":7437298.0681,"id_0":2381,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437280.5681,"col_index":33,"row_index":37}},{"id":2382,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386696182],[9.941937424,55.386606884],[9.942094629,55.386606884],[9.942094629,55.386696182],[9.941937424,55.386696182]]]},"properties":{"id":2382,"top":7437280.5681,"id_0":2382,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437263.0681,"col_index":33,"row_index":38}},{"id":2383,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386606884],[9.941937424,55.386517586],[9.942094629,55.386517586],[9.942094629,55.386606884],[9.941937424,55.386606884]]]},"properties":{"id":2383,"top":7437263.0681,"id_0":2383,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437245.5681,"col_index":33,"row_index":39}},{"id":2384,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386517586],[9.941937424,55.386428287],[9.942094629,55.386428287],[9.942094629,55.386517586],[9.941937424,55.386517586]]]},"properties":{"id":2384,"top":7437245.5681,"id_0":2384,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437228.0681,"col_index":33,"row_index":40}},{"id":2385,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386428287],[9.941937424,55.386338989],[9.942094629,55.386338989],[9.942094629,55.386428287],[9.941937424,55.386428287]]]},"properties":{"id":2385,"top":7437228.0681,"id_0":2385,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437210.5681,"col_index":33,"row_index":41}},{"id":2386,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386338989],[9.941937424,55.38624969],[9.942094629,55.38624969],[9.942094629,55.386338989],[9.941937424,55.386338989]]]},"properties":{"id":2386,"top":7437210.5681,"id_0":2386,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437193.0681,"col_index":33,"row_index":42}},{"id":2387,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38624969],[9.941937424,55.386160391],[9.942094629,55.386160391],[9.942094629,55.38624969],[9.941937424,55.38624969]]]},"properties":{"id":2387,"top":7437193.0681,"id_0":2387,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437175.5681,"col_index":33,"row_index":43}},{"id":2388,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386160391],[9.941937424,55.386071091],[9.942094629,55.386071091],[9.942094629,55.386160391],[9.941937424,55.386160391]]]},"properties":{"id":2388,"top":7437175.5681,"id_0":2388,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437158.0681,"col_index":33,"row_index":44}},{"id":2389,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.386071091],[9.941937424,55.385981792],[9.942094629,55.385981792],[9.942094629,55.386071091],[9.941937424,55.386071091]]]},"properties":{"id":2389,"top":7437158.0681,"id_0":2389,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437140.5681,"col_index":33,"row_index":45}},{"id":2390,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385981792],[9.941937424,55.385892492],[9.942094629,55.385892492],[9.942094629,55.385981792],[9.941937424,55.385981792]]]},"properties":{"id":2390,"top":7437140.5681,"id_0":2390,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437123.0681,"col_index":33,"row_index":46}},{"id":2391,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385892492],[9.941937424,55.385803192],[9.942094629,55.385803192],[9.942094629,55.385892492],[9.941937424,55.385892492]]]},"properties":{"id":2391,"top":7437123.0681,"id_0":2391,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437105.5681,"col_index":33,"row_index":47}},{"id":2392,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385803192],[9.941937424,55.385713892],[9.942094629,55.385713892],[9.942094629,55.385803192],[9.941937424,55.385803192]]]},"properties":{"id":2392,"top":7437105.5681,"id_0":2392,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437088.0681,"col_index":33,"row_index":48}},{"id":2393,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385713892],[9.941937424,55.385624592],[9.942094629,55.385624592],[9.942094629,55.385713892],[9.941937424,55.385713892]]]},"properties":{"id":2393,"top":7437088.0681,"id_0":2393,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437070.5681,"col_index":33,"row_index":49}},{"id":2394,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385624592],[9.941937424,55.385535291],[9.942094629,55.385535291],[9.942094629,55.385624592],[9.941937424,55.385624592]]]},"properties":{"id":2394,"top":7437070.5681,"id_0":2394,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437053.0681,"col_index":33,"row_index":50}},{"id":2395,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385535291],[9.941937424,55.38544599],[9.942094629,55.38544599],[9.942094629,55.385535291],[9.941937424,55.385535291]]]},"properties":{"id":2395,"top":7437053.0681,"id_0":2395,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437035.5681,"col_index":33,"row_index":51}},{"id":2396,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38544599],[9.941937424,55.385356689],[9.942094629,55.385356689],[9.942094629,55.38544599],[9.941937424,55.38544599]]]},"properties":{"id":2396,"top":7437035.5681,"id_0":2396,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437018.0681,"col_index":33,"row_index":52}},{"id":2397,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385356689],[9.941937424,55.385267388],[9.942094629,55.385267388],[9.942094629,55.385356689],[9.941937424,55.385356689]]]},"properties":{"id":2397,"top":7437018.0681,"id_0":2397,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7437000.5681,"col_index":33,"row_index":53}},{"id":2398,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385267388],[9.941937424,55.385178087],[9.942094629,55.385178087],[9.942094629,55.385267388],[9.941937424,55.385267388]]]},"properties":{"id":2398,"top":7437000.5681,"id_0":2398,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436983.0681,"col_index":33,"row_index":54}},{"id":2399,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385178087],[9.941937424,55.385088785],[9.942094629,55.385088785],[9.942094629,55.385178087],[9.941937424,55.385178087]]]},"properties":{"id":2399,"top":7436983.0681,"id_0":2399,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436965.5681,"col_index":33,"row_index":55}},{"id":2400,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.385088785],[9.941937424,55.384999484],[9.942094629,55.384999484],[9.942094629,55.385088785],[9.941937424,55.385088785]]]},"properties":{"id":2400,"top":7436965.5681,"id_0":2400,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436948.0681,"col_index":33,"row_index":56}},{"id":2401,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384999484],[9.941937424,55.384910182],[9.942094629,55.384910182],[9.942094629,55.384999484],[9.941937424,55.384999484]]]},"properties":{"id":2401,"top":7436948.0681,"id_0":2401,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436930.5681,"col_index":33,"row_index":57}},{"id":2402,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384910182],[9.941937424,55.38482088],[9.942094629,55.38482088],[9.942094629,55.384910182],[9.941937424,55.384910182]]]},"properties":{"id":2402,"top":7436930.5681,"id_0":2402,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436913.0681,"col_index":33,"row_index":58}},{"id":2403,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.38482088],[9.941937424,55.384731577],[9.942094629,55.384731577],[9.942094629,55.38482088],[9.941937424,55.38482088]]]},"properties":{"id":2403,"top":7436913.0681,"id_0":2403,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436895.5681,"col_index":33,"row_index":59}},{"id":2404,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384731577],[9.941937424,55.384642275],[9.942094629,55.384642275],[9.942094629,55.384731577],[9.941937424,55.384731577]]]},"properties":{"id":2404,"top":7436895.5681,"id_0":2404,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436878.0681,"col_index":33,"row_index":60}},{"id":2405,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384642275],[9.941937424,55.384552972],[9.942094629,55.384552972],[9.942094629,55.384642275],[9.941937424,55.384642275]]]},"properties":{"id":2405,"top":7436878.0681,"id_0":2405,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436860.5681,"col_index":33,"row_index":61}},{"id":2406,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384552972],[9.941937424,55.384463669],[9.942094629,55.384463669],[9.942094629,55.384552972],[9.941937424,55.384552972]]]},"properties":{"id":2406,"top":7436860.5681,"id_0":2406,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436843.0681,"col_index":33,"row_index":62}},{"id":2407,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384463669],[9.941937424,55.384374366],[9.942094629,55.384374366],[9.942094629,55.384463669],[9.941937424,55.384463669]]]},"properties":{"id":2407,"top":7436843.0681,"id_0":2407,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436825.5681,"col_index":33,"row_index":63}},{"id":2408,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384374366],[9.941937424,55.384285062],[9.942094629,55.384285062],[9.942094629,55.384374366],[9.941937424,55.384374366]]]},"properties":{"id":2408,"top":7436825.5681,"id_0":2408,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436808.0681,"col_index":33,"row_index":64}},{"id":2409,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384285062],[9.941937424,55.384195759],[9.942094629,55.384195759],[9.942094629,55.384285062],[9.941937424,55.384285062]]]},"properties":{"id":2409,"top":7436808.0681,"id_0":2409,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436790.5681,"col_index":33,"row_index":65}},{"id":2410,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384195759],[9.941937424,55.384106455],[9.942094629,55.384106455],[9.942094629,55.384195759],[9.941937424,55.384195759]]]},"properties":{"id":2410,"top":7436790.5681,"id_0":2410,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436773.0681,"col_index":33,"row_index":66}},{"id":2411,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384106455],[9.941937424,55.384017151],[9.942094629,55.384017151],[9.942094629,55.384106455],[9.941937424,55.384106455]]]},"properties":{"id":2411,"top":7436773.0681,"id_0":2411,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436755.5681,"col_index":33,"row_index":67}},{"id":2412,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.384017151],[9.941937424,55.383927847],[9.942094629,55.383927847],[9.942094629,55.384017151],[9.941937424,55.384017151]]]},"properties":{"id":2412,"top":7436755.5681,"id_0":2412,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436738.0681,"col_index":33,"row_index":68}},{"id":2413,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.383927847],[9.941937424,55.383838543],[9.942094629,55.383838543],[9.942094629,55.383927847],[9.941937424,55.383927847]]]},"properties":{"id":2413,"top":7436738.0681,"id_0":2413,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436720.5681,"col_index":33,"row_index":69}},{"id":2414,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.383838543],[9.941937424,55.383749238],[9.942094629,55.383749238],[9.942094629,55.383838543],[9.941937424,55.383838543]]]},"properties":{"id":2414,"top":7436720.5681,"id_0":2414,"left":1106731.4115,"Label":null,"right":1106748.9115,"bottom":7436703.0681,"col_index":33,"row_index":70}},{"id":2416,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.390000071],[9.942094629,55.38991078],[9.942251834,55.38991078],[9.942251834,55.390000071],[9.942094629,55.390000071]]]},"properties":{"id":2416,"top":7437928.0681,"id_0":2416,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437910.5681,"col_index":34,"row_index":1}},{"id":2417,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38991078],[9.942094629,55.38982149],[9.942251834,55.38982149],[9.942251834,55.38991078],[9.942094629,55.38991078]]]},"properties":{"id":2417,"top":7437910.5681,"id_0":2417,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437893.0681,"col_index":34,"row_index":2}},{"id":2418,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38982149],[9.942094629,55.389732199],[9.942251834,55.389732199],[9.942251834,55.38982149],[9.942094629,55.38982149]]]},"properties":{"id":2418,"top":7437893.0681,"id_0":2418,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437875.5681,"col_index":34,"row_index":3}},{"id":2419,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389732199],[9.942094629,55.389642907],[9.942251834,55.389642907],[9.942251834,55.389732199],[9.942094629,55.389732199]]]},"properties":{"id":2419,"top":7437875.5681,"id_0":2419,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437858.0681,"col_index":34,"row_index":4}},{"id":2420,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389642907],[9.942094629,55.389553616],[9.942251834,55.389553616],[9.942251834,55.389642907],[9.942094629,55.389642907]]]},"properties":{"id":2420,"top":7437858.0681,"id_0":2420,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437840.5681,"col_index":34,"row_index":5}},{"id":2421,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389553616],[9.942094629,55.389464324],[9.942251834,55.389464324],[9.942251834,55.389553616],[9.942094629,55.389553616]]]},"properties":{"id":2421,"top":7437840.5681,"id_0":2421,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437823.0681,"col_index":34,"row_index":6}},{"id":2422,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389464324],[9.942094629,55.389375032],[9.942251834,55.389375032],[9.942251834,55.389464324],[9.942094629,55.389464324]]]},"properties":{"id":2422,"top":7437823.0681,"id_0":2422,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437805.5681,"col_index":34,"row_index":7}},{"id":2423,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389375032],[9.942094629,55.38928574],[9.942251834,55.38928574],[9.942251834,55.389375032],[9.942094629,55.389375032]]]},"properties":{"id":2423,"top":7437805.5681,"id_0":2423,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437788.0681,"col_index":34,"row_index":8}},{"id":2424,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38928574],[9.942094629,55.389196448],[9.942251834,55.389196448],[9.942251834,55.38928574],[9.942094629,55.38928574]]]},"properties":{"id":2424,"top":7437788.0681,"id_0":2424,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437770.5681,"col_index":34,"row_index":9}},{"id":2425,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389196448],[9.942094629,55.389107155],[9.942251834,55.389107155],[9.942251834,55.389196448],[9.942094629,55.389196448]]]},"properties":{"id":2425,"top":7437770.5681,"id_0":2425,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437753.0681,"col_index":34,"row_index":10}},{"id":2426,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389107155],[9.942094629,55.389017863],[9.942251834,55.389017863],[9.942251834,55.389107155],[9.942094629,55.389107155]]]},"properties":{"id":2426,"top":7437753.0681,"id_0":2426,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437735.5681,"col_index":34,"row_index":11}},{"id":2427,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.389017863],[9.942094629,55.38892857],[9.942251834,55.38892857],[9.942251834,55.389017863],[9.942094629,55.389017863]]]},"properties":{"id":2427,"top":7437735.5681,"id_0":2427,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437718.0681,"col_index":34,"row_index":12}},{"id":2428,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38892857],[9.942094629,55.388839277],[9.942251834,55.388839277],[9.942251834,55.38892857],[9.942094629,55.38892857]]]},"properties":{"id":2428,"top":7437718.0681,"id_0":2428,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437700.5681,"col_index":34,"row_index":13}},{"id":2429,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388839277],[9.942094629,55.388749984],[9.942251834,55.388749984],[9.942251834,55.388839277],[9.942094629,55.388839277]]]},"properties":{"id":2429,"top":7437700.5681,"id_0":2429,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437683.0681,"col_index":34,"row_index":14}},{"id":2430,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388749984],[9.942094629,55.38866069],[9.942251834,55.38866069],[9.942251834,55.388749984],[9.942094629,55.388749984]]]},"properties":{"id":2430,"top":7437683.0681,"id_0":2430,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437665.5681,"col_index":34,"row_index":15}},{"id":2431,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38866069],[9.942094629,55.388571396],[9.942251834,55.388571396],[9.942251834,55.38866069],[9.942094629,55.38866069]]]},"properties":{"id":2431,"top":7437665.5681,"id_0":2431,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437648.0681,"col_index":34,"row_index":16}},{"id":2432,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388571396],[9.942094629,55.388482103],[9.942251834,55.388482103],[9.942251834,55.388571396],[9.942094629,55.388571396]]]},"properties":{"id":2432,"top":7437648.0681,"id_0":2432,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437630.5681,"col_index":34,"row_index":17}},{"id":2433,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388482103],[9.942094629,55.388392808],[9.942251834,55.388392808],[9.942251834,55.388482103],[9.942094629,55.388482103]]]},"properties":{"id":2433,"top":7437630.5681,"id_0":2433,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437613.0681,"col_index":34,"row_index":18}},{"id":2434,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388392808],[9.942094629,55.388303514],[9.942251834,55.388303514],[9.942251834,55.388392808],[9.942094629,55.388392808]]]},"properties":{"id":2434,"top":7437613.0681,"id_0":2434,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437595.5681,"col_index":34,"row_index":19}},{"id":2435,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388303514],[9.942094629,55.38821422],[9.942251834,55.38821422],[9.942251834,55.388303514],[9.942094629,55.388303514]]]},"properties":{"id":2435,"top":7437595.5681,"id_0":2435,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437578.0681,"col_index":34,"row_index":20}},{"id":2436,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38821422],[9.942094629,55.388124925],[9.942251834,55.388124925],[9.942251834,55.38821422],[9.942094629,55.38821422]]]},"properties":{"id":2436,"top":7437578.0681,"id_0":2436,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437560.5681,"col_index":34,"row_index":21}},{"id":2437,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.388124925],[9.942094629,55.38803563],[9.942251834,55.38803563],[9.942251834,55.388124925],[9.942094629,55.388124925]]]},"properties":{"id":2437,"top":7437560.5681,"id_0":2437,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437543.0681,"col_index":34,"row_index":22}},{"id":2438,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38803563],[9.942094629,55.387946335],[9.942251834,55.387946335],[9.942251834,55.38803563],[9.942094629,55.38803563]]]},"properties":{"id":2438,"top":7437543.0681,"id_0":2438,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437525.5681,"col_index":34,"row_index":23}},{"id":2439,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387946335],[9.942094629,55.38785704],[9.942251834,55.38785704],[9.942251834,55.387946335],[9.942094629,55.387946335]]]},"properties":{"id":2439,"top":7437525.5681,"id_0":2439,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437508.0681,"col_index":34,"row_index":24}},{"id":2440,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38785704],[9.942094629,55.387767744],[9.942251834,55.387767744],[9.942251834,55.38785704],[9.942094629,55.38785704]]]},"properties":{"id":2440,"top":7437508.0681,"id_0":2440,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437490.5681,"col_index":34,"row_index":25}},{"id":2441,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387767744],[9.942094629,55.387678448],[9.942251834,55.387678448],[9.942251834,55.387767744],[9.942094629,55.387767744]]]},"properties":{"id":2441,"top":7437490.5681,"id_0":2441,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437473.0681,"col_index":34,"row_index":26}},{"id":2442,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387678448],[9.942094629,55.387589153],[9.942251834,55.387589153],[9.942251834,55.387678448],[9.942094629,55.387678448]]]},"properties":{"id":2442,"top":7437473.0681,"id_0":2442,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437455.5681,"col_index":34,"row_index":27}},{"id":2443,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387589153],[9.942094629,55.387499856],[9.942251834,55.387499856],[9.942251834,55.387589153],[9.942094629,55.387589153]]]},"properties":{"id":2443,"top":7437455.5681,"id_0":2443,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437438.0681,"col_index":34,"row_index":28}},{"id":2444,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387499856],[9.942094629,55.38741056],[9.942251834,55.38741056],[9.942251834,55.387499856],[9.942094629,55.387499856]]]},"properties":{"id":2444,"top":7437438.0681,"id_0":2444,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437420.5681,"col_index":34,"row_index":29}},{"id":2445,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38741056],[9.942094629,55.387321264],[9.942251834,55.387321264],[9.942251834,55.38741056],[9.942094629,55.38741056]]]},"properties":{"id":2445,"top":7437420.5681,"id_0":2445,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437403.0681,"col_index":34,"row_index":30}},{"id":2446,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387321264],[9.942094629,55.387231967],[9.942251834,55.387231967],[9.942251834,55.387321264],[9.942094629,55.387321264]]]},"properties":{"id":2446,"top":7437403.0681,"id_0":2446,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437385.5681,"col_index":34,"row_index":31}},{"id":2447,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387231967],[9.942094629,55.38714267],[9.942251834,55.38714267],[9.942251834,55.387231967],[9.942094629,55.387231967]]]},"properties":{"id":2447,"top":7437385.5681,"id_0":2447,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437368.0681,"col_index":34,"row_index":32}},{"id":2448,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38714267],[9.942094629,55.387053373],[9.942251834,55.387053373],[9.942251834,55.38714267],[9.942094629,55.38714267]]]},"properties":{"id":2448,"top":7437368.0681,"id_0":2448,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437350.5681,"col_index":34,"row_index":33}},{"id":2449,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.387053373],[9.942094629,55.386964076],[9.942251834,55.386964076],[9.942251834,55.387053373],[9.942094629,55.387053373]]]},"properties":{"id":2449,"top":7437350.5681,"id_0":2449,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437333.0681,"col_index":34,"row_index":34}},{"id":2450,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386964076],[9.942094629,55.386874778],[9.942251834,55.386874778],[9.942251834,55.386964076],[9.942094629,55.386964076]]]},"properties":{"id":2450,"top":7437333.0681,"id_0":2450,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437315.5681,"col_index":34,"row_index":35}},{"id":2451,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386874778],[9.942094629,55.38678548],[9.942251834,55.38678548],[9.942251834,55.386874778],[9.942094629,55.386874778]]]},"properties":{"id":2451,"top":7437315.5681,"id_0":2451,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437298.0681,"col_index":34,"row_index":36}},{"id":2452,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38678548],[9.942094629,55.386696182],[9.942251834,55.386696182],[9.942251834,55.38678548],[9.942094629,55.38678548]]]},"properties":{"id":2452,"top":7437298.0681,"id_0":2452,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437280.5681,"col_index":34,"row_index":37}},{"id":2453,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386696182],[9.942094629,55.386606884],[9.942251834,55.386606884],[9.942251834,55.386696182],[9.942094629,55.386696182]]]},"properties":{"id":2453,"top":7437280.5681,"id_0":2453,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437263.0681,"col_index":34,"row_index":38}},{"id":2454,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386606884],[9.942094629,55.386517586],[9.942251834,55.386517586],[9.942251834,55.386606884],[9.942094629,55.386606884]]]},"properties":{"id":2454,"top":7437263.0681,"id_0":2454,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437245.5681,"col_index":34,"row_index":39}},{"id":2455,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386517586],[9.942094629,55.386428287],[9.942251834,55.386428287],[9.942251834,55.386517586],[9.942094629,55.386517586]]]},"properties":{"id":2455,"top":7437245.5681,"id_0":2455,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437228.0681,"col_index":34,"row_index":40}},{"id":2456,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386428287],[9.942094629,55.386338989],[9.942251834,55.386338989],[9.942251834,55.386428287],[9.942094629,55.386428287]]]},"properties":{"id":2456,"top":7437228.0681,"id_0":2456,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437210.5681,"col_index":34,"row_index":41}},{"id":2457,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386338989],[9.942094629,55.38624969],[9.942251834,55.38624969],[9.942251834,55.386338989],[9.942094629,55.386338989]]]},"properties":{"id":2457,"top":7437210.5681,"id_0":2457,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437193.0681,"col_index":34,"row_index":42}},{"id":2458,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38624969],[9.942094629,55.386160391],[9.942251834,55.386160391],[9.942251834,55.38624969],[9.942094629,55.38624969]]]},"properties":{"id":2458,"top":7437193.0681,"id_0":2458,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437175.5681,"col_index":34,"row_index":43}},{"id":2459,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386160391],[9.942094629,55.386071091],[9.942251834,55.386071091],[9.942251834,55.386160391],[9.942094629,55.386160391]]]},"properties":{"id":2459,"top":7437175.5681,"id_0":2459,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437158.0681,"col_index":34,"row_index":44}},{"id":2460,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.386071091],[9.942094629,55.385981792],[9.942251834,55.385981792],[9.942251834,55.386071091],[9.942094629,55.386071091]]]},"properties":{"id":2460,"top":7437158.0681,"id_0":2460,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437140.5681,"col_index":34,"row_index":45}},{"id":2461,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385981792],[9.942094629,55.385892492],[9.942251834,55.385892492],[9.942251834,55.385981792],[9.942094629,55.385981792]]]},"properties":{"id":2461,"top":7437140.5681,"id_0":2461,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437123.0681,"col_index":34,"row_index":46}},{"id":2462,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385892492],[9.942094629,55.385803192],[9.942251834,55.385803192],[9.942251834,55.385892492],[9.942094629,55.385892492]]]},"properties":{"id":2462,"top":7437123.0681,"id_0":2462,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437105.5681,"col_index":34,"row_index":47}},{"id":2463,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385803192],[9.942094629,55.385713892],[9.942251834,55.385713892],[9.942251834,55.385803192],[9.942094629,55.385803192]]]},"properties":{"id":2463,"top":7437105.5681,"id_0":2463,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437088.0681,"col_index":34,"row_index":48}},{"id":2464,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385713892],[9.942094629,55.385624592],[9.942251834,55.385624592],[9.942251834,55.385713892],[9.942094629,55.385713892]]]},"properties":{"id":2464,"top":7437088.0681,"id_0":2464,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437070.5681,"col_index":34,"row_index":49}},{"id":2465,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385624592],[9.942094629,55.385535291],[9.942251834,55.385535291],[9.942251834,55.385624592],[9.942094629,55.385624592]]]},"properties":{"id":2465,"top":7437070.5681,"id_0":2465,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437053.0681,"col_index":34,"row_index":50}},{"id":2466,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385535291],[9.942094629,55.38544599],[9.942251834,55.38544599],[9.942251834,55.385535291],[9.942094629,55.385535291]]]},"properties":{"id":2466,"top":7437053.0681,"id_0":2466,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437035.5681,"col_index":34,"row_index":51}},{"id":2467,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38544599],[9.942094629,55.385356689],[9.942251834,55.385356689],[9.942251834,55.38544599],[9.942094629,55.38544599]]]},"properties":{"id":2467,"top":7437035.5681,"id_0":2467,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437018.0681,"col_index":34,"row_index":52}},{"id":2468,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385356689],[9.942094629,55.385267388],[9.942251834,55.385267388],[9.942251834,55.385356689],[9.942094629,55.385356689]]]},"properties":{"id":2468,"top":7437018.0681,"id_0":2468,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7437000.5681,"col_index":34,"row_index":53}},{"id":2469,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385267388],[9.942094629,55.385178087],[9.942251834,55.385178087],[9.942251834,55.385267388],[9.942094629,55.385267388]]]},"properties":{"id":2469,"top":7437000.5681,"id_0":2469,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436983.0681,"col_index":34,"row_index":54}},{"id":2470,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385178087],[9.942094629,55.385088785],[9.942251834,55.385088785],[9.942251834,55.385178087],[9.942094629,55.385178087]]]},"properties":{"id":2470,"top":7436983.0681,"id_0":2470,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436965.5681,"col_index":34,"row_index":55}},{"id":2471,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.385088785],[9.942094629,55.384999484],[9.942251834,55.384999484],[9.942251834,55.385088785],[9.942094629,55.385088785]]]},"properties":{"id":2471,"top":7436965.5681,"id_0":2471,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436948.0681,"col_index":34,"row_index":56}},{"id":2472,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384999484],[9.942094629,55.384910182],[9.942251834,55.384910182],[9.942251834,55.384999484],[9.942094629,55.384999484]]]},"properties":{"id":2472,"top":7436948.0681,"id_0":2472,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436930.5681,"col_index":34,"row_index":57}},{"id":2473,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384910182],[9.942094629,55.38482088],[9.942251834,55.38482088],[9.942251834,55.384910182],[9.942094629,55.384910182]]]},"properties":{"id":2473,"top":7436930.5681,"id_0":2473,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436913.0681,"col_index":34,"row_index":58}},{"id":2474,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.38482088],[9.942094629,55.384731577],[9.942251834,55.384731577],[9.942251834,55.38482088],[9.942094629,55.38482088]]]},"properties":{"id":2474,"top":7436913.0681,"id_0":2474,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436895.5681,"col_index":34,"row_index":59}},{"id":2475,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384731577],[9.942094629,55.384642275],[9.942251834,55.384642275],[9.942251834,55.384731577],[9.942094629,55.384731577]]]},"properties":{"id":2475,"top":7436895.5681,"id_0":2475,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436878.0681,"col_index":34,"row_index":60}},{"id":2476,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384642275],[9.942094629,55.384552972],[9.942251834,55.384552972],[9.942251834,55.384642275],[9.942094629,55.384642275]]]},"properties":{"id":2476,"top":7436878.0681,"id_0":2476,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436860.5681,"col_index":34,"row_index":61}},{"id":2477,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384552972],[9.942094629,55.384463669],[9.942251834,55.384463669],[9.942251834,55.384552972],[9.942094629,55.384552972]]]},"properties":{"id":2477,"top":7436860.5681,"id_0":2477,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436843.0681,"col_index":34,"row_index":62}},{"id":2478,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384463669],[9.942094629,55.384374366],[9.942251834,55.384374366],[9.942251834,55.384463669],[9.942094629,55.384463669]]]},"properties":{"id":2478,"top":7436843.0681,"id_0":2478,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436825.5681,"col_index":34,"row_index":63}},{"id":2479,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384374366],[9.942094629,55.384285062],[9.942251834,55.384285062],[9.942251834,55.384374366],[9.942094629,55.384374366]]]},"properties":{"id":2479,"top":7436825.5681,"id_0":2479,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436808.0681,"col_index":34,"row_index":64}},{"id":2480,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384285062],[9.942094629,55.384195759],[9.942251834,55.384195759],[9.942251834,55.384285062],[9.942094629,55.384285062]]]},"properties":{"id":2480,"top":7436808.0681,"id_0":2480,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436790.5681,"col_index":34,"row_index":65}},{"id":2481,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384195759],[9.942094629,55.384106455],[9.942251834,55.384106455],[9.942251834,55.384195759],[9.942094629,55.384195759]]]},"properties":{"id":2481,"top":7436790.5681,"id_0":2481,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436773.0681,"col_index":34,"row_index":66}},{"id":2482,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384106455],[9.942094629,55.384017151],[9.942251834,55.384017151],[9.942251834,55.384106455],[9.942094629,55.384106455]]]},"properties":{"id":2482,"top":7436773.0681,"id_0":2482,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436755.5681,"col_index":34,"row_index":67}},{"id":2483,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.384017151],[9.942094629,55.383927847],[9.942251834,55.383927847],[9.942251834,55.384017151],[9.942094629,55.384017151]]]},"properties":{"id":2483,"top":7436755.5681,"id_0":2483,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436738.0681,"col_index":34,"row_index":68}},{"id":2484,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.383927847],[9.942094629,55.383838543],[9.942251834,55.383838543],[9.942251834,55.383927847],[9.942094629,55.383927847]]]},"properties":{"id":2484,"top":7436738.0681,"id_0":2484,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436720.5681,"col_index":34,"row_index":69}},{"id":2485,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.383838543],[9.942094629,55.383749238],[9.942251834,55.383749238],[9.942251834,55.383838543],[9.942094629,55.383838543]]]},"properties":{"id":2485,"top":7436720.5681,"id_0":2485,"left":1106748.9115,"Label":null,"right":1106766.4115,"bottom":7436703.0681,"col_index":34,"row_index":70}},{"id":2487,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.390000071],[9.942251834,55.38991078],[9.942409039,55.38991078],[9.942409039,55.390000071],[9.942251834,55.390000071]]]},"properties":{"id":2487,"top":7437928.0681,"id_0":2487,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437910.5681,"col_index":35,"row_index":1}},{"id":2488,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38991078],[9.942251834,55.38982149],[9.942409039,55.38982149],[9.942409039,55.38991078],[9.942251834,55.38991078]]]},"properties":{"id":2488,"top":7437910.5681,"id_0":2488,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437893.0681,"col_index":35,"row_index":2}},{"id":2489,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38982149],[9.942251834,55.389732199],[9.942409039,55.389732199],[9.942409039,55.38982149],[9.942251834,55.38982149]]]},"properties":{"id":2489,"top":7437893.0681,"id_0":2489,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437875.5681,"col_index":35,"row_index":3}},{"id":2490,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389732199],[9.942251834,55.389642907],[9.942409039,55.389642907],[9.942409039,55.389732199],[9.942251834,55.389732199]]]},"properties":{"id":2490,"top":7437875.5681,"id_0":2490,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437858.0681,"col_index":35,"row_index":4}},{"id":2491,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389642907],[9.942251834,55.389553616],[9.942409039,55.389553616],[9.942409039,55.389642907],[9.942251834,55.389642907]]]},"properties":{"id":2491,"top":7437858.0681,"id_0":2491,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437840.5681,"col_index":35,"row_index":5}},{"id":2492,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389553616],[9.942251834,55.389464324],[9.942409039,55.389464324],[9.942409039,55.389553616],[9.942251834,55.389553616]]]},"properties":{"id":2492,"top":7437840.5681,"id_0":2492,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437823.0681,"col_index":35,"row_index":6}},{"id":2493,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389464324],[9.942251834,55.389375032],[9.942409039,55.389375032],[9.942409039,55.389464324],[9.942251834,55.389464324]]]},"properties":{"id":2493,"top":7437823.0681,"id_0":2493,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437805.5681,"col_index":35,"row_index":7}},{"id":2494,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389375032],[9.942251834,55.38928574],[9.942409039,55.38928574],[9.942409039,55.389375032],[9.942251834,55.389375032]]]},"properties":{"id":2494,"top":7437805.5681,"id_0":2494,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437788.0681,"col_index":35,"row_index":8}},{"id":2495,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38928574],[9.942251834,55.389196448],[9.942409039,55.389196448],[9.942409039,55.38928574],[9.942251834,55.38928574]]]},"properties":{"id":2495,"top":7437788.0681,"id_0":2495,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437770.5681,"col_index":35,"row_index":9}},{"id":2496,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389196448],[9.942251834,55.389107155],[9.942409039,55.389107155],[9.942409039,55.389196448],[9.942251834,55.389196448]]]},"properties":{"id":2496,"top":7437770.5681,"id_0":2496,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437753.0681,"col_index":35,"row_index":10}},{"id":2497,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389107155],[9.942251834,55.389017863],[9.942409039,55.389017863],[9.942409039,55.389107155],[9.942251834,55.389107155]]]},"properties":{"id":2497,"top":7437753.0681,"id_0":2497,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437735.5681,"col_index":35,"row_index":11}},{"id":2498,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.389017863],[9.942251834,55.38892857],[9.942409039,55.38892857],[9.942409039,55.389017863],[9.942251834,55.389017863]]]},"properties":{"id":2498,"top":7437735.5681,"id_0":2498,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437718.0681,"col_index":35,"row_index":12}},{"id":2499,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38892857],[9.942251834,55.388839277],[9.942409039,55.388839277],[9.942409039,55.38892857],[9.942251834,55.38892857]]]},"properties":{"id":2499,"top":7437718.0681,"id_0":2499,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437700.5681,"col_index":35,"row_index":13}},{"id":2500,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388839277],[9.942251834,55.388749984],[9.942409039,55.388749984],[9.942409039,55.388839277],[9.942251834,55.388839277]]]},"properties":{"id":2500,"top":7437700.5681,"id_0":2500,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437683.0681,"col_index":35,"row_index":14}},{"id":2501,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388749984],[9.942251834,55.38866069],[9.942409039,55.38866069],[9.942409039,55.388749984],[9.942251834,55.388749984]]]},"properties":{"id":2501,"top":7437683.0681,"id_0":2501,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437665.5681,"col_index":35,"row_index":15}},{"id":2502,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38866069],[9.942251834,55.388571396],[9.942409039,55.388571396],[9.942409039,55.38866069],[9.942251834,55.38866069]]]},"properties":{"id":2502,"top":7437665.5681,"id_0":2502,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437648.0681,"col_index":35,"row_index":16}},{"id":2503,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388571396],[9.942251834,55.388482103],[9.942409039,55.388482103],[9.942409039,55.388571396],[9.942251834,55.388571396]]]},"properties":{"id":2503,"top":7437648.0681,"id_0":2503,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437630.5681,"col_index":35,"row_index":17}},{"id":2504,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388482103],[9.942251834,55.388392808],[9.942409039,55.388392808],[9.942409039,55.388482103],[9.942251834,55.388482103]]]},"properties":{"id":2504,"top":7437630.5681,"id_0":2504,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437613.0681,"col_index":35,"row_index":18}},{"id":2505,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388392808],[9.942251834,55.388303514],[9.942409039,55.388303514],[9.942409039,55.388392808],[9.942251834,55.388392808]]]},"properties":{"id":2505,"top":7437613.0681,"id_0":2505,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437595.5681,"col_index":35,"row_index":19}},{"id":2506,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388303514],[9.942251834,55.38821422],[9.942409039,55.38821422],[9.942409039,55.388303514],[9.942251834,55.388303514]]]},"properties":{"id":2506,"top":7437595.5681,"id_0":2506,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437578.0681,"col_index":35,"row_index":20}},{"id":2507,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38821422],[9.942251834,55.388124925],[9.942409039,55.388124925],[9.942409039,55.38821422],[9.942251834,55.38821422]]]},"properties":{"id":2507,"top":7437578.0681,"id_0":2507,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437560.5681,"col_index":35,"row_index":21}},{"id":2508,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.388124925],[9.942251834,55.38803563],[9.942409039,55.38803563],[9.942409039,55.388124925],[9.942251834,55.388124925]]]},"properties":{"id":2508,"top":7437560.5681,"id_0":2508,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437543.0681,"col_index":35,"row_index":22}},{"id":2509,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38803563],[9.942251834,55.387946335],[9.942409039,55.387946335],[9.942409039,55.38803563],[9.942251834,55.38803563]]]},"properties":{"id":2509,"top":7437543.0681,"id_0":2509,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437525.5681,"col_index":35,"row_index":23}},{"id":2510,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387946335],[9.942251834,55.38785704],[9.942409039,55.38785704],[9.942409039,55.387946335],[9.942251834,55.387946335]]]},"properties":{"id":2510,"top":7437525.5681,"id_0":2510,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437508.0681,"col_index":35,"row_index":24}},{"id":2511,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38785704],[9.942251834,55.387767744],[9.942409039,55.387767744],[9.942409039,55.38785704],[9.942251834,55.38785704]]]},"properties":{"id":2511,"top":7437508.0681,"id_0":2511,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437490.5681,"col_index":35,"row_index":25}},{"id":2512,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387767744],[9.942251834,55.387678448],[9.942409039,55.387678448],[9.942409039,55.387767744],[9.942251834,55.387767744]]]},"properties":{"id":2512,"top":7437490.5681,"id_0":2512,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437473.0681,"col_index":35,"row_index":26}},{"id":2513,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387678448],[9.942251834,55.387589153],[9.942409039,55.387589153],[9.942409039,55.387678448],[9.942251834,55.387678448]]]},"properties":{"id":2513,"top":7437473.0681,"id_0":2513,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437455.5681,"col_index":35,"row_index":27}},{"id":2514,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387589153],[9.942251834,55.387499856],[9.942409039,55.387499856],[9.942409039,55.387589153],[9.942251834,55.387589153]]]},"properties":{"id":2514,"top":7437455.5681,"id_0":2514,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437438.0681,"col_index":35,"row_index":28}},{"id":2515,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387499856],[9.942251834,55.38741056],[9.942409039,55.38741056],[9.942409039,55.387499856],[9.942251834,55.387499856]]]},"properties":{"id":2515,"top":7437438.0681,"id_0":2515,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437420.5681,"col_index":35,"row_index":29}},{"id":2516,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38741056],[9.942251834,55.387321264],[9.942409039,55.387321264],[9.942409039,55.38741056],[9.942251834,55.38741056]]]},"properties":{"id":2516,"top":7437420.5681,"id_0":2516,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437403.0681,"col_index":35,"row_index":30}},{"id":2517,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387321264],[9.942251834,55.387231967],[9.942409039,55.387231967],[9.942409039,55.387321264],[9.942251834,55.387321264]]]},"properties":{"id":2517,"top":7437403.0681,"id_0":2517,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437385.5681,"col_index":35,"row_index":31}},{"id":2518,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387231967],[9.942251834,55.38714267],[9.942409039,55.38714267],[9.942409039,55.387231967],[9.942251834,55.387231967]]]},"properties":{"id":2518,"top":7437385.5681,"id_0":2518,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437368.0681,"col_index":35,"row_index":32}},{"id":2519,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38714267],[9.942251834,55.387053373],[9.942409039,55.387053373],[9.942409039,55.38714267],[9.942251834,55.38714267]]]},"properties":{"id":2519,"top":7437368.0681,"id_0":2519,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437350.5681,"col_index":35,"row_index":33}},{"id":2520,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.387053373],[9.942251834,55.386964076],[9.942409039,55.386964076],[9.942409039,55.387053373],[9.942251834,55.387053373]]]},"properties":{"id":2520,"top":7437350.5681,"id_0":2520,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437333.0681,"col_index":35,"row_index":34}},{"id":2521,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386964076],[9.942251834,55.386874778],[9.942409039,55.386874778],[9.942409039,55.386964076],[9.942251834,55.386964076]]]},"properties":{"id":2521,"top":7437333.0681,"id_0":2521,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437315.5681,"col_index":35,"row_index":35}},{"id":2522,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386874778],[9.942251834,55.38678548],[9.942409039,55.38678548],[9.942409039,55.386874778],[9.942251834,55.386874778]]]},"properties":{"id":2522,"top":7437315.5681,"id_0":2522,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437298.0681,"col_index":35,"row_index":36}},{"id":2523,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38678548],[9.942251834,55.386696182],[9.942409039,55.386696182],[9.942409039,55.38678548],[9.942251834,55.38678548]]]},"properties":{"id":2523,"top":7437298.0681,"id_0":2523,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437280.5681,"col_index":35,"row_index":37}},{"id":2524,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386696182],[9.942251834,55.386606884],[9.942409039,55.386606884],[9.942409039,55.386696182],[9.942251834,55.386696182]]]},"properties":{"id":2524,"top":7437280.5681,"id_0":2524,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437263.0681,"col_index":35,"row_index":38}},{"id":2525,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386606884],[9.942251834,55.386517586],[9.942409039,55.386517586],[9.942409039,55.386606884],[9.942251834,55.386606884]]]},"properties":{"id":2525,"top":7437263.0681,"id_0":2525,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437245.5681,"col_index":35,"row_index":39}},{"id":2526,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386517586],[9.942251834,55.386428287],[9.942409039,55.386428287],[9.942409039,55.386517586],[9.942251834,55.386517586]]]},"properties":{"id":2526,"top":7437245.5681,"id_0":2526,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437228.0681,"col_index":35,"row_index":40}},{"id":2527,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386428287],[9.942251834,55.386338989],[9.942409039,55.386338989],[9.942409039,55.386428287],[9.942251834,55.386428287]]]},"properties":{"id":2527,"top":7437228.0681,"id_0":2527,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437210.5681,"col_index":35,"row_index":41}},{"id":2528,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386338989],[9.942251834,55.38624969],[9.942409039,55.38624969],[9.942409039,55.386338989],[9.942251834,55.386338989]]]},"properties":{"id":2528,"top":7437210.5681,"id_0":2528,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437193.0681,"col_index":35,"row_index":42}},{"id":2529,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38624969],[9.942251834,55.386160391],[9.942409039,55.386160391],[9.942409039,55.38624969],[9.942251834,55.38624969]]]},"properties":{"id":2529,"top":7437193.0681,"id_0":2529,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437175.5681,"col_index":35,"row_index":43}},{"id":2530,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386160391],[9.942251834,55.386071091],[9.942409039,55.386071091],[9.942409039,55.386160391],[9.942251834,55.386160391]]]},"properties":{"id":2530,"top":7437175.5681,"id_0":2530,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437158.0681,"col_index":35,"row_index":44}},{"id":2531,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.386071091],[9.942251834,55.385981792],[9.942409039,55.385981792],[9.942409039,55.386071091],[9.942251834,55.386071091]]]},"properties":{"id":2531,"top":7437158.0681,"id_0":2531,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437140.5681,"col_index":35,"row_index":45}},{"id":2532,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385981792],[9.942251834,55.385892492],[9.942409039,55.385892492],[9.942409039,55.385981792],[9.942251834,55.385981792]]]},"properties":{"id":2532,"top":7437140.5681,"id_0":2532,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437123.0681,"col_index":35,"row_index":46}},{"id":2533,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385892492],[9.942251834,55.385803192],[9.942409039,55.385803192],[9.942409039,55.385892492],[9.942251834,55.385892492]]]},"properties":{"id":2533,"top":7437123.0681,"id_0":2533,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437105.5681,"col_index":35,"row_index":47}},{"id":2534,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385803192],[9.942251834,55.385713892],[9.942409039,55.385713892],[9.942409039,55.385803192],[9.942251834,55.385803192]]]},"properties":{"id":2534,"top":7437105.5681,"id_0":2534,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437088.0681,"col_index":35,"row_index":48}},{"id":2535,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385713892],[9.942251834,55.385624592],[9.942409039,55.385624592],[9.942409039,55.385713892],[9.942251834,55.385713892]]]},"properties":{"id":2535,"top":7437088.0681,"id_0":2535,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437070.5681,"col_index":35,"row_index":49}},{"id":2536,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385624592],[9.942251834,55.385535291],[9.942409039,55.385535291],[9.942409039,55.385624592],[9.942251834,55.385624592]]]},"properties":{"id":2536,"top":7437070.5681,"id_0":2536,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437053.0681,"col_index":35,"row_index":50}},{"id":2537,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385535291],[9.942251834,55.38544599],[9.942409039,55.38544599],[9.942409039,55.385535291],[9.942251834,55.385535291]]]},"properties":{"id":2537,"top":7437053.0681,"id_0":2537,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437035.5681,"col_index":35,"row_index":51}},{"id":2538,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38544599],[9.942251834,55.385356689],[9.942409039,55.385356689],[9.942409039,55.38544599],[9.942251834,55.38544599]]]},"properties":{"id":2538,"top":7437035.5681,"id_0":2538,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437018.0681,"col_index":35,"row_index":52}},{"id":2539,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385356689],[9.942251834,55.385267388],[9.942409039,55.385267388],[9.942409039,55.385356689],[9.942251834,55.385356689]]]},"properties":{"id":2539,"top":7437018.0681,"id_0":2539,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7437000.5681,"col_index":35,"row_index":53}},{"id":2540,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385267388],[9.942251834,55.385178087],[9.942409039,55.385178087],[9.942409039,55.385267388],[9.942251834,55.385267388]]]},"properties":{"id":2540,"top":7437000.5681,"id_0":2540,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436983.0681,"col_index":35,"row_index":54}},{"id":2541,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385178087],[9.942251834,55.385088785],[9.942409039,55.385088785],[9.942409039,55.385178087],[9.942251834,55.385178087]]]},"properties":{"id":2541,"top":7436983.0681,"id_0":2541,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436965.5681,"col_index":35,"row_index":55}},{"id":2542,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.385088785],[9.942251834,55.384999484],[9.942409039,55.384999484],[9.942409039,55.385088785],[9.942251834,55.385088785]]]},"properties":{"id":2542,"top":7436965.5681,"id_0":2542,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436948.0681,"col_index":35,"row_index":56}},{"id":2543,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384999484],[9.942251834,55.384910182],[9.942409039,55.384910182],[9.942409039,55.384999484],[9.942251834,55.384999484]]]},"properties":{"id":2543,"top":7436948.0681,"id_0":2543,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436930.5681,"col_index":35,"row_index":57}},{"id":2544,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384910182],[9.942251834,55.38482088],[9.942409039,55.38482088],[9.942409039,55.384910182],[9.942251834,55.384910182]]]},"properties":{"id":2544,"top":7436930.5681,"id_0":2544,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436913.0681,"col_index":35,"row_index":58}},{"id":2545,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.38482088],[9.942251834,55.384731577],[9.942409039,55.384731577],[9.942409039,55.38482088],[9.942251834,55.38482088]]]},"properties":{"id":2545,"top":7436913.0681,"id_0":2545,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436895.5681,"col_index":35,"row_index":59}},{"id":2546,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384731577],[9.942251834,55.384642275],[9.942409039,55.384642275],[9.942409039,55.384731577],[9.942251834,55.384731577]]]},"properties":{"id":2546,"top":7436895.5681,"id_0":2546,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436878.0681,"col_index":35,"row_index":60}},{"id":2547,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384642275],[9.942251834,55.384552972],[9.942409039,55.384552972],[9.942409039,55.384642275],[9.942251834,55.384642275]]]},"properties":{"id":2547,"top":7436878.0681,"id_0":2547,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436860.5681,"col_index":35,"row_index":61}},{"id":2548,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384552972],[9.942251834,55.384463669],[9.942409039,55.384463669],[9.942409039,55.384552972],[9.942251834,55.384552972]]]},"properties":{"id":2548,"top":7436860.5681,"id_0":2548,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436843.0681,"col_index":35,"row_index":62}},{"id":2549,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384463669],[9.942251834,55.384374366],[9.942409039,55.384374366],[9.942409039,55.384463669],[9.942251834,55.384463669]]]},"properties":{"id":2549,"top":7436843.0681,"id_0":2549,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436825.5681,"col_index":35,"row_index":63}},{"id":2550,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384374366],[9.942251834,55.384285062],[9.942409039,55.384285062],[9.942409039,55.384374366],[9.942251834,55.384374366]]]},"properties":{"id":2550,"top":7436825.5681,"id_0":2550,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436808.0681,"col_index":35,"row_index":64}},{"id":2551,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384285062],[9.942251834,55.384195759],[9.942409039,55.384195759],[9.942409039,55.384285062],[9.942251834,55.384285062]]]},"properties":{"id":2551,"top":7436808.0681,"id_0":2551,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436790.5681,"col_index":35,"row_index":65}},{"id":2552,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384195759],[9.942251834,55.384106455],[9.942409039,55.384106455],[9.942409039,55.384195759],[9.942251834,55.384195759]]]},"properties":{"id":2552,"top":7436790.5681,"id_0":2552,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436773.0681,"col_index":35,"row_index":66}},{"id":2553,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384106455],[9.942251834,55.384017151],[9.942409039,55.384017151],[9.942409039,55.384106455],[9.942251834,55.384106455]]]},"properties":{"id":2553,"top":7436773.0681,"id_0":2553,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436755.5681,"col_index":35,"row_index":67}},{"id":2554,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.384017151],[9.942251834,55.383927847],[9.942409039,55.383927847],[9.942409039,55.384017151],[9.942251834,55.384017151]]]},"properties":{"id":2554,"top":7436755.5681,"id_0":2554,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436738.0681,"col_index":35,"row_index":68}},{"id":2555,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.383927847],[9.942251834,55.383838543],[9.942409039,55.383838543],[9.942409039,55.383927847],[9.942251834,55.383927847]]]},"properties":{"id":2555,"top":7436738.0681,"id_0":2555,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436720.5681,"col_index":35,"row_index":69}},{"id":2556,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.383838543],[9.942251834,55.383749238],[9.942409039,55.383749238],[9.942409039,55.383838543],[9.942251834,55.383838543]]]},"properties":{"id":2556,"top":7436720.5681,"id_0":2556,"left":1106766.4115,"Label":null,"right":1106783.9115,"bottom":7436703.0681,"col_index":35,"row_index":70}},{"id":2558,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.390000071],[9.942409039,55.38991078],[9.942566244,55.38991078],[9.942566244,55.390000071],[9.942409039,55.390000071]]]},"properties":{"id":2558,"top":7437928.0681,"id_0":2558,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437910.5681,"col_index":36,"row_index":1}},{"id":2559,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38991078],[9.942409039,55.38982149],[9.942566244,55.38982149],[9.942566244,55.38991078],[9.942409039,55.38991078]]]},"properties":{"id":2559,"top":7437910.5681,"id_0":2559,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437893.0681,"col_index":36,"row_index":2}},{"id":2560,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38982149],[9.942409039,55.389732199],[9.942566244,55.389732199],[9.942566244,55.38982149],[9.942409039,55.38982149]]]},"properties":{"id":2560,"top":7437893.0681,"id_0":2560,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437875.5681,"col_index":36,"row_index":3}},{"id":2561,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389732199],[9.942409039,55.389642907],[9.942566244,55.389642907],[9.942566244,55.389732199],[9.942409039,55.389732199]]]},"properties":{"id":2561,"top":7437875.5681,"id_0":2561,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437858.0681,"col_index":36,"row_index":4}},{"id":2562,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389642907],[9.942409039,55.389553616],[9.942566244,55.389553616],[9.942566244,55.389642907],[9.942409039,55.389642907]]]},"properties":{"id":2562,"top":7437858.0681,"id_0":2562,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437840.5681,"col_index":36,"row_index":5}},{"id":2563,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389553616],[9.942409039,55.389464324],[9.942566244,55.389464324],[9.942566244,55.389553616],[9.942409039,55.389553616]]]},"properties":{"id":2563,"top":7437840.5681,"id_0":2563,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437823.0681,"col_index":36,"row_index":6}},{"id":2564,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389464324],[9.942409039,55.389375032],[9.942566244,55.389375032],[9.942566244,55.389464324],[9.942409039,55.389464324]]]},"properties":{"id":2564,"top":7437823.0681,"id_0":2564,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437805.5681,"col_index":36,"row_index":7}},{"id":2565,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389375032],[9.942409039,55.38928574],[9.942566244,55.38928574],[9.942566244,55.389375032],[9.942409039,55.389375032]]]},"properties":{"id":2565,"top":7437805.5681,"id_0":2565,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437788.0681,"col_index":36,"row_index":8}},{"id":2566,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38928574],[9.942409039,55.389196448],[9.942566244,55.389196448],[9.942566244,55.38928574],[9.942409039,55.38928574]]]},"properties":{"id":2566,"top":7437788.0681,"id_0":2566,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437770.5681,"col_index":36,"row_index":9}},{"id":2567,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389196448],[9.942409039,55.389107155],[9.942566244,55.389107155],[9.942566244,55.389196448],[9.942409039,55.389196448]]]},"properties":{"id":2567,"top":7437770.5681,"id_0":2567,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437753.0681,"col_index":36,"row_index":10}},{"id":2568,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389107155],[9.942409039,55.389017863],[9.942566244,55.389017863],[9.942566244,55.389107155],[9.942409039,55.389107155]]]},"properties":{"id":2568,"top":7437753.0681,"id_0":2568,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437735.5681,"col_index":36,"row_index":11}},{"id":2569,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.389017863],[9.942409039,55.38892857],[9.942566244,55.38892857],[9.942566244,55.389017863],[9.942409039,55.389017863]]]},"properties":{"id":2569,"top":7437735.5681,"id_0":2569,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437718.0681,"col_index":36,"row_index":12}},{"id":2570,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38892857],[9.942409039,55.388839277],[9.942566244,55.388839277],[9.942566244,55.38892857],[9.942409039,55.38892857]]]},"properties":{"id":2570,"top":7437718.0681,"id_0":2570,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437700.5681,"col_index":36,"row_index":13}},{"id":2571,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388839277],[9.942409039,55.388749984],[9.942566244,55.388749984],[9.942566244,55.388839277],[9.942409039,55.388839277]]]},"properties":{"id":2571,"top":7437700.5681,"id_0":2571,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437683.0681,"col_index":36,"row_index":14}},{"id":2572,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388749984],[9.942409039,55.38866069],[9.942566244,55.38866069],[9.942566244,55.388749984],[9.942409039,55.388749984]]]},"properties":{"id":2572,"top":7437683.0681,"id_0":2572,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437665.5681,"col_index":36,"row_index":15}},{"id":2573,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38866069],[9.942409039,55.388571396],[9.942566244,55.388571396],[9.942566244,55.38866069],[9.942409039,55.38866069]]]},"properties":{"id":2573,"top":7437665.5681,"id_0":2573,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437648.0681,"col_index":36,"row_index":16}},{"id":2574,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388571396],[9.942409039,55.388482103],[9.942566244,55.388482103],[9.942566244,55.388571396],[9.942409039,55.388571396]]]},"properties":{"id":2574,"top":7437648.0681,"id_0":2574,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437630.5681,"col_index":36,"row_index":17}},{"id":2575,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388482103],[9.942409039,55.388392808],[9.942566244,55.388392808],[9.942566244,55.388482103],[9.942409039,55.388482103]]]},"properties":{"id":2575,"top":7437630.5681,"id_0":2575,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437613.0681,"col_index":36,"row_index":18}},{"id":2576,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388392808],[9.942409039,55.388303514],[9.942566244,55.388303514],[9.942566244,55.388392808],[9.942409039,55.388392808]]]},"properties":{"id":2576,"top":7437613.0681,"id_0":2576,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437595.5681,"col_index":36,"row_index":19}},{"id":2577,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388303514],[9.942409039,55.38821422],[9.942566244,55.38821422],[9.942566244,55.388303514],[9.942409039,55.388303514]]]},"properties":{"id":2577,"top":7437595.5681,"id_0":2577,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437578.0681,"col_index":36,"row_index":20}},{"id":2578,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38821422],[9.942409039,55.388124925],[9.942566244,55.388124925],[9.942566244,55.38821422],[9.942409039,55.38821422]]]},"properties":{"id":2578,"top":7437578.0681,"id_0":2578,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437560.5681,"col_index":36,"row_index":21}},{"id":2579,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.388124925],[9.942409039,55.38803563],[9.942566244,55.38803563],[9.942566244,55.388124925],[9.942409039,55.388124925]]]},"properties":{"id":2579,"top":7437560.5681,"id_0":2579,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437543.0681,"col_index":36,"row_index":22}},{"id":2580,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38803563],[9.942409039,55.387946335],[9.942566244,55.387946335],[9.942566244,55.38803563],[9.942409039,55.38803563]]]},"properties":{"id":2580,"top":7437543.0681,"id_0":2580,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437525.5681,"col_index":36,"row_index":23}},{"id":2581,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387946335],[9.942409039,55.38785704],[9.942566244,55.38785704],[9.942566244,55.387946335],[9.942409039,55.387946335]]]},"properties":{"id":2581,"top":7437525.5681,"id_0":2581,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437508.0681,"col_index":36,"row_index":24}},{"id":2582,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38785704],[9.942409039,55.387767744],[9.942566244,55.387767744],[9.942566244,55.38785704],[9.942409039,55.38785704]]]},"properties":{"id":2582,"top":7437508.0681,"id_0":2582,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437490.5681,"col_index":36,"row_index":25}},{"id":2583,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387767744],[9.942409039,55.387678448],[9.942566244,55.387678448],[9.942566244,55.387767744],[9.942409039,55.387767744]]]},"properties":{"id":2583,"top":7437490.5681,"id_0":2583,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437473.0681,"col_index":36,"row_index":26}},{"id":2584,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387678448],[9.942409039,55.387589153],[9.942566244,55.387589153],[9.942566244,55.387678448],[9.942409039,55.387678448]]]},"properties":{"id":2584,"top":7437473.0681,"id_0":2584,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437455.5681,"col_index":36,"row_index":27}},{"id":2585,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387589153],[9.942409039,55.387499856],[9.942566244,55.387499856],[9.942566244,55.387589153],[9.942409039,55.387589153]]]},"properties":{"id":2585,"top":7437455.5681,"id_0":2585,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437438.0681,"col_index":36,"row_index":28}},{"id":2586,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387499856],[9.942409039,55.38741056],[9.942566244,55.38741056],[9.942566244,55.387499856],[9.942409039,55.387499856]]]},"properties":{"id":2586,"top":7437438.0681,"id_0":2586,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437420.5681,"col_index":36,"row_index":29}},{"id":2587,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38741056],[9.942409039,55.387321264],[9.942566244,55.387321264],[9.942566244,55.38741056],[9.942409039,55.38741056]]]},"properties":{"id":2587,"top":7437420.5681,"id_0":2587,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437403.0681,"col_index":36,"row_index":30}},{"id":2588,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387321264],[9.942409039,55.387231967],[9.942566244,55.387231967],[9.942566244,55.387321264],[9.942409039,55.387321264]]]},"properties":{"id":2588,"top":7437403.0681,"id_0":2588,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437385.5681,"col_index":36,"row_index":31}},{"id":2589,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387231967],[9.942409039,55.38714267],[9.942566244,55.38714267],[9.942566244,55.387231967],[9.942409039,55.387231967]]]},"properties":{"id":2589,"top":7437385.5681,"id_0":2589,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437368.0681,"col_index":36,"row_index":32}},{"id":2590,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38714267],[9.942409039,55.387053373],[9.942566244,55.387053373],[9.942566244,55.38714267],[9.942409039,55.38714267]]]},"properties":{"id":2590,"top":7437368.0681,"id_0":2590,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437350.5681,"col_index":36,"row_index":33}},{"id":2591,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.387053373],[9.942409039,55.386964076],[9.942566244,55.386964076],[9.942566244,55.387053373],[9.942409039,55.387053373]]]},"properties":{"id":2591,"top":7437350.5681,"id_0":2591,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437333.0681,"col_index":36,"row_index":34}},{"id":2592,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386964076],[9.942409039,55.386874778],[9.942566244,55.386874778],[9.942566244,55.386964076],[9.942409039,55.386964076]]]},"properties":{"id":2592,"top":7437333.0681,"id_0":2592,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437315.5681,"col_index":36,"row_index":35}},{"id":2593,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386874778],[9.942409039,55.38678548],[9.942566244,55.38678548],[9.942566244,55.386874778],[9.942409039,55.386874778]]]},"properties":{"id":2593,"top":7437315.5681,"id_0":2593,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437298.0681,"col_index":36,"row_index":36}},{"id":2594,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38678548],[9.942409039,55.386696182],[9.942566244,55.386696182],[9.942566244,55.38678548],[9.942409039,55.38678548]]]},"properties":{"id":2594,"top":7437298.0681,"id_0":2594,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437280.5681,"col_index":36,"row_index":37}},{"id":2595,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386696182],[9.942409039,55.386606884],[9.942566244,55.386606884],[9.942566244,55.386696182],[9.942409039,55.386696182]]]},"properties":{"id":2595,"top":7437280.5681,"id_0":2595,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437263.0681,"col_index":36,"row_index":38}},{"id":2596,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386606884],[9.942409039,55.386517586],[9.942566244,55.386517586],[9.942566244,55.386606884],[9.942409039,55.386606884]]]},"properties":{"id":2596,"top":7437263.0681,"id_0":2596,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437245.5681,"col_index":36,"row_index":39}},{"id":2597,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386517586],[9.942409039,55.386428287],[9.942566244,55.386428287],[9.942566244,55.386517586],[9.942409039,55.386517586]]]},"properties":{"id":2597,"top":7437245.5681,"id_0":2597,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437228.0681,"col_index":36,"row_index":40}},{"id":2598,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386428287],[9.942409039,55.386338989],[9.942566244,55.386338989],[9.942566244,55.386428287],[9.942409039,55.386428287]]]},"properties":{"id":2598,"top":7437228.0681,"id_0":2598,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437210.5681,"col_index":36,"row_index":41}},{"id":2599,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386338989],[9.942409039,55.38624969],[9.942566244,55.38624969],[9.942566244,55.386338989],[9.942409039,55.386338989]]]},"properties":{"id":2599,"top":7437210.5681,"id_0":2599,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437193.0681,"col_index":36,"row_index":42}},{"id":2600,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38624969],[9.942409039,55.386160391],[9.942566244,55.386160391],[9.942566244,55.38624969],[9.942409039,55.38624969]]]},"properties":{"id":2600,"top":7437193.0681,"id_0":2600,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437175.5681,"col_index":36,"row_index":43}},{"id":2601,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386160391],[9.942409039,55.386071091],[9.942566244,55.386071091],[9.942566244,55.386160391],[9.942409039,55.386160391]]]},"properties":{"id":2601,"top":7437175.5681,"id_0":2601,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437158.0681,"col_index":36,"row_index":44}},{"id":2602,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.386071091],[9.942409039,55.385981792],[9.942566244,55.385981792],[9.942566244,55.386071091],[9.942409039,55.386071091]]]},"properties":{"id":2602,"top":7437158.0681,"id_0":2602,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437140.5681,"col_index":36,"row_index":45}},{"id":2603,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385981792],[9.942409039,55.385892492],[9.942566244,55.385892492],[9.942566244,55.385981792],[9.942409039,55.385981792]]]},"properties":{"id":2603,"top":7437140.5681,"id_0":2603,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437123.0681,"col_index":36,"row_index":46}},{"id":2604,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385892492],[9.942409039,55.385803192],[9.942566244,55.385803192],[9.942566244,55.385892492],[9.942409039,55.385892492]]]},"properties":{"id":2604,"top":7437123.0681,"id_0":2604,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437105.5681,"col_index":36,"row_index":47}},{"id":2605,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385803192],[9.942409039,55.385713892],[9.942566244,55.385713892],[9.942566244,55.385803192],[9.942409039,55.385803192]]]},"properties":{"id":2605,"top":7437105.5681,"id_0":2605,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437088.0681,"col_index":36,"row_index":48}},{"id":2606,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385713892],[9.942409039,55.385624592],[9.942566244,55.385624592],[9.942566244,55.385713892],[9.942409039,55.385713892]]]},"properties":{"id":2606,"top":7437088.0681,"id_0":2606,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437070.5681,"col_index":36,"row_index":49}},{"id":2607,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385624592],[9.942409039,55.385535291],[9.942566244,55.385535291],[9.942566244,55.385624592],[9.942409039,55.385624592]]]},"properties":{"id":2607,"top":7437070.5681,"id_0":2607,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437053.0681,"col_index":36,"row_index":50}},{"id":2608,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385535291],[9.942409039,55.38544599],[9.942566244,55.38544599],[9.942566244,55.385535291],[9.942409039,55.385535291]]]},"properties":{"id":2608,"top":7437053.0681,"id_0":2608,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437035.5681,"col_index":36,"row_index":51}},{"id":2609,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38544599],[9.942409039,55.385356689],[9.942566244,55.385356689],[9.942566244,55.38544599],[9.942409039,55.38544599]]]},"properties":{"id":2609,"top":7437035.5681,"id_0":2609,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437018.0681,"col_index":36,"row_index":52}},{"id":2610,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385356689],[9.942409039,55.385267388],[9.942566244,55.385267388],[9.942566244,55.385356689],[9.942409039,55.385356689]]]},"properties":{"id":2610,"top":7437018.0681,"id_0":2610,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7437000.5681,"col_index":36,"row_index":53}},{"id":2611,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385267388],[9.942409039,55.385178087],[9.942566244,55.385178087],[9.942566244,55.385267388],[9.942409039,55.385267388]]]},"properties":{"id":2611,"top":7437000.5681,"id_0":2611,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436983.0681,"col_index":36,"row_index":54}},{"id":2612,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385178087],[9.942409039,55.385088785],[9.942566244,55.385088785],[9.942566244,55.385178087],[9.942409039,55.385178087]]]},"properties":{"id":2612,"top":7436983.0681,"id_0":2612,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436965.5681,"col_index":36,"row_index":55}},{"id":2613,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.385088785],[9.942409039,55.384999484],[9.942566244,55.384999484],[9.942566244,55.385088785],[9.942409039,55.385088785]]]},"properties":{"id":2613,"top":7436965.5681,"id_0":2613,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436948.0681,"col_index":36,"row_index":56}},{"id":2614,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384999484],[9.942409039,55.384910182],[9.942566244,55.384910182],[9.942566244,55.384999484],[9.942409039,55.384999484]]]},"properties":{"id":2614,"top":7436948.0681,"id_0":2614,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436930.5681,"col_index":36,"row_index":57}},{"id":2615,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384910182],[9.942409039,55.38482088],[9.942566244,55.38482088],[9.942566244,55.384910182],[9.942409039,55.384910182]]]},"properties":{"id":2615,"top":7436930.5681,"id_0":2615,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436913.0681,"col_index":36,"row_index":58}},{"id":2616,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.38482088],[9.942409039,55.384731577],[9.942566244,55.384731577],[9.942566244,55.38482088],[9.942409039,55.38482088]]]},"properties":{"id":2616,"top":7436913.0681,"id_0":2616,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436895.5681,"col_index":36,"row_index":59}},{"id":2617,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384731577],[9.942409039,55.384642275],[9.942566244,55.384642275],[9.942566244,55.384731577],[9.942409039,55.384731577]]]},"properties":{"id":2617,"top":7436895.5681,"id_0":2617,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436878.0681,"col_index":36,"row_index":60}},{"id":2618,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384642275],[9.942409039,55.384552972],[9.942566244,55.384552972],[9.942566244,55.384642275],[9.942409039,55.384642275]]]},"properties":{"id":2618,"top":7436878.0681,"id_0":2618,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436860.5681,"col_index":36,"row_index":61}},{"id":2619,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384552972],[9.942409039,55.384463669],[9.942566244,55.384463669],[9.942566244,55.384552972],[9.942409039,55.384552972]]]},"properties":{"id":2619,"top":7436860.5681,"id_0":2619,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436843.0681,"col_index":36,"row_index":62}},{"id":2620,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384463669],[9.942409039,55.384374366],[9.942566244,55.384374366],[9.942566244,55.384463669],[9.942409039,55.384463669]]]},"properties":{"id":2620,"top":7436843.0681,"id_0":2620,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436825.5681,"col_index":36,"row_index":63}},{"id":2621,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384374366],[9.942409039,55.384285062],[9.942566244,55.384285062],[9.942566244,55.384374366],[9.942409039,55.384374366]]]},"properties":{"id":2621,"top":7436825.5681,"id_0":2621,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436808.0681,"col_index":36,"row_index":64}},{"id":2622,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384285062],[9.942409039,55.384195759],[9.942566244,55.384195759],[9.942566244,55.384285062],[9.942409039,55.384285062]]]},"properties":{"id":2622,"top":7436808.0681,"id_0":2622,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436790.5681,"col_index":36,"row_index":65}},{"id":2623,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384195759],[9.942409039,55.384106455],[9.942566244,55.384106455],[9.942566244,55.384195759],[9.942409039,55.384195759]]]},"properties":{"id":2623,"top":7436790.5681,"id_0":2623,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436773.0681,"col_index":36,"row_index":66}},{"id":2624,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384106455],[9.942409039,55.384017151],[9.942566244,55.384017151],[9.942566244,55.384106455],[9.942409039,55.384106455]]]},"properties":{"id":2624,"top":7436773.0681,"id_0":2624,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436755.5681,"col_index":36,"row_index":67}},{"id":2625,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.384017151],[9.942409039,55.383927847],[9.942566244,55.383927847],[9.942566244,55.384017151],[9.942409039,55.384017151]]]},"properties":{"id":2625,"top":7436755.5681,"id_0":2625,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436738.0681,"col_index":36,"row_index":68}},{"id":2626,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.383927847],[9.942409039,55.383838543],[9.942566244,55.383838543],[9.942566244,55.383927847],[9.942409039,55.383927847]]]},"properties":{"id":2626,"top":7436738.0681,"id_0":2626,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436720.5681,"col_index":36,"row_index":69}},{"id":2627,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.383838543],[9.942409039,55.383749238],[9.942566244,55.383749238],[9.942566244,55.383838543],[9.942409039,55.383838543]]]},"properties":{"id":2627,"top":7436720.5681,"id_0":2627,"left":1106783.9115,"Label":null,"right":1106801.4115,"bottom":7436703.0681,"col_index":36,"row_index":70}},{"id":2629,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.390000071],[9.942566244,55.38991078],[9.94272345,55.38991078],[9.94272345,55.390000071],[9.942566244,55.390000071]]]},"properties":{"id":2629,"top":7437928.0681,"id_0":2629,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437910.5681,"col_index":37,"row_index":1}},{"id":2630,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38991078],[9.942566244,55.38982149],[9.94272345,55.38982149],[9.94272345,55.38991078],[9.942566244,55.38991078]]]},"properties":{"id":2630,"top":7437910.5681,"id_0":2630,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437893.0681,"col_index":37,"row_index":2}},{"id":2631,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38982149],[9.942566244,55.389732199],[9.94272345,55.389732199],[9.94272345,55.38982149],[9.942566244,55.38982149]]]},"properties":{"id":2631,"top":7437893.0681,"id_0":2631,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437875.5681,"col_index":37,"row_index":3}},{"id":2632,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389732199],[9.942566244,55.389642907],[9.94272345,55.389642907],[9.94272345,55.389732199],[9.942566244,55.389732199]]]},"properties":{"id":2632,"top":7437875.5681,"id_0":2632,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437858.0681,"col_index":37,"row_index":4}},{"id":2633,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389642907],[9.942566244,55.389553616],[9.94272345,55.389553616],[9.94272345,55.389642907],[9.942566244,55.389642907]]]},"properties":{"id":2633,"top":7437858.0681,"id_0":2633,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437840.5681,"col_index":37,"row_index":5}},{"id":2634,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389553616],[9.942566244,55.389464324],[9.94272345,55.389464324],[9.94272345,55.389553616],[9.942566244,55.389553616]]]},"properties":{"id":2634,"top":7437840.5681,"id_0":2634,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437823.0681,"col_index":37,"row_index":6}},{"id":2635,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389464324],[9.942566244,55.389375032],[9.94272345,55.389375032],[9.94272345,55.389464324],[9.942566244,55.389464324]]]},"properties":{"id":2635,"top":7437823.0681,"id_0":2635,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437805.5681,"col_index":37,"row_index":7}},{"id":2636,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389375032],[9.942566244,55.38928574],[9.94272345,55.38928574],[9.94272345,55.389375032],[9.942566244,55.389375032]]]},"properties":{"id":2636,"top":7437805.5681,"id_0":2636,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437788.0681,"col_index":37,"row_index":8}},{"id":2637,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38928574],[9.942566244,55.389196448],[9.94272345,55.389196448],[9.94272345,55.38928574],[9.942566244,55.38928574]]]},"properties":{"id":2637,"top":7437788.0681,"id_0":2637,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437770.5681,"col_index":37,"row_index":9}},{"id":2638,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389196448],[9.942566244,55.389107155],[9.94272345,55.389107155],[9.94272345,55.389196448],[9.942566244,55.389196448]]]},"properties":{"id":2638,"top":7437770.5681,"id_0":2638,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437753.0681,"col_index":37,"row_index":10}},{"id":2639,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389107155],[9.942566244,55.389017863],[9.94272345,55.389017863],[9.94272345,55.389107155],[9.942566244,55.389107155]]]},"properties":{"id":2639,"top":7437753.0681,"id_0":2639,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437735.5681,"col_index":37,"row_index":11}},{"id":2640,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.389017863],[9.942566244,55.38892857],[9.94272345,55.38892857],[9.94272345,55.389017863],[9.942566244,55.389017863]]]},"properties":{"id":2640,"top":7437735.5681,"id_0":2640,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437718.0681,"col_index":37,"row_index":12}},{"id":2641,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38892857],[9.942566244,55.388839277],[9.94272345,55.388839277],[9.94272345,55.38892857],[9.942566244,55.38892857]]]},"properties":{"id":2641,"top":7437718.0681,"id_0":2641,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437700.5681,"col_index":37,"row_index":13}},{"id":2642,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388839277],[9.942566244,55.388749984],[9.94272345,55.388749984],[9.94272345,55.388839277],[9.942566244,55.388839277]]]},"properties":{"id":2642,"top":7437700.5681,"id_0":2642,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437683.0681,"col_index":37,"row_index":14}},{"id":2643,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388749984],[9.942566244,55.38866069],[9.94272345,55.38866069],[9.94272345,55.388749984],[9.942566244,55.388749984]]]},"properties":{"id":2643,"top":7437683.0681,"id_0":2643,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437665.5681,"col_index":37,"row_index":15}},{"id":2644,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38866069],[9.942566244,55.388571396],[9.94272345,55.388571396],[9.94272345,55.38866069],[9.942566244,55.38866069]]]},"properties":{"id":2644,"top":7437665.5681,"id_0":2644,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437648.0681,"col_index":37,"row_index":16}},{"id":2645,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388571396],[9.942566244,55.388482103],[9.94272345,55.388482103],[9.94272345,55.388571396],[9.942566244,55.388571396]]]},"properties":{"id":2645,"top":7437648.0681,"id_0":2645,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437630.5681,"col_index":37,"row_index":17}},{"id":2646,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388482103],[9.942566244,55.388392808],[9.94272345,55.388392808],[9.94272345,55.388482103],[9.942566244,55.388482103]]]},"properties":{"id":2646,"top":7437630.5681,"id_0":2646,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437613.0681,"col_index":37,"row_index":18}},{"id":2647,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388392808],[9.942566244,55.388303514],[9.94272345,55.388303514],[9.94272345,55.388392808],[9.942566244,55.388392808]]]},"properties":{"id":2647,"top":7437613.0681,"id_0":2647,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437595.5681,"col_index":37,"row_index":19}},{"id":2648,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388303514],[9.942566244,55.38821422],[9.94272345,55.38821422],[9.94272345,55.388303514],[9.942566244,55.388303514]]]},"properties":{"id":2648,"top":7437595.5681,"id_0":2648,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437578.0681,"col_index":37,"row_index":20}},{"id":2649,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38821422],[9.942566244,55.388124925],[9.94272345,55.388124925],[9.94272345,55.38821422],[9.942566244,55.38821422]]]},"properties":{"id":2649,"top":7437578.0681,"id_0":2649,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437560.5681,"col_index":37,"row_index":21}},{"id":2650,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.388124925],[9.942566244,55.38803563],[9.94272345,55.38803563],[9.94272345,55.388124925],[9.942566244,55.388124925]]]},"properties":{"id":2650,"top":7437560.5681,"id_0":2650,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437543.0681,"col_index":37,"row_index":22}},{"id":2651,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38803563],[9.942566244,55.387946335],[9.94272345,55.387946335],[9.94272345,55.38803563],[9.942566244,55.38803563]]]},"properties":{"id":2651,"top":7437543.0681,"id_0":2651,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437525.5681,"col_index":37,"row_index":23}},{"id":2652,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387946335],[9.942566244,55.38785704],[9.94272345,55.38785704],[9.94272345,55.387946335],[9.942566244,55.387946335]]]},"properties":{"id":2652,"top":7437525.5681,"id_0":2652,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437508.0681,"col_index":37,"row_index":24}},{"id":2653,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38785704],[9.942566244,55.387767744],[9.94272345,55.387767744],[9.94272345,55.38785704],[9.942566244,55.38785704]]]},"properties":{"id":2653,"top":7437508.0681,"id_0":2653,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437490.5681,"col_index":37,"row_index":25}},{"id":2654,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387767744],[9.942566244,55.387678448],[9.94272345,55.387678448],[9.94272345,55.387767744],[9.942566244,55.387767744]]]},"properties":{"id":2654,"top":7437490.5681,"id_0":2654,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437473.0681,"col_index":37,"row_index":26}},{"id":2655,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387678448],[9.942566244,55.387589153],[9.94272345,55.387589153],[9.94272345,55.387678448],[9.942566244,55.387678448]]]},"properties":{"id":2655,"top":7437473.0681,"id_0":2655,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437455.5681,"col_index":37,"row_index":27}},{"id":2656,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387589153],[9.942566244,55.387499856],[9.94272345,55.387499856],[9.94272345,55.387589153],[9.942566244,55.387589153]]]},"properties":{"id":2656,"top":7437455.5681,"id_0":2656,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437438.0681,"col_index":37,"row_index":28}},{"id":2657,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387499856],[9.942566244,55.38741056],[9.94272345,55.38741056],[9.94272345,55.387499856],[9.942566244,55.387499856]]]},"properties":{"id":2657,"top":7437438.0681,"id_0":2657,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437420.5681,"col_index":37,"row_index":29}},{"id":2658,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38741056],[9.942566244,55.387321264],[9.94272345,55.387321264],[9.94272345,55.38741056],[9.942566244,55.38741056]]]},"properties":{"id":2658,"top":7437420.5681,"id_0":2658,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437403.0681,"col_index":37,"row_index":30}},{"id":2659,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387321264],[9.942566244,55.387231967],[9.94272345,55.387231967],[9.94272345,55.387321264],[9.942566244,55.387321264]]]},"properties":{"id":2659,"top":7437403.0681,"id_0":2659,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437385.5681,"col_index":37,"row_index":31}},{"id":2660,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387231967],[9.942566244,55.38714267],[9.94272345,55.38714267],[9.94272345,55.387231967],[9.942566244,55.387231967]]]},"properties":{"id":2660,"top":7437385.5681,"id_0":2660,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437368.0681,"col_index":37,"row_index":32}},{"id":2661,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38714267],[9.942566244,55.387053373],[9.94272345,55.387053373],[9.94272345,55.38714267],[9.942566244,55.38714267]]]},"properties":{"id":2661,"top":7437368.0681,"id_0":2661,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437350.5681,"col_index":37,"row_index":33}},{"id":2662,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.387053373],[9.942566244,55.386964076],[9.94272345,55.386964076],[9.94272345,55.387053373],[9.942566244,55.387053373]]]},"properties":{"id":2662,"top":7437350.5681,"id_0":2662,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437333.0681,"col_index":37,"row_index":34}},{"id":2663,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386964076],[9.942566244,55.386874778],[9.94272345,55.386874778],[9.94272345,55.386964076],[9.942566244,55.386964076]]]},"properties":{"id":2663,"top":7437333.0681,"id_0":2663,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437315.5681,"col_index":37,"row_index":35}},{"id":2664,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386874778],[9.942566244,55.38678548],[9.94272345,55.38678548],[9.94272345,55.386874778],[9.942566244,55.386874778]]]},"properties":{"id":2664,"top":7437315.5681,"id_0":2664,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437298.0681,"col_index":37,"row_index":36}},{"id":2665,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38678548],[9.942566244,55.386696182],[9.94272345,55.386696182],[9.94272345,55.38678548],[9.942566244,55.38678548]]]},"properties":{"id":2665,"top":7437298.0681,"id_0":2665,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437280.5681,"col_index":37,"row_index":37}},{"id":2666,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386696182],[9.942566244,55.386606884],[9.94272345,55.386606884],[9.94272345,55.386696182],[9.942566244,55.386696182]]]},"properties":{"id":2666,"top":7437280.5681,"id_0":2666,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437263.0681,"col_index":37,"row_index":38}},{"id":2667,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386606884],[9.942566244,55.386517586],[9.94272345,55.386517586],[9.94272345,55.386606884],[9.942566244,55.386606884]]]},"properties":{"id":2667,"top":7437263.0681,"id_0":2667,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437245.5681,"col_index":37,"row_index":39}},{"id":2668,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386517586],[9.942566244,55.386428287],[9.94272345,55.386428287],[9.94272345,55.386517586],[9.942566244,55.386517586]]]},"properties":{"id":2668,"top":7437245.5681,"id_0":2668,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437228.0681,"col_index":37,"row_index":40}},{"id":2669,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386428287],[9.942566244,55.386338989],[9.94272345,55.386338989],[9.94272345,55.386428287],[9.942566244,55.386428287]]]},"properties":{"id":2669,"top":7437228.0681,"id_0":2669,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437210.5681,"col_index":37,"row_index":41}},{"id":2670,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386338989],[9.942566244,55.38624969],[9.94272345,55.38624969],[9.94272345,55.386338989],[9.942566244,55.386338989]]]},"properties":{"id":2670,"top":7437210.5681,"id_0":2670,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437193.0681,"col_index":37,"row_index":42}},{"id":2671,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38624969],[9.942566244,55.386160391],[9.94272345,55.386160391],[9.94272345,55.38624969],[9.942566244,55.38624969]]]},"properties":{"id":2671,"top":7437193.0681,"id_0":2671,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437175.5681,"col_index":37,"row_index":43}},{"id":2672,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386160391],[9.942566244,55.386071091],[9.94272345,55.386071091],[9.94272345,55.386160391],[9.942566244,55.386160391]]]},"properties":{"id":2672,"top":7437175.5681,"id_0":2672,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437158.0681,"col_index":37,"row_index":44}},{"id":2673,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.386071091],[9.942566244,55.385981792],[9.94272345,55.385981792],[9.94272345,55.386071091],[9.942566244,55.386071091]]]},"properties":{"id":2673,"top":7437158.0681,"id_0":2673,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437140.5681,"col_index":37,"row_index":45}},{"id":2674,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385981792],[9.942566244,55.385892492],[9.94272345,55.385892492],[9.94272345,55.385981792],[9.942566244,55.385981792]]]},"properties":{"id":2674,"top":7437140.5681,"id_0":2674,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437123.0681,"col_index":37,"row_index":46}},{"id":2675,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385892492],[9.942566244,55.385803192],[9.94272345,55.385803192],[9.94272345,55.385892492],[9.942566244,55.385892492]]]},"properties":{"id":2675,"top":7437123.0681,"id_0":2675,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437105.5681,"col_index":37,"row_index":47}},{"id":2676,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385803192],[9.942566244,55.385713892],[9.94272345,55.385713892],[9.94272345,55.385803192],[9.942566244,55.385803192]]]},"properties":{"id":2676,"top":7437105.5681,"id_0":2676,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437088.0681,"col_index":37,"row_index":48}},{"id":2677,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385713892],[9.942566244,55.385624592],[9.94272345,55.385624592],[9.94272345,55.385713892],[9.942566244,55.385713892]]]},"properties":{"id":2677,"top":7437088.0681,"id_0":2677,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437070.5681,"col_index":37,"row_index":49}},{"id":2678,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385624592],[9.942566244,55.385535291],[9.94272345,55.385535291],[9.94272345,55.385624592],[9.942566244,55.385624592]]]},"properties":{"id":2678,"top":7437070.5681,"id_0":2678,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437053.0681,"col_index":37,"row_index":50}},{"id":2679,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385535291],[9.942566244,55.38544599],[9.94272345,55.38544599],[9.94272345,55.385535291],[9.942566244,55.385535291]]]},"properties":{"id":2679,"top":7437053.0681,"id_0":2679,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437035.5681,"col_index":37,"row_index":51}},{"id":2680,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38544599],[9.942566244,55.385356689],[9.94272345,55.385356689],[9.94272345,55.38544599],[9.942566244,55.38544599]]]},"properties":{"id":2680,"top":7437035.5681,"id_0":2680,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437018.0681,"col_index":37,"row_index":52}},{"id":2681,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385356689],[9.942566244,55.385267388],[9.94272345,55.385267388],[9.94272345,55.385356689],[9.942566244,55.385356689]]]},"properties":{"id":2681,"top":7437018.0681,"id_0":2681,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7437000.5681,"col_index":37,"row_index":53}},{"id":2682,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385267388],[9.942566244,55.385178087],[9.94272345,55.385178087],[9.94272345,55.385267388],[9.942566244,55.385267388]]]},"properties":{"id":2682,"top":7437000.5681,"id_0":2682,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436983.0681,"col_index":37,"row_index":54}},{"id":2683,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385178087],[9.942566244,55.385088785],[9.94272345,55.385088785],[9.94272345,55.385178087],[9.942566244,55.385178087]]]},"properties":{"id":2683,"top":7436983.0681,"id_0":2683,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436965.5681,"col_index":37,"row_index":55}},{"id":2684,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.385088785],[9.942566244,55.384999484],[9.94272345,55.384999484],[9.94272345,55.385088785],[9.942566244,55.385088785]]]},"properties":{"id":2684,"top":7436965.5681,"id_0":2684,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436948.0681,"col_index":37,"row_index":56}},{"id":2685,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384999484],[9.942566244,55.384910182],[9.94272345,55.384910182],[9.94272345,55.384999484],[9.942566244,55.384999484]]]},"properties":{"id":2685,"top":7436948.0681,"id_0":2685,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436930.5681,"col_index":37,"row_index":57}},{"id":2686,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384910182],[9.942566244,55.38482088],[9.94272345,55.38482088],[9.94272345,55.384910182],[9.942566244,55.384910182]]]},"properties":{"id":2686,"top":7436930.5681,"id_0":2686,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436913.0681,"col_index":37,"row_index":58}},{"id":2687,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.38482088],[9.942566244,55.384731577],[9.94272345,55.384731577],[9.94272345,55.38482088],[9.942566244,55.38482088]]]},"properties":{"id":2687,"top":7436913.0681,"id_0":2687,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436895.5681,"col_index":37,"row_index":59}},{"id":2688,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384731577],[9.942566244,55.384642275],[9.94272345,55.384642275],[9.94272345,55.384731577],[9.942566244,55.384731577]]]},"properties":{"id":2688,"top":7436895.5681,"id_0":2688,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436878.0681,"col_index":37,"row_index":60}},{"id":2689,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384642275],[9.942566244,55.384552972],[9.94272345,55.384552972],[9.94272345,55.384642275],[9.942566244,55.384642275]]]},"properties":{"id":2689,"top":7436878.0681,"id_0":2689,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436860.5681,"col_index":37,"row_index":61}},{"id":2690,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384552972],[9.942566244,55.384463669],[9.94272345,55.384463669],[9.94272345,55.384552972],[9.942566244,55.384552972]]]},"properties":{"id":2690,"top":7436860.5681,"id_0":2690,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436843.0681,"col_index":37,"row_index":62}},{"id":2691,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384463669],[9.942566244,55.384374366],[9.94272345,55.384374366],[9.94272345,55.384463669],[9.942566244,55.384463669]]]},"properties":{"id":2691,"top":7436843.0681,"id_0":2691,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436825.5681,"col_index":37,"row_index":63}},{"id":2692,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384374366],[9.942566244,55.384285062],[9.94272345,55.384285062],[9.94272345,55.384374366],[9.942566244,55.384374366]]]},"properties":{"id":2692,"top":7436825.5681,"id_0":2692,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436808.0681,"col_index":37,"row_index":64}},{"id":2693,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384285062],[9.942566244,55.384195759],[9.94272345,55.384195759],[9.94272345,55.384285062],[9.942566244,55.384285062]]]},"properties":{"id":2693,"top":7436808.0681,"id_0":2693,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436790.5681,"col_index":37,"row_index":65}},{"id":2694,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384195759],[9.942566244,55.384106455],[9.94272345,55.384106455],[9.94272345,55.384195759],[9.942566244,55.384195759]]]},"properties":{"id":2694,"top":7436790.5681,"id_0":2694,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436773.0681,"col_index":37,"row_index":66}},{"id":2695,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384106455],[9.942566244,55.384017151],[9.94272345,55.384017151],[9.94272345,55.384106455],[9.942566244,55.384106455]]]},"properties":{"id":2695,"top":7436773.0681,"id_0":2695,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436755.5681,"col_index":37,"row_index":67}},{"id":2696,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.384017151],[9.942566244,55.383927847],[9.94272345,55.383927847],[9.94272345,55.384017151],[9.942566244,55.384017151]]]},"properties":{"id":2696,"top":7436755.5681,"id_0":2696,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436738.0681,"col_index":37,"row_index":68}},{"id":2697,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.383927847],[9.942566244,55.383838543],[9.94272345,55.383838543],[9.94272345,55.383927847],[9.942566244,55.383927847]]]},"properties":{"id":2697,"top":7436738.0681,"id_0":2697,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436720.5681,"col_index":37,"row_index":69}},{"id":2698,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.383838543],[9.942566244,55.383749238],[9.94272345,55.383749238],[9.94272345,55.383838543],[9.942566244,55.383838543]]]},"properties":{"id":2698,"top":7436720.5681,"id_0":2698,"left":1106801.4115,"Label":null,"right":1106818.9115,"bottom":7436703.0681,"col_index":37,"row_index":70}},{"id":2700,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.390000071],[9.94272345,55.38991078],[9.942880655,55.38991078],[9.942880655,55.390000071],[9.94272345,55.390000071]]]},"properties":{"id":2700,"top":7437928.0681,"id_0":2700,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437910.5681,"col_index":38,"row_index":1}},{"id":2701,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38991078],[9.94272345,55.38982149],[9.942880655,55.38982149],[9.942880655,55.38991078],[9.94272345,55.38991078]]]},"properties":{"id":2701,"top":7437910.5681,"id_0":2701,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437893.0681,"col_index":38,"row_index":2}},{"id":2702,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38982149],[9.94272345,55.389732199],[9.942880655,55.389732199],[9.942880655,55.38982149],[9.94272345,55.38982149]]]},"properties":{"id":2702,"top":7437893.0681,"id_0":2702,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437875.5681,"col_index":38,"row_index":3}},{"id":2703,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389732199],[9.94272345,55.389642907],[9.942880655,55.389642907],[9.942880655,55.389732199],[9.94272345,55.389732199]]]},"properties":{"id":2703,"top":7437875.5681,"id_0":2703,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437858.0681,"col_index":38,"row_index":4}},{"id":2704,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389642907],[9.94272345,55.389553616],[9.942880655,55.389553616],[9.942880655,55.389642907],[9.94272345,55.389642907]]]},"properties":{"id":2704,"top":7437858.0681,"id_0":2704,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437840.5681,"col_index":38,"row_index":5}},{"id":2705,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389553616],[9.94272345,55.389464324],[9.942880655,55.389464324],[9.942880655,55.389553616],[9.94272345,55.389553616]]]},"properties":{"id":2705,"top":7437840.5681,"id_0":2705,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437823.0681,"col_index":38,"row_index":6}},{"id":2706,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389464324],[9.94272345,55.389375032],[9.942880655,55.389375032],[9.942880655,55.389464324],[9.94272345,55.389464324]]]},"properties":{"id":2706,"top":7437823.0681,"id_0":2706,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437805.5681,"col_index":38,"row_index":7}},{"id":2707,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389375032],[9.94272345,55.38928574],[9.942880655,55.38928574],[9.942880655,55.389375032],[9.94272345,55.389375032]]]},"properties":{"id":2707,"top":7437805.5681,"id_0":2707,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437788.0681,"col_index":38,"row_index":8}},{"id":2708,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38928574],[9.94272345,55.389196448],[9.942880655,55.389196448],[9.942880655,55.38928574],[9.94272345,55.38928574]]]},"properties":{"id":2708,"top":7437788.0681,"id_0":2708,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437770.5681,"col_index":38,"row_index":9}},{"id":2709,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389196448],[9.94272345,55.389107155],[9.942880655,55.389107155],[9.942880655,55.389196448],[9.94272345,55.389196448]]]},"properties":{"id":2709,"top":7437770.5681,"id_0":2709,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437753.0681,"col_index":38,"row_index":10}},{"id":2710,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389107155],[9.94272345,55.389017863],[9.942880655,55.389017863],[9.942880655,55.389107155],[9.94272345,55.389107155]]]},"properties":{"id":2710,"top":7437753.0681,"id_0":2710,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437735.5681,"col_index":38,"row_index":11}},{"id":2711,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.389017863],[9.94272345,55.38892857],[9.942880655,55.38892857],[9.942880655,55.389017863],[9.94272345,55.389017863]]]},"properties":{"id":2711,"top":7437735.5681,"id_0":2711,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437718.0681,"col_index":38,"row_index":12}},{"id":2712,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38892857],[9.94272345,55.388839277],[9.942880655,55.388839277],[9.942880655,55.38892857],[9.94272345,55.38892857]]]},"properties":{"id":2712,"top":7437718.0681,"id_0":2712,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437700.5681,"col_index":38,"row_index":13}},{"id":2713,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388839277],[9.94272345,55.388749984],[9.942880655,55.388749984],[9.942880655,55.388839277],[9.94272345,55.388839277]]]},"properties":{"id":2713,"top":7437700.5681,"id_0":2713,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437683.0681,"col_index":38,"row_index":14}},{"id":2714,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388749984],[9.94272345,55.38866069],[9.942880655,55.38866069],[9.942880655,55.388749984],[9.94272345,55.388749984]]]},"properties":{"id":2714,"top":7437683.0681,"id_0":2714,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437665.5681,"col_index":38,"row_index":15}},{"id":2715,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38866069],[9.94272345,55.388571396],[9.942880655,55.388571396],[9.942880655,55.38866069],[9.94272345,55.38866069]]]},"properties":{"id":2715,"top":7437665.5681,"id_0":2715,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437648.0681,"col_index":38,"row_index":16}},{"id":2716,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388571396],[9.94272345,55.388482103],[9.942880655,55.388482103],[9.942880655,55.388571396],[9.94272345,55.388571396]]]},"properties":{"id":2716,"top":7437648.0681,"id_0":2716,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437630.5681,"col_index":38,"row_index":17}},{"id":2717,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388482103],[9.94272345,55.388392808],[9.942880655,55.388392808],[9.942880655,55.388482103],[9.94272345,55.388482103]]]},"properties":{"id":2717,"top":7437630.5681,"id_0":2717,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437613.0681,"col_index":38,"row_index":18}},{"id":2718,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388392808],[9.94272345,55.388303514],[9.942880655,55.388303514],[9.942880655,55.388392808],[9.94272345,55.388392808]]]},"properties":{"id":2718,"top":7437613.0681,"id_0":2718,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437595.5681,"col_index":38,"row_index":19}},{"id":2719,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388303514],[9.94272345,55.38821422],[9.942880655,55.38821422],[9.942880655,55.388303514],[9.94272345,55.388303514]]]},"properties":{"id":2719,"top":7437595.5681,"id_0":2719,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437578.0681,"col_index":38,"row_index":20}},{"id":2720,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38821422],[9.94272345,55.388124925],[9.942880655,55.388124925],[9.942880655,55.38821422],[9.94272345,55.38821422]]]},"properties":{"id":2720,"top":7437578.0681,"id_0":2720,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437560.5681,"col_index":38,"row_index":21}},{"id":2721,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.388124925],[9.94272345,55.38803563],[9.942880655,55.38803563],[9.942880655,55.388124925],[9.94272345,55.388124925]]]},"properties":{"id":2721,"top":7437560.5681,"id_0":2721,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437543.0681,"col_index":38,"row_index":22}},{"id":2722,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38803563],[9.94272345,55.387946335],[9.942880655,55.387946335],[9.942880655,55.38803563],[9.94272345,55.38803563]]]},"properties":{"id":2722,"top":7437543.0681,"id_0":2722,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437525.5681,"col_index":38,"row_index":23}},{"id":2723,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387946335],[9.94272345,55.38785704],[9.942880655,55.38785704],[9.942880655,55.387946335],[9.94272345,55.387946335]]]},"properties":{"id":2723,"top":7437525.5681,"id_0":2723,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437508.0681,"col_index":38,"row_index":24}},{"id":2724,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38785704],[9.94272345,55.387767744],[9.942880655,55.387767744],[9.942880655,55.38785704],[9.94272345,55.38785704]]]},"properties":{"id":2724,"top":7437508.0681,"id_0":2724,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437490.5681,"col_index":38,"row_index":25}},{"id":2725,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387767744],[9.94272345,55.387678448],[9.942880655,55.387678448],[9.942880655,55.387767744],[9.94272345,55.387767744]]]},"properties":{"id":2725,"top":7437490.5681,"id_0":2725,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437473.0681,"col_index":38,"row_index":26}},{"id":2726,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387678448],[9.94272345,55.387589153],[9.942880655,55.387589153],[9.942880655,55.387678448],[9.94272345,55.387678448]]]},"properties":{"id":2726,"top":7437473.0681,"id_0":2726,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437455.5681,"col_index":38,"row_index":27}},{"id":2727,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387589153],[9.94272345,55.387499856],[9.942880655,55.387499856],[9.942880655,55.387589153],[9.94272345,55.387589153]]]},"properties":{"id":2727,"top":7437455.5681,"id_0":2727,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437438.0681,"col_index":38,"row_index":28}},{"id":2728,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387499856],[9.94272345,55.38741056],[9.942880655,55.38741056],[9.942880655,55.387499856],[9.94272345,55.387499856]]]},"properties":{"id":2728,"top":7437438.0681,"id_0":2728,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437420.5681,"col_index":38,"row_index":29}},{"id":2729,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38741056],[9.94272345,55.387321264],[9.942880655,55.387321264],[9.942880655,55.38741056],[9.94272345,55.38741056]]]},"properties":{"id":2729,"top":7437420.5681,"id_0":2729,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437403.0681,"col_index":38,"row_index":30}},{"id":2730,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387321264],[9.94272345,55.387231967],[9.942880655,55.387231967],[9.942880655,55.387321264],[9.94272345,55.387321264]]]},"properties":{"id":2730,"top":7437403.0681,"id_0":2730,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437385.5681,"col_index":38,"row_index":31}},{"id":2731,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387231967],[9.94272345,55.38714267],[9.942880655,55.38714267],[9.942880655,55.387231967],[9.94272345,55.387231967]]]},"properties":{"id":2731,"top":7437385.5681,"id_0":2731,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437368.0681,"col_index":38,"row_index":32}},{"id":2732,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38714267],[9.94272345,55.387053373],[9.942880655,55.387053373],[9.942880655,55.38714267],[9.94272345,55.38714267]]]},"properties":{"id":2732,"top":7437368.0681,"id_0":2732,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437350.5681,"col_index":38,"row_index":33}},{"id":2733,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.387053373],[9.94272345,55.386964076],[9.942880655,55.386964076],[9.942880655,55.387053373],[9.94272345,55.387053373]]]},"properties":{"id":2733,"top":7437350.5681,"id_0":2733,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437333.0681,"col_index":38,"row_index":34}},{"id":2734,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386964076],[9.94272345,55.386874778],[9.942880655,55.386874778],[9.942880655,55.386964076],[9.94272345,55.386964076]]]},"properties":{"id":2734,"top":7437333.0681,"id_0":2734,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437315.5681,"col_index":38,"row_index":35}},{"id":2735,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386874778],[9.94272345,55.38678548],[9.942880655,55.38678548],[9.942880655,55.386874778],[9.94272345,55.386874778]]]},"properties":{"id":2735,"top":7437315.5681,"id_0":2735,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437298.0681,"col_index":38,"row_index":36}},{"id":2736,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38678548],[9.94272345,55.386696182],[9.942880655,55.386696182],[9.942880655,55.38678548],[9.94272345,55.38678548]]]},"properties":{"id":2736,"top":7437298.0681,"id_0":2736,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437280.5681,"col_index":38,"row_index":37}},{"id":2737,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386696182],[9.94272345,55.386606884],[9.942880655,55.386606884],[9.942880655,55.386696182],[9.94272345,55.386696182]]]},"properties":{"id":2737,"top":7437280.5681,"id_0":2737,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437263.0681,"col_index":38,"row_index":38}},{"id":2738,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386606884],[9.94272345,55.386517586],[9.942880655,55.386517586],[9.942880655,55.386606884],[9.94272345,55.386606884]]]},"properties":{"id":2738,"top":7437263.0681,"id_0":2738,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437245.5681,"col_index":38,"row_index":39}},{"id":2739,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386517586],[9.94272345,55.386428287],[9.942880655,55.386428287],[9.942880655,55.386517586],[9.94272345,55.386517586]]]},"properties":{"id":2739,"top":7437245.5681,"id_0":2739,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437228.0681,"col_index":38,"row_index":40}},{"id":2740,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386428287],[9.94272345,55.386338989],[9.942880655,55.386338989],[9.942880655,55.386428287],[9.94272345,55.386428287]]]},"properties":{"id":2740,"top":7437228.0681,"id_0":2740,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437210.5681,"col_index":38,"row_index":41}},{"id":2741,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386338989],[9.94272345,55.38624969],[9.942880655,55.38624969],[9.942880655,55.386338989],[9.94272345,55.386338989]]]},"properties":{"id":2741,"top":7437210.5681,"id_0":2741,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437193.0681,"col_index":38,"row_index":42}},{"id":2742,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38624969],[9.94272345,55.386160391],[9.942880655,55.386160391],[9.942880655,55.38624969],[9.94272345,55.38624969]]]},"properties":{"id":2742,"top":7437193.0681,"id_0":2742,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437175.5681,"col_index":38,"row_index":43}},{"id":2743,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386160391],[9.94272345,55.386071091],[9.942880655,55.386071091],[9.942880655,55.386160391],[9.94272345,55.386160391]]]},"properties":{"id":2743,"top":7437175.5681,"id_0":2743,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437158.0681,"col_index":38,"row_index":44}},{"id":2744,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.386071091],[9.94272345,55.385981792],[9.942880655,55.385981792],[9.942880655,55.386071091],[9.94272345,55.386071091]]]},"properties":{"id":2744,"top":7437158.0681,"id_0":2744,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437140.5681,"col_index":38,"row_index":45}},{"id":2745,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385981792],[9.94272345,55.385892492],[9.942880655,55.385892492],[9.942880655,55.385981792],[9.94272345,55.385981792]]]},"properties":{"id":2745,"top":7437140.5681,"id_0":2745,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437123.0681,"col_index":38,"row_index":46}},{"id":2746,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385892492],[9.94272345,55.385803192],[9.942880655,55.385803192],[9.942880655,55.385892492],[9.94272345,55.385892492]]]},"properties":{"id":2746,"top":7437123.0681,"id_0":2746,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437105.5681,"col_index":38,"row_index":47}},{"id":2747,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385803192],[9.94272345,55.385713892],[9.942880655,55.385713892],[9.942880655,55.385803192],[9.94272345,55.385803192]]]},"properties":{"id":2747,"top":7437105.5681,"id_0":2747,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437088.0681,"col_index":38,"row_index":48}},{"id":2748,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385713892],[9.94272345,55.385624592],[9.942880655,55.385624592],[9.942880655,55.385713892],[9.94272345,55.385713892]]]},"properties":{"id":2748,"top":7437088.0681,"id_0":2748,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437070.5681,"col_index":38,"row_index":49}},{"id":2749,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385624592],[9.94272345,55.385535291],[9.942880655,55.385535291],[9.942880655,55.385624592],[9.94272345,55.385624592]]]},"properties":{"id":2749,"top":7437070.5681,"id_0":2749,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437053.0681,"col_index":38,"row_index":50}},{"id":2750,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385535291],[9.94272345,55.38544599],[9.942880655,55.38544599],[9.942880655,55.385535291],[9.94272345,55.385535291]]]},"properties":{"id":2750,"top":7437053.0681,"id_0":2750,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437035.5681,"col_index":38,"row_index":51}},{"id":2751,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38544599],[9.94272345,55.385356689],[9.942880655,55.385356689],[9.942880655,55.38544599],[9.94272345,55.38544599]]]},"properties":{"id":2751,"top":7437035.5681,"id_0":2751,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437018.0681,"col_index":38,"row_index":52}},{"id":2752,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385356689],[9.94272345,55.385267388],[9.942880655,55.385267388],[9.942880655,55.385356689],[9.94272345,55.385356689]]]},"properties":{"id":2752,"top":7437018.0681,"id_0":2752,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7437000.5681,"col_index":38,"row_index":53}},{"id":2753,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385267388],[9.94272345,55.385178087],[9.942880655,55.385178087],[9.942880655,55.385267388],[9.94272345,55.385267388]]]},"properties":{"id":2753,"top":7437000.5681,"id_0":2753,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436983.0681,"col_index":38,"row_index":54}},{"id":2754,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385178087],[9.94272345,55.385088785],[9.942880655,55.385088785],[9.942880655,55.385178087],[9.94272345,55.385178087]]]},"properties":{"id":2754,"top":7436983.0681,"id_0":2754,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436965.5681,"col_index":38,"row_index":55}},{"id":2755,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.385088785],[9.94272345,55.384999484],[9.942880655,55.384999484],[9.942880655,55.385088785],[9.94272345,55.385088785]]]},"properties":{"id":2755,"top":7436965.5681,"id_0":2755,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436948.0681,"col_index":38,"row_index":56}},{"id":2756,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384999484],[9.94272345,55.384910182],[9.942880655,55.384910182],[9.942880655,55.384999484],[9.94272345,55.384999484]]]},"properties":{"id":2756,"top":7436948.0681,"id_0":2756,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436930.5681,"col_index":38,"row_index":57}},{"id":2757,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384910182],[9.94272345,55.38482088],[9.942880655,55.38482088],[9.942880655,55.384910182],[9.94272345,55.384910182]]]},"properties":{"id":2757,"top":7436930.5681,"id_0":2757,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436913.0681,"col_index":38,"row_index":58}},{"id":2758,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.38482088],[9.94272345,55.384731577],[9.942880655,55.384731577],[9.942880655,55.38482088],[9.94272345,55.38482088]]]},"properties":{"id":2758,"top":7436913.0681,"id_0":2758,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436895.5681,"col_index":38,"row_index":59}},{"id":2759,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384731577],[9.94272345,55.384642275],[9.942880655,55.384642275],[9.942880655,55.384731577],[9.94272345,55.384731577]]]},"properties":{"id":2759,"top":7436895.5681,"id_0":2759,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436878.0681,"col_index":38,"row_index":60}},{"id":2760,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384642275],[9.94272345,55.384552972],[9.942880655,55.384552972],[9.942880655,55.384642275],[9.94272345,55.384642275]]]},"properties":{"id":2760,"top":7436878.0681,"id_0":2760,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436860.5681,"col_index":38,"row_index":61}},{"id":2761,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384552972],[9.94272345,55.384463669],[9.942880655,55.384463669],[9.942880655,55.384552972],[9.94272345,55.384552972]]]},"properties":{"id":2761,"top":7436860.5681,"id_0":2761,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436843.0681,"col_index":38,"row_index":62}},{"id":2762,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384463669],[9.94272345,55.384374366],[9.942880655,55.384374366],[9.942880655,55.384463669],[9.94272345,55.384463669]]]},"properties":{"id":2762,"top":7436843.0681,"id_0":2762,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436825.5681,"col_index":38,"row_index":63}},{"id":2763,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384374366],[9.94272345,55.384285062],[9.942880655,55.384285062],[9.942880655,55.384374366],[9.94272345,55.384374366]]]},"properties":{"id":2763,"top":7436825.5681,"id_0":2763,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436808.0681,"col_index":38,"row_index":64}},{"id":2764,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384285062],[9.94272345,55.384195759],[9.942880655,55.384195759],[9.942880655,55.384285062],[9.94272345,55.384285062]]]},"properties":{"id":2764,"top":7436808.0681,"id_0":2764,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436790.5681,"col_index":38,"row_index":65}},{"id":2765,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384195759],[9.94272345,55.384106455],[9.942880655,55.384106455],[9.942880655,55.384195759],[9.94272345,55.384195759]]]},"properties":{"id":2765,"top":7436790.5681,"id_0":2765,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436773.0681,"col_index":38,"row_index":66}},{"id":2766,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384106455],[9.94272345,55.384017151],[9.942880655,55.384017151],[9.942880655,55.384106455],[9.94272345,55.384106455]]]},"properties":{"id":2766,"top":7436773.0681,"id_0":2766,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436755.5681,"col_index":38,"row_index":67}},{"id":2767,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.384017151],[9.94272345,55.383927847],[9.942880655,55.383927847],[9.942880655,55.384017151],[9.94272345,55.384017151]]]},"properties":{"id":2767,"top":7436755.5681,"id_0":2767,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436738.0681,"col_index":38,"row_index":68}},{"id":2768,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.383927847],[9.94272345,55.383838543],[9.942880655,55.383838543],[9.942880655,55.383927847],[9.94272345,55.383927847]]]},"properties":{"id":2768,"top":7436738.0681,"id_0":2768,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436720.5681,"col_index":38,"row_index":69}},{"id":2769,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.383838543],[9.94272345,55.383749238],[9.942880655,55.383749238],[9.942880655,55.383838543],[9.94272345,55.383838543]]]},"properties":{"id":2769,"top":7436720.5681,"id_0":2769,"left":1106818.9115,"Label":null,"right":1106836.4115,"bottom":7436703.0681,"col_index":38,"row_index":70}},{"id":2771,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.390000071],[9.942880655,55.38991078],[9.94303786,55.38991078],[9.94303786,55.390000071],[9.942880655,55.390000071]]]},"properties":{"id":2771,"top":7437928.0681,"id_0":2771,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437910.5681,"col_index":39,"row_index":1}},{"id":2772,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38991078],[9.942880655,55.38982149],[9.94303786,55.38982149],[9.94303786,55.38991078],[9.942880655,55.38991078]]]},"properties":{"id":2772,"top":7437910.5681,"id_0":2772,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437893.0681,"col_index":39,"row_index":2}},{"id":2773,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38982149],[9.942880655,55.389732199],[9.94303786,55.389732199],[9.94303786,55.38982149],[9.942880655,55.38982149]]]},"properties":{"id":2773,"top":7437893.0681,"id_0":2773,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437875.5681,"col_index":39,"row_index":3}},{"id":2774,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389732199],[9.942880655,55.389642907],[9.94303786,55.389642907],[9.94303786,55.389732199],[9.942880655,55.389732199]]]},"properties":{"id":2774,"top":7437875.5681,"id_0":2774,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437858.0681,"col_index":39,"row_index":4}},{"id":2775,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389642907],[9.942880655,55.389553616],[9.94303786,55.389553616],[9.94303786,55.389642907],[9.942880655,55.389642907]]]},"properties":{"id":2775,"top":7437858.0681,"id_0":2775,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437840.5681,"col_index":39,"row_index":5}},{"id":2776,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389553616],[9.942880655,55.389464324],[9.94303786,55.389464324],[9.94303786,55.389553616],[9.942880655,55.389553616]]]},"properties":{"id":2776,"top":7437840.5681,"id_0":2776,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437823.0681,"col_index":39,"row_index":6}},{"id":2777,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389464324],[9.942880655,55.389375032],[9.94303786,55.389375032],[9.94303786,55.389464324],[9.942880655,55.389464324]]]},"properties":{"id":2777,"top":7437823.0681,"id_0":2777,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437805.5681,"col_index":39,"row_index":7}},{"id":2778,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389375032],[9.942880655,55.38928574],[9.94303786,55.38928574],[9.94303786,55.389375032],[9.942880655,55.389375032]]]},"properties":{"id":2778,"top":7437805.5681,"id_0":2778,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437788.0681,"col_index":39,"row_index":8}},{"id":2779,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38928574],[9.942880655,55.389196448],[9.94303786,55.389196448],[9.94303786,55.38928574],[9.942880655,55.38928574]]]},"properties":{"id":2779,"top":7437788.0681,"id_0":2779,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437770.5681,"col_index":39,"row_index":9}},{"id":2780,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389196448],[9.942880655,55.389107155],[9.94303786,55.389107155],[9.94303786,55.389196448],[9.942880655,55.389196448]]]},"properties":{"id":2780,"top":7437770.5681,"id_0":2780,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437753.0681,"col_index":39,"row_index":10}},{"id":2781,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389107155],[9.942880655,55.389017863],[9.94303786,55.389017863],[9.94303786,55.389107155],[9.942880655,55.389107155]]]},"properties":{"id":2781,"top":7437753.0681,"id_0":2781,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437735.5681,"col_index":39,"row_index":11}},{"id":2782,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.389017863],[9.942880655,55.38892857],[9.94303786,55.38892857],[9.94303786,55.389017863],[9.942880655,55.389017863]]]},"properties":{"id":2782,"top":7437735.5681,"id_0":2782,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437718.0681,"col_index":39,"row_index":12}},{"id":2783,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38892857],[9.942880655,55.388839277],[9.94303786,55.388839277],[9.94303786,55.38892857],[9.942880655,55.38892857]]]},"properties":{"id":2783,"top":7437718.0681,"id_0":2783,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437700.5681,"col_index":39,"row_index":13}},{"id":2784,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388839277],[9.942880655,55.388749984],[9.94303786,55.388749984],[9.94303786,55.388839277],[9.942880655,55.388839277]]]},"properties":{"id":2784,"top":7437700.5681,"id_0":2784,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437683.0681,"col_index":39,"row_index":14}},{"id":2785,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388749984],[9.942880655,55.38866069],[9.94303786,55.38866069],[9.94303786,55.388749984],[9.942880655,55.388749984]]]},"properties":{"id":2785,"top":7437683.0681,"id_0":2785,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437665.5681,"col_index":39,"row_index":15}},{"id":2786,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38866069],[9.942880655,55.388571396],[9.94303786,55.388571396],[9.94303786,55.38866069],[9.942880655,55.38866069]]]},"properties":{"id":2786,"top":7437665.5681,"id_0":2786,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437648.0681,"col_index":39,"row_index":16}},{"id":2787,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388571396],[9.942880655,55.388482103],[9.94303786,55.388482103],[9.94303786,55.388571396],[9.942880655,55.388571396]]]},"properties":{"id":2787,"top":7437648.0681,"id_0":2787,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437630.5681,"col_index":39,"row_index":17}},{"id":2788,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388482103],[9.942880655,55.388392808],[9.94303786,55.388392808],[9.94303786,55.388482103],[9.942880655,55.388482103]]]},"properties":{"id":2788,"top":7437630.5681,"id_0":2788,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437613.0681,"col_index":39,"row_index":18}},{"id":2789,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388392808],[9.942880655,55.388303514],[9.94303786,55.388303514],[9.94303786,55.388392808],[9.942880655,55.388392808]]]},"properties":{"id":2789,"top":7437613.0681,"id_0":2789,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437595.5681,"col_index":39,"row_index":19}},{"id":2790,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388303514],[9.942880655,55.38821422],[9.94303786,55.38821422],[9.94303786,55.388303514],[9.942880655,55.388303514]]]},"properties":{"id":2790,"top":7437595.5681,"id_0":2790,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437578.0681,"col_index":39,"row_index":20}},{"id":2791,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38821422],[9.942880655,55.388124925],[9.94303786,55.388124925],[9.94303786,55.38821422],[9.942880655,55.38821422]]]},"properties":{"id":2791,"top":7437578.0681,"id_0":2791,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437560.5681,"col_index":39,"row_index":21}},{"id":2792,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.388124925],[9.942880655,55.38803563],[9.94303786,55.38803563],[9.94303786,55.388124925],[9.942880655,55.388124925]]]},"properties":{"id":2792,"top":7437560.5681,"id_0":2792,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437543.0681,"col_index":39,"row_index":22}},{"id":2793,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38803563],[9.942880655,55.387946335],[9.94303786,55.387946335],[9.94303786,55.38803563],[9.942880655,55.38803563]]]},"properties":{"id":2793,"top":7437543.0681,"id_0":2793,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437525.5681,"col_index":39,"row_index":23}},{"id":2794,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387946335],[9.942880655,55.38785704],[9.94303786,55.38785704],[9.94303786,55.387946335],[9.942880655,55.387946335]]]},"properties":{"id":2794,"top":7437525.5681,"id_0":2794,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437508.0681,"col_index":39,"row_index":24}},{"id":2795,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38785704],[9.942880655,55.387767744],[9.94303786,55.387767744],[9.94303786,55.38785704],[9.942880655,55.38785704]]]},"properties":{"id":2795,"top":7437508.0681,"id_0":2795,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437490.5681,"col_index":39,"row_index":25}},{"id":2796,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387767744],[9.942880655,55.387678448],[9.94303786,55.387678448],[9.94303786,55.387767744],[9.942880655,55.387767744]]]},"properties":{"id":2796,"top":7437490.5681,"id_0":2796,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437473.0681,"col_index":39,"row_index":26}},{"id":2797,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387678448],[9.942880655,55.387589153],[9.94303786,55.387589153],[9.94303786,55.387678448],[9.942880655,55.387678448]]]},"properties":{"id":2797,"top":7437473.0681,"id_0":2797,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437455.5681,"col_index":39,"row_index":27}},{"id":2798,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387589153],[9.942880655,55.387499856],[9.94303786,55.387499856],[9.94303786,55.387589153],[9.942880655,55.387589153]]]},"properties":{"id":2798,"top":7437455.5681,"id_0":2798,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437438.0681,"col_index":39,"row_index":28}},{"id":2799,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387499856],[9.942880655,55.38741056],[9.94303786,55.38741056],[9.94303786,55.387499856],[9.942880655,55.387499856]]]},"properties":{"id":2799,"top":7437438.0681,"id_0":2799,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437420.5681,"col_index":39,"row_index":29}},{"id":2800,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38741056],[9.942880655,55.387321264],[9.94303786,55.387321264],[9.94303786,55.38741056],[9.942880655,55.38741056]]]},"properties":{"id":2800,"top":7437420.5681,"id_0":2800,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437403.0681,"col_index":39,"row_index":30}},{"id":2801,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387321264],[9.942880655,55.387231967],[9.94303786,55.387231967],[9.94303786,55.387321264],[9.942880655,55.387321264]]]},"properties":{"id":2801,"top":7437403.0681,"id_0":2801,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437385.5681,"col_index":39,"row_index":31}},{"id":2802,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387231967],[9.942880655,55.38714267],[9.94303786,55.38714267],[9.94303786,55.387231967],[9.942880655,55.387231967]]]},"properties":{"id":2802,"top":7437385.5681,"id_0":2802,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437368.0681,"col_index":39,"row_index":32}},{"id":2803,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38714267],[9.942880655,55.387053373],[9.94303786,55.387053373],[9.94303786,55.38714267],[9.942880655,55.38714267]]]},"properties":{"id":2803,"top":7437368.0681,"id_0":2803,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437350.5681,"col_index":39,"row_index":33}},{"id":2804,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.387053373],[9.942880655,55.386964076],[9.94303786,55.386964076],[9.94303786,55.387053373],[9.942880655,55.387053373]]]},"properties":{"id":2804,"top":7437350.5681,"id_0":2804,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437333.0681,"col_index":39,"row_index":34}},{"id":2805,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386964076],[9.942880655,55.386874778],[9.94303786,55.386874778],[9.94303786,55.386964076],[9.942880655,55.386964076]]]},"properties":{"id":2805,"top":7437333.0681,"id_0":2805,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437315.5681,"col_index":39,"row_index":35}},{"id":2806,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386874778],[9.942880655,55.38678548],[9.94303786,55.38678548],[9.94303786,55.386874778],[9.942880655,55.386874778]]]},"properties":{"id":2806,"top":7437315.5681,"id_0":2806,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437298.0681,"col_index":39,"row_index":36}},{"id":2807,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38678548],[9.942880655,55.386696182],[9.94303786,55.386696182],[9.94303786,55.38678548],[9.942880655,55.38678548]]]},"properties":{"id":2807,"top":7437298.0681,"id_0":2807,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437280.5681,"col_index":39,"row_index":37}},{"id":2808,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386696182],[9.942880655,55.386606884],[9.94303786,55.386606884],[9.94303786,55.386696182],[9.942880655,55.386696182]]]},"properties":{"id":2808,"top":7437280.5681,"id_0":2808,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437263.0681,"col_index":39,"row_index":38}},{"id":2809,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386606884],[9.942880655,55.386517586],[9.94303786,55.386517586],[9.94303786,55.386606884],[9.942880655,55.386606884]]]},"properties":{"id":2809,"top":7437263.0681,"id_0":2809,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437245.5681,"col_index":39,"row_index":39}},{"id":2810,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386517586],[9.942880655,55.386428287],[9.94303786,55.386428287],[9.94303786,55.386517586],[9.942880655,55.386517586]]]},"properties":{"id":2810,"top":7437245.5681,"id_0":2810,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437228.0681,"col_index":39,"row_index":40}},{"id":2811,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386428287],[9.942880655,55.386338989],[9.94303786,55.386338989],[9.94303786,55.386428287],[9.942880655,55.386428287]]]},"properties":{"id":2811,"top":7437228.0681,"id_0":2811,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437210.5681,"col_index":39,"row_index":41}},{"id":2812,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386338989],[9.942880655,55.38624969],[9.94303786,55.38624969],[9.94303786,55.386338989],[9.942880655,55.386338989]]]},"properties":{"id":2812,"top":7437210.5681,"id_0":2812,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437193.0681,"col_index":39,"row_index":42}},{"id":2813,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38624969],[9.942880655,55.386160391],[9.94303786,55.386160391],[9.94303786,55.38624969],[9.942880655,55.38624969]]]},"properties":{"id":2813,"top":7437193.0681,"id_0":2813,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437175.5681,"col_index":39,"row_index":43}},{"id":2814,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386160391],[9.942880655,55.386071091],[9.94303786,55.386071091],[9.94303786,55.386160391],[9.942880655,55.386160391]]]},"properties":{"id":2814,"top":7437175.5681,"id_0":2814,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437158.0681,"col_index":39,"row_index":44}},{"id":2815,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.386071091],[9.942880655,55.385981792],[9.94303786,55.385981792],[9.94303786,55.386071091],[9.942880655,55.386071091]]]},"properties":{"id":2815,"top":7437158.0681,"id_0":2815,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437140.5681,"col_index":39,"row_index":45}},{"id":2816,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385981792],[9.942880655,55.385892492],[9.94303786,55.385892492],[9.94303786,55.385981792],[9.942880655,55.385981792]]]},"properties":{"id":2816,"top":7437140.5681,"id_0":2816,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437123.0681,"col_index":39,"row_index":46}},{"id":2817,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385892492],[9.942880655,55.385803192],[9.94303786,55.385803192],[9.94303786,55.385892492],[9.942880655,55.385892492]]]},"properties":{"id":2817,"top":7437123.0681,"id_0":2817,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437105.5681,"col_index":39,"row_index":47}},{"id":2818,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385803192],[9.942880655,55.385713892],[9.94303786,55.385713892],[9.94303786,55.385803192],[9.942880655,55.385803192]]]},"properties":{"id":2818,"top":7437105.5681,"id_0":2818,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437088.0681,"col_index":39,"row_index":48}},{"id":2819,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385713892],[9.942880655,55.385624592],[9.94303786,55.385624592],[9.94303786,55.385713892],[9.942880655,55.385713892]]]},"properties":{"id":2819,"top":7437088.0681,"id_0":2819,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437070.5681,"col_index":39,"row_index":49}},{"id":2820,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385624592],[9.942880655,55.385535291],[9.94303786,55.385535291],[9.94303786,55.385624592],[9.942880655,55.385624592]]]},"properties":{"id":2820,"top":7437070.5681,"id_0":2820,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437053.0681,"col_index":39,"row_index":50}},{"id":2821,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385535291],[9.942880655,55.38544599],[9.94303786,55.38544599],[9.94303786,55.385535291],[9.942880655,55.385535291]]]},"properties":{"id":2821,"top":7437053.0681,"id_0":2821,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437035.5681,"col_index":39,"row_index":51}},{"id":2822,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38544599],[9.942880655,55.385356689],[9.94303786,55.385356689],[9.94303786,55.38544599],[9.942880655,55.38544599]]]},"properties":{"id":2822,"top":7437035.5681,"id_0":2822,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437018.0681,"col_index":39,"row_index":52}},{"id":2823,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385356689],[9.942880655,55.385267388],[9.94303786,55.385267388],[9.94303786,55.385356689],[9.942880655,55.385356689]]]},"properties":{"id":2823,"top":7437018.0681,"id_0":2823,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7437000.5681,"col_index":39,"row_index":53}},{"id":2824,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385267388],[9.942880655,55.385178087],[9.94303786,55.385178087],[9.94303786,55.385267388],[9.942880655,55.385267388]]]},"properties":{"id":2824,"top":7437000.5681,"id_0":2824,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436983.0681,"col_index":39,"row_index":54}},{"id":2825,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385178087],[9.942880655,55.385088785],[9.94303786,55.385088785],[9.94303786,55.385178087],[9.942880655,55.385178087]]]},"properties":{"id":2825,"top":7436983.0681,"id_0":2825,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436965.5681,"col_index":39,"row_index":55}},{"id":2826,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.385088785],[9.942880655,55.384999484],[9.94303786,55.384999484],[9.94303786,55.385088785],[9.942880655,55.385088785]]]},"properties":{"id":2826,"top":7436965.5681,"id_0":2826,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436948.0681,"col_index":39,"row_index":56}},{"id":2827,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384999484],[9.942880655,55.384910182],[9.94303786,55.384910182],[9.94303786,55.384999484],[9.942880655,55.384999484]]]},"properties":{"id":2827,"top":7436948.0681,"id_0":2827,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436930.5681,"col_index":39,"row_index":57}},{"id":2828,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384910182],[9.942880655,55.38482088],[9.94303786,55.38482088],[9.94303786,55.384910182],[9.942880655,55.384910182]]]},"properties":{"id":2828,"top":7436930.5681,"id_0":2828,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436913.0681,"col_index":39,"row_index":58}},{"id":2829,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.38482088],[9.942880655,55.384731577],[9.94303786,55.384731577],[9.94303786,55.38482088],[9.942880655,55.38482088]]]},"properties":{"id":2829,"top":7436913.0681,"id_0":2829,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436895.5681,"col_index":39,"row_index":59}},{"id":2830,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384731577],[9.942880655,55.384642275],[9.94303786,55.384642275],[9.94303786,55.384731577],[9.942880655,55.384731577]]]},"properties":{"id":2830,"top":7436895.5681,"id_0":2830,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436878.0681,"col_index":39,"row_index":60}},{"id":2831,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384642275],[9.942880655,55.384552972],[9.94303786,55.384552972],[9.94303786,55.384642275],[9.942880655,55.384642275]]]},"properties":{"id":2831,"top":7436878.0681,"id_0":2831,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436860.5681,"col_index":39,"row_index":61}},{"id":2832,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384552972],[9.942880655,55.384463669],[9.94303786,55.384463669],[9.94303786,55.384552972],[9.942880655,55.384552972]]]},"properties":{"id":2832,"top":7436860.5681,"id_0":2832,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436843.0681,"col_index":39,"row_index":62}},{"id":2833,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384463669],[9.942880655,55.384374366],[9.94303786,55.384374366],[9.94303786,55.384463669],[9.942880655,55.384463669]]]},"properties":{"id":2833,"top":7436843.0681,"id_0":2833,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436825.5681,"col_index":39,"row_index":63}},{"id":2834,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384374366],[9.942880655,55.384285062],[9.94303786,55.384285062],[9.94303786,55.384374366],[9.942880655,55.384374366]]]},"properties":{"id":2834,"top":7436825.5681,"id_0":2834,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436808.0681,"col_index":39,"row_index":64}},{"id":2835,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384285062],[9.942880655,55.384195759],[9.94303786,55.384195759],[9.94303786,55.384285062],[9.942880655,55.384285062]]]},"properties":{"id":2835,"top":7436808.0681,"id_0":2835,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436790.5681,"col_index":39,"row_index":65}},{"id":2836,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384195759],[9.942880655,55.384106455],[9.94303786,55.384106455],[9.94303786,55.384195759],[9.942880655,55.384195759]]]},"properties":{"id":2836,"top":7436790.5681,"id_0":2836,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436773.0681,"col_index":39,"row_index":66}},{"id":2837,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384106455],[9.942880655,55.384017151],[9.94303786,55.384017151],[9.94303786,55.384106455],[9.942880655,55.384106455]]]},"properties":{"id":2837,"top":7436773.0681,"id_0":2837,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436755.5681,"col_index":39,"row_index":67}},{"id":2838,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.384017151],[9.942880655,55.383927847],[9.94303786,55.383927847],[9.94303786,55.384017151],[9.942880655,55.384017151]]]},"properties":{"id":2838,"top":7436755.5681,"id_0":2838,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436738.0681,"col_index":39,"row_index":68}},{"id":2839,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.383927847],[9.942880655,55.383838543],[9.94303786,55.383838543],[9.94303786,55.383927847],[9.942880655,55.383927847]]]},"properties":{"id":2839,"top":7436738.0681,"id_0":2839,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436720.5681,"col_index":39,"row_index":69}},{"id":2840,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.383838543],[9.942880655,55.383749238],[9.94303786,55.383749238],[9.94303786,55.383838543],[9.942880655,55.383838543]]]},"properties":{"id":2840,"top":7436720.5681,"id_0":2840,"left":1106836.4115,"Label":null,"right":1106853.9115,"bottom":7436703.0681,"col_index":39,"row_index":70}},{"id":2842,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.390000071],[9.94303786,55.38991078],[9.943195065,55.38991078],[9.943195065,55.390000071],[9.94303786,55.390000071]]]},"properties":{"id":2842,"top":7437928.0681,"id_0":2842,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437910.5681,"col_index":40,"row_index":1}},{"id":2843,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38991078],[9.94303786,55.38982149],[9.943195065,55.38982149],[9.943195065,55.38991078],[9.94303786,55.38991078]]]},"properties":{"id":2843,"top":7437910.5681,"id_0":2843,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437893.0681,"col_index":40,"row_index":2}},{"id":2844,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38982149],[9.94303786,55.389732199],[9.943195065,55.389732199],[9.943195065,55.38982149],[9.94303786,55.38982149]]]},"properties":{"id":2844,"top":7437893.0681,"id_0":2844,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437875.5681,"col_index":40,"row_index":3}},{"id":2845,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389732199],[9.94303786,55.389642907],[9.943195065,55.389642907],[9.943195065,55.389732199],[9.94303786,55.389732199]]]},"properties":{"id":2845,"top":7437875.5681,"id_0":2845,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437858.0681,"col_index":40,"row_index":4}},{"id":2846,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389642907],[9.94303786,55.389553616],[9.943195065,55.389553616],[9.943195065,55.389642907],[9.94303786,55.389642907]]]},"properties":{"id":2846,"top":7437858.0681,"id_0":2846,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437840.5681,"col_index":40,"row_index":5}},{"id":2847,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389553616],[9.94303786,55.389464324],[9.943195065,55.389464324],[9.943195065,55.389553616],[9.94303786,55.389553616]]]},"properties":{"id":2847,"top":7437840.5681,"id_0":2847,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437823.0681,"col_index":40,"row_index":6}},{"id":2848,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389464324],[9.94303786,55.389375032],[9.943195065,55.389375032],[9.943195065,55.389464324],[9.94303786,55.389464324]]]},"properties":{"id":2848,"top":7437823.0681,"id_0":2848,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437805.5681,"col_index":40,"row_index":7}},{"id":2849,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389375032],[9.94303786,55.38928574],[9.943195065,55.38928574],[9.943195065,55.389375032],[9.94303786,55.389375032]]]},"properties":{"id":2849,"top":7437805.5681,"id_0":2849,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437788.0681,"col_index":40,"row_index":8}},{"id":2850,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38928574],[9.94303786,55.389196448],[9.943195065,55.389196448],[9.943195065,55.38928574],[9.94303786,55.38928574]]]},"properties":{"id":2850,"top":7437788.0681,"id_0":2850,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437770.5681,"col_index":40,"row_index":9}},{"id":2851,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389196448],[9.94303786,55.389107155],[9.943195065,55.389107155],[9.943195065,55.389196448],[9.94303786,55.389196448]]]},"properties":{"id":2851,"top":7437770.5681,"id_0":2851,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437753.0681,"col_index":40,"row_index":10}},{"id":2852,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389107155],[9.94303786,55.389017863],[9.943195065,55.389017863],[9.943195065,55.389107155],[9.94303786,55.389107155]]]},"properties":{"id":2852,"top":7437753.0681,"id_0":2852,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437735.5681,"col_index":40,"row_index":11}},{"id":2853,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.389017863],[9.94303786,55.38892857],[9.943195065,55.38892857],[9.943195065,55.389017863],[9.94303786,55.389017863]]]},"properties":{"id":2853,"top":7437735.5681,"id_0":2853,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437718.0681,"col_index":40,"row_index":12}},{"id":2854,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38892857],[9.94303786,55.388839277],[9.943195065,55.388839277],[9.943195065,55.38892857],[9.94303786,55.38892857]]]},"properties":{"id":2854,"top":7437718.0681,"id_0":2854,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437700.5681,"col_index":40,"row_index":13}},{"id":2855,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388839277],[9.94303786,55.388749984],[9.943195065,55.388749984],[9.943195065,55.388839277],[9.94303786,55.388839277]]]},"properties":{"id":2855,"top":7437700.5681,"id_0":2855,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437683.0681,"col_index":40,"row_index":14}},{"id":2856,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388749984],[9.94303786,55.38866069],[9.943195065,55.38866069],[9.943195065,55.388749984],[9.94303786,55.388749984]]]},"properties":{"id":2856,"top":7437683.0681,"id_0":2856,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437665.5681,"col_index":40,"row_index":15}},{"id":2857,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38866069],[9.94303786,55.388571396],[9.943195065,55.388571396],[9.943195065,55.38866069],[9.94303786,55.38866069]]]},"properties":{"id":2857,"top":7437665.5681,"id_0":2857,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437648.0681,"col_index":40,"row_index":16}},{"id":2858,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388571396],[9.94303786,55.388482103],[9.943195065,55.388482103],[9.943195065,55.388571396],[9.94303786,55.388571396]]]},"properties":{"id":2858,"top":7437648.0681,"id_0":2858,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437630.5681,"col_index":40,"row_index":17}},{"id":2859,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388482103],[9.94303786,55.388392808],[9.943195065,55.388392808],[9.943195065,55.388482103],[9.94303786,55.388482103]]]},"properties":{"id":2859,"top":7437630.5681,"id_0":2859,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437613.0681,"col_index":40,"row_index":18}},{"id":2860,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388392808],[9.94303786,55.388303514],[9.943195065,55.388303514],[9.943195065,55.388392808],[9.94303786,55.388392808]]]},"properties":{"id":2860,"top":7437613.0681,"id_0":2860,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437595.5681,"col_index":40,"row_index":19}},{"id":2861,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388303514],[9.94303786,55.38821422],[9.943195065,55.38821422],[9.943195065,55.388303514],[9.94303786,55.388303514]]]},"properties":{"id":2861,"top":7437595.5681,"id_0":2861,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437578.0681,"col_index":40,"row_index":20}},{"id":2862,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38821422],[9.94303786,55.388124925],[9.943195065,55.388124925],[9.943195065,55.38821422],[9.94303786,55.38821422]]]},"properties":{"id":2862,"top":7437578.0681,"id_0":2862,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437560.5681,"col_index":40,"row_index":21}},{"id":2863,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.388124925],[9.94303786,55.38803563],[9.943195065,55.38803563],[9.943195065,55.388124925],[9.94303786,55.388124925]]]},"properties":{"id":2863,"top":7437560.5681,"id_0":2863,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437543.0681,"col_index":40,"row_index":22}},{"id":2864,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38803563],[9.94303786,55.387946335],[9.943195065,55.387946335],[9.943195065,55.38803563],[9.94303786,55.38803563]]]},"properties":{"id":2864,"top":7437543.0681,"id_0":2864,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437525.5681,"col_index":40,"row_index":23}},{"id":2865,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387946335],[9.94303786,55.38785704],[9.943195065,55.38785704],[9.943195065,55.387946335],[9.94303786,55.387946335]]]},"properties":{"id":2865,"top":7437525.5681,"id_0":2865,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437508.0681,"col_index":40,"row_index":24}},{"id":2866,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38785704],[9.94303786,55.387767744],[9.943195065,55.387767744],[9.943195065,55.38785704],[9.94303786,55.38785704]]]},"properties":{"id":2866,"top":7437508.0681,"id_0":2866,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437490.5681,"col_index":40,"row_index":25}},{"id":2867,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387767744],[9.94303786,55.387678448],[9.943195065,55.387678448],[9.943195065,55.387767744],[9.94303786,55.387767744]]]},"properties":{"id":2867,"top":7437490.5681,"id_0":2867,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437473.0681,"col_index":40,"row_index":26}},{"id":2868,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387678448],[9.94303786,55.387589153],[9.943195065,55.387589153],[9.943195065,55.387678448],[9.94303786,55.387678448]]]},"properties":{"id":2868,"top":7437473.0681,"id_0":2868,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437455.5681,"col_index":40,"row_index":27}},{"id":2869,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387589153],[9.94303786,55.387499856],[9.943195065,55.387499856],[9.943195065,55.387589153],[9.94303786,55.387589153]]]},"properties":{"id":2869,"top":7437455.5681,"id_0":2869,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437438.0681,"col_index":40,"row_index":28}},{"id":2870,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387499856],[9.94303786,55.38741056],[9.943195065,55.38741056],[9.943195065,55.387499856],[9.94303786,55.387499856]]]},"properties":{"id":2870,"top":7437438.0681,"id_0":2870,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437420.5681,"col_index":40,"row_index":29}},{"id":2871,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38741056],[9.94303786,55.387321264],[9.943195065,55.387321264],[9.943195065,55.38741056],[9.94303786,55.38741056]]]},"properties":{"id":2871,"top":7437420.5681,"id_0":2871,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437403.0681,"col_index":40,"row_index":30}},{"id":2872,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387321264],[9.94303786,55.387231967],[9.943195065,55.387231967],[9.943195065,55.387321264],[9.94303786,55.387321264]]]},"properties":{"id":2872,"top":7437403.0681,"id_0":2872,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437385.5681,"col_index":40,"row_index":31}},{"id":2873,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387231967],[9.94303786,55.38714267],[9.943195065,55.38714267],[9.943195065,55.387231967],[9.94303786,55.387231967]]]},"properties":{"id":2873,"top":7437385.5681,"id_0":2873,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437368.0681,"col_index":40,"row_index":32}},{"id":2874,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38714267],[9.94303786,55.387053373],[9.943195065,55.387053373],[9.943195065,55.38714267],[9.94303786,55.38714267]]]},"properties":{"id":2874,"top":7437368.0681,"id_0":2874,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437350.5681,"col_index":40,"row_index":33}},{"id":2875,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.387053373],[9.94303786,55.386964076],[9.943195065,55.386964076],[9.943195065,55.387053373],[9.94303786,55.387053373]]]},"properties":{"id":2875,"top":7437350.5681,"id_0":2875,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437333.0681,"col_index":40,"row_index":34}},{"id":2876,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386964076],[9.94303786,55.386874778],[9.943195065,55.386874778],[9.943195065,55.386964076],[9.94303786,55.386964076]]]},"properties":{"id":2876,"top":7437333.0681,"id_0":2876,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437315.5681,"col_index":40,"row_index":35}},{"id":2877,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386874778],[9.94303786,55.38678548],[9.943195065,55.38678548],[9.943195065,55.386874778],[9.94303786,55.386874778]]]},"properties":{"id":2877,"top":7437315.5681,"id_0":2877,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437298.0681,"col_index":40,"row_index":36}},{"id":2878,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38678548],[9.94303786,55.386696182],[9.943195065,55.386696182],[9.943195065,55.38678548],[9.94303786,55.38678548]]]},"properties":{"id":2878,"top":7437298.0681,"id_0":2878,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437280.5681,"col_index":40,"row_index":37}},{"id":2879,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386696182],[9.94303786,55.386606884],[9.943195065,55.386606884],[9.943195065,55.386696182],[9.94303786,55.386696182]]]},"properties":{"id":2879,"top":7437280.5681,"id_0":2879,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437263.0681,"col_index":40,"row_index":38}},{"id":2880,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386606884],[9.94303786,55.386517586],[9.943195065,55.386517586],[9.943195065,55.386606884],[9.94303786,55.386606884]]]},"properties":{"id":2880,"top":7437263.0681,"id_0":2880,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437245.5681,"col_index":40,"row_index":39}},{"id":2881,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386517586],[9.94303786,55.386428287],[9.943195065,55.386428287],[9.943195065,55.386517586],[9.94303786,55.386517586]]]},"properties":{"id":2881,"top":7437245.5681,"id_0":2881,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437228.0681,"col_index":40,"row_index":40}},{"id":2882,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386428287],[9.94303786,55.386338989],[9.943195065,55.386338989],[9.943195065,55.386428287],[9.94303786,55.386428287]]]},"properties":{"id":2882,"top":7437228.0681,"id_0":2882,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437210.5681,"col_index":40,"row_index":41}},{"id":2883,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386338989],[9.94303786,55.38624969],[9.943195065,55.38624969],[9.943195065,55.386338989],[9.94303786,55.386338989]]]},"properties":{"id":2883,"top":7437210.5681,"id_0":2883,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437193.0681,"col_index":40,"row_index":42}},{"id":2884,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38624969],[9.94303786,55.386160391],[9.943195065,55.386160391],[9.943195065,55.38624969],[9.94303786,55.38624969]]]},"properties":{"id":2884,"top":7437193.0681,"id_0":2884,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437175.5681,"col_index":40,"row_index":43}},{"id":2885,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386160391],[9.94303786,55.386071091],[9.943195065,55.386071091],[9.943195065,55.386160391],[9.94303786,55.386160391]]]},"properties":{"id":2885,"top":7437175.5681,"id_0":2885,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437158.0681,"col_index":40,"row_index":44}},{"id":2886,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.386071091],[9.94303786,55.385981792],[9.943195065,55.385981792],[9.943195065,55.386071091],[9.94303786,55.386071091]]]},"properties":{"id":2886,"top":7437158.0681,"id_0":2886,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437140.5681,"col_index":40,"row_index":45}},{"id":2887,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385981792],[9.94303786,55.385892492],[9.943195065,55.385892492],[9.943195065,55.385981792],[9.94303786,55.385981792]]]},"properties":{"id":2887,"top":7437140.5681,"id_0":2887,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437123.0681,"col_index":40,"row_index":46}},{"id":2888,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385892492],[9.94303786,55.385803192],[9.943195065,55.385803192],[9.943195065,55.385892492],[9.94303786,55.385892492]]]},"properties":{"id":2888,"top":7437123.0681,"id_0":2888,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437105.5681,"col_index":40,"row_index":47}},{"id":2889,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385803192],[9.94303786,55.385713892],[9.943195065,55.385713892],[9.943195065,55.385803192],[9.94303786,55.385803192]]]},"properties":{"id":2889,"top":7437105.5681,"id_0":2889,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437088.0681,"col_index":40,"row_index":48}},{"id":2890,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385713892],[9.94303786,55.385624592],[9.943195065,55.385624592],[9.943195065,55.385713892],[9.94303786,55.385713892]]]},"properties":{"id":2890,"top":7437088.0681,"id_0":2890,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437070.5681,"col_index":40,"row_index":49}},{"id":2891,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385624592],[9.94303786,55.385535291],[9.943195065,55.385535291],[9.943195065,55.385624592],[9.94303786,55.385624592]]]},"properties":{"id":2891,"top":7437070.5681,"id_0":2891,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437053.0681,"col_index":40,"row_index":50}},{"id":2892,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385535291],[9.94303786,55.38544599],[9.943195065,55.38544599],[9.943195065,55.385535291],[9.94303786,55.385535291]]]},"properties":{"id":2892,"top":7437053.0681,"id_0":2892,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437035.5681,"col_index":40,"row_index":51}},{"id":2893,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38544599],[9.94303786,55.385356689],[9.943195065,55.385356689],[9.943195065,55.38544599],[9.94303786,55.38544599]]]},"properties":{"id":2893,"top":7437035.5681,"id_0":2893,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437018.0681,"col_index":40,"row_index":52}},{"id":2894,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385356689],[9.94303786,55.385267388],[9.943195065,55.385267388],[9.943195065,55.385356689],[9.94303786,55.385356689]]]},"properties":{"id":2894,"top":7437018.0681,"id_0":2894,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7437000.5681,"col_index":40,"row_index":53}},{"id":2895,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385267388],[9.94303786,55.385178087],[9.943195065,55.385178087],[9.943195065,55.385267388],[9.94303786,55.385267388]]]},"properties":{"id":2895,"top":7437000.5681,"id_0":2895,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436983.0681,"col_index":40,"row_index":54}},{"id":2896,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385178087],[9.94303786,55.385088785],[9.943195065,55.385088785],[9.943195065,55.385178087],[9.94303786,55.385178087]]]},"properties":{"id":2896,"top":7436983.0681,"id_0":2896,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436965.5681,"col_index":40,"row_index":55}},{"id":2897,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.385088785],[9.94303786,55.384999484],[9.943195065,55.384999484],[9.943195065,55.385088785],[9.94303786,55.385088785]]]},"properties":{"id":2897,"top":7436965.5681,"id_0":2897,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436948.0681,"col_index":40,"row_index":56}},{"id":2898,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384999484],[9.94303786,55.384910182],[9.943195065,55.384910182],[9.943195065,55.384999484],[9.94303786,55.384999484]]]},"properties":{"id":2898,"top":7436948.0681,"id_0":2898,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436930.5681,"col_index":40,"row_index":57}},{"id":2899,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384910182],[9.94303786,55.38482088],[9.943195065,55.38482088],[9.943195065,55.384910182],[9.94303786,55.384910182]]]},"properties":{"id":2899,"top":7436930.5681,"id_0":2899,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436913.0681,"col_index":40,"row_index":58}},{"id":2900,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.38482088],[9.94303786,55.384731577],[9.943195065,55.384731577],[9.943195065,55.38482088],[9.94303786,55.38482088]]]},"properties":{"id":2900,"top":7436913.0681,"id_0":2900,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436895.5681,"col_index":40,"row_index":59}},{"id":2901,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384731577],[9.94303786,55.384642275],[9.943195065,55.384642275],[9.943195065,55.384731577],[9.94303786,55.384731577]]]},"properties":{"id":2901,"top":7436895.5681,"id_0":2901,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436878.0681,"col_index":40,"row_index":60}},{"id":2902,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384642275],[9.94303786,55.384552972],[9.943195065,55.384552972],[9.943195065,55.384642275],[9.94303786,55.384642275]]]},"properties":{"id":2902,"top":7436878.0681,"id_0":2902,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436860.5681,"col_index":40,"row_index":61}},{"id":2903,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384552972],[9.94303786,55.384463669],[9.943195065,55.384463669],[9.943195065,55.384552972],[9.94303786,55.384552972]]]},"properties":{"id":2903,"top":7436860.5681,"id_0":2903,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436843.0681,"col_index":40,"row_index":62}},{"id":2904,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384463669],[9.94303786,55.384374366],[9.943195065,55.384374366],[9.943195065,55.384463669],[9.94303786,55.384463669]]]},"properties":{"id":2904,"top":7436843.0681,"id_0":2904,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436825.5681,"col_index":40,"row_index":63}},{"id":2905,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384374366],[9.94303786,55.384285062],[9.943195065,55.384285062],[9.943195065,55.384374366],[9.94303786,55.384374366]]]},"properties":{"id":2905,"top":7436825.5681,"id_0":2905,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436808.0681,"col_index":40,"row_index":64}},{"id":2906,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384285062],[9.94303786,55.384195759],[9.943195065,55.384195759],[9.943195065,55.384285062],[9.94303786,55.384285062]]]},"properties":{"id":2906,"top":7436808.0681,"id_0":2906,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436790.5681,"col_index":40,"row_index":65}},{"id":2907,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384195759],[9.94303786,55.384106455],[9.943195065,55.384106455],[9.943195065,55.384195759],[9.94303786,55.384195759]]]},"properties":{"id":2907,"top":7436790.5681,"id_0":2907,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436773.0681,"col_index":40,"row_index":66}},{"id":2908,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384106455],[9.94303786,55.384017151],[9.943195065,55.384017151],[9.943195065,55.384106455],[9.94303786,55.384106455]]]},"properties":{"id":2908,"top":7436773.0681,"id_0":2908,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436755.5681,"col_index":40,"row_index":67}},{"id":2909,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.384017151],[9.94303786,55.383927847],[9.943195065,55.383927847],[9.943195065,55.384017151],[9.94303786,55.384017151]]]},"properties":{"id":2909,"top":7436755.5681,"id_0":2909,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436738.0681,"col_index":40,"row_index":68}},{"id":2910,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.383927847],[9.94303786,55.383838543],[9.943195065,55.383838543],[9.943195065,55.383927847],[9.94303786,55.383927847]]]},"properties":{"id":2910,"top":7436738.0681,"id_0":2910,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436720.5681,"col_index":40,"row_index":69}},{"id":2911,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.383838543],[9.94303786,55.383749238],[9.943195065,55.383749238],[9.943195065,55.383838543],[9.94303786,55.383838543]]]},"properties":{"id":2911,"top":7436720.5681,"id_0":2911,"left":1106853.9115,"Label":null,"right":1106871.4115,"bottom":7436703.0681,"col_index":40,"row_index":70}},{"id":2913,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.390000071],[9.943195065,55.38991078],[9.94335227,55.38991078],[9.94335227,55.390000071],[9.943195065,55.390000071]]]},"properties":{"id":2913,"top":7437928.0681,"id_0":2913,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437910.5681,"col_index":41,"row_index":1}},{"id":2914,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38991078],[9.943195065,55.38982149],[9.94335227,55.38982149],[9.94335227,55.38991078],[9.943195065,55.38991078]]]},"properties":{"id":2914,"top":7437910.5681,"id_0":2914,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437893.0681,"col_index":41,"row_index":2}},{"id":2915,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38982149],[9.943195065,55.389732199],[9.94335227,55.389732199],[9.94335227,55.38982149],[9.943195065,55.38982149]]]},"properties":{"id":2915,"top":7437893.0681,"id_0":2915,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437875.5681,"col_index":41,"row_index":3}},{"id":2916,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389732199],[9.943195065,55.389642907],[9.94335227,55.389642907],[9.94335227,55.389732199],[9.943195065,55.389732199]]]},"properties":{"id":2916,"top":7437875.5681,"id_0":2916,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437858.0681,"col_index":41,"row_index":4}},{"id":2917,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389642907],[9.943195065,55.389553616],[9.94335227,55.389553616],[9.94335227,55.389642907],[9.943195065,55.389642907]]]},"properties":{"id":2917,"top":7437858.0681,"id_0":2917,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437840.5681,"col_index":41,"row_index":5}},{"id":2918,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389553616],[9.943195065,55.389464324],[9.94335227,55.389464324],[9.94335227,55.389553616],[9.943195065,55.389553616]]]},"properties":{"id":2918,"top":7437840.5681,"id_0":2918,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437823.0681,"col_index":41,"row_index":6}},{"id":2919,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389464324],[9.943195065,55.389375032],[9.94335227,55.389375032],[9.94335227,55.389464324],[9.943195065,55.389464324]]]},"properties":{"id":2919,"top":7437823.0681,"id_0":2919,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437805.5681,"col_index":41,"row_index":7}},{"id":2920,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389375032],[9.943195065,55.38928574],[9.94335227,55.38928574],[9.94335227,55.389375032],[9.943195065,55.389375032]]]},"properties":{"id":2920,"top":7437805.5681,"id_0":2920,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437788.0681,"col_index":41,"row_index":8}},{"id":2921,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38928574],[9.943195065,55.389196448],[9.94335227,55.389196448],[9.94335227,55.38928574],[9.943195065,55.38928574]]]},"properties":{"id":2921,"top":7437788.0681,"id_0":2921,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437770.5681,"col_index":41,"row_index":9}},{"id":2922,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389196448],[9.943195065,55.389107155],[9.94335227,55.389107155],[9.94335227,55.389196448],[9.943195065,55.389196448]]]},"properties":{"id":2922,"top":7437770.5681,"id_0":2922,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437753.0681,"col_index":41,"row_index":10}},{"id":2923,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389107155],[9.943195065,55.389017863],[9.94335227,55.389017863],[9.94335227,55.389107155],[9.943195065,55.389107155]]]},"properties":{"id":2923,"top":7437753.0681,"id_0":2923,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437735.5681,"col_index":41,"row_index":11}},{"id":2924,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.389017863],[9.943195065,55.38892857],[9.94335227,55.38892857],[9.94335227,55.389017863],[9.943195065,55.389017863]]]},"properties":{"id":2924,"top":7437735.5681,"id_0":2924,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437718.0681,"col_index":41,"row_index":12}},{"id":2925,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38892857],[9.943195065,55.388839277],[9.94335227,55.388839277],[9.94335227,55.38892857],[9.943195065,55.38892857]]]},"properties":{"id":2925,"top":7437718.0681,"id_0":2925,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437700.5681,"col_index":41,"row_index":13}},{"id":2926,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388839277],[9.943195065,55.388749984],[9.94335227,55.388749984],[9.94335227,55.388839277],[9.943195065,55.388839277]]]},"properties":{"id":2926,"top":7437700.5681,"id_0":2926,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437683.0681,"col_index":41,"row_index":14}},{"id":2927,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388749984],[9.943195065,55.38866069],[9.94335227,55.38866069],[9.94335227,55.388749984],[9.943195065,55.388749984]]]},"properties":{"id":2927,"top":7437683.0681,"id_0":2927,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437665.5681,"col_index":41,"row_index":15}},{"id":2928,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38866069],[9.943195065,55.388571396],[9.94335227,55.388571396],[9.94335227,55.38866069],[9.943195065,55.38866069]]]},"properties":{"id":2928,"top":7437665.5681,"id_0":2928,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437648.0681,"col_index":41,"row_index":16}},{"id":2929,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388571396],[9.943195065,55.388482103],[9.94335227,55.388482103],[9.94335227,55.388571396],[9.943195065,55.388571396]]]},"properties":{"id":2929,"top":7437648.0681,"id_0":2929,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437630.5681,"col_index":41,"row_index":17}},{"id":2930,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388482103],[9.943195065,55.388392808],[9.94335227,55.388392808],[9.94335227,55.388482103],[9.943195065,55.388482103]]]},"properties":{"id":2930,"top":7437630.5681,"id_0":2930,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437613.0681,"col_index":41,"row_index":18}},{"id":2931,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388392808],[9.943195065,55.388303514],[9.94335227,55.388303514],[9.94335227,55.388392808],[9.943195065,55.388392808]]]},"properties":{"id":2931,"top":7437613.0681,"id_0":2931,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437595.5681,"col_index":41,"row_index":19}},{"id":2932,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388303514],[9.943195065,55.38821422],[9.94335227,55.38821422],[9.94335227,55.388303514],[9.943195065,55.388303514]]]},"properties":{"id":2932,"top":7437595.5681,"id_0":2932,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437578.0681,"col_index":41,"row_index":20}},{"id":2933,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38821422],[9.943195065,55.388124925],[9.94335227,55.388124925],[9.94335227,55.38821422],[9.943195065,55.38821422]]]},"properties":{"id":2933,"top":7437578.0681,"id_0":2933,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437560.5681,"col_index":41,"row_index":21}},{"id":2934,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.388124925],[9.943195065,55.38803563],[9.94335227,55.38803563],[9.94335227,55.388124925],[9.943195065,55.388124925]]]},"properties":{"id":2934,"top":7437560.5681,"id_0":2934,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437543.0681,"col_index":41,"row_index":22}},{"id":2935,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38803563],[9.943195065,55.387946335],[9.94335227,55.387946335],[9.94335227,55.38803563],[9.943195065,55.38803563]]]},"properties":{"id":2935,"top":7437543.0681,"id_0":2935,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437525.5681,"col_index":41,"row_index":23}},{"id":2936,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387946335],[9.943195065,55.38785704],[9.94335227,55.38785704],[9.94335227,55.387946335],[9.943195065,55.387946335]]]},"properties":{"id":2936,"top":7437525.5681,"id_0":2936,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437508.0681,"col_index":41,"row_index":24}},{"id":2937,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38785704],[9.943195065,55.387767744],[9.94335227,55.387767744],[9.94335227,55.38785704],[9.943195065,55.38785704]]]},"properties":{"id":2937,"top":7437508.0681,"id_0":2937,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437490.5681,"col_index":41,"row_index":25}},{"id":2938,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387767744],[9.943195065,55.387678448],[9.94335227,55.387678448],[9.94335227,55.387767744],[9.943195065,55.387767744]]]},"properties":{"id":2938,"top":7437490.5681,"id_0":2938,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437473.0681,"col_index":41,"row_index":26}},{"id":2939,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387678448],[9.943195065,55.387589153],[9.94335227,55.387589153],[9.94335227,55.387678448],[9.943195065,55.387678448]]]},"properties":{"id":2939,"top":7437473.0681,"id_0":2939,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437455.5681,"col_index":41,"row_index":27}},{"id":2940,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387589153],[9.943195065,55.387499856],[9.94335227,55.387499856],[9.94335227,55.387589153],[9.943195065,55.387589153]]]},"properties":{"id":2940,"top":7437455.5681,"id_0":2940,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437438.0681,"col_index":41,"row_index":28}},{"id":2941,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387499856],[9.943195065,55.38741056],[9.94335227,55.38741056],[9.94335227,55.387499856],[9.943195065,55.387499856]]]},"properties":{"id":2941,"top":7437438.0681,"id_0":2941,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437420.5681,"col_index":41,"row_index":29}},{"id":2942,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38741056],[9.943195065,55.387321264],[9.94335227,55.387321264],[9.94335227,55.38741056],[9.943195065,55.38741056]]]},"properties":{"id":2942,"top":7437420.5681,"id_0":2942,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437403.0681,"col_index":41,"row_index":30}},{"id":2943,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387321264],[9.943195065,55.387231967],[9.94335227,55.387231967],[9.94335227,55.387321264],[9.943195065,55.387321264]]]},"properties":{"id":2943,"top":7437403.0681,"id_0":2943,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437385.5681,"col_index":41,"row_index":31}},{"id":2944,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387231967],[9.943195065,55.38714267],[9.94335227,55.38714267],[9.94335227,55.387231967],[9.943195065,55.387231967]]]},"properties":{"id":2944,"top":7437385.5681,"id_0":2944,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437368.0681,"col_index":41,"row_index":32}},{"id":2945,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38714267],[9.943195065,55.387053373],[9.94335227,55.387053373],[9.94335227,55.38714267],[9.943195065,55.38714267]]]},"properties":{"id":2945,"top":7437368.0681,"id_0":2945,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437350.5681,"col_index":41,"row_index":33}},{"id":2946,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.387053373],[9.943195065,55.386964076],[9.94335227,55.386964076],[9.94335227,55.387053373],[9.943195065,55.387053373]]]},"properties":{"id":2946,"top":7437350.5681,"id_0":2946,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437333.0681,"col_index":41,"row_index":34}},{"id":2947,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386964076],[9.943195065,55.386874778],[9.94335227,55.386874778],[9.94335227,55.386964076],[9.943195065,55.386964076]]]},"properties":{"id":2947,"top":7437333.0681,"id_0":2947,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437315.5681,"col_index":41,"row_index":35}},{"id":2948,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386874778],[9.943195065,55.38678548],[9.94335227,55.38678548],[9.94335227,55.386874778],[9.943195065,55.386874778]]]},"properties":{"id":2948,"top":7437315.5681,"id_0":2948,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437298.0681,"col_index":41,"row_index":36}},{"id":2949,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38678548],[9.943195065,55.386696182],[9.94335227,55.386696182],[9.94335227,55.38678548],[9.943195065,55.38678548]]]},"properties":{"id":2949,"top":7437298.0681,"id_0":2949,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437280.5681,"col_index":41,"row_index":37}},{"id":2950,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386696182],[9.943195065,55.386606884],[9.94335227,55.386606884],[9.94335227,55.386696182],[9.943195065,55.386696182]]]},"properties":{"id":2950,"top":7437280.5681,"id_0":2950,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437263.0681,"col_index":41,"row_index":38}},{"id":2951,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386606884],[9.943195065,55.386517586],[9.94335227,55.386517586],[9.94335227,55.386606884],[9.943195065,55.386606884]]]},"properties":{"id":2951,"top":7437263.0681,"id_0":2951,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437245.5681,"col_index":41,"row_index":39}},{"id":2952,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386517586],[9.943195065,55.386428287],[9.94335227,55.386428287],[9.94335227,55.386517586],[9.943195065,55.386517586]]]},"properties":{"id":2952,"top":7437245.5681,"id_0":2952,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437228.0681,"col_index":41,"row_index":40}},{"id":2953,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386428287],[9.943195065,55.386338989],[9.94335227,55.386338989],[9.94335227,55.386428287],[9.943195065,55.386428287]]]},"properties":{"id":2953,"top":7437228.0681,"id_0":2953,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437210.5681,"col_index":41,"row_index":41}},{"id":2954,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386338989],[9.943195065,55.38624969],[9.94335227,55.38624969],[9.94335227,55.386338989],[9.943195065,55.386338989]]]},"properties":{"id":2954,"top":7437210.5681,"id_0":2954,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437193.0681,"col_index":41,"row_index":42}},{"id":2955,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38624969],[9.943195065,55.386160391],[9.94335227,55.386160391],[9.94335227,55.38624969],[9.943195065,55.38624969]]]},"properties":{"id":2955,"top":7437193.0681,"id_0":2955,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437175.5681,"col_index":41,"row_index":43}},{"id":2956,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386160391],[9.943195065,55.386071091],[9.94335227,55.386071091],[9.94335227,55.386160391],[9.943195065,55.386160391]]]},"properties":{"id":2956,"top":7437175.5681,"id_0":2956,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437158.0681,"col_index":41,"row_index":44}},{"id":2957,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.386071091],[9.943195065,55.385981792],[9.94335227,55.385981792],[9.94335227,55.386071091],[9.943195065,55.386071091]]]},"properties":{"id":2957,"top":7437158.0681,"id_0":2957,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437140.5681,"col_index":41,"row_index":45}},{"id":2958,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385981792],[9.943195065,55.385892492],[9.94335227,55.385892492],[9.94335227,55.385981792],[9.943195065,55.385981792]]]},"properties":{"id":2958,"top":7437140.5681,"id_0":2958,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437123.0681,"col_index":41,"row_index":46}},{"id":2959,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385892492],[9.943195065,55.385803192],[9.94335227,55.385803192],[9.94335227,55.385892492],[9.943195065,55.385892492]]]},"properties":{"id":2959,"top":7437123.0681,"id_0":2959,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437105.5681,"col_index":41,"row_index":47}},{"id":2960,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385803192],[9.943195065,55.385713892],[9.94335227,55.385713892],[9.94335227,55.385803192],[9.943195065,55.385803192]]]},"properties":{"id":2960,"top":7437105.5681,"id_0":2960,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437088.0681,"col_index":41,"row_index":48}},{"id":2961,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385713892],[9.943195065,55.385624592],[9.94335227,55.385624592],[9.94335227,55.385713892],[9.943195065,55.385713892]]]},"properties":{"id":2961,"top":7437088.0681,"id_0":2961,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437070.5681,"col_index":41,"row_index":49}},{"id":2962,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385624592],[9.943195065,55.385535291],[9.94335227,55.385535291],[9.94335227,55.385624592],[9.943195065,55.385624592]]]},"properties":{"id":2962,"top":7437070.5681,"id_0":2962,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437053.0681,"col_index":41,"row_index":50}},{"id":2963,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385535291],[9.943195065,55.38544599],[9.94335227,55.38544599],[9.94335227,55.385535291],[9.943195065,55.385535291]]]},"properties":{"id":2963,"top":7437053.0681,"id_0":2963,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437035.5681,"col_index":41,"row_index":51}},{"id":2964,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38544599],[9.943195065,55.385356689],[9.94335227,55.385356689],[9.94335227,55.38544599],[9.943195065,55.38544599]]]},"properties":{"id":2964,"top":7437035.5681,"id_0":2964,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437018.0681,"col_index":41,"row_index":52}},{"id":2965,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385356689],[9.943195065,55.385267388],[9.94335227,55.385267388],[9.94335227,55.385356689],[9.943195065,55.385356689]]]},"properties":{"id":2965,"top":7437018.0681,"id_0":2965,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7437000.5681,"col_index":41,"row_index":53}},{"id":2966,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385267388],[9.943195065,55.385178087],[9.94335227,55.385178087],[9.94335227,55.385267388],[9.943195065,55.385267388]]]},"properties":{"id":2966,"top":7437000.5681,"id_0":2966,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436983.0681,"col_index":41,"row_index":54}},{"id":2967,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385178087],[9.943195065,55.385088785],[9.94335227,55.385088785],[9.94335227,55.385178087],[9.943195065,55.385178087]]]},"properties":{"id":2967,"top":7436983.0681,"id_0":2967,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436965.5681,"col_index":41,"row_index":55}},{"id":2968,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.385088785],[9.943195065,55.384999484],[9.94335227,55.384999484],[9.94335227,55.385088785],[9.943195065,55.385088785]]]},"properties":{"id":2968,"top":7436965.5681,"id_0":2968,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436948.0681,"col_index":41,"row_index":56}},{"id":2969,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384999484],[9.943195065,55.384910182],[9.94335227,55.384910182],[9.94335227,55.384999484],[9.943195065,55.384999484]]]},"properties":{"id":2969,"top":7436948.0681,"id_0":2969,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436930.5681,"col_index":41,"row_index":57}},{"id":2970,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384910182],[9.943195065,55.38482088],[9.94335227,55.38482088],[9.94335227,55.384910182],[9.943195065,55.384910182]]]},"properties":{"id":2970,"top":7436930.5681,"id_0":2970,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436913.0681,"col_index":41,"row_index":58}},{"id":2971,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.38482088],[9.943195065,55.384731577],[9.94335227,55.384731577],[9.94335227,55.38482088],[9.943195065,55.38482088]]]},"properties":{"id":2971,"top":7436913.0681,"id_0":2971,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436895.5681,"col_index":41,"row_index":59}},{"id":2972,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384731577],[9.943195065,55.384642275],[9.94335227,55.384642275],[9.94335227,55.384731577],[9.943195065,55.384731577]]]},"properties":{"id":2972,"top":7436895.5681,"id_0":2972,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436878.0681,"col_index":41,"row_index":60}},{"id":2973,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384642275],[9.943195065,55.384552972],[9.94335227,55.384552972],[9.94335227,55.384642275],[9.943195065,55.384642275]]]},"properties":{"id":2973,"top":7436878.0681,"id_0":2973,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436860.5681,"col_index":41,"row_index":61}},{"id":2974,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384552972],[9.943195065,55.384463669],[9.94335227,55.384463669],[9.94335227,55.384552972],[9.943195065,55.384552972]]]},"properties":{"id":2974,"top":7436860.5681,"id_0":2974,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436843.0681,"col_index":41,"row_index":62}},{"id":2975,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384463669],[9.943195065,55.384374366],[9.94335227,55.384374366],[9.94335227,55.384463669],[9.943195065,55.384463669]]]},"properties":{"id":2975,"top":7436843.0681,"id_0":2975,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436825.5681,"col_index":41,"row_index":63}},{"id":2976,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384374366],[9.943195065,55.384285062],[9.94335227,55.384285062],[9.94335227,55.384374366],[9.943195065,55.384374366]]]},"properties":{"id":2976,"top":7436825.5681,"id_0":2976,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436808.0681,"col_index":41,"row_index":64}},{"id":2977,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384285062],[9.943195065,55.384195759],[9.94335227,55.384195759],[9.94335227,55.384285062],[9.943195065,55.384285062]]]},"properties":{"id":2977,"top":7436808.0681,"id_0":2977,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436790.5681,"col_index":41,"row_index":65}},{"id":2978,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384195759],[9.943195065,55.384106455],[9.94335227,55.384106455],[9.94335227,55.384195759],[9.943195065,55.384195759]]]},"properties":{"id":2978,"top":7436790.5681,"id_0":2978,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436773.0681,"col_index":41,"row_index":66}},{"id":2979,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384106455],[9.943195065,55.384017151],[9.94335227,55.384017151],[9.94335227,55.384106455],[9.943195065,55.384106455]]]},"properties":{"id":2979,"top":7436773.0681,"id_0":2979,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436755.5681,"col_index":41,"row_index":67}},{"id":2980,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.384017151],[9.943195065,55.383927847],[9.94335227,55.383927847],[9.94335227,55.384017151],[9.943195065,55.384017151]]]},"properties":{"id":2980,"top":7436755.5681,"id_0":2980,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436738.0681,"col_index":41,"row_index":68}},{"id":2981,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.383927847],[9.943195065,55.383838543],[9.94335227,55.383838543],[9.94335227,55.383927847],[9.943195065,55.383927847]]]},"properties":{"id":2981,"top":7436738.0681,"id_0":2981,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436720.5681,"col_index":41,"row_index":69}},{"id":2982,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.383838543],[9.943195065,55.383749238],[9.94335227,55.383749238],[9.94335227,55.383838543],[9.943195065,55.383838543]]]},"properties":{"id":2982,"top":7436720.5681,"id_0":2982,"left":1106871.4115,"Label":null,"right":1106888.9115,"bottom":7436703.0681,"col_index":41,"row_index":70}},{"id":2984,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.390000071],[9.94335227,55.38991078],[9.943509475,55.38991078],[9.943509475,55.390000071],[9.94335227,55.390000071]]]},"properties":{"id":2984,"top":7437928.0681,"id_0":2984,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437910.5681,"col_index":42,"row_index":1}},{"id":2985,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38991078],[9.94335227,55.38982149],[9.943509475,55.38982149],[9.943509475,55.38991078],[9.94335227,55.38991078]]]},"properties":{"id":2985,"top":7437910.5681,"id_0":2985,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437893.0681,"col_index":42,"row_index":2}},{"id":2986,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38982149],[9.94335227,55.389732199],[9.943509475,55.389732199],[9.943509475,55.38982149],[9.94335227,55.38982149]]]},"properties":{"id":2986,"top":7437893.0681,"id_0":2986,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437875.5681,"col_index":42,"row_index":3}},{"id":2987,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389732199],[9.94335227,55.389642907],[9.943509475,55.389642907],[9.943509475,55.389732199],[9.94335227,55.389732199]]]},"properties":{"id":2987,"top":7437875.5681,"id_0":2987,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437858.0681,"col_index":42,"row_index":4}},{"id":2988,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389642907],[9.94335227,55.389553616],[9.943509475,55.389553616],[9.943509475,55.389642907],[9.94335227,55.389642907]]]},"properties":{"id":2988,"top":7437858.0681,"id_0":2988,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437840.5681,"col_index":42,"row_index":5}},{"id":2989,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389553616],[9.94335227,55.389464324],[9.943509475,55.389464324],[9.943509475,55.389553616],[9.94335227,55.389553616]]]},"properties":{"id":2989,"top":7437840.5681,"id_0":2989,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437823.0681,"col_index":42,"row_index":6}},{"id":2990,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389464324],[9.94335227,55.389375032],[9.943509475,55.389375032],[9.943509475,55.389464324],[9.94335227,55.389464324]]]},"properties":{"id":2990,"top":7437823.0681,"id_0":2990,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437805.5681,"col_index":42,"row_index":7}},{"id":2991,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389375032],[9.94335227,55.38928574],[9.943509475,55.38928574],[9.943509475,55.389375032],[9.94335227,55.389375032]]]},"properties":{"id":2991,"top":7437805.5681,"id_0":2991,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437788.0681,"col_index":42,"row_index":8}},{"id":2992,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38928574],[9.94335227,55.389196448],[9.943509475,55.389196448],[9.943509475,55.38928574],[9.94335227,55.38928574]]]},"properties":{"id":2992,"top":7437788.0681,"id_0":2992,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437770.5681,"col_index":42,"row_index":9}},{"id":2993,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389196448],[9.94335227,55.389107155],[9.943509475,55.389107155],[9.943509475,55.389196448],[9.94335227,55.389196448]]]},"properties":{"id":2993,"top":7437770.5681,"id_0":2993,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437753.0681,"col_index":42,"row_index":10}},{"id":2994,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389107155],[9.94335227,55.389017863],[9.943509475,55.389017863],[9.943509475,55.389107155],[9.94335227,55.389107155]]]},"properties":{"id":2994,"top":7437753.0681,"id_0":2994,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437735.5681,"col_index":42,"row_index":11}},{"id":2995,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.389017863],[9.94335227,55.38892857],[9.943509475,55.38892857],[9.943509475,55.389017863],[9.94335227,55.389017863]]]},"properties":{"id":2995,"top":7437735.5681,"id_0":2995,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437718.0681,"col_index":42,"row_index":12}},{"id":2996,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38892857],[9.94335227,55.388839277],[9.943509475,55.388839277],[9.943509475,55.38892857],[9.94335227,55.38892857]]]},"properties":{"id":2996,"top":7437718.0681,"id_0":2996,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437700.5681,"col_index":42,"row_index":13}},{"id":2997,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388839277],[9.94335227,55.388749984],[9.943509475,55.388749984],[9.943509475,55.388839277],[9.94335227,55.388839277]]]},"properties":{"id":2997,"top":7437700.5681,"id_0":2997,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437683.0681,"col_index":42,"row_index":14}},{"id":2998,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388749984],[9.94335227,55.38866069],[9.943509475,55.38866069],[9.943509475,55.388749984],[9.94335227,55.388749984]]]},"properties":{"id":2998,"top":7437683.0681,"id_0":2998,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437665.5681,"col_index":42,"row_index":15}},{"id":2999,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38866069],[9.94335227,55.388571396],[9.943509475,55.388571396],[9.943509475,55.38866069],[9.94335227,55.38866069]]]},"properties":{"id":2999,"top":7437665.5681,"id_0":2999,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437648.0681,"col_index":42,"row_index":16}},{"id":3000,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388571396],[9.94335227,55.388482103],[9.943509475,55.388482103],[9.943509475,55.388571396],[9.94335227,55.388571396]]]},"properties":{"id":3000,"top":7437648.0681,"id_0":3000,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437630.5681,"col_index":42,"row_index":17}},{"id":3001,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388482103],[9.94335227,55.388392808],[9.943509475,55.388392808],[9.943509475,55.388482103],[9.94335227,55.388482103]]]},"properties":{"id":3001,"top":7437630.5681,"id_0":3001,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437613.0681,"col_index":42,"row_index":18}},{"id":3002,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388392808],[9.94335227,55.388303514],[9.943509475,55.388303514],[9.943509475,55.388392808],[9.94335227,55.388392808]]]},"properties":{"id":3002,"top":7437613.0681,"id_0":3002,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437595.5681,"col_index":42,"row_index":19}},{"id":3003,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388303514],[9.94335227,55.38821422],[9.943509475,55.38821422],[9.943509475,55.388303514],[9.94335227,55.388303514]]]},"properties":{"id":3003,"top":7437595.5681,"id_0":3003,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437578.0681,"col_index":42,"row_index":20}},{"id":3004,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38821422],[9.94335227,55.388124925],[9.943509475,55.388124925],[9.943509475,55.38821422],[9.94335227,55.38821422]]]},"properties":{"id":3004,"top":7437578.0681,"id_0":3004,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437560.5681,"col_index":42,"row_index":21}},{"id":3005,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.388124925],[9.94335227,55.38803563],[9.943509475,55.38803563],[9.943509475,55.388124925],[9.94335227,55.388124925]]]},"properties":{"id":3005,"top":7437560.5681,"id_0":3005,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437543.0681,"col_index":42,"row_index":22}},{"id":3006,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38803563],[9.94335227,55.387946335],[9.943509475,55.387946335],[9.943509475,55.38803563],[9.94335227,55.38803563]]]},"properties":{"id":3006,"top":7437543.0681,"id_0":3006,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437525.5681,"col_index":42,"row_index":23}},{"id":3007,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387946335],[9.94335227,55.38785704],[9.943509475,55.38785704],[9.943509475,55.387946335],[9.94335227,55.387946335]]]},"properties":{"id":3007,"top":7437525.5681,"id_0":3007,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437508.0681,"col_index":42,"row_index":24}},{"id":3008,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38785704],[9.94335227,55.387767744],[9.943509475,55.387767744],[9.943509475,55.38785704],[9.94335227,55.38785704]]]},"properties":{"id":3008,"top":7437508.0681,"id_0":3008,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437490.5681,"col_index":42,"row_index":25}},{"id":3009,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387767744],[9.94335227,55.387678448],[9.943509475,55.387678448],[9.943509475,55.387767744],[9.94335227,55.387767744]]]},"properties":{"id":3009,"top":7437490.5681,"id_0":3009,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437473.0681,"col_index":42,"row_index":26}},{"id":3010,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387678448],[9.94335227,55.387589153],[9.943509475,55.387589153],[9.943509475,55.387678448],[9.94335227,55.387678448]]]},"properties":{"id":3010,"top":7437473.0681,"id_0":3010,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437455.5681,"col_index":42,"row_index":27}},{"id":3011,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387589153],[9.94335227,55.387499856],[9.943509475,55.387499856],[9.943509475,55.387589153],[9.94335227,55.387589153]]]},"properties":{"id":3011,"top":7437455.5681,"id_0":3011,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437438.0681,"col_index":42,"row_index":28}},{"id":3012,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387499856],[9.94335227,55.38741056],[9.943509475,55.38741056],[9.943509475,55.387499856],[9.94335227,55.387499856]]]},"properties":{"id":3012,"top":7437438.0681,"id_0":3012,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437420.5681,"col_index":42,"row_index":29}},{"id":3013,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38741056],[9.94335227,55.387321264],[9.943509475,55.387321264],[9.943509475,55.38741056],[9.94335227,55.38741056]]]},"properties":{"id":3013,"top":7437420.5681,"id_0":3013,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437403.0681,"col_index":42,"row_index":30}},{"id":3014,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387321264],[9.94335227,55.387231967],[9.943509475,55.387231967],[9.943509475,55.387321264],[9.94335227,55.387321264]]]},"properties":{"id":3014,"top":7437403.0681,"id_0":3014,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437385.5681,"col_index":42,"row_index":31}},{"id":3015,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387231967],[9.94335227,55.38714267],[9.943509475,55.38714267],[9.943509475,55.387231967],[9.94335227,55.387231967]]]},"properties":{"id":3015,"top":7437385.5681,"id_0":3015,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437368.0681,"col_index":42,"row_index":32}},{"id":3016,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38714267],[9.94335227,55.387053373],[9.943509475,55.387053373],[9.943509475,55.38714267],[9.94335227,55.38714267]]]},"properties":{"id":3016,"top":7437368.0681,"id_0":3016,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437350.5681,"col_index":42,"row_index":33}},{"id":3017,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.387053373],[9.94335227,55.386964076],[9.943509475,55.386964076],[9.943509475,55.387053373],[9.94335227,55.387053373]]]},"properties":{"id":3017,"top":7437350.5681,"id_0":3017,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437333.0681,"col_index":42,"row_index":34}},{"id":3018,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386964076],[9.94335227,55.386874778],[9.943509475,55.386874778],[9.943509475,55.386964076],[9.94335227,55.386964076]]]},"properties":{"id":3018,"top":7437333.0681,"id_0":3018,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437315.5681,"col_index":42,"row_index":35}},{"id":3019,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386874778],[9.94335227,55.38678548],[9.943509475,55.38678548],[9.943509475,55.386874778],[9.94335227,55.386874778]]]},"properties":{"id":3019,"top":7437315.5681,"id_0":3019,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437298.0681,"col_index":42,"row_index":36}},{"id":3020,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38678548],[9.94335227,55.386696182],[9.943509475,55.386696182],[9.943509475,55.38678548],[9.94335227,55.38678548]]]},"properties":{"id":3020,"top":7437298.0681,"id_0":3020,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437280.5681,"col_index":42,"row_index":37}},{"id":3021,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386696182],[9.94335227,55.386606884],[9.943509475,55.386606884],[9.943509475,55.386696182],[9.94335227,55.386696182]]]},"properties":{"id":3021,"top":7437280.5681,"id_0":3021,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437263.0681,"col_index":42,"row_index":38}},{"id":3022,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386606884],[9.94335227,55.386517586],[9.943509475,55.386517586],[9.943509475,55.386606884],[9.94335227,55.386606884]]]},"properties":{"id":3022,"top":7437263.0681,"id_0":3022,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437245.5681,"col_index":42,"row_index":39}},{"id":3023,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386517586],[9.94335227,55.386428287],[9.943509475,55.386428287],[9.943509475,55.386517586],[9.94335227,55.386517586]]]},"properties":{"id":3023,"top":7437245.5681,"id_0":3023,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437228.0681,"col_index":42,"row_index":40}},{"id":3024,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386428287],[9.94335227,55.386338989],[9.943509475,55.386338989],[9.943509475,55.386428287],[9.94335227,55.386428287]]]},"properties":{"id":3024,"top":7437228.0681,"id_0":3024,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437210.5681,"col_index":42,"row_index":41}},{"id":3025,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386338989],[9.94335227,55.38624969],[9.943509475,55.38624969],[9.943509475,55.386338989],[9.94335227,55.386338989]]]},"properties":{"id":3025,"top":7437210.5681,"id_0":3025,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437193.0681,"col_index":42,"row_index":42}},{"id":3026,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38624969],[9.94335227,55.386160391],[9.943509475,55.386160391],[9.943509475,55.38624969],[9.94335227,55.38624969]]]},"properties":{"id":3026,"top":7437193.0681,"id_0":3026,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437175.5681,"col_index":42,"row_index":43}},{"id":3027,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386160391],[9.94335227,55.386071091],[9.943509475,55.386071091],[9.943509475,55.386160391],[9.94335227,55.386160391]]]},"properties":{"id":3027,"top":7437175.5681,"id_0":3027,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437158.0681,"col_index":42,"row_index":44}},{"id":3028,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.386071091],[9.94335227,55.385981792],[9.943509475,55.385981792],[9.943509475,55.386071091],[9.94335227,55.386071091]]]},"properties":{"id":3028,"top":7437158.0681,"id_0":3028,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437140.5681,"col_index":42,"row_index":45}},{"id":3029,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385981792],[9.94335227,55.385892492],[9.943509475,55.385892492],[9.943509475,55.385981792],[9.94335227,55.385981792]]]},"properties":{"id":3029,"top":7437140.5681,"id_0":3029,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437123.0681,"col_index":42,"row_index":46}},{"id":3030,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385892492],[9.94335227,55.385803192],[9.943509475,55.385803192],[9.943509475,55.385892492],[9.94335227,55.385892492]]]},"properties":{"id":3030,"top":7437123.0681,"id_0":3030,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437105.5681,"col_index":42,"row_index":47}},{"id":3031,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385803192],[9.94335227,55.385713892],[9.943509475,55.385713892],[9.943509475,55.385803192],[9.94335227,55.385803192]]]},"properties":{"id":3031,"top":7437105.5681,"id_0":3031,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437088.0681,"col_index":42,"row_index":48}},{"id":3032,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385713892],[9.94335227,55.385624592],[9.943509475,55.385624592],[9.943509475,55.385713892],[9.94335227,55.385713892]]]},"properties":{"id":3032,"top":7437088.0681,"id_0":3032,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437070.5681,"col_index":42,"row_index":49}},{"id":3033,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385624592],[9.94335227,55.385535291],[9.943509475,55.385535291],[9.943509475,55.385624592],[9.94335227,55.385624592]]]},"properties":{"id":3033,"top":7437070.5681,"id_0":3033,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437053.0681,"col_index":42,"row_index":50}},{"id":3034,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385535291],[9.94335227,55.38544599],[9.943509475,55.38544599],[9.943509475,55.385535291],[9.94335227,55.385535291]]]},"properties":{"id":3034,"top":7437053.0681,"id_0":3034,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437035.5681,"col_index":42,"row_index":51}},{"id":3035,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38544599],[9.94335227,55.385356689],[9.943509475,55.385356689],[9.943509475,55.38544599],[9.94335227,55.38544599]]]},"properties":{"id":3035,"top":7437035.5681,"id_0":3035,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437018.0681,"col_index":42,"row_index":52}},{"id":3036,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385356689],[9.94335227,55.385267388],[9.943509475,55.385267388],[9.943509475,55.385356689],[9.94335227,55.385356689]]]},"properties":{"id":3036,"top":7437018.0681,"id_0":3036,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7437000.5681,"col_index":42,"row_index":53}},{"id":3037,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385267388],[9.94335227,55.385178087],[9.943509475,55.385178087],[9.943509475,55.385267388],[9.94335227,55.385267388]]]},"properties":{"id":3037,"top":7437000.5681,"id_0":3037,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436983.0681,"col_index":42,"row_index":54}},{"id":3038,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385178087],[9.94335227,55.385088785],[9.943509475,55.385088785],[9.943509475,55.385178087],[9.94335227,55.385178087]]]},"properties":{"id":3038,"top":7436983.0681,"id_0":3038,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436965.5681,"col_index":42,"row_index":55}},{"id":3039,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.385088785],[9.94335227,55.384999484],[9.943509475,55.384999484],[9.943509475,55.385088785],[9.94335227,55.385088785]]]},"properties":{"id":3039,"top":7436965.5681,"id_0":3039,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436948.0681,"col_index":42,"row_index":56}},{"id":3040,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384999484],[9.94335227,55.384910182],[9.943509475,55.384910182],[9.943509475,55.384999484],[9.94335227,55.384999484]]]},"properties":{"id":3040,"top":7436948.0681,"id_0":3040,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436930.5681,"col_index":42,"row_index":57}},{"id":3041,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384910182],[9.94335227,55.38482088],[9.943509475,55.38482088],[9.943509475,55.384910182],[9.94335227,55.384910182]]]},"properties":{"id":3041,"top":7436930.5681,"id_0":3041,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436913.0681,"col_index":42,"row_index":58}},{"id":3042,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.38482088],[9.94335227,55.384731577],[9.943509475,55.384731577],[9.943509475,55.38482088],[9.94335227,55.38482088]]]},"properties":{"id":3042,"top":7436913.0681,"id_0":3042,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436895.5681,"col_index":42,"row_index":59}},{"id":3043,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384731577],[9.94335227,55.384642275],[9.943509475,55.384642275],[9.943509475,55.384731577],[9.94335227,55.384731577]]]},"properties":{"id":3043,"top":7436895.5681,"id_0":3043,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436878.0681,"col_index":42,"row_index":60}},{"id":3044,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384642275],[9.94335227,55.384552972],[9.943509475,55.384552972],[9.943509475,55.384642275],[9.94335227,55.384642275]]]},"properties":{"id":3044,"top":7436878.0681,"id_0":3044,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436860.5681,"col_index":42,"row_index":61}},{"id":3045,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384552972],[9.94335227,55.384463669],[9.943509475,55.384463669],[9.943509475,55.384552972],[9.94335227,55.384552972]]]},"properties":{"id":3045,"top":7436860.5681,"id_0":3045,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436843.0681,"col_index":42,"row_index":62}},{"id":3046,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384463669],[9.94335227,55.384374366],[9.943509475,55.384374366],[9.943509475,55.384463669],[9.94335227,55.384463669]]]},"properties":{"id":3046,"top":7436843.0681,"id_0":3046,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436825.5681,"col_index":42,"row_index":63}},{"id":3047,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384374366],[9.94335227,55.384285062],[9.943509475,55.384285062],[9.943509475,55.384374366],[9.94335227,55.384374366]]]},"properties":{"id":3047,"top":7436825.5681,"id_0":3047,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436808.0681,"col_index":42,"row_index":64}},{"id":3048,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384285062],[9.94335227,55.384195759],[9.943509475,55.384195759],[9.943509475,55.384285062],[9.94335227,55.384285062]]]},"properties":{"id":3048,"top":7436808.0681,"id_0":3048,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436790.5681,"col_index":42,"row_index":65}},{"id":3049,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384195759],[9.94335227,55.384106455],[9.943509475,55.384106455],[9.943509475,55.384195759],[9.94335227,55.384195759]]]},"properties":{"id":3049,"top":7436790.5681,"id_0":3049,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436773.0681,"col_index":42,"row_index":66}},{"id":3050,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384106455],[9.94335227,55.384017151],[9.943509475,55.384017151],[9.943509475,55.384106455],[9.94335227,55.384106455]]]},"properties":{"id":3050,"top":7436773.0681,"id_0":3050,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436755.5681,"col_index":42,"row_index":67}},{"id":3051,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.384017151],[9.94335227,55.383927847],[9.943509475,55.383927847],[9.943509475,55.384017151],[9.94335227,55.384017151]]]},"properties":{"id":3051,"top":7436755.5681,"id_0":3051,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436738.0681,"col_index":42,"row_index":68}},{"id":3052,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.383927847],[9.94335227,55.383838543],[9.943509475,55.383838543],[9.943509475,55.383927847],[9.94335227,55.383927847]]]},"properties":{"id":3052,"top":7436738.0681,"id_0":3052,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436720.5681,"col_index":42,"row_index":69}},{"id":3053,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.383838543],[9.94335227,55.383749238],[9.943509475,55.383749238],[9.943509475,55.383838543],[9.94335227,55.383838543]]]},"properties":{"id":3053,"top":7436720.5681,"id_0":3053,"left":1106888.9115,"Label":null,"right":1106906.4115,"bottom":7436703.0681,"col_index":42,"row_index":70}},{"id":3055,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.390000071],[9.943509475,55.38991078],[9.943666681,55.38991078],[9.943666681,55.390000071],[9.943509475,55.390000071]]]},"properties":{"id":3055,"top":7437928.0681,"id_0":3055,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437910.5681,"col_index":43,"row_index":1}},{"id":3056,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38991078],[9.943509475,55.38982149],[9.943666681,55.38982149],[9.943666681,55.38991078],[9.943509475,55.38991078]]]},"properties":{"id":3056,"top":7437910.5681,"id_0":3056,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437893.0681,"col_index":43,"row_index":2}},{"id":3057,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38982149],[9.943509475,55.389732199],[9.943666681,55.389732199],[9.943666681,55.38982149],[9.943509475,55.38982149]]]},"properties":{"id":3057,"top":7437893.0681,"id_0":3057,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437875.5681,"col_index":43,"row_index":3}},{"id":3058,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389732199],[9.943509475,55.389642907],[9.943666681,55.389642907],[9.943666681,55.389732199],[9.943509475,55.389732199]]]},"properties":{"id":3058,"top":7437875.5681,"id_0":3058,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437858.0681,"col_index":43,"row_index":4}},{"id":3059,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389642907],[9.943509475,55.389553616],[9.943666681,55.389553616],[9.943666681,55.389642907],[9.943509475,55.389642907]]]},"properties":{"id":3059,"top":7437858.0681,"id_0":3059,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437840.5681,"col_index":43,"row_index":5}},{"id":3060,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389553616],[9.943509475,55.389464324],[9.943666681,55.389464324],[9.943666681,55.389553616],[9.943509475,55.389553616]]]},"properties":{"id":3060,"top":7437840.5681,"id_0":3060,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437823.0681,"col_index":43,"row_index":6}},{"id":3061,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389464324],[9.943509475,55.389375032],[9.943666681,55.389375032],[9.943666681,55.389464324],[9.943509475,55.389464324]]]},"properties":{"id":3061,"top":7437823.0681,"id_0":3061,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437805.5681,"col_index":43,"row_index":7}},{"id":3062,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389375032],[9.943509475,55.38928574],[9.943666681,55.38928574],[9.943666681,55.389375032],[9.943509475,55.389375032]]]},"properties":{"id":3062,"top":7437805.5681,"id_0":3062,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437788.0681,"col_index":43,"row_index":8}},{"id":3063,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38928574],[9.943509475,55.389196448],[9.943666681,55.389196448],[9.943666681,55.38928574],[9.943509475,55.38928574]]]},"properties":{"id":3063,"top":7437788.0681,"id_0":3063,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437770.5681,"col_index":43,"row_index":9}},{"id":3064,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389196448],[9.943509475,55.389107155],[9.943666681,55.389107155],[9.943666681,55.389196448],[9.943509475,55.389196448]]]},"properties":{"id":3064,"top":7437770.5681,"id_0":3064,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437753.0681,"col_index":43,"row_index":10}},{"id":3065,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389107155],[9.943509475,55.389017863],[9.943666681,55.389017863],[9.943666681,55.389107155],[9.943509475,55.389107155]]]},"properties":{"id":3065,"top":7437753.0681,"id_0":3065,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437735.5681,"col_index":43,"row_index":11}},{"id":3066,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.389017863],[9.943509475,55.38892857],[9.943666681,55.38892857],[9.943666681,55.389017863],[9.943509475,55.389017863]]]},"properties":{"id":3066,"top":7437735.5681,"id_0":3066,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437718.0681,"col_index":43,"row_index":12}},{"id":3067,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38892857],[9.943509475,55.388839277],[9.943666681,55.388839277],[9.943666681,55.38892857],[9.943509475,55.38892857]]]},"properties":{"id":3067,"top":7437718.0681,"id_0":3067,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437700.5681,"col_index":43,"row_index":13}},{"id":3068,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388839277],[9.943509475,55.388749984],[9.943666681,55.388749984],[9.943666681,55.388839277],[9.943509475,55.388839277]]]},"properties":{"id":3068,"top":7437700.5681,"id_0":3068,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437683.0681,"col_index":43,"row_index":14}},{"id":3069,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388749984],[9.943509475,55.38866069],[9.943666681,55.38866069],[9.943666681,55.388749984],[9.943509475,55.388749984]]]},"properties":{"id":3069,"top":7437683.0681,"id_0":3069,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437665.5681,"col_index":43,"row_index":15}},{"id":3070,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38866069],[9.943509475,55.388571396],[9.943666681,55.388571396],[9.943666681,55.38866069],[9.943509475,55.38866069]]]},"properties":{"id":3070,"top":7437665.5681,"id_0":3070,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437648.0681,"col_index":43,"row_index":16}},{"id":3071,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388571396],[9.943509475,55.388482103],[9.943666681,55.388482103],[9.943666681,55.388571396],[9.943509475,55.388571396]]]},"properties":{"id":3071,"top":7437648.0681,"id_0":3071,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437630.5681,"col_index":43,"row_index":17}},{"id":3072,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388482103],[9.943509475,55.388392808],[9.943666681,55.388392808],[9.943666681,55.388482103],[9.943509475,55.388482103]]]},"properties":{"id":3072,"top":7437630.5681,"id_0":3072,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437613.0681,"col_index":43,"row_index":18}},{"id":3073,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388392808],[9.943509475,55.388303514],[9.943666681,55.388303514],[9.943666681,55.388392808],[9.943509475,55.388392808]]]},"properties":{"id":3073,"top":7437613.0681,"id_0":3073,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437595.5681,"col_index":43,"row_index":19}},{"id":3074,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388303514],[9.943509475,55.38821422],[9.943666681,55.38821422],[9.943666681,55.388303514],[9.943509475,55.388303514]]]},"properties":{"id":3074,"top":7437595.5681,"id_0":3074,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437578.0681,"col_index":43,"row_index":20}},{"id":3075,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38821422],[9.943509475,55.388124925],[9.943666681,55.388124925],[9.943666681,55.38821422],[9.943509475,55.38821422]]]},"properties":{"id":3075,"top":7437578.0681,"id_0":3075,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437560.5681,"col_index":43,"row_index":21}},{"id":3076,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.388124925],[9.943509475,55.38803563],[9.943666681,55.38803563],[9.943666681,55.388124925],[9.943509475,55.388124925]]]},"properties":{"id":3076,"top":7437560.5681,"id_0":3076,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437543.0681,"col_index":43,"row_index":22}},{"id":3077,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38803563],[9.943509475,55.387946335],[9.943666681,55.387946335],[9.943666681,55.38803563],[9.943509475,55.38803563]]]},"properties":{"id":3077,"top":7437543.0681,"id_0":3077,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437525.5681,"col_index":43,"row_index":23}},{"id":3078,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387946335],[9.943509475,55.38785704],[9.943666681,55.38785704],[9.943666681,55.387946335],[9.943509475,55.387946335]]]},"properties":{"id":3078,"top":7437525.5681,"id_0":3078,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437508.0681,"col_index":43,"row_index":24}},{"id":3079,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38785704],[9.943509475,55.387767744],[9.943666681,55.387767744],[9.943666681,55.38785704],[9.943509475,55.38785704]]]},"properties":{"id":3079,"top":7437508.0681,"id_0":3079,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437490.5681,"col_index":43,"row_index":25}},{"id":3080,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387767744],[9.943509475,55.387678448],[9.943666681,55.387678448],[9.943666681,55.387767744],[9.943509475,55.387767744]]]},"properties":{"id":3080,"top":7437490.5681,"id_0":3080,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437473.0681,"col_index":43,"row_index":26}},{"id":3081,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387678448],[9.943509475,55.387589153],[9.943666681,55.387589153],[9.943666681,55.387678448],[9.943509475,55.387678448]]]},"properties":{"id":3081,"top":7437473.0681,"id_0":3081,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437455.5681,"col_index":43,"row_index":27}},{"id":3082,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387589153],[9.943509475,55.387499856],[9.943666681,55.387499856],[9.943666681,55.387589153],[9.943509475,55.387589153]]]},"properties":{"id":3082,"top":7437455.5681,"id_0":3082,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437438.0681,"col_index":43,"row_index":28}},{"id":3083,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387499856],[9.943509475,55.38741056],[9.943666681,55.38741056],[9.943666681,55.387499856],[9.943509475,55.387499856]]]},"properties":{"id":3083,"top":7437438.0681,"id_0":3083,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437420.5681,"col_index":43,"row_index":29}},{"id":3084,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38741056],[9.943509475,55.387321264],[9.943666681,55.387321264],[9.943666681,55.38741056],[9.943509475,55.38741056]]]},"properties":{"id":3084,"top":7437420.5681,"id_0":3084,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437403.0681,"col_index":43,"row_index":30}},{"id":3085,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387321264],[9.943509475,55.387231967],[9.943666681,55.387231967],[9.943666681,55.387321264],[9.943509475,55.387321264]]]},"properties":{"id":3085,"top":7437403.0681,"id_0":3085,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437385.5681,"col_index":43,"row_index":31}},{"id":3086,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387231967],[9.943509475,55.38714267],[9.943666681,55.38714267],[9.943666681,55.387231967],[9.943509475,55.387231967]]]},"properties":{"id":3086,"top":7437385.5681,"id_0":3086,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437368.0681,"col_index":43,"row_index":32}},{"id":3087,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38714267],[9.943509475,55.387053373],[9.943666681,55.387053373],[9.943666681,55.38714267],[9.943509475,55.38714267]]]},"properties":{"id":3087,"top":7437368.0681,"id_0":3087,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437350.5681,"col_index":43,"row_index":33}},{"id":3088,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.387053373],[9.943509475,55.386964076],[9.943666681,55.386964076],[9.943666681,55.387053373],[9.943509475,55.387053373]]]},"properties":{"id":3088,"top":7437350.5681,"id_0":3088,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437333.0681,"col_index":43,"row_index":34}},{"id":3089,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386964076],[9.943509475,55.386874778],[9.943666681,55.386874778],[9.943666681,55.386964076],[9.943509475,55.386964076]]]},"properties":{"id":3089,"top":7437333.0681,"id_0":3089,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437315.5681,"col_index":43,"row_index":35}},{"id":3090,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386874778],[9.943509475,55.38678548],[9.943666681,55.38678548],[9.943666681,55.386874778],[9.943509475,55.386874778]]]},"properties":{"id":3090,"top":7437315.5681,"id_0":3090,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437298.0681,"col_index":43,"row_index":36}},{"id":3091,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38678548],[9.943509475,55.386696182],[9.943666681,55.386696182],[9.943666681,55.38678548],[9.943509475,55.38678548]]]},"properties":{"id":3091,"top":7437298.0681,"id_0":3091,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437280.5681,"col_index":43,"row_index":37}},{"id":3092,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386696182],[9.943509475,55.386606884],[9.943666681,55.386606884],[9.943666681,55.386696182],[9.943509475,55.386696182]]]},"properties":{"id":3092,"top":7437280.5681,"id_0":3092,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437263.0681,"col_index":43,"row_index":38}},{"id":3093,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386606884],[9.943509475,55.386517586],[9.943666681,55.386517586],[9.943666681,55.386606884],[9.943509475,55.386606884]]]},"properties":{"id":3093,"top":7437263.0681,"id_0":3093,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437245.5681,"col_index":43,"row_index":39}},{"id":3094,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386517586],[9.943509475,55.386428287],[9.943666681,55.386428287],[9.943666681,55.386517586],[9.943509475,55.386517586]]]},"properties":{"id":3094,"top":7437245.5681,"id_0":3094,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437228.0681,"col_index":43,"row_index":40}},{"id":3095,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386428287],[9.943509475,55.386338989],[9.943666681,55.386338989],[9.943666681,55.386428287],[9.943509475,55.386428287]]]},"properties":{"id":3095,"top":7437228.0681,"id_0":3095,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437210.5681,"col_index":43,"row_index":41}},{"id":3096,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386338989],[9.943509475,55.38624969],[9.943666681,55.38624969],[9.943666681,55.386338989],[9.943509475,55.386338989]]]},"properties":{"id":3096,"top":7437210.5681,"id_0":3096,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437193.0681,"col_index":43,"row_index":42}},{"id":3097,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38624969],[9.943509475,55.386160391],[9.943666681,55.386160391],[9.943666681,55.38624969],[9.943509475,55.38624969]]]},"properties":{"id":3097,"top":7437193.0681,"id_0":3097,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437175.5681,"col_index":43,"row_index":43}},{"id":3098,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386160391],[9.943509475,55.386071091],[9.943666681,55.386071091],[9.943666681,55.386160391],[9.943509475,55.386160391]]]},"properties":{"id":3098,"top":7437175.5681,"id_0":3098,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437158.0681,"col_index":43,"row_index":44}},{"id":3099,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.386071091],[9.943509475,55.385981792],[9.943666681,55.385981792],[9.943666681,55.386071091],[9.943509475,55.386071091]]]},"properties":{"id":3099,"top":7437158.0681,"id_0":3099,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437140.5681,"col_index":43,"row_index":45}},{"id":3100,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385981792],[9.943509475,55.385892492],[9.943666681,55.385892492],[9.943666681,55.385981792],[9.943509475,55.385981792]]]},"properties":{"id":3100,"top":7437140.5681,"id_0":3100,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437123.0681,"col_index":43,"row_index":46}},{"id":3101,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385892492],[9.943509475,55.385803192],[9.943666681,55.385803192],[9.943666681,55.385892492],[9.943509475,55.385892492]]]},"properties":{"id":3101,"top":7437123.0681,"id_0":3101,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437105.5681,"col_index":43,"row_index":47}},{"id":3102,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385803192],[9.943509475,55.385713892],[9.943666681,55.385713892],[9.943666681,55.385803192],[9.943509475,55.385803192]]]},"properties":{"id":3102,"top":7437105.5681,"id_0":3102,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437088.0681,"col_index":43,"row_index":48}},{"id":3103,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385713892],[9.943509475,55.385624592],[9.943666681,55.385624592],[9.943666681,55.385713892],[9.943509475,55.385713892]]]},"properties":{"id":3103,"top":7437088.0681,"id_0":3103,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437070.5681,"col_index":43,"row_index":49}},{"id":3104,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385624592],[9.943509475,55.385535291],[9.943666681,55.385535291],[9.943666681,55.385624592],[9.943509475,55.385624592]]]},"properties":{"id":3104,"top":7437070.5681,"id_0":3104,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437053.0681,"col_index":43,"row_index":50}},{"id":3105,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385535291],[9.943509475,55.38544599],[9.943666681,55.38544599],[9.943666681,55.385535291],[9.943509475,55.385535291]]]},"properties":{"id":3105,"top":7437053.0681,"id_0":3105,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437035.5681,"col_index":43,"row_index":51}},{"id":3106,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38544599],[9.943509475,55.385356689],[9.943666681,55.385356689],[9.943666681,55.38544599],[9.943509475,55.38544599]]]},"properties":{"id":3106,"top":7437035.5681,"id_0":3106,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437018.0681,"col_index":43,"row_index":52}},{"id":3107,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385356689],[9.943509475,55.385267388],[9.943666681,55.385267388],[9.943666681,55.385356689],[9.943509475,55.385356689]]]},"properties":{"id":3107,"top":7437018.0681,"id_0":3107,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7437000.5681,"col_index":43,"row_index":53}},{"id":3108,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385267388],[9.943509475,55.385178087],[9.943666681,55.385178087],[9.943666681,55.385267388],[9.943509475,55.385267388]]]},"properties":{"id":3108,"top":7437000.5681,"id_0":3108,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436983.0681,"col_index":43,"row_index":54}},{"id":3109,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385178087],[9.943509475,55.385088785],[9.943666681,55.385088785],[9.943666681,55.385178087],[9.943509475,55.385178087]]]},"properties":{"id":3109,"top":7436983.0681,"id_0":3109,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436965.5681,"col_index":43,"row_index":55}},{"id":3110,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.385088785],[9.943509475,55.384999484],[9.943666681,55.384999484],[9.943666681,55.385088785],[9.943509475,55.385088785]]]},"properties":{"id":3110,"top":7436965.5681,"id_0":3110,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436948.0681,"col_index":43,"row_index":56}},{"id":3111,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384999484],[9.943509475,55.384910182],[9.943666681,55.384910182],[9.943666681,55.384999484],[9.943509475,55.384999484]]]},"properties":{"id":3111,"top":7436948.0681,"id_0":3111,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436930.5681,"col_index":43,"row_index":57}},{"id":3112,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384910182],[9.943509475,55.38482088],[9.943666681,55.38482088],[9.943666681,55.384910182],[9.943509475,55.384910182]]]},"properties":{"id":3112,"top":7436930.5681,"id_0":3112,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436913.0681,"col_index":43,"row_index":58}},{"id":3113,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.38482088],[9.943509475,55.384731577],[9.943666681,55.384731577],[9.943666681,55.38482088],[9.943509475,55.38482088]]]},"properties":{"id":3113,"top":7436913.0681,"id_0":3113,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436895.5681,"col_index":43,"row_index":59}},{"id":3114,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384731577],[9.943509475,55.384642275],[9.943666681,55.384642275],[9.943666681,55.384731577],[9.943509475,55.384731577]]]},"properties":{"id":3114,"top":7436895.5681,"id_0":3114,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436878.0681,"col_index":43,"row_index":60}},{"id":3115,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384642275],[9.943509475,55.384552972],[9.943666681,55.384552972],[9.943666681,55.384642275],[9.943509475,55.384642275]]]},"properties":{"id":3115,"top":7436878.0681,"id_0":3115,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436860.5681,"col_index":43,"row_index":61}},{"id":3116,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384552972],[9.943509475,55.384463669],[9.943666681,55.384463669],[9.943666681,55.384552972],[9.943509475,55.384552972]]]},"properties":{"id":3116,"top":7436860.5681,"id_0":3116,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436843.0681,"col_index":43,"row_index":62}},{"id":3117,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384463669],[9.943509475,55.384374366],[9.943666681,55.384374366],[9.943666681,55.384463669],[9.943509475,55.384463669]]]},"properties":{"id":3117,"top":7436843.0681,"id_0":3117,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436825.5681,"col_index":43,"row_index":63}},{"id":3118,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384374366],[9.943509475,55.384285062],[9.943666681,55.384285062],[9.943666681,55.384374366],[9.943509475,55.384374366]]]},"properties":{"id":3118,"top":7436825.5681,"id_0":3118,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436808.0681,"col_index":43,"row_index":64}},{"id":3119,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384285062],[9.943509475,55.384195759],[9.943666681,55.384195759],[9.943666681,55.384285062],[9.943509475,55.384285062]]]},"properties":{"id":3119,"top":7436808.0681,"id_0":3119,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436790.5681,"col_index":43,"row_index":65}},{"id":3120,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384195759],[9.943509475,55.384106455],[9.943666681,55.384106455],[9.943666681,55.384195759],[9.943509475,55.384195759]]]},"properties":{"id":3120,"top":7436790.5681,"id_0":3120,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436773.0681,"col_index":43,"row_index":66}},{"id":3121,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384106455],[9.943509475,55.384017151],[9.943666681,55.384017151],[9.943666681,55.384106455],[9.943509475,55.384106455]]]},"properties":{"id":3121,"top":7436773.0681,"id_0":3121,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436755.5681,"col_index":43,"row_index":67}},{"id":3122,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.384017151],[9.943509475,55.383927847],[9.943666681,55.383927847],[9.943666681,55.384017151],[9.943509475,55.384017151]]]},"properties":{"id":3122,"top":7436755.5681,"id_0":3122,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436738.0681,"col_index":43,"row_index":68}},{"id":3123,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.383927847],[9.943509475,55.383838543],[9.943666681,55.383838543],[9.943666681,55.383927847],[9.943509475,55.383927847]]]},"properties":{"id":3123,"top":7436738.0681,"id_0":3123,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436720.5681,"col_index":43,"row_index":69}},{"id":3124,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.383838543],[9.943509475,55.383749238],[9.943666681,55.383749238],[9.943666681,55.383838543],[9.943509475,55.383838543]]]},"properties":{"id":3124,"top":7436720.5681,"id_0":3124,"left":1106906.4115,"Label":null,"right":1106923.9115,"bottom":7436703.0681,"col_index":43,"row_index":70}},{"id":3125,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.390089362],[9.943666681,55.390000071],[9.943823886,55.390000071],[9.943823886,55.390089362],[9.943666681,55.390089362]]]},"properties":{"id":3125,"top":7437945.5681,"id_0":3125,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437928.0681,"col_index":44,"row_index":0}},{"id":3126,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.390000071],[9.943666681,55.38991078],[9.943823886,55.38991078],[9.943823886,55.390000071],[9.943666681,55.390000071]]]},"properties":{"id":3126,"top":7437928.0681,"id_0":3126,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437910.5681,"col_index":44,"row_index":1}},{"id":3127,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38991078],[9.943666681,55.38982149],[9.943823886,55.38982149],[9.943823886,55.38991078],[9.943666681,55.38991078]]]},"properties":{"id":3127,"top":7437910.5681,"id_0":3127,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437893.0681,"col_index":44,"row_index":2}},{"id":3128,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38982149],[9.943666681,55.389732199],[9.943823886,55.389732199],[9.943823886,55.38982149],[9.943666681,55.38982149]]]},"properties":{"id":3128,"top":7437893.0681,"id_0":3128,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437875.5681,"col_index":44,"row_index":3}},{"id":3129,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389732199],[9.943666681,55.389642907],[9.943823886,55.389642907],[9.943823886,55.389732199],[9.943666681,55.389732199]]]},"properties":{"id":3129,"top":7437875.5681,"id_0":3129,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437858.0681,"col_index":44,"row_index":4}},{"id":3130,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389642907],[9.943666681,55.389553616],[9.943823886,55.389553616],[9.943823886,55.389642907],[9.943666681,55.389642907]]]},"properties":{"id":3130,"top":7437858.0681,"id_0":3130,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437840.5681,"col_index":44,"row_index":5}},{"id":3131,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389553616],[9.943666681,55.389464324],[9.943823886,55.389464324],[9.943823886,55.389553616],[9.943666681,55.389553616]]]},"properties":{"id":3131,"top":7437840.5681,"id_0":3131,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437823.0681,"col_index":44,"row_index":6}},{"id":3132,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389464324],[9.943666681,55.389375032],[9.943823886,55.389375032],[9.943823886,55.389464324],[9.943666681,55.389464324]]]},"properties":{"id":3132,"top":7437823.0681,"id_0":3132,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437805.5681,"col_index":44,"row_index":7}},{"id":3133,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389375032],[9.943666681,55.38928574],[9.943823886,55.38928574],[9.943823886,55.389375032],[9.943666681,55.389375032]]]},"properties":{"id":3133,"top":7437805.5681,"id_0":3133,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437788.0681,"col_index":44,"row_index":8}},{"id":3134,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38928574],[9.943666681,55.389196448],[9.943823886,55.389196448],[9.943823886,55.38928574],[9.943666681,55.38928574]]]},"properties":{"id":3134,"top":7437788.0681,"id_0":3134,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437770.5681,"col_index":44,"row_index":9}},{"id":3135,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389196448],[9.943666681,55.389107155],[9.943823886,55.389107155],[9.943823886,55.389196448],[9.943666681,55.389196448]]]},"properties":{"id":3135,"top":7437770.5681,"id_0":3135,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437753.0681,"col_index":44,"row_index":10}},{"id":3136,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389107155],[9.943666681,55.389017863],[9.943823886,55.389017863],[9.943823886,55.389107155],[9.943666681,55.389107155]]]},"properties":{"id":3136,"top":7437753.0681,"id_0":3136,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437735.5681,"col_index":44,"row_index":11}},{"id":3137,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.389017863],[9.943666681,55.38892857],[9.943823886,55.38892857],[9.943823886,55.389017863],[9.943666681,55.389017863]]]},"properties":{"id":3137,"top":7437735.5681,"id_0":3137,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437718.0681,"col_index":44,"row_index":12}},{"id":3138,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38892857],[9.943666681,55.388839277],[9.943823886,55.388839277],[9.943823886,55.38892857],[9.943666681,55.38892857]]]},"properties":{"id":3138,"top":7437718.0681,"id_0":3138,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437700.5681,"col_index":44,"row_index":13}},{"id":3139,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388839277],[9.943666681,55.388749984],[9.943823886,55.388749984],[9.943823886,55.388839277],[9.943666681,55.388839277]]]},"properties":{"id":3139,"top":7437700.5681,"id_0":3139,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437683.0681,"col_index":44,"row_index":14}},{"id":3140,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388749984],[9.943666681,55.38866069],[9.943823886,55.38866069],[9.943823886,55.388749984],[9.943666681,55.388749984]]]},"properties":{"id":3140,"top":7437683.0681,"id_0":3140,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437665.5681,"col_index":44,"row_index":15}},{"id":3141,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38866069],[9.943666681,55.388571396],[9.943823886,55.388571396],[9.943823886,55.38866069],[9.943666681,55.38866069]]]},"properties":{"id":3141,"top":7437665.5681,"id_0":3141,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437648.0681,"col_index":44,"row_index":16}},{"id":3142,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388571396],[9.943666681,55.388482103],[9.943823886,55.388482103],[9.943823886,55.388571396],[9.943666681,55.388571396]]]},"properties":{"id":3142,"top":7437648.0681,"id_0":3142,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437630.5681,"col_index":44,"row_index":17}},{"id":3143,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388482103],[9.943666681,55.388392808],[9.943823886,55.388392808],[9.943823886,55.388482103],[9.943666681,55.388482103]]]},"properties":{"id":3143,"top":7437630.5681,"id_0":3143,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437613.0681,"col_index":44,"row_index":18}},{"id":3144,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388392808],[9.943666681,55.388303514],[9.943823886,55.388303514],[9.943823886,55.388392808],[9.943666681,55.388392808]]]},"properties":{"id":3144,"top":7437613.0681,"id_0":3144,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437595.5681,"col_index":44,"row_index":19}},{"id":3145,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388303514],[9.943666681,55.38821422],[9.943823886,55.38821422],[9.943823886,55.388303514],[9.943666681,55.388303514]]]},"properties":{"id":3145,"top":7437595.5681,"id_0":3145,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437578.0681,"col_index":44,"row_index":20}},{"id":3146,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38821422],[9.943666681,55.388124925],[9.943823886,55.388124925],[9.943823886,55.38821422],[9.943666681,55.38821422]]]},"properties":{"id":3146,"top":7437578.0681,"id_0":3146,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437560.5681,"col_index":44,"row_index":21}},{"id":3147,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.388124925],[9.943666681,55.38803563],[9.943823886,55.38803563],[9.943823886,55.388124925],[9.943666681,55.388124925]]]},"properties":{"id":3147,"top":7437560.5681,"id_0":3147,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437543.0681,"col_index":44,"row_index":22}},{"id":3148,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38803563],[9.943666681,55.387946335],[9.943823886,55.387946335],[9.943823886,55.38803563],[9.943666681,55.38803563]]]},"properties":{"id":3148,"top":7437543.0681,"id_0":3148,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437525.5681,"col_index":44,"row_index":23}},{"id":3149,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387946335],[9.943666681,55.38785704],[9.943823886,55.38785704],[9.943823886,55.387946335],[9.943666681,55.387946335]]]},"properties":{"id":3149,"top":7437525.5681,"id_0":3149,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437508.0681,"col_index":44,"row_index":24}},{"id":3150,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38785704],[9.943666681,55.387767744],[9.943823886,55.387767744],[9.943823886,55.38785704],[9.943666681,55.38785704]]]},"properties":{"id":3150,"top":7437508.0681,"id_0":3150,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437490.5681,"col_index":44,"row_index":25}},{"id":3151,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387767744],[9.943666681,55.387678448],[9.943823886,55.387678448],[9.943823886,55.387767744],[9.943666681,55.387767744]]]},"properties":{"id":3151,"top":7437490.5681,"id_0":3151,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437473.0681,"col_index":44,"row_index":26}},{"id":3152,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387678448],[9.943666681,55.387589153],[9.943823886,55.387589153],[9.943823886,55.387678448],[9.943666681,55.387678448]]]},"properties":{"id":3152,"top":7437473.0681,"id_0":3152,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437455.5681,"col_index":44,"row_index":27}},{"id":3153,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387589153],[9.943666681,55.387499856],[9.943823886,55.387499856],[9.943823886,55.387589153],[9.943666681,55.387589153]]]},"properties":{"id":3153,"top":7437455.5681,"id_0":3153,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437438.0681,"col_index":44,"row_index":28}},{"id":3154,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387499856],[9.943666681,55.38741056],[9.943823886,55.38741056],[9.943823886,55.387499856],[9.943666681,55.387499856]]]},"properties":{"id":3154,"top":7437438.0681,"id_0":3154,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437420.5681,"col_index":44,"row_index":29}},{"id":3155,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38741056],[9.943666681,55.387321264],[9.943823886,55.387321264],[9.943823886,55.38741056],[9.943666681,55.38741056]]]},"properties":{"id":3155,"top":7437420.5681,"id_0":3155,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437403.0681,"col_index":44,"row_index":30}},{"id":3156,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387321264],[9.943666681,55.387231967],[9.943823886,55.387231967],[9.943823886,55.387321264],[9.943666681,55.387321264]]]},"properties":{"id":3156,"top":7437403.0681,"id_0":3156,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437385.5681,"col_index":44,"row_index":31}},{"id":3157,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387231967],[9.943666681,55.38714267],[9.943823886,55.38714267],[9.943823886,55.387231967],[9.943666681,55.387231967]]]},"properties":{"id":3157,"top":7437385.5681,"id_0":3157,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437368.0681,"col_index":44,"row_index":32}},{"id":3158,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38714267],[9.943666681,55.387053373],[9.943823886,55.387053373],[9.943823886,55.38714267],[9.943666681,55.38714267]]]},"properties":{"id":3158,"top":7437368.0681,"id_0":3158,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437350.5681,"col_index":44,"row_index":33}},{"id":3159,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.387053373],[9.943666681,55.386964076],[9.943823886,55.386964076],[9.943823886,55.387053373],[9.943666681,55.387053373]]]},"properties":{"id":3159,"top":7437350.5681,"id_0":3159,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437333.0681,"col_index":44,"row_index":34}},{"id":3160,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386964076],[9.943666681,55.386874778],[9.943823886,55.386874778],[9.943823886,55.386964076],[9.943666681,55.386964076]]]},"properties":{"id":3160,"top":7437333.0681,"id_0":3160,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437315.5681,"col_index":44,"row_index":35}},{"id":3161,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386874778],[9.943666681,55.38678548],[9.943823886,55.38678548],[9.943823886,55.386874778],[9.943666681,55.386874778]]]},"properties":{"id":3161,"top":7437315.5681,"id_0":3161,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437298.0681,"col_index":44,"row_index":36}},{"id":3162,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38678548],[9.943666681,55.386696182],[9.943823886,55.386696182],[9.943823886,55.38678548],[9.943666681,55.38678548]]]},"properties":{"id":3162,"top":7437298.0681,"id_0":3162,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437280.5681,"col_index":44,"row_index":37}},{"id":3163,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386696182],[9.943666681,55.386606884],[9.943823886,55.386606884],[9.943823886,55.386696182],[9.943666681,55.386696182]]]},"properties":{"id":3163,"top":7437280.5681,"id_0":3163,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437263.0681,"col_index":44,"row_index":38}},{"id":3164,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386606884],[9.943666681,55.386517586],[9.943823886,55.386517586],[9.943823886,55.386606884],[9.943666681,55.386606884]]]},"properties":{"id":3164,"top":7437263.0681,"id_0":3164,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437245.5681,"col_index":44,"row_index":39}},{"id":3165,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386517586],[9.943666681,55.386428287],[9.943823886,55.386428287],[9.943823886,55.386517586],[9.943666681,55.386517586]]]},"properties":{"id":3165,"top":7437245.5681,"id_0":3165,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437228.0681,"col_index":44,"row_index":40}},{"id":3166,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386428287],[9.943666681,55.386338989],[9.943823886,55.386338989],[9.943823886,55.386428287],[9.943666681,55.386428287]]]},"properties":{"id":3166,"top":7437228.0681,"id_0":3166,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437210.5681,"col_index":44,"row_index":41}},{"id":3167,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386338989],[9.943666681,55.38624969],[9.943823886,55.38624969],[9.943823886,55.386338989],[9.943666681,55.386338989]]]},"properties":{"id":3167,"top":7437210.5681,"id_0":3167,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437193.0681,"col_index":44,"row_index":42}},{"id":3168,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38624969],[9.943666681,55.386160391],[9.943823886,55.386160391],[9.943823886,55.38624969],[9.943666681,55.38624969]]]},"properties":{"id":3168,"top":7437193.0681,"id_0":3168,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437175.5681,"col_index":44,"row_index":43}},{"id":3169,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386160391],[9.943666681,55.386071091],[9.943823886,55.386071091],[9.943823886,55.386160391],[9.943666681,55.386160391]]]},"properties":{"id":3169,"top":7437175.5681,"id_0":3169,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437158.0681,"col_index":44,"row_index":44}},{"id":3170,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.386071091],[9.943666681,55.385981792],[9.943823886,55.385981792],[9.943823886,55.386071091],[9.943666681,55.386071091]]]},"properties":{"id":3170,"top":7437158.0681,"id_0":3170,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437140.5681,"col_index":44,"row_index":45}},{"id":3171,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385981792],[9.943666681,55.385892492],[9.943823886,55.385892492],[9.943823886,55.385981792],[9.943666681,55.385981792]]]},"properties":{"id":3171,"top":7437140.5681,"id_0":3171,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437123.0681,"col_index":44,"row_index":46}},{"id":3172,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385892492],[9.943666681,55.385803192],[9.943823886,55.385803192],[9.943823886,55.385892492],[9.943666681,55.385892492]]]},"properties":{"id":3172,"top":7437123.0681,"id_0":3172,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437105.5681,"col_index":44,"row_index":47}},{"id":3173,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385803192],[9.943666681,55.385713892],[9.943823886,55.385713892],[9.943823886,55.385803192],[9.943666681,55.385803192]]]},"properties":{"id":3173,"top":7437105.5681,"id_0":3173,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437088.0681,"col_index":44,"row_index":48}},{"id":3174,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385713892],[9.943666681,55.385624592],[9.943823886,55.385624592],[9.943823886,55.385713892],[9.943666681,55.385713892]]]},"properties":{"id":3174,"top":7437088.0681,"id_0":3174,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437070.5681,"col_index":44,"row_index":49}},{"id":3175,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385624592],[9.943666681,55.385535291],[9.943823886,55.385535291],[9.943823886,55.385624592],[9.943666681,55.385624592]]]},"properties":{"id":3175,"top":7437070.5681,"id_0":3175,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437053.0681,"col_index":44,"row_index":50}},{"id":3176,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385535291],[9.943666681,55.38544599],[9.943823886,55.38544599],[9.943823886,55.385535291],[9.943666681,55.385535291]]]},"properties":{"id":3176,"top":7437053.0681,"id_0":3176,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437035.5681,"col_index":44,"row_index":51}},{"id":3177,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38544599],[9.943666681,55.385356689],[9.943823886,55.385356689],[9.943823886,55.38544599],[9.943666681,55.38544599]]]},"properties":{"id":3177,"top":7437035.5681,"id_0":3177,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437018.0681,"col_index":44,"row_index":52}},{"id":3178,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385356689],[9.943666681,55.385267388],[9.943823886,55.385267388],[9.943823886,55.385356689],[9.943666681,55.385356689]]]},"properties":{"id":3178,"top":7437018.0681,"id_0":3178,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7437000.5681,"col_index":44,"row_index":53}},{"id":3179,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385267388],[9.943666681,55.385178087],[9.943823886,55.385178087],[9.943823886,55.385267388],[9.943666681,55.385267388]]]},"properties":{"id":3179,"top":7437000.5681,"id_0":3179,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436983.0681,"col_index":44,"row_index":54}},{"id":3180,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385178087],[9.943666681,55.385088785],[9.943823886,55.385088785],[9.943823886,55.385178087],[9.943666681,55.385178087]]]},"properties":{"id":3180,"top":7436983.0681,"id_0":3180,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436965.5681,"col_index":44,"row_index":55}},{"id":3181,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.385088785],[9.943666681,55.384999484],[9.943823886,55.384999484],[9.943823886,55.385088785],[9.943666681,55.385088785]]]},"properties":{"id":3181,"top":7436965.5681,"id_0":3181,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436948.0681,"col_index":44,"row_index":56}},{"id":3182,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384999484],[9.943666681,55.384910182],[9.943823886,55.384910182],[9.943823886,55.384999484],[9.943666681,55.384999484]]]},"properties":{"id":3182,"top":7436948.0681,"id_0":3182,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436930.5681,"col_index":44,"row_index":57}},{"id":3183,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384910182],[9.943666681,55.38482088],[9.943823886,55.38482088],[9.943823886,55.384910182],[9.943666681,55.384910182]]]},"properties":{"id":3183,"top":7436930.5681,"id_0":3183,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436913.0681,"col_index":44,"row_index":58}},{"id":3184,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.38482088],[9.943666681,55.384731577],[9.943823886,55.384731577],[9.943823886,55.38482088],[9.943666681,55.38482088]]]},"properties":{"id":3184,"top":7436913.0681,"id_0":3184,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436895.5681,"col_index":44,"row_index":59}},{"id":3185,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384731577],[9.943666681,55.384642275],[9.943823886,55.384642275],[9.943823886,55.384731577],[9.943666681,55.384731577]]]},"properties":{"id":3185,"top":7436895.5681,"id_0":3185,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436878.0681,"col_index":44,"row_index":60}},{"id":3186,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384642275],[9.943666681,55.384552972],[9.943823886,55.384552972],[9.943823886,55.384642275],[9.943666681,55.384642275]]]},"properties":{"id":3186,"top":7436878.0681,"id_0":3186,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436860.5681,"col_index":44,"row_index":61}},{"id":3187,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384552972],[9.943666681,55.384463669],[9.943823886,55.384463669],[9.943823886,55.384552972],[9.943666681,55.384552972]]]},"properties":{"id":3187,"top":7436860.5681,"id_0":3187,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436843.0681,"col_index":44,"row_index":62}},{"id":3188,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384463669],[9.943666681,55.384374366],[9.943823886,55.384374366],[9.943823886,55.384463669],[9.943666681,55.384463669]]]},"properties":{"id":3188,"top":7436843.0681,"id_0":3188,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436825.5681,"col_index":44,"row_index":63}},{"id":3189,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384374366],[9.943666681,55.384285062],[9.943823886,55.384285062],[9.943823886,55.384374366],[9.943666681,55.384374366]]]},"properties":{"id":3189,"top":7436825.5681,"id_0":3189,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436808.0681,"col_index":44,"row_index":64}},{"id":3190,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384285062],[9.943666681,55.384195759],[9.943823886,55.384195759],[9.943823886,55.384285062],[9.943666681,55.384285062]]]},"properties":{"id":3190,"top":7436808.0681,"id_0":3190,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436790.5681,"col_index":44,"row_index":65}},{"id":3191,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384195759],[9.943666681,55.384106455],[9.943823886,55.384106455],[9.943823886,55.384195759],[9.943666681,55.384195759]]]},"properties":{"id":3191,"top":7436790.5681,"id_0":3191,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436773.0681,"col_index":44,"row_index":66}},{"id":3192,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384106455],[9.943666681,55.384017151],[9.943823886,55.384017151],[9.943823886,55.384106455],[9.943666681,55.384106455]]]},"properties":{"id":3192,"top":7436773.0681,"id_0":3192,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436755.5681,"col_index":44,"row_index":67}},{"id":3193,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.384017151],[9.943666681,55.383927847],[9.943823886,55.383927847],[9.943823886,55.384017151],[9.943666681,55.384017151]]]},"properties":{"id":3193,"top":7436755.5681,"id_0":3193,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436738.0681,"col_index":44,"row_index":68}},{"id":3194,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.383927847],[9.943666681,55.383838543],[9.943823886,55.383838543],[9.943823886,55.383927847],[9.943666681,55.383927847]]]},"properties":{"id":3194,"top":7436738.0681,"id_0":3194,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436720.5681,"col_index":44,"row_index":69}},{"id":3195,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943666681,55.383838543],[9.943666681,55.383749238],[9.943823886,55.383749238],[9.943823886,55.383838543],[9.943666681,55.383838543]]]},"properties":{"id":3195,"top":7436720.5681,"id_0":3195,"left":1106923.9115,"Label":null,"right":1106941.4115,"bottom":7436703.0681,"col_index":44,"row_index":70}},{"id":3196,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.390089362],[9.943823886,55.390000071],[9.943981091,55.390000071],[9.943981091,55.390089362],[9.943823886,55.390089362]]]},"properties":{"id":3196,"top":7437945.5681,"id_0":3196,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437928.0681,"col_index":45,"row_index":0}},{"id":3197,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.390000071],[9.943823886,55.38991078],[9.943981091,55.38991078],[9.943981091,55.390000071],[9.943823886,55.390000071]]]},"properties":{"id":3197,"top":7437928.0681,"id_0":3197,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437910.5681,"col_index":45,"row_index":1}},{"id":3198,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38991078],[9.943823886,55.38982149],[9.943981091,55.38982149],[9.943981091,55.38991078],[9.943823886,55.38991078]]]},"properties":{"id":3198,"top":7437910.5681,"id_0":3198,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437893.0681,"col_index":45,"row_index":2}},{"id":3199,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38982149],[9.943823886,55.389732199],[9.943981091,55.389732199],[9.943981091,55.38982149],[9.943823886,55.38982149]]]},"properties":{"id":3199,"top":7437893.0681,"id_0":3199,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437875.5681,"col_index":45,"row_index":3}},{"id":3200,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389732199],[9.943823886,55.389642907],[9.943981091,55.389642907],[9.943981091,55.389732199],[9.943823886,55.389732199]]]},"properties":{"id":3200,"top":7437875.5681,"id_0":3200,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437858.0681,"col_index":45,"row_index":4}},{"id":3201,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389642907],[9.943823886,55.389553616],[9.943981091,55.389553616],[9.943981091,55.389642907],[9.943823886,55.389642907]]]},"properties":{"id":3201,"top":7437858.0681,"id_0":3201,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437840.5681,"col_index":45,"row_index":5}},{"id":3202,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389553616],[9.943823886,55.389464324],[9.943981091,55.389464324],[9.943981091,55.389553616],[9.943823886,55.389553616]]]},"properties":{"id":3202,"top":7437840.5681,"id_0":3202,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437823.0681,"col_index":45,"row_index":6}},{"id":3203,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389464324],[9.943823886,55.389375032],[9.943981091,55.389375032],[9.943981091,55.389464324],[9.943823886,55.389464324]]]},"properties":{"id":3203,"top":7437823.0681,"id_0":3203,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437805.5681,"col_index":45,"row_index":7}},{"id":3204,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389375032],[9.943823886,55.38928574],[9.943981091,55.38928574],[9.943981091,55.389375032],[9.943823886,55.389375032]]]},"properties":{"id":3204,"top":7437805.5681,"id_0":3204,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437788.0681,"col_index":45,"row_index":8}},{"id":3205,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38928574],[9.943823886,55.389196448],[9.943981091,55.389196448],[9.943981091,55.38928574],[9.943823886,55.38928574]]]},"properties":{"id":3205,"top":7437788.0681,"id_0":3205,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437770.5681,"col_index":45,"row_index":9}},{"id":3206,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389196448],[9.943823886,55.389107155],[9.943981091,55.389107155],[9.943981091,55.389196448],[9.943823886,55.389196448]]]},"properties":{"id":3206,"top":7437770.5681,"id_0":3206,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437753.0681,"col_index":45,"row_index":10}},{"id":3207,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389107155],[9.943823886,55.389017863],[9.943981091,55.389017863],[9.943981091,55.389107155],[9.943823886,55.389107155]]]},"properties":{"id":3207,"top":7437753.0681,"id_0":3207,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437735.5681,"col_index":45,"row_index":11}},{"id":3208,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.389017863],[9.943823886,55.38892857],[9.943981091,55.38892857],[9.943981091,55.389017863],[9.943823886,55.389017863]]]},"properties":{"id":3208,"top":7437735.5681,"id_0":3208,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437718.0681,"col_index":45,"row_index":12}},{"id":3209,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38892857],[9.943823886,55.388839277],[9.943981091,55.388839277],[9.943981091,55.38892857],[9.943823886,55.38892857]]]},"properties":{"id":3209,"top":7437718.0681,"id_0":3209,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437700.5681,"col_index":45,"row_index":13}},{"id":3210,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388839277],[9.943823886,55.388749984],[9.943981091,55.388749984],[9.943981091,55.388839277],[9.943823886,55.388839277]]]},"properties":{"id":3210,"top":7437700.5681,"id_0":3210,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437683.0681,"col_index":45,"row_index":14}},{"id":3211,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388749984],[9.943823886,55.38866069],[9.943981091,55.38866069],[9.943981091,55.388749984],[9.943823886,55.388749984]]]},"properties":{"id":3211,"top":7437683.0681,"id_0":3211,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437665.5681,"col_index":45,"row_index":15}},{"id":3212,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38866069],[9.943823886,55.388571396],[9.943981091,55.388571396],[9.943981091,55.38866069],[9.943823886,55.38866069]]]},"properties":{"id":3212,"top":7437665.5681,"id_0":3212,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437648.0681,"col_index":45,"row_index":16}},{"id":3213,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388571396],[9.943823886,55.388482103],[9.943981091,55.388482103],[9.943981091,55.388571396],[9.943823886,55.388571396]]]},"properties":{"id":3213,"top":7437648.0681,"id_0":3213,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437630.5681,"col_index":45,"row_index":17}},{"id":3214,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388482103],[9.943823886,55.388392808],[9.943981091,55.388392808],[9.943981091,55.388482103],[9.943823886,55.388482103]]]},"properties":{"id":3214,"top":7437630.5681,"id_0":3214,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437613.0681,"col_index":45,"row_index":18}},{"id":3215,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388392808],[9.943823886,55.388303514],[9.943981091,55.388303514],[9.943981091,55.388392808],[9.943823886,55.388392808]]]},"properties":{"id":3215,"top":7437613.0681,"id_0":3215,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437595.5681,"col_index":45,"row_index":19}},{"id":3216,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388303514],[9.943823886,55.38821422],[9.943981091,55.38821422],[9.943981091,55.388303514],[9.943823886,55.388303514]]]},"properties":{"id":3216,"top":7437595.5681,"id_0":3216,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437578.0681,"col_index":45,"row_index":20}},{"id":3217,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38821422],[9.943823886,55.388124925],[9.943981091,55.388124925],[9.943981091,55.38821422],[9.943823886,55.38821422]]]},"properties":{"id":3217,"top":7437578.0681,"id_0":3217,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437560.5681,"col_index":45,"row_index":21}},{"id":3218,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.388124925],[9.943823886,55.38803563],[9.943981091,55.38803563],[9.943981091,55.388124925],[9.943823886,55.388124925]]]},"properties":{"id":3218,"top":7437560.5681,"id_0":3218,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437543.0681,"col_index":45,"row_index":22}},{"id":3219,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38803563],[9.943823886,55.387946335],[9.943981091,55.387946335],[9.943981091,55.38803563],[9.943823886,55.38803563]]]},"properties":{"id":3219,"top":7437543.0681,"id_0":3219,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437525.5681,"col_index":45,"row_index":23}},{"id":3220,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387946335],[9.943823886,55.38785704],[9.943981091,55.38785704],[9.943981091,55.387946335],[9.943823886,55.387946335]]]},"properties":{"id":3220,"top":7437525.5681,"id_0":3220,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437508.0681,"col_index":45,"row_index":24}},{"id":3221,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38785704],[9.943823886,55.387767744],[9.943981091,55.387767744],[9.943981091,55.38785704],[9.943823886,55.38785704]]]},"properties":{"id":3221,"top":7437508.0681,"id_0":3221,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437490.5681,"col_index":45,"row_index":25}},{"id":3222,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387767744],[9.943823886,55.387678448],[9.943981091,55.387678448],[9.943981091,55.387767744],[9.943823886,55.387767744]]]},"properties":{"id":3222,"top":7437490.5681,"id_0":3222,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437473.0681,"col_index":45,"row_index":26}},{"id":3223,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387678448],[9.943823886,55.387589153],[9.943981091,55.387589153],[9.943981091,55.387678448],[9.943823886,55.387678448]]]},"properties":{"id":3223,"top":7437473.0681,"id_0":3223,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437455.5681,"col_index":45,"row_index":27}},{"id":3224,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387589153],[9.943823886,55.387499856],[9.943981091,55.387499856],[9.943981091,55.387589153],[9.943823886,55.387589153]]]},"properties":{"id":3224,"top":7437455.5681,"id_0":3224,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437438.0681,"col_index":45,"row_index":28}},{"id":3225,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387499856],[9.943823886,55.38741056],[9.943981091,55.38741056],[9.943981091,55.387499856],[9.943823886,55.387499856]]]},"properties":{"id":3225,"top":7437438.0681,"id_0":3225,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437420.5681,"col_index":45,"row_index":29}},{"id":3226,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38741056],[9.943823886,55.387321264],[9.943981091,55.387321264],[9.943981091,55.38741056],[9.943823886,55.38741056]]]},"properties":{"id":3226,"top":7437420.5681,"id_0":3226,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437403.0681,"col_index":45,"row_index":30}},{"id":3227,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387321264],[9.943823886,55.387231967],[9.943981091,55.387231967],[9.943981091,55.387321264],[9.943823886,55.387321264]]]},"properties":{"id":3227,"top":7437403.0681,"id_0":3227,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437385.5681,"col_index":45,"row_index":31}},{"id":3228,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387231967],[9.943823886,55.38714267],[9.943981091,55.38714267],[9.943981091,55.387231967],[9.943823886,55.387231967]]]},"properties":{"id":3228,"top":7437385.5681,"id_0":3228,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437368.0681,"col_index":45,"row_index":32}},{"id":3229,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38714267],[9.943823886,55.387053373],[9.943981091,55.387053373],[9.943981091,55.38714267],[9.943823886,55.38714267]]]},"properties":{"id":3229,"top":7437368.0681,"id_0":3229,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437350.5681,"col_index":45,"row_index":33}},{"id":3230,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.387053373],[9.943823886,55.386964076],[9.943981091,55.386964076],[9.943981091,55.387053373],[9.943823886,55.387053373]]]},"properties":{"id":3230,"top":7437350.5681,"id_0":3230,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437333.0681,"col_index":45,"row_index":34}},{"id":3231,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386964076],[9.943823886,55.386874778],[9.943981091,55.386874778],[9.943981091,55.386964076],[9.943823886,55.386964076]]]},"properties":{"id":3231,"top":7437333.0681,"id_0":3231,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437315.5681,"col_index":45,"row_index":35}},{"id":3232,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386874778],[9.943823886,55.38678548],[9.943981091,55.38678548],[9.943981091,55.386874778],[9.943823886,55.386874778]]]},"properties":{"id":3232,"top":7437315.5681,"id_0":3232,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437298.0681,"col_index":45,"row_index":36}},{"id":3233,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38678548],[9.943823886,55.386696182],[9.943981091,55.386696182],[9.943981091,55.38678548],[9.943823886,55.38678548]]]},"properties":{"id":3233,"top":7437298.0681,"id_0":3233,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437280.5681,"col_index":45,"row_index":37}},{"id":3234,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386696182],[9.943823886,55.386606884],[9.943981091,55.386606884],[9.943981091,55.386696182],[9.943823886,55.386696182]]]},"properties":{"id":3234,"top":7437280.5681,"id_0":3234,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437263.0681,"col_index":45,"row_index":38}},{"id":3235,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386606884],[9.943823886,55.386517586],[9.943981091,55.386517586],[9.943981091,55.386606884],[9.943823886,55.386606884]]]},"properties":{"id":3235,"top":7437263.0681,"id_0":3235,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437245.5681,"col_index":45,"row_index":39}},{"id":3236,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386517586],[9.943823886,55.386428287],[9.943981091,55.386428287],[9.943981091,55.386517586],[9.943823886,55.386517586]]]},"properties":{"id":3236,"top":7437245.5681,"id_0":3236,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437228.0681,"col_index":45,"row_index":40}},{"id":3237,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386428287],[9.943823886,55.386338989],[9.943981091,55.386338989],[9.943981091,55.386428287],[9.943823886,55.386428287]]]},"properties":{"id":3237,"top":7437228.0681,"id_0":3237,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437210.5681,"col_index":45,"row_index":41}},{"id":3238,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386338989],[9.943823886,55.38624969],[9.943981091,55.38624969],[9.943981091,55.386338989],[9.943823886,55.386338989]]]},"properties":{"id":3238,"top":7437210.5681,"id_0":3238,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437193.0681,"col_index":45,"row_index":42}},{"id":3239,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38624969],[9.943823886,55.386160391],[9.943981091,55.386160391],[9.943981091,55.38624969],[9.943823886,55.38624969]]]},"properties":{"id":3239,"top":7437193.0681,"id_0":3239,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437175.5681,"col_index":45,"row_index":43}},{"id":3240,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386160391],[9.943823886,55.386071091],[9.943981091,55.386071091],[9.943981091,55.386160391],[9.943823886,55.386160391]]]},"properties":{"id":3240,"top":7437175.5681,"id_0":3240,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437158.0681,"col_index":45,"row_index":44}},{"id":3241,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.386071091],[9.943823886,55.385981792],[9.943981091,55.385981792],[9.943981091,55.386071091],[9.943823886,55.386071091]]]},"properties":{"id":3241,"top":7437158.0681,"id_0":3241,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437140.5681,"col_index":45,"row_index":45}},{"id":3242,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385981792],[9.943823886,55.385892492],[9.943981091,55.385892492],[9.943981091,55.385981792],[9.943823886,55.385981792]]]},"properties":{"id":3242,"top":7437140.5681,"id_0":3242,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437123.0681,"col_index":45,"row_index":46}},{"id":3243,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385892492],[9.943823886,55.385803192],[9.943981091,55.385803192],[9.943981091,55.385892492],[9.943823886,55.385892492]]]},"properties":{"id":3243,"top":7437123.0681,"id_0":3243,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437105.5681,"col_index":45,"row_index":47}},{"id":3244,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385803192],[9.943823886,55.385713892],[9.943981091,55.385713892],[9.943981091,55.385803192],[9.943823886,55.385803192]]]},"properties":{"id":3244,"top":7437105.5681,"id_0":3244,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437088.0681,"col_index":45,"row_index":48}},{"id":3245,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385713892],[9.943823886,55.385624592],[9.943981091,55.385624592],[9.943981091,55.385713892],[9.943823886,55.385713892]]]},"properties":{"id":3245,"top":7437088.0681,"id_0":3245,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437070.5681,"col_index":45,"row_index":49}},{"id":3246,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385624592],[9.943823886,55.385535291],[9.943981091,55.385535291],[9.943981091,55.385624592],[9.943823886,55.385624592]]]},"properties":{"id":3246,"top":7437070.5681,"id_0":3246,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437053.0681,"col_index":45,"row_index":50}},{"id":3247,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385535291],[9.943823886,55.38544599],[9.943981091,55.38544599],[9.943981091,55.385535291],[9.943823886,55.385535291]]]},"properties":{"id":3247,"top":7437053.0681,"id_0":3247,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437035.5681,"col_index":45,"row_index":51}},{"id":3248,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38544599],[9.943823886,55.385356689],[9.943981091,55.385356689],[9.943981091,55.38544599],[9.943823886,55.38544599]]]},"properties":{"id":3248,"top":7437035.5681,"id_0":3248,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437018.0681,"col_index":45,"row_index":52}},{"id":3249,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385356689],[9.943823886,55.385267388],[9.943981091,55.385267388],[9.943981091,55.385356689],[9.943823886,55.385356689]]]},"properties":{"id":3249,"top":7437018.0681,"id_0":3249,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7437000.5681,"col_index":45,"row_index":53}},{"id":3250,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385267388],[9.943823886,55.385178087],[9.943981091,55.385178087],[9.943981091,55.385267388],[9.943823886,55.385267388]]]},"properties":{"id":3250,"top":7437000.5681,"id_0":3250,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436983.0681,"col_index":45,"row_index":54}},{"id":3251,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385178087],[9.943823886,55.385088785],[9.943981091,55.385088785],[9.943981091,55.385178087],[9.943823886,55.385178087]]]},"properties":{"id":3251,"top":7436983.0681,"id_0":3251,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436965.5681,"col_index":45,"row_index":55}},{"id":3252,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.385088785],[9.943823886,55.384999484],[9.943981091,55.384999484],[9.943981091,55.385088785],[9.943823886,55.385088785]]]},"properties":{"id":3252,"top":7436965.5681,"id_0":3252,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436948.0681,"col_index":45,"row_index":56}},{"id":3253,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384999484],[9.943823886,55.384910182],[9.943981091,55.384910182],[9.943981091,55.384999484],[9.943823886,55.384999484]]]},"properties":{"id":3253,"top":7436948.0681,"id_0":3253,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436930.5681,"col_index":45,"row_index":57}},{"id":3254,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384910182],[9.943823886,55.38482088],[9.943981091,55.38482088],[9.943981091,55.384910182],[9.943823886,55.384910182]]]},"properties":{"id":3254,"top":7436930.5681,"id_0":3254,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436913.0681,"col_index":45,"row_index":58}},{"id":3255,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.38482088],[9.943823886,55.384731577],[9.943981091,55.384731577],[9.943981091,55.38482088],[9.943823886,55.38482088]]]},"properties":{"id":3255,"top":7436913.0681,"id_0":3255,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436895.5681,"col_index":45,"row_index":59}},{"id":3256,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384731577],[9.943823886,55.384642275],[9.943981091,55.384642275],[9.943981091,55.384731577],[9.943823886,55.384731577]]]},"properties":{"id":3256,"top":7436895.5681,"id_0":3256,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436878.0681,"col_index":45,"row_index":60}},{"id":3257,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384642275],[9.943823886,55.384552972],[9.943981091,55.384552972],[9.943981091,55.384642275],[9.943823886,55.384642275]]]},"properties":{"id":3257,"top":7436878.0681,"id_0":3257,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436860.5681,"col_index":45,"row_index":61}},{"id":3258,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384552972],[9.943823886,55.384463669],[9.943981091,55.384463669],[9.943981091,55.384552972],[9.943823886,55.384552972]]]},"properties":{"id":3258,"top":7436860.5681,"id_0":3258,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436843.0681,"col_index":45,"row_index":62}},{"id":3259,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384463669],[9.943823886,55.384374366],[9.943981091,55.384374366],[9.943981091,55.384463669],[9.943823886,55.384463669]]]},"properties":{"id":3259,"top":7436843.0681,"id_0":3259,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436825.5681,"col_index":45,"row_index":63}},{"id":3260,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384374366],[9.943823886,55.384285062],[9.943981091,55.384285062],[9.943981091,55.384374366],[9.943823886,55.384374366]]]},"properties":{"id":3260,"top":7436825.5681,"id_0":3260,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436808.0681,"col_index":45,"row_index":64}},{"id":3261,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384285062],[9.943823886,55.384195759],[9.943981091,55.384195759],[9.943981091,55.384285062],[9.943823886,55.384285062]]]},"properties":{"id":3261,"top":7436808.0681,"id_0":3261,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436790.5681,"col_index":45,"row_index":65}},{"id":3262,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384195759],[9.943823886,55.384106455],[9.943981091,55.384106455],[9.943981091,55.384195759],[9.943823886,55.384195759]]]},"properties":{"id":3262,"top":7436790.5681,"id_0":3262,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436773.0681,"col_index":45,"row_index":66}},{"id":3263,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384106455],[9.943823886,55.384017151],[9.943981091,55.384017151],[9.943981091,55.384106455],[9.943823886,55.384106455]]]},"properties":{"id":3263,"top":7436773.0681,"id_0":3263,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436755.5681,"col_index":45,"row_index":67}},{"id":3264,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.384017151],[9.943823886,55.383927847],[9.943981091,55.383927847],[9.943981091,55.384017151],[9.943823886,55.384017151]]]},"properties":{"id":3264,"top":7436755.5681,"id_0":3264,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436738.0681,"col_index":45,"row_index":68}},{"id":3265,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.383927847],[9.943823886,55.383838543],[9.943981091,55.383838543],[9.943981091,55.383927847],[9.943823886,55.383927847]]]},"properties":{"id":3265,"top":7436738.0681,"id_0":3265,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436720.5681,"col_index":45,"row_index":69}},{"id":3266,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943823886,55.383838543],[9.943823886,55.383749238],[9.943981091,55.383749238],[9.943981091,55.383838543],[9.943823886,55.383838543]]]},"properties":{"id":3266,"top":7436720.5681,"id_0":3266,"left":1106941.4115,"Label":null,"right":1106958.9115,"bottom":7436703.0681,"col_index":45,"row_index":70}},{"id":3267,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.390089362],[9.943981091,55.390000071],[9.944138296,55.390000071],[9.944138296,55.390089362],[9.943981091,55.390089362]]]},"properties":{"id":3267,"top":7437945.5681,"id_0":3267,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437928.0681,"col_index":46,"row_index":0}},{"id":3268,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.390000071],[9.943981091,55.38991078],[9.944138296,55.38991078],[9.944138296,55.390000071],[9.943981091,55.390000071]]]},"properties":{"id":3268,"top":7437928.0681,"id_0":3268,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437910.5681,"col_index":46,"row_index":1}},{"id":3269,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38991078],[9.943981091,55.38982149],[9.944138296,55.38982149],[9.944138296,55.38991078],[9.943981091,55.38991078]]]},"properties":{"id":3269,"top":7437910.5681,"id_0":3269,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437893.0681,"col_index":46,"row_index":2}},{"id":3270,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38982149],[9.943981091,55.389732199],[9.944138296,55.389732199],[9.944138296,55.38982149],[9.943981091,55.38982149]]]},"properties":{"id":3270,"top":7437893.0681,"id_0":3270,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437875.5681,"col_index":46,"row_index":3}},{"id":3271,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389732199],[9.943981091,55.389642907],[9.944138296,55.389642907],[9.944138296,55.389732199],[9.943981091,55.389732199]]]},"properties":{"id":3271,"top":7437875.5681,"id_0":3271,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437858.0681,"col_index":46,"row_index":4}},{"id":3272,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389642907],[9.943981091,55.389553616],[9.944138296,55.389553616],[9.944138296,55.389642907],[9.943981091,55.389642907]]]},"properties":{"id":3272,"top":7437858.0681,"id_0":3272,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437840.5681,"col_index":46,"row_index":5}},{"id":3273,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389553616],[9.943981091,55.389464324],[9.944138296,55.389464324],[9.944138296,55.389553616],[9.943981091,55.389553616]]]},"properties":{"id":3273,"top":7437840.5681,"id_0":3273,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437823.0681,"col_index":46,"row_index":6}},{"id":3274,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389464324],[9.943981091,55.389375032],[9.944138296,55.389375032],[9.944138296,55.389464324],[9.943981091,55.389464324]]]},"properties":{"id":3274,"top":7437823.0681,"id_0":3274,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437805.5681,"col_index":46,"row_index":7}},{"id":3275,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389375032],[9.943981091,55.38928574],[9.944138296,55.38928574],[9.944138296,55.389375032],[9.943981091,55.389375032]]]},"properties":{"id":3275,"top":7437805.5681,"id_0":3275,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437788.0681,"col_index":46,"row_index":8}},{"id":3276,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38928574],[9.943981091,55.389196448],[9.944138296,55.389196448],[9.944138296,55.38928574],[9.943981091,55.38928574]]]},"properties":{"id":3276,"top":7437788.0681,"id_0":3276,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437770.5681,"col_index":46,"row_index":9}},{"id":3277,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389196448],[9.943981091,55.389107155],[9.944138296,55.389107155],[9.944138296,55.389196448],[9.943981091,55.389196448]]]},"properties":{"id":3277,"top":7437770.5681,"id_0":3277,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437753.0681,"col_index":46,"row_index":10}},{"id":3278,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389107155],[9.943981091,55.389017863],[9.944138296,55.389017863],[9.944138296,55.389107155],[9.943981091,55.389107155]]]},"properties":{"id":3278,"top":7437753.0681,"id_0":3278,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437735.5681,"col_index":46,"row_index":11}},{"id":3279,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.389017863],[9.943981091,55.38892857],[9.944138296,55.38892857],[9.944138296,55.389017863],[9.943981091,55.389017863]]]},"properties":{"id":3279,"top":7437735.5681,"id_0":3279,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437718.0681,"col_index":46,"row_index":12}},{"id":3280,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38892857],[9.943981091,55.388839277],[9.944138296,55.388839277],[9.944138296,55.38892857],[9.943981091,55.38892857]]]},"properties":{"id":3280,"top":7437718.0681,"id_0":3280,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437700.5681,"col_index":46,"row_index":13}},{"id":3281,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388839277],[9.943981091,55.388749984],[9.944138296,55.388749984],[9.944138296,55.388839277],[9.943981091,55.388839277]]]},"properties":{"id":3281,"top":7437700.5681,"id_0":3281,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437683.0681,"col_index":46,"row_index":14}},{"id":3282,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388749984],[9.943981091,55.38866069],[9.944138296,55.38866069],[9.944138296,55.388749984],[9.943981091,55.388749984]]]},"properties":{"id":3282,"top":7437683.0681,"id_0":3282,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437665.5681,"col_index":46,"row_index":15}},{"id":3283,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38866069],[9.943981091,55.388571396],[9.944138296,55.388571396],[9.944138296,55.38866069],[9.943981091,55.38866069]]]},"properties":{"id":3283,"top":7437665.5681,"id_0":3283,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437648.0681,"col_index":46,"row_index":16}},{"id":3284,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388571396],[9.943981091,55.388482103],[9.944138296,55.388482103],[9.944138296,55.388571396],[9.943981091,55.388571396]]]},"properties":{"id":3284,"top":7437648.0681,"id_0":3284,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437630.5681,"col_index":46,"row_index":17}},{"id":3285,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388482103],[9.943981091,55.388392808],[9.944138296,55.388392808],[9.944138296,55.388482103],[9.943981091,55.388482103]]]},"properties":{"id":3285,"top":7437630.5681,"id_0":3285,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437613.0681,"col_index":46,"row_index":18}},{"id":3286,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388392808],[9.943981091,55.388303514],[9.944138296,55.388303514],[9.944138296,55.388392808],[9.943981091,55.388392808]]]},"properties":{"id":3286,"top":7437613.0681,"id_0":3286,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437595.5681,"col_index":46,"row_index":19}},{"id":3287,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388303514],[9.943981091,55.38821422],[9.944138296,55.38821422],[9.944138296,55.388303514],[9.943981091,55.388303514]]]},"properties":{"id":3287,"top":7437595.5681,"id_0":3287,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437578.0681,"col_index":46,"row_index":20}},{"id":3288,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38821422],[9.943981091,55.388124925],[9.944138296,55.388124925],[9.944138296,55.38821422],[9.943981091,55.38821422]]]},"properties":{"id":3288,"top":7437578.0681,"id_0":3288,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437560.5681,"col_index":46,"row_index":21}},{"id":3289,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.388124925],[9.943981091,55.38803563],[9.944138296,55.38803563],[9.944138296,55.388124925],[9.943981091,55.388124925]]]},"properties":{"id":3289,"top":7437560.5681,"id_0":3289,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437543.0681,"col_index":46,"row_index":22}},{"id":3290,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38803563],[9.943981091,55.387946335],[9.944138296,55.387946335],[9.944138296,55.38803563],[9.943981091,55.38803563]]]},"properties":{"id":3290,"top":7437543.0681,"id_0":3290,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437525.5681,"col_index":46,"row_index":23}},{"id":3291,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387946335],[9.943981091,55.38785704],[9.944138296,55.38785704],[9.944138296,55.387946335],[9.943981091,55.387946335]]]},"properties":{"id":3291,"top":7437525.5681,"id_0":3291,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437508.0681,"col_index":46,"row_index":24}},{"id":3292,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38785704],[9.943981091,55.387767744],[9.944138296,55.387767744],[9.944138296,55.38785704],[9.943981091,55.38785704]]]},"properties":{"id":3292,"top":7437508.0681,"id_0":3292,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437490.5681,"col_index":46,"row_index":25}},{"id":3293,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387767744],[9.943981091,55.387678448],[9.944138296,55.387678448],[9.944138296,55.387767744],[9.943981091,55.387767744]]]},"properties":{"id":3293,"top":7437490.5681,"id_0":3293,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437473.0681,"col_index":46,"row_index":26}},{"id":3294,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387678448],[9.943981091,55.387589153],[9.944138296,55.387589153],[9.944138296,55.387678448],[9.943981091,55.387678448]]]},"properties":{"id":3294,"top":7437473.0681,"id_0":3294,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437455.5681,"col_index":46,"row_index":27}},{"id":3295,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387589153],[9.943981091,55.387499856],[9.944138296,55.387499856],[9.944138296,55.387589153],[9.943981091,55.387589153]]]},"properties":{"id":3295,"top":7437455.5681,"id_0":3295,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437438.0681,"col_index":46,"row_index":28}},{"id":3296,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387499856],[9.943981091,55.38741056],[9.944138296,55.38741056],[9.944138296,55.387499856],[9.943981091,55.387499856]]]},"properties":{"id":3296,"top":7437438.0681,"id_0":3296,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437420.5681,"col_index":46,"row_index":29}},{"id":3297,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38741056],[9.943981091,55.387321264],[9.944138296,55.387321264],[9.944138296,55.38741056],[9.943981091,55.38741056]]]},"properties":{"id":3297,"top":7437420.5681,"id_0":3297,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437403.0681,"col_index":46,"row_index":30}},{"id":3298,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387321264],[9.943981091,55.387231967],[9.944138296,55.387231967],[9.944138296,55.387321264],[9.943981091,55.387321264]]]},"properties":{"id":3298,"top":7437403.0681,"id_0":3298,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437385.5681,"col_index":46,"row_index":31}},{"id":3299,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387231967],[9.943981091,55.38714267],[9.944138296,55.38714267],[9.944138296,55.387231967],[9.943981091,55.387231967]]]},"properties":{"id":3299,"top":7437385.5681,"id_0":3299,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437368.0681,"col_index":46,"row_index":32}},{"id":3300,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38714267],[9.943981091,55.387053373],[9.944138296,55.387053373],[9.944138296,55.38714267],[9.943981091,55.38714267]]]},"properties":{"id":3300,"top":7437368.0681,"id_0":3300,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437350.5681,"col_index":46,"row_index":33}},{"id":3301,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.387053373],[9.943981091,55.386964076],[9.944138296,55.386964076],[9.944138296,55.387053373],[9.943981091,55.387053373]]]},"properties":{"id":3301,"top":7437350.5681,"id_0":3301,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437333.0681,"col_index":46,"row_index":34}},{"id":3302,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386964076],[9.943981091,55.386874778],[9.944138296,55.386874778],[9.944138296,55.386964076],[9.943981091,55.386964076]]]},"properties":{"id":3302,"top":7437333.0681,"id_0":3302,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437315.5681,"col_index":46,"row_index":35}},{"id":3303,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386874778],[9.943981091,55.38678548],[9.944138296,55.38678548],[9.944138296,55.386874778],[9.943981091,55.386874778]]]},"properties":{"id":3303,"top":7437315.5681,"id_0":3303,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437298.0681,"col_index":46,"row_index":36}},{"id":3304,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38678548],[9.943981091,55.386696182],[9.944138296,55.386696182],[9.944138296,55.38678548],[9.943981091,55.38678548]]]},"properties":{"id":3304,"top":7437298.0681,"id_0":3304,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437280.5681,"col_index":46,"row_index":37}},{"id":3305,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386696182],[9.943981091,55.386606884],[9.944138296,55.386606884],[9.944138296,55.386696182],[9.943981091,55.386696182]]]},"properties":{"id":3305,"top":7437280.5681,"id_0":3305,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437263.0681,"col_index":46,"row_index":38}},{"id":3306,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386606884],[9.943981091,55.386517586],[9.944138296,55.386517586],[9.944138296,55.386606884],[9.943981091,55.386606884]]]},"properties":{"id":3306,"top":7437263.0681,"id_0":3306,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437245.5681,"col_index":46,"row_index":39}},{"id":3307,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386517586],[9.943981091,55.386428287],[9.944138296,55.386428287],[9.944138296,55.386517586],[9.943981091,55.386517586]]]},"properties":{"id":3307,"top":7437245.5681,"id_0":3307,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437228.0681,"col_index":46,"row_index":40}},{"id":3308,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386428287],[9.943981091,55.386338989],[9.944138296,55.386338989],[9.944138296,55.386428287],[9.943981091,55.386428287]]]},"properties":{"id":3308,"top":7437228.0681,"id_0":3308,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437210.5681,"col_index":46,"row_index":41}},{"id":3309,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386338989],[9.943981091,55.38624969],[9.944138296,55.38624969],[9.944138296,55.386338989],[9.943981091,55.386338989]]]},"properties":{"id":3309,"top":7437210.5681,"id_0":3309,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437193.0681,"col_index":46,"row_index":42}},{"id":3310,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38624969],[9.943981091,55.386160391],[9.944138296,55.386160391],[9.944138296,55.38624969],[9.943981091,55.38624969]]]},"properties":{"id":3310,"top":7437193.0681,"id_0":3310,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437175.5681,"col_index":46,"row_index":43}},{"id":3311,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386160391],[9.943981091,55.386071091],[9.944138296,55.386071091],[9.944138296,55.386160391],[9.943981091,55.386160391]]]},"properties":{"id":3311,"top":7437175.5681,"id_0":3311,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437158.0681,"col_index":46,"row_index":44}},{"id":3312,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.386071091],[9.943981091,55.385981792],[9.944138296,55.385981792],[9.944138296,55.386071091],[9.943981091,55.386071091]]]},"properties":{"id":3312,"top":7437158.0681,"id_0":3312,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437140.5681,"col_index":46,"row_index":45}},{"id":3313,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385981792],[9.943981091,55.385892492],[9.944138296,55.385892492],[9.944138296,55.385981792],[9.943981091,55.385981792]]]},"properties":{"id":3313,"top":7437140.5681,"id_0":3313,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437123.0681,"col_index":46,"row_index":46}},{"id":3314,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385892492],[9.943981091,55.385803192],[9.944138296,55.385803192],[9.944138296,55.385892492],[9.943981091,55.385892492]]]},"properties":{"id":3314,"top":7437123.0681,"id_0":3314,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437105.5681,"col_index":46,"row_index":47}},{"id":3315,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385803192],[9.943981091,55.385713892],[9.944138296,55.385713892],[9.944138296,55.385803192],[9.943981091,55.385803192]]]},"properties":{"id":3315,"top":7437105.5681,"id_0":3315,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437088.0681,"col_index":46,"row_index":48}},{"id":3316,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385713892],[9.943981091,55.385624592],[9.944138296,55.385624592],[9.944138296,55.385713892],[9.943981091,55.385713892]]]},"properties":{"id":3316,"top":7437088.0681,"id_0":3316,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437070.5681,"col_index":46,"row_index":49}},{"id":3317,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385624592],[9.943981091,55.385535291],[9.944138296,55.385535291],[9.944138296,55.385624592],[9.943981091,55.385624592]]]},"properties":{"id":3317,"top":7437070.5681,"id_0":3317,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437053.0681,"col_index":46,"row_index":50}},{"id":3318,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385535291],[9.943981091,55.38544599],[9.944138296,55.38544599],[9.944138296,55.385535291],[9.943981091,55.385535291]]]},"properties":{"id":3318,"top":7437053.0681,"id_0":3318,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437035.5681,"col_index":46,"row_index":51}},{"id":3319,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38544599],[9.943981091,55.385356689],[9.944138296,55.385356689],[9.944138296,55.38544599],[9.943981091,55.38544599]]]},"properties":{"id":3319,"top":7437035.5681,"id_0":3319,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437018.0681,"col_index":46,"row_index":52}},{"id":3320,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385356689],[9.943981091,55.385267388],[9.944138296,55.385267388],[9.944138296,55.385356689],[9.943981091,55.385356689]]]},"properties":{"id":3320,"top":7437018.0681,"id_0":3320,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7437000.5681,"col_index":46,"row_index":53}},{"id":3321,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385267388],[9.943981091,55.385178087],[9.944138296,55.385178087],[9.944138296,55.385267388],[9.943981091,55.385267388]]]},"properties":{"id":3321,"top":7437000.5681,"id_0":3321,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436983.0681,"col_index":46,"row_index":54}},{"id":3322,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385178087],[9.943981091,55.385088785],[9.944138296,55.385088785],[9.944138296,55.385178087],[9.943981091,55.385178087]]]},"properties":{"id":3322,"top":7436983.0681,"id_0":3322,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436965.5681,"col_index":46,"row_index":55}},{"id":3323,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.385088785],[9.943981091,55.384999484],[9.944138296,55.384999484],[9.944138296,55.385088785],[9.943981091,55.385088785]]]},"properties":{"id":3323,"top":7436965.5681,"id_0":3323,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436948.0681,"col_index":46,"row_index":56}},{"id":3324,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384999484],[9.943981091,55.384910182],[9.944138296,55.384910182],[9.944138296,55.384999484],[9.943981091,55.384999484]]]},"properties":{"id":3324,"top":7436948.0681,"id_0":3324,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436930.5681,"col_index":46,"row_index":57}},{"id":3325,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384910182],[9.943981091,55.38482088],[9.944138296,55.38482088],[9.944138296,55.384910182],[9.943981091,55.384910182]]]},"properties":{"id":3325,"top":7436930.5681,"id_0":3325,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436913.0681,"col_index":46,"row_index":58}},{"id":3326,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.38482088],[9.943981091,55.384731577],[9.944138296,55.384731577],[9.944138296,55.38482088],[9.943981091,55.38482088]]]},"properties":{"id":3326,"top":7436913.0681,"id_0":3326,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436895.5681,"col_index":46,"row_index":59}},{"id":3327,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384731577],[9.943981091,55.384642275],[9.944138296,55.384642275],[9.944138296,55.384731577],[9.943981091,55.384731577]]]},"properties":{"id":3327,"top":7436895.5681,"id_0":3327,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436878.0681,"col_index":46,"row_index":60}},{"id":3328,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384642275],[9.943981091,55.384552972],[9.944138296,55.384552972],[9.944138296,55.384642275],[9.943981091,55.384642275]]]},"properties":{"id":3328,"top":7436878.0681,"id_0":3328,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436860.5681,"col_index":46,"row_index":61}},{"id":3329,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384552972],[9.943981091,55.384463669],[9.944138296,55.384463669],[9.944138296,55.384552972],[9.943981091,55.384552972]]]},"properties":{"id":3329,"top":7436860.5681,"id_0":3329,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436843.0681,"col_index":46,"row_index":62}},{"id":3330,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384463669],[9.943981091,55.384374366],[9.944138296,55.384374366],[9.944138296,55.384463669],[9.943981091,55.384463669]]]},"properties":{"id":3330,"top":7436843.0681,"id_0":3330,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436825.5681,"col_index":46,"row_index":63}},{"id":3331,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384374366],[9.943981091,55.384285062],[9.944138296,55.384285062],[9.944138296,55.384374366],[9.943981091,55.384374366]]]},"properties":{"id":3331,"top":7436825.5681,"id_0":3331,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436808.0681,"col_index":46,"row_index":64}},{"id":3332,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384285062],[9.943981091,55.384195759],[9.944138296,55.384195759],[9.944138296,55.384285062],[9.943981091,55.384285062]]]},"properties":{"id":3332,"top":7436808.0681,"id_0":3332,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436790.5681,"col_index":46,"row_index":65}},{"id":3333,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384195759],[9.943981091,55.384106455],[9.944138296,55.384106455],[9.944138296,55.384195759],[9.943981091,55.384195759]]]},"properties":{"id":3333,"top":7436790.5681,"id_0":3333,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436773.0681,"col_index":46,"row_index":66}},{"id":3334,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384106455],[9.943981091,55.384017151],[9.944138296,55.384017151],[9.944138296,55.384106455],[9.943981091,55.384106455]]]},"properties":{"id":3334,"top":7436773.0681,"id_0":3334,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436755.5681,"col_index":46,"row_index":67}},{"id":3335,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.384017151],[9.943981091,55.383927847],[9.944138296,55.383927847],[9.944138296,55.384017151],[9.943981091,55.384017151]]]},"properties":{"id":3335,"top":7436755.5681,"id_0":3335,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436738.0681,"col_index":46,"row_index":68}},{"id":3336,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.383927847],[9.943981091,55.383838543],[9.944138296,55.383838543],[9.944138296,55.383927847],[9.943981091,55.383927847]]]},"properties":{"id":3336,"top":7436738.0681,"id_0":3336,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436720.5681,"col_index":46,"row_index":69}},{"id":3337,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943981091,55.383838543],[9.943981091,55.383749238],[9.944138296,55.383749238],[9.944138296,55.383838543],[9.943981091,55.383838543]]]},"properties":{"id":3337,"top":7436720.5681,"id_0":3337,"left":1106958.9115,"Label":null,"right":1106976.4115,"bottom":7436703.0681,"col_index":46,"row_index":70}},{"id":3338,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.390089362],[9.944138296,55.390000071],[9.944295501,55.390000071],[9.944295501,55.390089362],[9.944138296,55.390089362]]]},"properties":{"id":3338,"top":7437945.5681,"id_0":3338,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437928.0681,"col_index":47,"row_index":0}},{"id":3339,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.390000071],[9.944138296,55.38991078],[9.944295501,55.38991078],[9.944295501,55.390000071],[9.944138296,55.390000071]]]},"properties":{"id":3339,"top":7437928.0681,"id_0":3339,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437910.5681,"col_index":47,"row_index":1}},{"id":3340,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38991078],[9.944138296,55.38982149],[9.944295501,55.38982149],[9.944295501,55.38991078],[9.944138296,55.38991078]]]},"properties":{"id":3340,"top":7437910.5681,"id_0":3340,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437893.0681,"col_index":47,"row_index":2}},{"id":3341,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38982149],[9.944138296,55.389732199],[9.944295501,55.389732199],[9.944295501,55.38982149],[9.944138296,55.38982149]]]},"properties":{"id":3341,"top":7437893.0681,"id_0":3341,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437875.5681,"col_index":47,"row_index":3}},{"id":3342,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389732199],[9.944138296,55.389642907],[9.944295501,55.389642907],[9.944295501,55.389732199],[9.944138296,55.389732199]]]},"properties":{"id":3342,"top":7437875.5681,"id_0":3342,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437858.0681,"col_index":47,"row_index":4}},{"id":3343,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389642907],[9.944138296,55.389553616],[9.944295501,55.389553616],[9.944295501,55.389642907],[9.944138296,55.389642907]]]},"properties":{"id":3343,"top":7437858.0681,"id_0":3343,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437840.5681,"col_index":47,"row_index":5}},{"id":3344,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389553616],[9.944138296,55.389464324],[9.944295501,55.389464324],[9.944295501,55.389553616],[9.944138296,55.389553616]]]},"properties":{"id":3344,"top":7437840.5681,"id_0":3344,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437823.0681,"col_index":47,"row_index":6}},{"id":3345,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389464324],[9.944138296,55.389375032],[9.944295501,55.389375032],[9.944295501,55.389464324],[9.944138296,55.389464324]]]},"properties":{"id":3345,"top":7437823.0681,"id_0":3345,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437805.5681,"col_index":47,"row_index":7}},{"id":3346,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389375032],[9.944138296,55.38928574],[9.944295501,55.38928574],[9.944295501,55.389375032],[9.944138296,55.389375032]]]},"properties":{"id":3346,"top":7437805.5681,"id_0":3346,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437788.0681,"col_index":47,"row_index":8}},{"id":3347,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38928574],[9.944138296,55.389196448],[9.944295501,55.389196448],[9.944295501,55.38928574],[9.944138296,55.38928574]]]},"properties":{"id":3347,"top":7437788.0681,"id_0":3347,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437770.5681,"col_index":47,"row_index":9}},{"id":3348,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389196448],[9.944138296,55.389107155],[9.944295501,55.389107155],[9.944295501,55.389196448],[9.944138296,55.389196448]]]},"properties":{"id":3348,"top":7437770.5681,"id_0":3348,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437753.0681,"col_index":47,"row_index":10}},{"id":3349,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389107155],[9.944138296,55.389017863],[9.944295501,55.389017863],[9.944295501,55.389107155],[9.944138296,55.389107155]]]},"properties":{"id":3349,"top":7437753.0681,"id_0":3349,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437735.5681,"col_index":47,"row_index":11}},{"id":3350,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.389017863],[9.944138296,55.38892857],[9.944295501,55.38892857],[9.944295501,55.389017863],[9.944138296,55.389017863]]]},"properties":{"id":3350,"top":7437735.5681,"id_0":3350,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437718.0681,"col_index":47,"row_index":12}},{"id":3351,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38892857],[9.944138296,55.388839277],[9.944295501,55.388839277],[9.944295501,55.38892857],[9.944138296,55.38892857]]]},"properties":{"id":3351,"top":7437718.0681,"id_0":3351,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437700.5681,"col_index":47,"row_index":13}},{"id":3352,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388839277],[9.944138296,55.388749984],[9.944295501,55.388749984],[9.944295501,55.388839277],[9.944138296,55.388839277]]]},"properties":{"id":3352,"top":7437700.5681,"id_0":3352,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437683.0681,"col_index":47,"row_index":14}},{"id":3353,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388749984],[9.944138296,55.38866069],[9.944295501,55.38866069],[9.944295501,55.388749984],[9.944138296,55.388749984]]]},"properties":{"id":3353,"top":7437683.0681,"id_0":3353,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437665.5681,"col_index":47,"row_index":15}},{"id":3354,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38866069],[9.944138296,55.388571396],[9.944295501,55.388571396],[9.944295501,55.38866069],[9.944138296,55.38866069]]]},"properties":{"id":3354,"top":7437665.5681,"id_0":3354,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437648.0681,"col_index":47,"row_index":16}},{"id":3355,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388571396],[9.944138296,55.388482103],[9.944295501,55.388482103],[9.944295501,55.388571396],[9.944138296,55.388571396]]]},"properties":{"id":3355,"top":7437648.0681,"id_0":3355,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437630.5681,"col_index":47,"row_index":17}},{"id":3356,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388482103],[9.944138296,55.388392808],[9.944295501,55.388392808],[9.944295501,55.388482103],[9.944138296,55.388482103]]]},"properties":{"id":3356,"top":7437630.5681,"id_0":3356,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437613.0681,"col_index":47,"row_index":18}},{"id":3357,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388392808],[9.944138296,55.388303514],[9.944295501,55.388303514],[9.944295501,55.388392808],[9.944138296,55.388392808]]]},"properties":{"id":3357,"top":7437613.0681,"id_0":3357,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437595.5681,"col_index":47,"row_index":19}},{"id":3358,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388303514],[9.944138296,55.38821422],[9.944295501,55.38821422],[9.944295501,55.388303514],[9.944138296,55.388303514]]]},"properties":{"id":3358,"top":7437595.5681,"id_0":3358,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437578.0681,"col_index":47,"row_index":20}},{"id":3359,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38821422],[9.944138296,55.388124925],[9.944295501,55.388124925],[9.944295501,55.38821422],[9.944138296,55.38821422]]]},"properties":{"id":3359,"top":7437578.0681,"id_0":3359,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437560.5681,"col_index":47,"row_index":21}},{"id":3360,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.388124925],[9.944138296,55.38803563],[9.944295501,55.38803563],[9.944295501,55.388124925],[9.944138296,55.388124925]]]},"properties":{"id":3360,"top":7437560.5681,"id_0":3360,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437543.0681,"col_index":47,"row_index":22}},{"id":3361,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38803563],[9.944138296,55.387946335],[9.944295501,55.387946335],[9.944295501,55.38803563],[9.944138296,55.38803563]]]},"properties":{"id":3361,"top":7437543.0681,"id_0":3361,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437525.5681,"col_index":47,"row_index":23}},{"id":3362,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387946335],[9.944138296,55.38785704],[9.944295501,55.38785704],[9.944295501,55.387946335],[9.944138296,55.387946335]]]},"properties":{"id":3362,"top":7437525.5681,"id_0":3362,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437508.0681,"col_index":47,"row_index":24}},{"id":3363,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38785704],[9.944138296,55.387767744],[9.944295501,55.387767744],[9.944295501,55.38785704],[9.944138296,55.38785704]]]},"properties":{"id":3363,"top":7437508.0681,"id_0":3363,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437490.5681,"col_index":47,"row_index":25}},{"id":3364,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387767744],[9.944138296,55.387678448],[9.944295501,55.387678448],[9.944295501,55.387767744],[9.944138296,55.387767744]]]},"properties":{"id":3364,"top":7437490.5681,"id_0":3364,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437473.0681,"col_index":47,"row_index":26}},{"id":3365,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387678448],[9.944138296,55.387589153],[9.944295501,55.387589153],[9.944295501,55.387678448],[9.944138296,55.387678448]]]},"properties":{"id":3365,"top":7437473.0681,"id_0":3365,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437455.5681,"col_index":47,"row_index":27}},{"id":3366,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387589153],[9.944138296,55.387499856],[9.944295501,55.387499856],[9.944295501,55.387589153],[9.944138296,55.387589153]]]},"properties":{"id":3366,"top":7437455.5681,"id_0":3366,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437438.0681,"col_index":47,"row_index":28}},{"id":3367,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387499856],[9.944138296,55.38741056],[9.944295501,55.38741056],[9.944295501,55.387499856],[9.944138296,55.387499856]]]},"properties":{"id":3367,"top":7437438.0681,"id_0":3367,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437420.5681,"col_index":47,"row_index":29}},{"id":3368,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38741056],[9.944138296,55.387321264],[9.944295501,55.387321264],[9.944295501,55.38741056],[9.944138296,55.38741056]]]},"properties":{"id":3368,"top":7437420.5681,"id_0":3368,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437403.0681,"col_index":47,"row_index":30}},{"id":3369,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387321264],[9.944138296,55.387231967],[9.944295501,55.387231967],[9.944295501,55.387321264],[9.944138296,55.387321264]]]},"properties":{"id":3369,"top":7437403.0681,"id_0":3369,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437385.5681,"col_index":47,"row_index":31}},{"id":3370,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387231967],[9.944138296,55.38714267],[9.944295501,55.38714267],[9.944295501,55.387231967],[9.944138296,55.387231967]]]},"properties":{"id":3370,"top":7437385.5681,"id_0":3370,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437368.0681,"col_index":47,"row_index":32}},{"id":3371,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38714267],[9.944138296,55.387053373],[9.944295501,55.387053373],[9.944295501,55.38714267],[9.944138296,55.38714267]]]},"properties":{"id":3371,"top":7437368.0681,"id_0":3371,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437350.5681,"col_index":47,"row_index":33}},{"id":3372,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.387053373],[9.944138296,55.386964076],[9.944295501,55.386964076],[9.944295501,55.387053373],[9.944138296,55.387053373]]]},"properties":{"id":3372,"top":7437350.5681,"id_0":3372,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437333.0681,"col_index":47,"row_index":34}},{"id":3373,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386964076],[9.944138296,55.386874778],[9.944295501,55.386874778],[9.944295501,55.386964076],[9.944138296,55.386964076]]]},"properties":{"id":3373,"top":7437333.0681,"id_0":3373,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437315.5681,"col_index":47,"row_index":35}},{"id":3374,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386874778],[9.944138296,55.38678548],[9.944295501,55.38678548],[9.944295501,55.386874778],[9.944138296,55.386874778]]]},"properties":{"id":3374,"top":7437315.5681,"id_0":3374,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437298.0681,"col_index":47,"row_index":36}},{"id":3375,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38678548],[9.944138296,55.386696182],[9.944295501,55.386696182],[9.944295501,55.38678548],[9.944138296,55.38678548]]]},"properties":{"id":3375,"top":7437298.0681,"id_0":3375,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437280.5681,"col_index":47,"row_index":37}},{"id":3376,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386696182],[9.944138296,55.386606884],[9.944295501,55.386606884],[9.944295501,55.386696182],[9.944138296,55.386696182]]]},"properties":{"id":3376,"top":7437280.5681,"id_0":3376,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437263.0681,"col_index":47,"row_index":38}},{"id":3377,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386606884],[9.944138296,55.386517586],[9.944295501,55.386517586],[9.944295501,55.386606884],[9.944138296,55.386606884]]]},"properties":{"id":3377,"top":7437263.0681,"id_0":3377,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437245.5681,"col_index":47,"row_index":39}},{"id":3378,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386517586],[9.944138296,55.386428287],[9.944295501,55.386428287],[9.944295501,55.386517586],[9.944138296,55.386517586]]]},"properties":{"id":3378,"top":7437245.5681,"id_0":3378,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437228.0681,"col_index":47,"row_index":40}},{"id":3379,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386428287],[9.944138296,55.386338989],[9.944295501,55.386338989],[9.944295501,55.386428287],[9.944138296,55.386428287]]]},"properties":{"id":3379,"top":7437228.0681,"id_0":3379,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437210.5681,"col_index":47,"row_index":41}},{"id":3380,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386338989],[9.944138296,55.38624969],[9.944295501,55.38624969],[9.944295501,55.386338989],[9.944138296,55.386338989]]]},"properties":{"id":3380,"top":7437210.5681,"id_0":3380,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437193.0681,"col_index":47,"row_index":42}},{"id":3381,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38624969],[9.944138296,55.386160391],[9.944295501,55.386160391],[9.944295501,55.38624969],[9.944138296,55.38624969]]]},"properties":{"id":3381,"top":7437193.0681,"id_0":3381,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437175.5681,"col_index":47,"row_index":43}},{"id":3382,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386160391],[9.944138296,55.386071091],[9.944295501,55.386071091],[9.944295501,55.386160391],[9.944138296,55.386160391]]]},"properties":{"id":3382,"top":7437175.5681,"id_0":3382,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437158.0681,"col_index":47,"row_index":44}},{"id":3383,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.386071091],[9.944138296,55.385981792],[9.944295501,55.385981792],[9.944295501,55.386071091],[9.944138296,55.386071091]]]},"properties":{"id":3383,"top":7437158.0681,"id_0":3383,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437140.5681,"col_index":47,"row_index":45}},{"id":3384,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385981792],[9.944138296,55.385892492],[9.944295501,55.385892492],[9.944295501,55.385981792],[9.944138296,55.385981792]]]},"properties":{"id":3384,"top":7437140.5681,"id_0":3384,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437123.0681,"col_index":47,"row_index":46}},{"id":3385,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385892492],[9.944138296,55.385803192],[9.944295501,55.385803192],[9.944295501,55.385892492],[9.944138296,55.385892492]]]},"properties":{"id":3385,"top":7437123.0681,"id_0":3385,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437105.5681,"col_index":47,"row_index":47}},{"id":3386,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385803192],[9.944138296,55.385713892],[9.944295501,55.385713892],[9.944295501,55.385803192],[9.944138296,55.385803192]]]},"properties":{"id":3386,"top":7437105.5681,"id_0":3386,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437088.0681,"col_index":47,"row_index":48}},{"id":3387,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385713892],[9.944138296,55.385624592],[9.944295501,55.385624592],[9.944295501,55.385713892],[9.944138296,55.385713892]]]},"properties":{"id":3387,"top":7437088.0681,"id_0":3387,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437070.5681,"col_index":47,"row_index":49}},{"id":3388,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385624592],[9.944138296,55.385535291],[9.944295501,55.385535291],[9.944295501,55.385624592],[9.944138296,55.385624592]]]},"properties":{"id":3388,"top":7437070.5681,"id_0":3388,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437053.0681,"col_index":47,"row_index":50}},{"id":3389,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385535291],[9.944138296,55.38544599],[9.944295501,55.38544599],[9.944295501,55.385535291],[9.944138296,55.385535291]]]},"properties":{"id":3389,"top":7437053.0681,"id_0":3389,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437035.5681,"col_index":47,"row_index":51}},{"id":3390,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38544599],[9.944138296,55.385356689],[9.944295501,55.385356689],[9.944295501,55.38544599],[9.944138296,55.38544599]]]},"properties":{"id":3390,"top":7437035.5681,"id_0":3390,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437018.0681,"col_index":47,"row_index":52}},{"id":3391,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385356689],[9.944138296,55.385267388],[9.944295501,55.385267388],[9.944295501,55.385356689],[9.944138296,55.385356689]]]},"properties":{"id":3391,"top":7437018.0681,"id_0":3391,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7437000.5681,"col_index":47,"row_index":53}},{"id":3392,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385267388],[9.944138296,55.385178087],[9.944295501,55.385178087],[9.944295501,55.385267388],[9.944138296,55.385267388]]]},"properties":{"id":3392,"top":7437000.5681,"id_0":3392,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436983.0681,"col_index":47,"row_index":54}},{"id":3393,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385178087],[9.944138296,55.385088785],[9.944295501,55.385088785],[9.944295501,55.385178087],[9.944138296,55.385178087]]]},"properties":{"id":3393,"top":7436983.0681,"id_0":3393,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436965.5681,"col_index":47,"row_index":55}},{"id":3394,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.385088785],[9.944138296,55.384999484],[9.944295501,55.384999484],[9.944295501,55.385088785],[9.944138296,55.385088785]]]},"properties":{"id":3394,"top":7436965.5681,"id_0":3394,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436948.0681,"col_index":47,"row_index":56}},{"id":3395,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384999484],[9.944138296,55.384910182],[9.944295501,55.384910182],[9.944295501,55.384999484],[9.944138296,55.384999484]]]},"properties":{"id":3395,"top":7436948.0681,"id_0":3395,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436930.5681,"col_index":47,"row_index":57}},{"id":3396,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384910182],[9.944138296,55.38482088],[9.944295501,55.38482088],[9.944295501,55.384910182],[9.944138296,55.384910182]]]},"properties":{"id":3396,"top":7436930.5681,"id_0":3396,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436913.0681,"col_index":47,"row_index":58}},{"id":3397,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.38482088],[9.944138296,55.384731577],[9.944295501,55.384731577],[9.944295501,55.38482088],[9.944138296,55.38482088]]]},"properties":{"id":3397,"top":7436913.0681,"id_0":3397,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436895.5681,"col_index":47,"row_index":59}},{"id":3398,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384731577],[9.944138296,55.384642275],[9.944295501,55.384642275],[9.944295501,55.384731577],[9.944138296,55.384731577]]]},"properties":{"id":3398,"top":7436895.5681,"id_0":3398,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436878.0681,"col_index":47,"row_index":60}},{"id":3399,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384642275],[9.944138296,55.384552972],[9.944295501,55.384552972],[9.944295501,55.384642275],[9.944138296,55.384642275]]]},"properties":{"id":3399,"top":7436878.0681,"id_0":3399,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436860.5681,"col_index":47,"row_index":61}},{"id":3400,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384552972],[9.944138296,55.384463669],[9.944295501,55.384463669],[9.944295501,55.384552972],[9.944138296,55.384552972]]]},"properties":{"id":3400,"top":7436860.5681,"id_0":3400,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436843.0681,"col_index":47,"row_index":62}},{"id":3401,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384463669],[9.944138296,55.384374366],[9.944295501,55.384374366],[9.944295501,55.384463669],[9.944138296,55.384463669]]]},"properties":{"id":3401,"top":7436843.0681,"id_0":3401,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436825.5681,"col_index":47,"row_index":63}},{"id":3402,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384374366],[9.944138296,55.384285062],[9.944295501,55.384285062],[9.944295501,55.384374366],[9.944138296,55.384374366]]]},"properties":{"id":3402,"top":7436825.5681,"id_0":3402,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436808.0681,"col_index":47,"row_index":64}},{"id":3403,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384285062],[9.944138296,55.384195759],[9.944295501,55.384195759],[9.944295501,55.384285062],[9.944138296,55.384285062]]]},"properties":{"id":3403,"top":7436808.0681,"id_0":3403,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436790.5681,"col_index":47,"row_index":65}},{"id":3404,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384195759],[9.944138296,55.384106455],[9.944295501,55.384106455],[9.944295501,55.384195759],[9.944138296,55.384195759]]]},"properties":{"id":3404,"top":7436790.5681,"id_0":3404,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436773.0681,"col_index":47,"row_index":66}},{"id":3405,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384106455],[9.944138296,55.384017151],[9.944295501,55.384017151],[9.944295501,55.384106455],[9.944138296,55.384106455]]]},"properties":{"id":3405,"top":7436773.0681,"id_0":3405,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436755.5681,"col_index":47,"row_index":67}},{"id":3406,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.384017151],[9.944138296,55.383927847],[9.944295501,55.383927847],[9.944295501,55.384017151],[9.944138296,55.384017151]]]},"properties":{"id":3406,"top":7436755.5681,"id_0":3406,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436738.0681,"col_index":47,"row_index":68}},{"id":3407,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.383927847],[9.944138296,55.383838543],[9.944295501,55.383838543],[9.944295501,55.383927847],[9.944138296,55.383927847]]]},"properties":{"id":3407,"top":7436738.0681,"id_0":3407,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436720.5681,"col_index":47,"row_index":69}},{"id":3408,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944138296,55.383838543],[9.944138296,55.383749238],[9.944295501,55.383749238],[9.944295501,55.383838543],[9.944138296,55.383838543]]]},"properties":{"id":3408,"top":7436720.5681,"id_0":3408,"left":1106976.4115,"Label":null,"right":1106993.9115,"bottom":7436703.0681,"col_index":47,"row_index":70}},{"id":3409,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.390089362],[9.944295501,55.390000071],[9.944452706,55.390000071],[9.944452706,55.390089362],[9.944295501,55.390089362]]]},"properties":{"id":3409,"top":7437945.5681,"id_0":3409,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437928.0681,"col_index":48,"row_index":0}},{"id":3410,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.390000071],[9.944295501,55.38991078],[9.944452706,55.38991078],[9.944452706,55.390000071],[9.944295501,55.390000071]]]},"properties":{"id":3410,"top":7437928.0681,"id_0":3410,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437910.5681,"col_index":48,"row_index":1}},{"id":3411,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38991078],[9.944295501,55.38982149],[9.944452706,55.38982149],[9.944452706,55.38991078],[9.944295501,55.38991078]]]},"properties":{"id":3411,"top":7437910.5681,"id_0":3411,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437893.0681,"col_index":48,"row_index":2}},{"id":3412,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38982149],[9.944295501,55.389732199],[9.944452706,55.389732199],[9.944452706,55.38982149],[9.944295501,55.38982149]]]},"properties":{"id":3412,"top":7437893.0681,"id_0":3412,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437875.5681,"col_index":48,"row_index":3}},{"id":3413,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389732199],[9.944295501,55.389642907],[9.944452706,55.389642907],[9.944452706,55.389732199],[9.944295501,55.389732199]]]},"properties":{"id":3413,"top":7437875.5681,"id_0":3413,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437858.0681,"col_index":48,"row_index":4}},{"id":3414,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389642907],[9.944295501,55.389553616],[9.944452706,55.389553616],[9.944452706,55.389642907],[9.944295501,55.389642907]]]},"properties":{"id":3414,"top":7437858.0681,"id_0":3414,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437840.5681,"col_index":48,"row_index":5}},{"id":3415,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389553616],[9.944295501,55.389464324],[9.944452706,55.389464324],[9.944452706,55.389553616],[9.944295501,55.389553616]]]},"properties":{"id":3415,"top":7437840.5681,"id_0":3415,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437823.0681,"col_index":48,"row_index":6}},{"id":3416,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389464324],[9.944295501,55.389375032],[9.944452706,55.389375032],[9.944452706,55.389464324],[9.944295501,55.389464324]]]},"properties":{"id":3416,"top":7437823.0681,"id_0":3416,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437805.5681,"col_index":48,"row_index":7}},{"id":3417,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389375032],[9.944295501,55.38928574],[9.944452706,55.38928574],[9.944452706,55.389375032],[9.944295501,55.389375032]]]},"properties":{"id":3417,"top":7437805.5681,"id_0":3417,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437788.0681,"col_index":48,"row_index":8}},{"id":3418,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38928574],[9.944295501,55.389196448],[9.944452706,55.389196448],[9.944452706,55.38928574],[9.944295501,55.38928574]]]},"properties":{"id":3418,"top":7437788.0681,"id_0":3418,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437770.5681,"col_index":48,"row_index":9}},{"id":3419,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389196448],[9.944295501,55.389107155],[9.944452706,55.389107155],[9.944452706,55.389196448],[9.944295501,55.389196448]]]},"properties":{"id":3419,"top":7437770.5681,"id_0":3419,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437753.0681,"col_index":48,"row_index":10}},{"id":3420,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389107155],[9.944295501,55.389017863],[9.944452706,55.389017863],[9.944452706,55.389107155],[9.944295501,55.389107155]]]},"properties":{"id":3420,"top":7437753.0681,"id_0":3420,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437735.5681,"col_index":48,"row_index":11}},{"id":3421,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.389017863],[9.944295501,55.38892857],[9.944452706,55.38892857],[9.944452706,55.389017863],[9.944295501,55.389017863]]]},"properties":{"id":3421,"top":7437735.5681,"id_0":3421,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437718.0681,"col_index":48,"row_index":12}},{"id":3422,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38892857],[9.944295501,55.388839277],[9.944452706,55.388839277],[9.944452706,55.38892857],[9.944295501,55.38892857]]]},"properties":{"id":3422,"top":7437718.0681,"id_0":3422,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437700.5681,"col_index":48,"row_index":13}},{"id":3423,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388839277],[9.944295501,55.388749984],[9.944452706,55.388749984],[9.944452706,55.388839277],[9.944295501,55.388839277]]]},"properties":{"id":3423,"top":7437700.5681,"id_0":3423,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437683.0681,"col_index":48,"row_index":14}},{"id":3424,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388749984],[9.944295501,55.38866069],[9.944452706,55.38866069],[9.944452706,55.388749984],[9.944295501,55.388749984]]]},"properties":{"id":3424,"top":7437683.0681,"id_0":3424,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437665.5681,"col_index":48,"row_index":15}},{"id":3425,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38866069],[9.944295501,55.388571396],[9.944452706,55.388571396],[9.944452706,55.38866069],[9.944295501,55.38866069]]]},"properties":{"id":3425,"top":7437665.5681,"id_0":3425,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437648.0681,"col_index":48,"row_index":16}},{"id":3426,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388571396],[9.944295501,55.388482103],[9.944452706,55.388482103],[9.944452706,55.388571396],[9.944295501,55.388571396]]]},"properties":{"id":3426,"top":7437648.0681,"id_0":3426,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437630.5681,"col_index":48,"row_index":17}},{"id":3427,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388482103],[9.944295501,55.388392808],[9.944452706,55.388392808],[9.944452706,55.388482103],[9.944295501,55.388482103]]]},"properties":{"id":3427,"top":7437630.5681,"id_0":3427,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437613.0681,"col_index":48,"row_index":18}},{"id":3428,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388392808],[9.944295501,55.388303514],[9.944452706,55.388303514],[9.944452706,55.388392808],[9.944295501,55.388392808]]]},"properties":{"id":3428,"top":7437613.0681,"id_0":3428,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437595.5681,"col_index":48,"row_index":19}},{"id":3429,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388303514],[9.944295501,55.38821422],[9.944452706,55.38821422],[9.944452706,55.388303514],[9.944295501,55.388303514]]]},"properties":{"id":3429,"top":7437595.5681,"id_0":3429,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437578.0681,"col_index":48,"row_index":20}},{"id":3430,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38821422],[9.944295501,55.388124925],[9.944452706,55.388124925],[9.944452706,55.38821422],[9.944295501,55.38821422]]]},"properties":{"id":3430,"top":7437578.0681,"id_0":3430,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437560.5681,"col_index":48,"row_index":21}},{"id":3431,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.388124925],[9.944295501,55.38803563],[9.944452706,55.38803563],[9.944452706,55.388124925],[9.944295501,55.388124925]]]},"properties":{"id":3431,"top":7437560.5681,"id_0":3431,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437543.0681,"col_index":48,"row_index":22}},{"id":3432,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38803563],[9.944295501,55.387946335],[9.944452706,55.387946335],[9.944452706,55.38803563],[9.944295501,55.38803563]]]},"properties":{"id":3432,"top":7437543.0681,"id_0":3432,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437525.5681,"col_index":48,"row_index":23}},{"id":3433,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387946335],[9.944295501,55.38785704],[9.944452706,55.38785704],[9.944452706,55.387946335],[9.944295501,55.387946335]]]},"properties":{"id":3433,"top":7437525.5681,"id_0":3433,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437508.0681,"col_index":48,"row_index":24}},{"id":3434,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38785704],[9.944295501,55.387767744],[9.944452706,55.387767744],[9.944452706,55.38785704],[9.944295501,55.38785704]]]},"properties":{"id":3434,"top":7437508.0681,"id_0":3434,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437490.5681,"col_index":48,"row_index":25}},{"id":3435,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387767744],[9.944295501,55.387678448],[9.944452706,55.387678448],[9.944452706,55.387767744],[9.944295501,55.387767744]]]},"properties":{"id":3435,"top":7437490.5681,"id_0":3435,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437473.0681,"col_index":48,"row_index":26}},{"id":3436,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387678448],[9.944295501,55.387589153],[9.944452706,55.387589153],[9.944452706,55.387678448],[9.944295501,55.387678448]]]},"properties":{"id":3436,"top":7437473.0681,"id_0":3436,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437455.5681,"col_index":48,"row_index":27}},{"id":3437,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387589153],[9.944295501,55.387499856],[9.944452706,55.387499856],[9.944452706,55.387589153],[9.944295501,55.387589153]]]},"properties":{"id":3437,"top":7437455.5681,"id_0":3437,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437438.0681,"col_index":48,"row_index":28}},{"id":3438,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387499856],[9.944295501,55.38741056],[9.944452706,55.38741056],[9.944452706,55.387499856],[9.944295501,55.387499856]]]},"properties":{"id":3438,"top":7437438.0681,"id_0":3438,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437420.5681,"col_index":48,"row_index":29}},{"id":3439,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38741056],[9.944295501,55.387321264],[9.944452706,55.387321264],[9.944452706,55.38741056],[9.944295501,55.38741056]]]},"properties":{"id":3439,"top":7437420.5681,"id_0":3439,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437403.0681,"col_index":48,"row_index":30}},{"id":3440,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387321264],[9.944295501,55.387231967],[9.944452706,55.387231967],[9.944452706,55.387321264],[9.944295501,55.387321264]]]},"properties":{"id":3440,"top":7437403.0681,"id_0":3440,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437385.5681,"col_index":48,"row_index":31}},{"id":3441,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387231967],[9.944295501,55.38714267],[9.944452706,55.38714267],[9.944452706,55.387231967],[9.944295501,55.387231967]]]},"properties":{"id":3441,"top":7437385.5681,"id_0":3441,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437368.0681,"col_index":48,"row_index":32}},{"id":3442,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38714267],[9.944295501,55.387053373],[9.944452706,55.387053373],[9.944452706,55.38714267],[9.944295501,55.38714267]]]},"properties":{"id":3442,"top":7437368.0681,"id_0":3442,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437350.5681,"col_index":48,"row_index":33}},{"id":3443,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.387053373],[9.944295501,55.386964076],[9.944452706,55.386964076],[9.944452706,55.387053373],[9.944295501,55.387053373]]]},"properties":{"id":3443,"top":7437350.5681,"id_0":3443,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437333.0681,"col_index":48,"row_index":34}},{"id":3444,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386964076],[9.944295501,55.386874778],[9.944452706,55.386874778],[9.944452706,55.386964076],[9.944295501,55.386964076]]]},"properties":{"id":3444,"top":7437333.0681,"id_0":3444,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437315.5681,"col_index":48,"row_index":35}},{"id":3445,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386874778],[9.944295501,55.38678548],[9.944452706,55.38678548],[9.944452706,55.386874778],[9.944295501,55.386874778]]]},"properties":{"id":3445,"top":7437315.5681,"id_0":3445,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437298.0681,"col_index":48,"row_index":36}},{"id":3446,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38678548],[9.944295501,55.386696182],[9.944452706,55.386696182],[9.944452706,55.38678548],[9.944295501,55.38678548]]]},"properties":{"id":3446,"top":7437298.0681,"id_0":3446,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437280.5681,"col_index":48,"row_index":37}},{"id":3447,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386696182],[9.944295501,55.386606884],[9.944452706,55.386606884],[9.944452706,55.386696182],[9.944295501,55.386696182]]]},"properties":{"id":3447,"top":7437280.5681,"id_0":3447,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437263.0681,"col_index":48,"row_index":38}},{"id":3448,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386606884],[9.944295501,55.386517586],[9.944452706,55.386517586],[9.944452706,55.386606884],[9.944295501,55.386606884]]]},"properties":{"id":3448,"top":7437263.0681,"id_0":3448,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437245.5681,"col_index":48,"row_index":39}},{"id":3449,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386517586],[9.944295501,55.386428287],[9.944452706,55.386428287],[9.944452706,55.386517586],[9.944295501,55.386517586]]]},"properties":{"id":3449,"top":7437245.5681,"id_0":3449,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437228.0681,"col_index":48,"row_index":40}},{"id":3450,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386428287],[9.944295501,55.386338989],[9.944452706,55.386338989],[9.944452706,55.386428287],[9.944295501,55.386428287]]]},"properties":{"id":3450,"top":7437228.0681,"id_0":3450,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437210.5681,"col_index":48,"row_index":41}},{"id":3451,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386338989],[9.944295501,55.38624969],[9.944452706,55.38624969],[9.944452706,55.386338989],[9.944295501,55.386338989]]]},"properties":{"id":3451,"top":7437210.5681,"id_0":3451,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437193.0681,"col_index":48,"row_index":42}},{"id":3452,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38624969],[9.944295501,55.386160391],[9.944452706,55.386160391],[9.944452706,55.38624969],[9.944295501,55.38624969]]]},"properties":{"id":3452,"top":7437193.0681,"id_0":3452,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437175.5681,"col_index":48,"row_index":43}},{"id":3453,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386160391],[9.944295501,55.386071091],[9.944452706,55.386071091],[9.944452706,55.386160391],[9.944295501,55.386160391]]]},"properties":{"id":3453,"top":7437175.5681,"id_0":3453,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437158.0681,"col_index":48,"row_index":44}},{"id":3454,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.386071091],[9.944295501,55.385981792],[9.944452706,55.385981792],[9.944452706,55.386071091],[9.944295501,55.386071091]]]},"properties":{"id":3454,"top":7437158.0681,"id_0":3454,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437140.5681,"col_index":48,"row_index":45}},{"id":3455,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385981792],[9.944295501,55.385892492],[9.944452706,55.385892492],[9.944452706,55.385981792],[9.944295501,55.385981792]]]},"properties":{"id":3455,"top":7437140.5681,"id_0":3455,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437123.0681,"col_index":48,"row_index":46}},{"id":3456,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385892492],[9.944295501,55.385803192],[9.944452706,55.385803192],[9.944452706,55.385892492],[9.944295501,55.385892492]]]},"properties":{"id":3456,"top":7437123.0681,"id_0":3456,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437105.5681,"col_index":48,"row_index":47}},{"id":3457,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385803192],[9.944295501,55.385713892],[9.944452706,55.385713892],[9.944452706,55.385803192],[9.944295501,55.385803192]]]},"properties":{"id":3457,"top":7437105.5681,"id_0":3457,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437088.0681,"col_index":48,"row_index":48}},{"id":3458,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385713892],[9.944295501,55.385624592],[9.944452706,55.385624592],[9.944452706,55.385713892],[9.944295501,55.385713892]]]},"properties":{"id":3458,"top":7437088.0681,"id_0":3458,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437070.5681,"col_index":48,"row_index":49}},{"id":3459,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385624592],[9.944295501,55.385535291],[9.944452706,55.385535291],[9.944452706,55.385624592],[9.944295501,55.385624592]]]},"properties":{"id":3459,"top":7437070.5681,"id_0":3459,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437053.0681,"col_index":48,"row_index":50}},{"id":3460,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385535291],[9.944295501,55.38544599],[9.944452706,55.38544599],[9.944452706,55.385535291],[9.944295501,55.385535291]]]},"properties":{"id":3460,"top":7437053.0681,"id_0":3460,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437035.5681,"col_index":48,"row_index":51}},{"id":3461,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38544599],[9.944295501,55.385356689],[9.944452706,55.385356689],[9.944452706,55.38544599],[9.944295501,55.38544599]]]},"properties":{"id":3461,"top":7437035.5681,"id_0":3461,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437018.0681,"col_index":48,"row_index":52}},{"id":3462,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385356689],[9.944295501,55.385267388],[9.944452706,55.385267388],[9.944452706,55.385356689],[9.944295501,55.385356689]]]},"properties":{"id":3462,"top":7437018.0681,"id_0":3462,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7437000.5681,"col_index":48,"row_index":53}},{"id":3463,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385267388],[9.944295501,55.385178087],[9.944452706,55.385178087],[9.944452706,55.385267388],[9.944295501,55.385267388]]]},"properties":{"id":3463,"top":7437000.5681,"id_0":3463,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436983.0681,"col_index":48,"row_index":54}},{"id":3464,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385178087],[9.944295501,55.385088785],[9.944452706,55.385088785],[9.944452706,55.385178087],[9.944295501,55.385178087]]]},"properties":{"id":3464,"top":7436983.0681,"id_0":3464,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436965.5681,"col_index":48,"row_index":55}},{"id":3465,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.385088785],[9.944295501,55.384999484],[9.944452706,55.384999484],[9.944452706,55.385088785],[9.944295501,55.385088785]]]},"properties":{"id":3465,"top":7436965.5681,"id_0":3465,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436948.0681,"col_index":48,"row_index":56}},{"id":3466,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384999484],[9.944295501,55.384910182],[9.944452706,55.384910182],[9.944452706,55.384999484],[9.944295501,55.384999484]]]},"properties":{"id":3466,"top":7436948.0681,"id_0":3466,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436930.5681,"col_index":48,"row_index":57}},{"id":3467,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384910182],[9.944295501,55.38482088],[9.944452706,55.38482088],[9.944452706,55.384910182],[9.944295501,55.384910182]]]},"properties":{"id":3467,"top":7436930.5681,"id_0":3467,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436913.0681,"col_index":48,"row_index":58}},{"id":3468,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.38482088],[9.944295501,55.384731577],[9.944452706,55.384731577],[9.944452706,55.38482088],[9.944295501,55.38482088]]]},"properties":{"id":3468,"top":7436913.0681,"id_0":3468,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436895.5681,"col_index":48,"row_index":59}},{"id":3469,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384731577],[9.944295501,55.384642275],[9.944452706,55.384642275],[9.944452706,55.384731577],[9.944295501,55.384731577]]]},"properties":{"id":3469,"top":7436895.5681,"id_0":3469,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436878.0681,"col_index":48,"row_index":60}},{"id":3470,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384642275],[9.944295501,55.384552972],[9.944452706,55.384552972],[9.944452706,55.384642275],[9.944295501,55.384642275]]]},"properties":{"id":3470,"top":7436878.0681,"id_0":3470,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436860.5681,"col_index":48,"row_index":61}},{"id":3471,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384552972],[9.944295501,55.384463669],[9.944452706,55.384463669],[9.944452706,55.384552972],[9.944295501,55.384552972]]]},"properties":{"id":3471,"top":7436860.5681,"id_0":3471,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436843.0681,"col_index":48,"row_index":62}},{"id":3472,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384463669],[9.944295501,55.384374366],[9.944452706,55.384374366],[9.944452706,55.384463669],[9.944295501,55.384463669]]]},"properties":{"id":3472,"top":7436843.0681,"id_0":3472,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436825.5681,"col_index":48,"row_index":63}},{"id":3473,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384374366],[9.944295501,55.384285062],[9.944452706,55.384285062],[9.944452706,55.384374366],[9.944295501,55.384374366]]]},"properties":{"id":3473,"top":7436825.5681,"id_0":3473,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436808.0681,"col_index":48,"row_index":64}},{"id":3474,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384285062],[9.944295501,55.384195759],[9.944452706,55.384195759],[9.944452706,55.384285062],[9.944295501,55.384285062]]]},"properties":{"id":3474,"top":7436808.0681,"id_0":3474,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436790.5681,"col_index":48,"row_index":65}},{"id":3475,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384195759],[9.944295501,55.384106455],[9.944452706,55.384106455],[9.944452706,55.384195759],[9.944295501,55.384195759]]]},"properties":{"id":3475,"top":7436790.5681,"id_0":3475,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436773.0681,"col_index":48,"row_index":66}},{"id":3476,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384106455],[9.944295501,55.384017151],[9.944452706,55.384017151],[9.944452706,55.384106455],[9.944295501,55.384106455]]]},"properties":{"id":3476,"top":7436773.0681,"id_0":3476,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436755.5681,"col_index":48,"row_index":67}},{"id":3477,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.384017151],[9.944295501,55.383927847],[9.944452706,55.383927847],[9.944452706,55.384017151],[9.944295501,55.384017151]]]},"properties":{"id":3477,"top":7436755.5681,"id_0":3477,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436738.0681,"col_index":48,"row_index":68}},{"id":3478,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.383927847],[9.944295501,55.383838543],[9.944452706,55.383838543],[9.944452706,55.383927847],[9.944295501,55.383927847]]]},"properties":{"id":3478,"top":7436738.0681,"id_0":3478,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436720.5681,"col_index":48,"row_index":69}},{"id":3479,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944295501,55.383838543],[9.944295501,55.383749238],[9.944452706,55.383749238],[9.944452706,55.383838543],[9.944295501,55.383838543]]]},"properties":{"id":3479,"top":7436720.5681,"id_0":3479,"left":1106993.9115,"Label":null,"right":1107011.4115,"bottom":7436703.0681,"col_index":48,"row_index":70}},{"id":3480,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.390089362],[9.944452706,55.390000071],[9.944609912,55.390000071],[9.944609912,55.390089362],[9.944452706,55.390089362]]]},"properties":{"id":3480,"top":7437945.5681,"id_0":3480,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437928.0681,"col_index":49,"row_index":0}},{"id":3481,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.390000071],[9.944452706,55.38991078],[9.944609912,55.38991078],[9.944609912,55.390000071],[9.944452706,55.390000071]]]},"properties":{"id":3481,"top":7437928.0681,"id_0":3481,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437910.5681,"col_index":49,"row_index":1}},{"id":3482,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38991078],[9.944452706,55.38982149],[9.944609912,55.38982149],[9.944609912,55.38991078],[9.944452706,55.38991078]]]},"properties":{"id":3482,"top":7437910.5681,"id_0":3482,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437893.0681,"col_index":49,"row_index":2}},{"id":3483,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38982149],[9.944452706,55.389732199],[9.944609912,55.389732199],[9.944609912,55.38982149],[9.944452706,55.38982149]]]},"properties":{"id":3483,"top":7437893.0681,"id_0":3483,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437875.5681,"col_index":49,"row_index":3}},{"id":3484,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389732199],[9.944452706,55.389642907],[9.944609912,55.389642907],[9.944609912,55.389732199],[9.944452706,55.389732199]]]},"properties":{"id":3484,"top":7437875.5681,"id_0":3484,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437858.0681,"col_index":49,"row_index":4}},{"id":3485,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389642907],[9.944452706,55.389553616],[9.944609912,55.389553616],[9.944609912,55.389642907],[9.944452706,55.389642907]]]},"properties":{"id":3485,"top":7437858.0681,"id_0":3485,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437840.5681,"col_index":49,"row_index":5}},{"id":3486,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389553616],[9.944452706,55.389464324],[9.944609912,55.389464324],[9.944609912,55.389553616],[9.944452706,55.389553616]]]},"properties":{"id":3486,"top":7437840.5681,"id_0":3486,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437823.0681,"col_index":49,"row_index":6}},{"id":3487,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389464324],[9.944452706,55.389375032],[9.944609912,55.389375032],[9.944609912,55.389464324],[9.944452706,55.389464324]]]},"properties":{"id":3487,"top":7437823.0681,"id_0":3487,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437805.5681,"col_index":49,"row_index":7}},{"id":3488,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389375032],[9.944452706,55.38928574],[9.944609912,55.38928574],[9.944609912,55.389375032],[9.944452706,55.389375032]]]},"properties":{"id":3488,"top":7437805.5681,"id_0":3488,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437788.0681,"col_index":49,"row_index":8}},{"id":3489,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38928574],[9.944452706,55.389196448],[9.944609912,55.389196448],[9.944609912,55.38928574],[9.944452706,55.38928574]]]},"properties":{"id":3489,"top":7437788.0681,"id_0":3489,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437770.5681,"col_index":49,"row_index":9}},{"id":3490,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389196448],[9.944452706,55.389107155],[9.944609912,55.389107155],[9.944609912,55.389196448],[9.944452706,55.389196448]]]},"properties":{"id":3490,"top":7437770.5681,"id_0":3490,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437753.0681,"col_index":49,"row_index":10}},{"id":3491,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389107155],[9.944452706,55.389017863],[9.944609912,55.389017863],[9.944609912,55.389107155],[9.944452706,55.389107155]]]},"properties":{"id":3491,"top":7437753.0681,"id_0":3491,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437735.5681,"col_index":49,"row_index":11}},{"id":3492,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.389017863],[9.944452706,55.38892857],[9.944609912,55.38892857],[9.944609912,55.389017863],[9.944452706,55.389017863]]]},"properties":{"id":3492,"top":7437735.5681,"id_0":3492,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437718.0681,"col_index":49,"row_index":12}},{"id":3493,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38892857],[9.944452706,55.388839277],[9.944609912,55.388839277],[9.944609912,55.38892857],[9.944452706,55.38892857]]]},"properties":{"id":3493,"top":7437718.0681,"id_0":3493,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437700.5681,"col_index":49,"row_index":13}},{"id":3494,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388839277],[9.944452706,55.388749984],[9.944609912,55.388749984],[9.944609912,55.388839277],[9.944452706,55.388839277]]]},"properties":{"id":3494,"top":7437700.5681,"id_0":3494,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437683.0681,"col_index":49,"row_index":14}},{"id":3495,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388749984],[9.944452706,55.38866069],[9.944609912,55.38866069],[9.944609912,55.388749984],[9.944452706,55.388749984]]]},"properties":{"id":3495,"top":7437683.0681,"id_0":3495,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437665.5681,"col_index":49,"row_index":15}},{"id":3496,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38866069],[9.944452706,55.388571396],[9.944609912,55.388571396],[9.944609912,55.38866069],[9.944452706,55.38866069]]]},"properties":{"id":3496,"top":7437665.5681,"id_0":3496,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437648.0681,"col_index":49,"row_index":16}},{"id":3497,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388571396],[9.944452706,55.388482103],[9.944609912,55.388482103],[9.944609912,55.388571396],[9.944452706,55.388571396]]]},"properties":{"id":3497,"top":7437648.0681,"id_0":3497,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437630.5681,"col_index":49,"row_index":17}},{"id":3498,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388482103],[9.944452706,55.388392808],[9.944609912,55.388392808],[9.944609912,55.388482103],[9.944452706,55.388482103]]]},"properties":{"id":3498,"top":7437630.5681,"id_0":3498,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437613.0681,"col_index":49,"row_index":18}},{"id":3499,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388392808],[9.944452706,55.388303514],[9.944609912,55.388303514],[9.944609912,55.388392808],[9.944452706,55.388392808]]]},"properties":{"id":3499,"top":7437613.0681,"id_0":3499,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437595.5681,"col_index":49,"row_index":19}},{"id":3500,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388303514],[9.944452706,55.38821422],[9.944609912,55.38821422],[9.944609912,55.388303514],[9.944452706,55.388303514]]]},"properties":{"id":3500,"top":7437595.5681,"id_0":3500,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437578.0681,"col_index":49,"row_index":20}},{"id":3501,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38821422],[9.944452706,55.388124925],[9.944609912,55.388124925],[9.944609912,55.38821422],[9.944452706,55.38821422]]]},"properties":{"id":3501,"top":7437578.0681,"id_0":3501,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437560.5681,"col_index":49,"row_index":21}},{"id":3502,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.388124925],[9.944452706,55.38803563],[9.944609912,55.38803563],[9.944609912,55.388124925],[9.944452706,55.388124925]]]},"properties":{"id":3502,"top":7437560.5681,"id_0":3502,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437543.0681,"col_index":49,"row_index":22}},{"id":3503,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38803563],[9.944452706,55.387946335],[9.944609912,55.387946335],[9.944609912,55.38803563],[9.944452706,55.38803563]]]},"properties":{"id":3503,"top":7437543.0681,"id_0":3503,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437525.5681,"col_index":49,"row_index":23}},{"id":3504,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387946335],[9.944452706,55.38785704],[9.944609912,55.38785704],[9.944609912,55.387946335],[9.944452706,55.387946335]]]},"properties":{"id":3504,"top":7437525.5681,"id_0":3504,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437508.0681,"col_index":49,"row_index":24}},{"id":3505,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38785704],[9.944452706,55.387767744],[9.944609912,55.387767744],[9.944609912,55.38785704],[9.944452706,55.38785704]]]},"properties":{"id":3505,"top":7437508.0681,"id_0":3505,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437490.5681,"col_index":49,"row_index":25}},{"id":3506,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387767744],[9.944452706,55.387678448],[9.944609912,55.387678448],[9.944609912,55.387767744],[9.944452706,55.387767744]]]},"properties":{"id":3506,"top":7437490.5681,"id_0":3506,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437473.0681,"col_index":49,"row_index":26}},{"id":3507,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387678448],[9.944452706,55.387589153],[9.944609912,55.387589153],[9.944609912,55.387678448],[9.944452706,55.387678448]]]},"properties":{"id":3507,"top":7437473.0681,"id_0":3507,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437455.5681,"col_index":49,"row_index":27}},{"id":3508,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387589153],[9.944452706,55.387499856],[9.944609912,55.387499856],[9.944609912,55.387589153],[9.944452706,55.387589153]]]},"properties":{"id":3508,"top":7437455.5681,"id_0":3508,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437438.0681,"col_index":49,"row_index":28}},{"id":3509,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387499856],[9.944452706,55.38741056],[9.944609912,55.38741056],[9.944609912,55.387499856],[9.944452706,55.387499856]]]},"properties":{"id":3509,"top":7437438.0681,"id_0":3509,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437420.5681,"col_index":49,"row_index":29}},{"id":3510,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38741056],[9.944452706,55.387321264],[9.944609912,55.387321264],[9.944609912,55.38741056],[9.944452706,55.38741056]]]},"properties":{"id":3510,"top":7437420.5681,"id_0":3510,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437403.0681,"col_index":49,"row_index":30}},{"id":3511,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387321264],[9.944452706,55.387231967],[9.944609912,55.387231967],[9.944609912,55.387321264],[9.944452706,55.387321264]]]},"properties":{"id":3511,"top":7437403.0681,"id_0":3511,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437385.5681,"col_index":49,"row_index":31}},{"id":3512,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387231967],[9.944452706,55.38714267],[9.944609912,55.38714267],[9.944609912,55.387231967],[9.944452706,55.387231967]]]},"properties":{"id":3512,"top":7437385.5681,"id_0":3512,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437368.0681,"col_index":49,"row_index":32}},{"id":3513,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38714267],[9.944452706,55.387053373],[9.944609912,55.387053373],[9.944609912,55.38714267],[9.944452706,55.38714267]]]},"properties":{"id":3513,"top":7437368.0681,"id_0":3513,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437350.5681,"col_index":49,"row_index":33}},{"id":3514,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.387053373],[9.944452706,55.386964076],[9.944609912,55.386964076],[9.944609912,55.387053373],[9.944452706,55.387053373]]]},"properties":{"id":3514,"top":7437350.5681,"id_0":3514,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437333.0681,"col_index":49,"row_index":34}},{"id":3515,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386964076],[9.944452706,55.386874778],[9.944609912,55.386874778],[9.944609912,55.386964076],[9.944452706,55.386964076]]]},"properties":{"id":3515,"top":7437333.0681,"id_0":3515,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437315.5681,"col_index":49,"row_index":35}},{"id":3516,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386874778],[9.944452706,55.38678548],[9.944609912,55.38678548],[9.944609912,55.386874778],[9.944452706,55.386874778]]]},"properties":{"id":3516,"top":7437315.5681,"id_0":3516,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437298.0681,"col_index":49,"row_index":36}},{"id":3517,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38678548],[9.944452706,55.386696182],[9.944609912,55.386696182],[9.944609912,55.38678548],[9.944452706,55.38678548]]]},"properties":{"id":3517,"top":7437298.0681,"id_0":3517,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437280.5681,"col_index":49,"row_index":37}},{"id":3518,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386696182],[9.944452706,55.386606884],[9.944609912,55.386606884],[9.944609912,55.386696182],[9.944452706,55.386696182]]]},"properties":{"id":3518,"top":7437280.5681,"id_0":3518,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437263.0681,"col_index":49,"row_index":38}},{"id":3519,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386606884],[9.944452706,55.386517586],[9.944609912,55.386517586],[9.944609912,55.386606884],[9.944452706,55.386606884]]]},"properties":{"id":3519,"top":7437263.0681,"id_0":3519,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437245.5681,"col_index":49,"row_index":39}},{"id":3520,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386517586],[9.944452706,55.386428287],[9.944609912,55.386428287],[9.944609912,55.386517586],[9.944452706,55.386517586]]]},"properties":{"id":3520,"top":7437245.5681,"id_0":3520,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437228.0681,"col_index":49,"row_index":40}},{"id":3521,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386428287],[9.944452706,55.386338989],[9.944609912,55.386338989],[9.944609912,55.386428287],[9.944452706,55.386428287]]]},"properties":{"id":3521,"top":7437228.0681,"id_0":3521,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437210.5681,"col_index":49,"row_index":41}},{"id":3522,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386338989],[9.944452706,55.38624969],[9.944609912,55.38624969],[9.944609912,55.386338989],[9.944452706,55.386338989]]]},"properties":{"id":3522,"top":7437210.5681,"id_0":3522,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437193.0681,"col_index":49,"row_index":42}},{"id":3523,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38624969],[9.944452706,55.386160391],[9.944609912,55.386160391],[9.944609912,55.38624969],[9.944452706,55.38624969]]]},"properties":{"id":3523,"top":7437193.0681,"id_0":3523,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437175.5681,"col_index":49,"row_index":43}},{"id":3524,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386160391],[9.944452706,55.386071091],[9.944609912,55.386071091],[9.944609912,55.386160391],[9.944452706,55.386160391]]]},"properties":{"id":3524,"top":7437175.5681,"id_0":3524,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437158.0681,"col_index":49,"row_index":44}},{"id":3525,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.386071091],[9.944452706,55.385981792],[9.944609912,55.385981792],[9.944609912,55.386071091],[9.944452706,55.386071091]]]},"properties":{"id":3525,"top":7437158.0681,"id_0":3525,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437140.5681,"col_index":49,"row_index":45}},{"id":3526,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385981792],[9.944452706,55.385892492],[9.944609912,55.385892492],[9.944609912,55.385981792],[9.944452706,55.385981792]]]},"properties":{"id":3526,"top":7437140.5681,"id_0":3526,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437123.0681,"col_index":49,"row_index":46}},{"id":3527,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385892492],[9.944452706,55.385803192],[9.944609912,55.385803192],[9.944609912,55.385892492],[9.944452706,55.385892492]]]},"properties":{"id":3527,"top":7437123.0681,"id_0":3527,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437105.5681,"col_index":49,"row_index":47}},{"id":3528,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385803192],[9.944452706,55.385713892],[9.944609912,55.385713892],[9.944609912,55.385803192],[9.944452706,55.385803192]]]},"properties":{"id":3528,"top":7437105.5681,"id_0":3528,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437088.0681,"col_index":49,"row_index":48}},{"id":3529,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385713892],[9.944452706,55.385624592],[9.944609912,55.385624592],[9.944609912,55.385713892],[9.944452706,55.385713892]]]},"properties":{"id":3529,"top":7437088.0681,"id_0":3529,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437070.5681,"col_index":49,"row_index":49}},{"id":3530,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385624592],[9.944452706,55.385535291],[9.944609912,55.385535291],[9.944609912,55.385624592],[9.944452706,55.385624592]]]},"properties":{"id":3530,"top":7437070.5681,"id_0":3530,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437053.0681,"col_index":49,"row_index":50}},{"id":3531,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385535291],[9.944452706,55.38544599],[9.944609912,55.38544599],[9.944609912,55.385535291],[9.944452706,55.385535291]]]},"properties":{"id":3531,"top":7437053.0681,"id_0":3531,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437035.5681,"col_index":49,"row_index":51}},{"id":3532,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38544599],[9.944452706,55.385356689],[9.944609912,55.385356689],[9.944609912,55.38544599],[9.944452706,55.38544599]]]},"properties":{"id":3532,"top":7437035.5681,"id_0":3532,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437018.0681,"col_index":49,"row_index":52}},{"id":3533,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385356689],[9.944452706,55.385267388],[9.944609912,55.385267388],[9.944609912,55.385356689],[9.944452706,55.385356689]]]},"properties":{"id":3533,"top":7437018.0681,"id_0":3533,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7437000.5681,"col_index":49,"row_index":53}},{"id":3534,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385267388],[9.944452706,55.385178087],[9.944609912,55.385178087],[9.944609912,55.385267388],[9.944452706,55.385267388]]]},"properties":{"id":3534,"top":7437000.5681,"id_0":3534,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436983.0681,"col_index":49,"row_index":54}},{"id":3535,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385178087],[9.944452706,55.385088785],[9.944609912,55.385088785],[9.944609912,55.385178087],[9.944452706,55.385178087]]]},"properties":{"id":3535,"top":7436983.0681,"id_0":3535,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436965.5681,"col_index":49,"row_index":55}},{"id":3536,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.385088785],[9.944452706,55.384999484],[9.944609912,55.384999484],[9.944609912,55.385088785],[9.944452706,55.385088785]]]},"properties":{"id":3536,"top":7436965.5681,"id_0":3536,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436948.0681,"col_index":49,"row_index":56}},{"id":3537,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384999484],[9.944452706,55.384910182],[9.944609912,55.384910182],[9.944609912,55.384999484],[9.944452706,55.384999484]]]},"properties":{"id":3537,"top":7436948.0681,"id_0":3537,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436930.5681,"col_index":49,"row_index":57}},{"id":3538,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384910182],[9.944452706,55.38482088],[9.944609912,55.38482088],[9.944609912,55.384910182],[9.944452706,55.384910182]]]},"properties":{"id":3538,"top":7436930.5681,"id_0":3538,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436913.0681,"col_index":49,"row_index":58}},{"id":3539,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.38482088],[9.944452706,55.384731577],[9.944609912,55.384731577],[9.944609912,55.38482088],[9.944452706,55.38482088]]]},"properties":{"id":3539,"top":7436913.0681,"id_0":3539,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436895.5681,"col_index":49,"row_index":59}},{"id":3540,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384731577],[9.944452706,55.384642275],[9.944609912,55.384642275],[9.944609912,55.384731577],[9.944452706,55.384731577]]]},"properties":{"id":3540,"top":7436895.5681,"id_0":3540,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436878.0681,"col_index":49,"row_index":60}},{"id":3541,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384642275],[9.944452706,55.384552972],[9.944609912,55.384552972],[9.944609912,55.384642275],[9.944452706,55.384642275]]]},"properties":{"id":3541,"top":7436878.0681,"id_0":3541,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436860.5681,"col_index":49,"row_index":61}},{"id":3542,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384552972],[9.944452706,55.384463669],[9.944609912,55.384463669],[9.944609912,55.384552972],[9.944452706,55.384552972]]]},"properties":{"id":3542,"top":7436860.5681,"id_0":3542,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436843.0681,"col_index":49,"row_index":62}},{"id":3543,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384463669],[9.944452706,55.384374366],[9.944609912,55.384374366],[9.944609912,55.384463669],[9.944452706,55.384463669]]]},"properties":{"id":3543,"top":7436843.0681,"id_0":3543,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436825.5681,"col_index":49,"row_index":63}},{"id":3544,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384374366],[9.944452706,55.384285062],[9.944609912,55.384285062],[9.944609912,55.384374366],[9.944452706,55.384374366]]]},"properties":{"id":3544,"top":7436825.5681,"id_0":3544,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436808.0681,"col_index":49,"row_index":64}},{"id":3545,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384285062],[9.944452706,55.384195759],[9.944609912,55.384195759],[9.944609912,55.384285062],[9.944452706,55.384285062]]]},"properties":{"id":3545,"top":7436808.0681,"id_0":3545,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436790.5681,"col_index":49,"row_index":65}},{"id":3546,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384195759],[9.944452706,55.384106455],[9.944609912,55.384106455],[9.944609912,55.384195759],[9.944452706,55.384195759]]]},"properties":{"id":3546,"top":7436790.5681,"id_0":3546,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436773.0681,"col_index":49,"row_index":66}},{"id":3547,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384106455],[9.944452706,55.384017151],[9.944609912,55.384017151],[9.944609912,55.384106455],[9.944452706,55.384106455]]]},"properties":{"id":3547,"top":7436773.0681,"id_0":3547,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436755.5681,"col_index":49,"row_index":67}},{"id":3548,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.384017151],[9.944452706,55.383927847],[9.944609912,55.383927847],[9.944609912,55.384017151],[9.944452706,55.384017151]]]},"properties":{"id":3548,"top":7436755.5681,"id_0":3548,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436738.0681,"col_index":49,"row_index":68}},{"id":3549,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.383927847],[9.944452706,55.383838543],[9.944609912,55.383838543],[9.944609912,55.383927847],[9.944452706,55.383927847]]]},"properties":{"id":3549,"top":7436738.0681,"id_0":3549,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436720.5681,"col_index":49,"row_index":69}},{"id":3550,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944452706,55.383838543],[9.944452706,55.383749238],[9.944609912,55.383749238],[9.944609912,55.383838543],[9.944452706,55.383838543]]]},"properties":{"id":3550,"top":7436720.5681,"id_0":3550,"left":1107011.4115,"Label":null,"right":1107028.9115,"bottom":7436703.0681,"col_index":49,"row_index":70}},{"id":3551,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.390089362],[9.944609912,55.390000071],[9.944767117,55.390000071],[9.944767117,55.390089362],[9.944609912,55.390089362]]]},"properties":{"id":3551,"top":7437945.5681,"id_0":3551,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437928.0681,"col_index":50,"row_index":0}},{"id":3552,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.390000071],[9.944609912,55.38991078],[9.944767117,55.38991078],[9.944767117,55.390000071],[9.944609912,55.390000071]]]},"properties":{"id":3552,"top":7437928.0681,"id_0":3552,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437910.5681,"col_index":50,"row_index":1}},{"id":3553,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38991078],[9.944609912,55.38982149],[9.944767117,55.38982149],[9.944767117,55.38991078],[9.944609912,55.38991078]]]},"properties":{"id":3553,"top":7437910.5681,"id_0":3553,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437893.0681,"col_index":50,"row_index":2}},{"id":3554,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38982149],[9.944609912,55.389732199],[9.944767117,55.389732199],[9.944767117,55.38982149],[9.944609912,55.38982149]]]},"properties":{"id":3554,"top":7437893.0681,"id_0":3554,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437875.5681,"col_index":50,"row_index":3}},{"id":3555,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389732199],[9.944609912,55.389642907],[9.944767117,55.389642907],[9.944767117,55.389732199],[9.944609912,55.389732199]]]},"properties":{"id":3555,"top":7437875.5681,"id_0":3555,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437858.0681,"col_index":50,"row_index":4}},{"id":3556,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389642907],[9.944609912,55.389553616],[9.944767117,55.389553616],[9.944767117,55.389642907],[9.944609912,55.389642907]]]},"properties":{"id":3556,"top":7437858.0681,"id_0":3556,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437840.5681,"col_index":50,"row_index":5}},{"id":3557,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389553616],[9.944609912,55.389464324],[9.944767117,55.389464324],[9.944767117,55.389553616],[9.944609912,55.389553616]]]},"properties":{"id":3557,"top":7437840.5681,"id_0":3557,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437823.0681,"col_index":50,"row_index":6}},{"id":3558,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389464324],[9.944609912,55.389375032],[9.944767117,55.389375032],[9.944767117,55.389464324],[9.944609912,55.389464324]]]},"properties":{"id":3558,"top":7437823.0681,"id_0":3558,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437805.5681,"col_index":50,"row_index":7}},{"id":3559,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389375032],[9.944609912,55.38928574],[9.944767117,55.38928574],[9.944767117,55.389375032],[9.944609912,55.389375032]]]},"properties":{"id":3559,"top":7437805.5681,"id_0":3559,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437788.0681,"col_index":50,"row_index":8}},{"id":3560,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38928574],[9.944609912,55.389196448],[9.944767117,55.389196448],[9.944767117,55.38928574],[9.944609912,55.38928574]]]},"properties":{"id":3560,"top":7437788.0681,"id_0":3560,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437770.5681,"col_index":50,"row_index":9}},{"id":3561,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389196448],[9.944609912,55.389107155],[9.944767117,55.389107155],[9.944767117,55.389196448],[9.944609912,55.389196448]]]},"properties":{"id":3561,"top":7437770.5681,"id_0":3561,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437753.0681,"col_index":50,"row_index":10}},{"id":3562,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389107155],[9.944609912,55.389017863],[9.944767117,55.389017863],[9.944767117,55.389107155],[9.944609912,55.389107155]]]},"properties":{"id":3562,"top":7437753.0681,"id_0":3562,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437735.5681,"col_index":50,"row_index":11}},{"id":3563,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.389017863],[9.944609912,55.38892857],[9.944767117,55.38892857],[9.944767117,55.389017863],[9.944609912,55.389017863]]]},"properties":{"id":3563,"top":7437735.5681,"id_0":3563,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437718.0681,"col_index":50,"row_index":12}},{"id":3564,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38892857],[9.944609912,55.388839277],[9.944767117,55.388839277],[9.944767117,55.38892857],[9.944609912,55.38892857]]]},"properties":{"id":3564,"top":7437718.0681,"id_0":3564,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437700.5681,"col_index":50,"row_index":13}},{"id":3565,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388839277],[9.944609912,55.388749984],[9.944767117,55.388749984],[9.944767117,55.388839277],[9.944609912,55.388839277]]]},"properties":{"id":3565,"top":7437700.5681,"id_0":3565,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437683.0681,"col_index":50,"row_index":14}},{"id":3566,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388749984],[9.944609912,55.38866069],[9.944767117,55.38866069],[9.944767117,55.388749984],[9.944609912,55.388749984]]]},"properties":{"id":3566,"top":7437683.0681,"id_0":3566,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437665.5681,"col_index":50,"row_index":15}},{"id":3567,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38866069],[9.944609912,55.388571396],[9.944767117,55.388571396],[9.944767117,55.38866069],[9.944609912,55.38866069]]]},"properties":{"id":3567,"top":7437665.5681,"id_0":3567,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437648.0681,"col_index":50,"row_index":16}},{"id":3568,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388571396],[9.944609912,55.388482103],[9.944767117,55.388482103],[9.944767117,55.388571396],[9.944609912,55.388571396]]]},"properties":{"id":3568,"top":7437648.0681,"id_0":3568,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437630.5681,"col_index":50,"row_index":17}},{"id":3569,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388482103],[9.944609912,55.388392808],[9.944767117,55.388392808],[9.944767117,55.388482103],[9.944609912,55.388482103]]]},"properties":{"id":3569,"top":7437630.5681,"id_0":3569,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437613.0681,"col_index":50,"row_index":18}},{"id":3570,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388392808],[9.944609912,55.388303514],[9.944767117,55.388303514],[9.944767117,55.388392808],[9.944609912,55.388392808]]]},"properties":{"id":3570,"top":7437613.0681,"id_0":3570,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437595.5681,"col_index":50,"row_index":19}},{"id":3571,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388303514],[9.944609912,55.38821422],[9.944767117,55.38821422],[9.944767117,55.388303514],[9.944609912,55.388303514]]]},"properties":{"id":3571,"top":7437595.5681,"id_0":3571,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437578.0681,"col_index":50,"row_index":20}},{"id":3572,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38821422],[9.944609912,55.388124925],[9.944767117,55.388124925],[9.944767117,55.38821422],[9.944609912,55.38821422]]]},"properties":{"id":3572,"top":7437578.0681,"id_0":3572,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437560.5681,"col_index":50,"row_index":21}},{"id":3573,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.388124925],[9.944609912,55.38803563],[9.944767117,55.38803563],[9.944767117,55.388124925],[9.944609912,55.388124925]]]},"properties":{"id":3573,"top":7437560.5681,"id_0":3573,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437543.0681,"col_index":50,"row_index":22}},{"id":3574,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38803563],[9.944609912,55.387946335],[9.944767117,55.387946335],[9.944767117,55.38803563],[9.944609912,55.38803563]]]},"properties":{"id":3574,"top":7437543.0681,"id_0":3574,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437525.5681,"col_index":50,"row_index":23}},{"id":3575,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387946335],[9.944609912,55.38785704],[9.944767117,55.38785704],[9.944767117,55.387946335],[9.944609912,55.387946335]]]},"properties":{"id":3575,"top":7437525.5681,"id_0":3575,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437508.0681,"col_index":50,"row_index":24}},{"id":3576,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38785704],[9.944609912,55.387767744],[9.944767117,55.387767744],[9.944767117,55.38785704],[9.944609912,55.38785704]]]},"properties":{"id":3576,"top":7437508.0681,"id_0":3576,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437490.5681,"col_index":50,"row_index":25}},{"id":3577,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387767744],[9.944609912,55.387678448],[9.944767117,55.387678448],[9.944767117,55.387767744],[9.944609912,55.387767744]]]},"properties":{"id":3577,"top":7437490.5681,"id_0":3577,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437473.0681,"col_index":50,"row_index":26}},{"id":3578,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387678448],[9.944609912,55.387589153],[9.944767117,55.387589153],[9.944767117,55.387678448],[9.944609912,55.387678448]]]},"properties":{"id":3578,"top":7437473.0681,"id_0":3578,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437455.5681,"col_index":50,"row_index":27}},{"id":3579,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387589153],[9.944609912,55.387499856],[9.944767117,55.387499856],[9.944767117,55.387589153],[9.944609912,55.387589153]]]},"properties":{"id":3579,"top":7437455.5681,"id_0":3579,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437438.0681,"col_index":50,"row_index":28}},{"id":3580,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387499856],[9.944609912,55.38741056],[9.944767117,55.38741056],[9.944767117,55.387499856],[9.944609912,55.387499856]]]},"properties":{"id":3580,"top":7437438.0681,"id_0":3580,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437420.5681,"col_index":50,"row_index":29}},{"id":3581,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38741056],[9.944609912,55.387321264],[9.944767117,55.387321264],[9.944767117,55.38741056],[9.944609912,55.38741056]]]},"properties":{"id":3581,"top":7437420.5681,"id_0":3581,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437403.0681,"col_index":50,"row_index":30}},{"id":3582,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387321264],[9.944609912,55.387231967],[9.944767117,55.387231967],[9.944767117,55.387321264],[9.944609912,55.387321264]]]},"properties":{"id":3582,"top":7437403.0681,"id_0":3582,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437385.5681,"col_index":50,"row_index":31}},{"id":3583,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387231967],[9.944609912,55.38714267],[9.944767117,55.38714267],[9.944767117,55.387231967],[9.944609912,55.387231967]]]},"properties":{"id":3583,"top":7437385.5681,"id_0":3583,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437368.0681,"col_index":50,"row_index":32}},{"id":3584,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38714267],[9.944609912,55.387053373],[9.944767117,55.387053373],[9.944767117,55.38714267],[9.944609912,55.38714267]]]},"properties":{"id":3584,"top":7437368.0681,"id_0":3584,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437350.5681,"col_index":50,"row_index":33}},{"id":3585,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.387053373],[9.944609912,55.386964076],[9.944767117,55.386964076],[9.944767117,55.387053373],[9.944609912,55.387053373]]]},"properties":{"id":3585,"top":7437350.5681,"id_0":3585,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437333.0681,"col_index":50,"row_index":34}},{"id":3586,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386964076],[9.944609912,55.386874778],[9.944767117,55.386874778],[9.944767117,55.386964076],[9.944609912,55.386964076]]]},"properties":{"id":3586,"top":7437333.0681,"id_0":3586,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437315.5681,"col_index":50,"row_index":35}},{"id":3587,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386874778],[9.944609912,55.38678548],[9.944767117,55.38678548],[9.944767117,55.386874778],[9.944609912,55.386874778]]]},"properties":{"id":3587,"top":7437315.5681,"id_0":3587,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437298.0681,"col_index":50,"row_index":36}},{"id":3588,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38678548],[9.944609912,55.386696182],[9.944767117,55.386696182],[9.944767117,55.38678548],[9.944609912,55.38678548]]]},"properties":{"id":3588,"top":7437298.0681,"id_0":3588,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437280.5681,"col_index":50,"row_index":37}},{"id":3589,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386696182],[9.944609912,55.386606884],[9.944767117,55.386606884],[9.944767117,55.386696182],[9.944609912,55.386696182]]]},"properties":{"id":3589,"top":7437280.5681,"id_0":3589,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437263.0681,"col_index":50,"row_index":38}},{"id":3590,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386606884],[9.944609912,55.386517586],[9.944767117,55.386517586],[9.944767117,55.386606884],[9.944609912,55.386606884]]]},"properties":{"id":3590,"top":7437263.0681,"id_0":3590,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437245.5681,"col_index":50,"row_index":39}},{"id":3591,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386517586],[9.944609912,55.386428287],[9.944767117,55.386428287],[9.944767117,55.386517586],[9.944609912,55.386517586]]]},"properties":{"id":3591,"top":7437245.5681,"id_0":3591,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437228.0681,"col_index":50,"row_index":40}},{"id":3592,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386428287],[9.944609912,55.386338989],[9.944767117,55.386338989],[9.944767117,55.386428287],[9.944609912,55.386428287]]]},"properties":{"id":3592,"top":7437228.0681,"id_0":3592,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437210.5681,"col_index":50,"row_index":41}},{"id":3593,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386338989],[9.944609912,55.38624969],[9.944767117,55.38624969],[9.944767117,55.386338989],[9.944609912,55.386338989]]]},"properties":{"id":3593,"top":7437210.5681,"id_0":3593,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437193.0681,"col_index":50,"row_index":42}},{"id":3594,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38624969],[9.944609912,55.386160391],[9.944767117,55.386160391],[9.944767117,55.38624969],[9.944609912,55.38624969]]]},"properties":{"id":3594,"top":7437193.0681,"id_0":3594,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437175.5681,"col_index":50,"row_index":43}},{"id":3595,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386160391],[9.944609912,55.386071091],[9.944767117,55.386071091],[9.944767117,55.386160391],[9.944609912,55.386160391]]]},"properties":{"id":3595,"top":7437175.5681,"id_0":3595,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437158.0681,"col_index":50,"row_index":44}},{"id":3596,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.386071091],[9.944609912,55.385981792],[9.944767117,55.385981792],[9.944767117,55.386071091],[9.944609912,55.386071091]]]},"properties":{"id":3596,"top":7437158.0681,"id_0":3596,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437140.5681,"col_index":50,"row_index":45}},{"id":3597,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385981792],[9.944609912,55.385892492],[9.944767117,55.385892492],[9.944767117,55.385981792],[9.944609912,55.385981792]]]},"properties":{"id":3597,"top":7437140.5681,"id_0":3597,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437123.0681,"col_index":50,"row_index":46}},{"id":3598,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385892492],[9.944609912,55.385803192],[9.944767117,55.385803192],[9.944767117,55.385892492],[9.944609912,55.385892492]]]},"properties":{"id":3598,"top":7437123.0681,"id_0":3598,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437105.5681,"col_index":50,"row_index":47}},{"id":3599,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385803192],[9.944609912,55.385713892],[9.944767117,55.385713892],[9.944767117,55.385803192],[9.944609912,55.385803192]]]},"properties":{"id":3599,"top":7437105.5681,"id_0":3599,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437088.0681,"col_index":50,"row_index":48}},{"id":3600,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385713892],[9.944609912,55.385624592],[9.944767117,55.385624592],[9.944767117,55.385713892],[9.944609912,55.385713892]]]},"properties":{"id":3600,"top":7437088.0681,"id_0":3600,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437070.5681,"col_index":50,"row_index":49}},{"id":3601,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385624592],[9.944609912,55.385535291],[9.944767117,55.385535291],[9.944767117,55.385624592],[9.944609912,55.385624592]]]},"properties":{"id":3601,"top":7437070.5681,"id_0":3601,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437053.0681,"col_index":50,"row_index":50}},{"id":3602,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385535291],[9.944609912,55.38544599],[9.944767117,55.38544599],[9.944767117,55.385535291],[9.944609912,55.385535291]]]},"properties":{"id":3602,"top":7437053.0681,"id_0":3602,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437035.5681,"col_index":50,"row_index":51}},{"id":3603,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38544599],[9.944609912,55.385356689],[9.944767117,55.385356689],[9.944767117,55.38544599],[9.944609912,55.38544599]]]},"properties":{"id":3603,"top":7437035.5681,"id_0":3603,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437018.0681,"col_index":50,"row_index":52}},{"id":3604,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385356689],[9.944609912,55.385267388],[9.944767117,55.385267388],[9.944767117,55.385356689],[9.944609912,55.385356689]]]},"properties":{"id":3604,"top":7437018.0681,"id_0":3604,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7437000.5681,"col_index":50,"row_index":53}},{"id":3605,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385267388],[9.944609912,55.385178087],[9.944767117,55.385178087],[9.944767117,55.385267388],[9.944609912,55.385267388]]]},"properties":{"id":3605,"top":7437000.5681,"id_0":3605,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436983.0681,"col_index":50,"row_index":54}},{"id":3606,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385178087],[9.944609912,55.385088785],[9.944767117,55.385088785],[9.944767117,55.385178087],[9.944609912,55.385178087]]]},"properties":{"id":3606,"top":7436983.0681,"id_0":3606,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436965.5681,"col_index":50,"row_index":55}},{"id":3607,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.385088785],[9.944609912,55.384999484],[9.944767117,55.384999484],[9.944767117,55.385088785],[9.944609912,55.385088785]]]},"properties":{"id":3607,"top":7436965.5681,"id_0":3607,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436948.0681,"col_index":50,"row_index":56}},{"id":3608,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384999484],[9.944609912,55.384910182],[9.944767117,55.384910182],[9.944767117,55.384999484],[9.944609912,55.384999484]]]},"properties":{"id":3608,"top":7436948.0681,"id_0":3608,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436930.5681,"col_index":50,"row_index":57}},{"id":3609,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384910182],[9.944609912,55.38482088],[9.944767117,55.38482088],[9.944767117,55.384910182],[9.944609912,55.384910182]]]},"properties":{"id":3609,"top":7436930.5681,"id_0":3609,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436913.0681,"col_index":50,"row_index":58}},{"id":3610,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.38482088],[9.944609912,55.384731577],[9.944767117,55.384731577],[9.944767117,55.38482088],[9.944609912,55.38482088]]]},"properties":{"id":3610,"top":7436913.0681,"id_0":3610,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436895.5681,"col_index":50,"row_index":59}},{"id":3611,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384731577],[9.944609912,55.384642275],[9.944767117,55.384642275],[9.944767117,55.384731577],[9.944609912,55.384731577]]]},"properties":{"id":3611,"top":7436895.5681,"id_0":3611,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436878.0681,"col_index":50,"row_index":60}},{"id":3612,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384642275],[9.944609912,55.384552972],[9.944767117,55.384552972],[9.944767117,55.384642275],[9.944609912,55.384642275]]]},"properties":{"id":3612,"top":7436878.0681,"id_0":3612,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436860.5681,"col_index":50,"row_index":61}},{"id":3613,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384552972],[9.944609912,55.384463669],[9.944767117,55.384463669],[9.944767117,55.384552972],[9.944609912,55.384552972]]]},"properties":{"id":3613,"top":7436860.5681,"id_0":3613,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436843.0681,"col_index":50,"row_index":62}},{"id":3614,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384463669],[9.944609912,55.384374366],[9.944767117,55.384374366],[9.944767117,55.384463669],[9.944609912,55.384463669]]]},"properties":{"id":3614,"top":7436843.0681,"id_0":3614,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436825.5681,"col_index":50,"row_index":63}},{"id":3615,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384374366],[9.944609912,55.384285062],[9.944767117,55.384285062],[9.944767117,55.384374366],[9.944609912,55.384374366]]]},"properties":{"id":3615,"top":7436825.5681,"id_0":3615,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436808.0681,"col_index":50,"row_index":64}},{"id":3616,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384285062],[9.944609912,55.384195759],[9.944767117,55.384195759],[9.944767117,55.384285062],[9.944609912,55.384285062]]]},"properties":{"id":3616,"top":7436808.0681,"id_0":3616,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436790.5681,"col_index":50,"row_index":65}},{"id":3617,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384195759],[9.944609912,55.384106455],[9.944767117,55.384106455],[9.944767117,55.384195759],[9.944609912,55.384195759]]]},"properties":{"id":3617,"top":7436790.5681,"id_0":3617,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436773.0681,"col_index":50,"row_index":66}},{"id":3618,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384106455],[9.944609912,55.384017151],[9.944767117,55.384017151],[9.944767117,55.384106455],[9.944609912,55.384106455]]]},"properties":{"id":3618,"top":7436773.0681,"id_0":3618,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436755.5681,"col_index":50,"row_index":67}},{"id":3619,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.384017151],[9.944609912,55.383927847],[9.944767117,55.383927847],[9.944767117,55.384017151],[9.944609912,55.384017151]]]},"properties":{"id":3619,"top":7436755.5681,"id_0":3619,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436738.0681,"col_index":50,"row_index":68}},{"id":3620,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.383927847],[9.944609912,55.383838543],[9.944767117,55.383838543],[9.944767117,55.383927847],[9.944609912,55.383927847]]]},"properties":{"id":3620,"top":7436738.0681,"id_0":3620,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436720.5681,"col_index":50,"row_index":69}},{"id":3621,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944609912,55.383838543],[9.944609912,55.383749238],[9.944767117,55.383749238],[9.944767117,55.383838543],[9.944609912,55.383838543]]]},"properties":{"id":3621,"top":7436720.5681,"id_0":3621,"left":1107028.9115,"Label":null,"right":1107046.4115,"bottom":7436703.0681,"col_index":50,"row_index":70}},{"id":3622,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.390089362],[9.944767117,55.390000071],[9.944924322,55.390000071],[9.944924322,55.390089362],[9.944767117,55.390089362]]]},"properties":{"id":3622,"top":7437945.5681,"id_0":3622,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437928.0681,"col_index":51,"row_index":0}},{"id":3623,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.390000071],[9.944767117,55.38991078],[9.944924322,55.38991078],[9.944924322,55.390000071],[9.944767117,55.390000071]]]},"properties":{"id":3623,"top":7437928.0681,"id_0":3623,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437910.5681,"col_index":51,"row_index":1}},{"id":3624,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38991078],[9.944767117,55.38982149],[9.944924322,55.38982149],[9.944924322,55.38991078],[9.944767117,55.38991078]]]},"properties":{"id":3624,"top":7437910.5681,"id_0":3624,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437893.0681,"col_index":51,"row_index":2}},{"id":3625,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38982149],[9.944767117,55.389732199],[9.944924322,55.389732199],[9.944924322,55.38982149],[9.944767117,55.38982149]]]},"properties":{"id":3625,"top":7437893.0681,"id_0":3625,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437875.5681,"col_index":51,"row_index":3}},{"id":3626,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389732199],[9.944767117,55.389642907],[9.944924322,55.389642907],[9.944924322,55.389732199],[9.944767117,55.389732199]]]},"properties":{"id":3626,"top":7437875.5681,"id_0":3626,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437858.0681,"col_index":51,"row_index":4}},{"id":3627,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389642907],[9.944767117,55.389553616],[9.944924322,55.389553616],[9.944924322,55.389642907],[9.944767117,55.389642907]]]},"properties":{"id":3627,"top":7437858.0681,"id_0":3627,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437840.5681,"col_index":51,"row_index":5}},{"id":3628,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389553616],[9.944767117,55.389464324],[9.944924322,55.389464324],[9.944924322,55.389553616],[9.944767117,55.389553616]]]},"properties":{"id":3628,"top":7437840.5681,"id_0":3628,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437823.0681,"col_index":51,"row_index":6}},{"id":3629,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389464324],[9.944767117,55.389375032],[9.944924322,55.389375032],[9.944924322,55.389464324],[9.944767117,55.389464324]]]},"properties":{"id":3629,"top":7437823.0681,"id_0":3629,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437805.5681,"col_index":51,"row_index":7}},{"id":3630,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389375032],[9.944767117,55.38928574],[9.944924322,55.38928574],[9.944924322,55.389375032],[9.944767117,55.389375032]]]},"properties":{"id":3630,"top":7437805.5681,"id_0":3630,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437788.0681,"col_index":51,"row_index":8}},{"id":3631,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38928574],[9.944767117,55.389196448],[9.944924322,55.389196448],[9.944924322,55.38928574],[9.944767117,55.38928574]]]},"properties":{"id":3631,"top":7437788.0681,"id_0":3631,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437770.5681,"col_index":51,"row_index":9}},{"id":3632,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389196448],[9.944767117,55.389107155],[9.944924322,55.389107155],[9.944924322,55.389196448],[9.944767117,55.389196448]]]},"properties":{"id":3632,"top":7437770.5681,"id_0":3632,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437753.0681,"col_index":51,"row_index":10}},{"id":3633,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389107155],[9.944767117,55.389017863],[9.944924322,55.389017863],[9.944924322,55.389107155],[9.944767117,55.389107155]]]},"properties":{"id":3633,"top":7437753.0681,"id_0":3633,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437735.5681,"col_index":51,"row_index":11}},{"id":3634,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.389017863],[9.944767117,55.38892857],[9.944924322,55.38892857],[9.944924322,55.389017863],[9.944767117,55.389017863]]]},"properties":{"id":3634,"top":7437735.5681,"id_0":3634,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437718.0681,"col_index":51,"row_index":12}},{"id":3635,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38892857],[9.944767117,55.388839277],[9.944924322,55.388839277],[9.944924322,55.38892857],[9.944767117,55.38892857]]]},"properties":{"id":3635,"top":7437718.0681,"id_0":3635,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437700.5681,"col_index":51,"row_index":13}},{"id":3636,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388839277],[9.944767117,55.388749984],[9.944924322,55.388749984],[9.944924322,55.388839277],[9.944767117,55.388839277]]]},"properties":{"id":3636,"top":7437700.5681,"id_0":3636,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437683.0681,"col_index":51,"row_index":14}},{"id":3637,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388749984],[9.944767117,55.38866069],[9.944924322,55.38866069],[9.944924322,55.388749984],[9.944767117,55.388749984]]]},"properties":{"id":3637,"top":7437683.0681,"id_0":3637,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437665.5681,"col_index":51,"row_index":15}},{"id":3638,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38866069],[9.944767117,55.388571396],[9.944924322,55.388571396],[9.944924322,55.38866069],[9.944767117,55.38866069]]]},"properties":{"id":3638,"top":7437665.5681,"id_0":3638,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437648.0681,"col_index":51,"row_index":16}},{"id":3639,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388571396],[9.944767117,55.388482103],[9.944924322,55.388482103],[9.944924322,55.388571396],[9.944767117,55.388571396]]]},"properties":{"id":3639,"top":7437648.0681,"id_0":3639,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437630.5681,"col_index":51,"row_index":17}},{"id":3640,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388482103],[9.944767117,55.388392808],[9.944924322,55.388392808],[9.944924322,55.388482103],[9.944767117,55.388482103]]]},"properties":{"id":3640,"top":7437630.5681,"id_0":3640,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437613.0681,"col_index":51,"row_index":18}},{"id":3641,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388392808],[9.944767117,55.388303514],[9.944924322,55.388303514],[9.944924322,55.388392808],[9.944767117,55.388392808]]]},"properties":{"id":3641,"top":7437613.0681,"id_0":3641,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437595.5681,"col_index":51,"row_index":19}},{"id":3642,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388303514],[9.944767117,55.38821422],[9.944924322,55.38821422],[9.944924322,55.388303514],[9.944767117,55.388303514]]]},"properties":{"id":3642,"top":7437595.5681,"id_0":3642,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437578.0681,"col_index":51,"row_index":20}},{"id":3643,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38821422],[9.944767117,55.388124925],[9.944924322,55.388124925],[9.944924322,55.38821422],[9.944767117,55.38821422]]]},"properties":{"id":3643,"top":7437578.0681,"id_0":3643,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437560.5681,"col_index":51,"row_index":21}},{"id":3644,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.388124925],[9.944767117,55.38803563],[9.944924322,55.38803563],[9.944924322,55.388124925],[9.944767117,55.388124925]]]},"properties":{"id":3644,"top":7437560.5681,"id_0":3644,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437543.0681,"col_index":51,"row_index":22}},{"id":3645,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38803563],[9.944767117,55.387946335],[9.944924322,55.387946335],[9.944924322,55.38803563],[9.944767117,55.38803563]]]},"properties":{"id":3645,"top":7437543.0681,"id_0":3645,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437525.5681,"col_index":51,"row_index":23}},{"id":3646,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387946335],[9.944767117,55.38785704],[9.944924322,55.38785704],[9.944924322,55.387946335],[9.944767117,55.387946335]]]},"properties":{"id":3646,"top":7437525.5681,"id_0":3646,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437508.0681,"col_index":51,"row_index":24}},{"id":3647,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38785704],[9.944767117,55.387767744],[9.944924322,55.387767744],[9.944924322,55.38785704],[9.944767117,55.38785704]]]},"properties":{"id":3647,"top":7437508.0681,"id_0":3647,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437490.5681,"col_index":51,"row_index":25}},{"id":3648,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387767744],[9.944767117,55.387678448],[9.944924322,55.387678448],[9.944924322,55.387767744],[9.944767117,55.387767744]]]},"properties":{"id":3648,"top":7437490.5681,"id_0":3648,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437473.0681,"col_index":51,"row_index":26}},{"id":3649,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387678448],[9.944767117,55.387589153],[9.944924322,55.387589153],[9.944924322,55.387678448],[9.944767117,55.387678448]]]},"properties":{"id":3649,"top":7437473.0681,"id_0":3649,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437455.5681,"col_index":51,"row_index":27}},{"id":3650,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387589153],[9.944767117,55.387499856],[9.944924322,55.387499856],[9.944924322,55.387589153],[9.944767117,55.387589153]]]},"properties":{"id":3650,"top":7437455.5681,"id_0":3650,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437438.0681,"col_index":51,"row_index":28}},{"id":3651,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387499856],[9.944767117,55.38741056],[9.944924322,55.38741056],[9.944924322,55.387499856],[9.944767117,55.387499856]]]},"properties":{"id":3651,"top":7437438.0681,"id_0":3651,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437420.5681,"col_index":51,"row_index":29}},{"id":3652,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38741056],[9.944767117,55.387321264],[9.944924322,55.387321264],[9.944924322,55.38741056],[9.944767117,55.38741056]]]},"properties":{"id":3652,"top":7437420.5681,"id_0":3652,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437403.0681,"col_index":51,"row_index":30}},{"id":3653,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387321264],[9.944767117,55.387231967],[9.944924322,55.387231967],[9.944924322,55.387321264],[9.944767117,55.387321264]]]},"properties":{"id":3653,"top":7437403.0681,"id_0":3653,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437385.5681,"col_index":51,"row_index":31}},{"id":3654,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387231967],[9.944767117,55.38714267],[9.944924322,55.38714267],[9.944924322,55.387231967],[9.944767117,55.387231967]]]},"properties":{"id":3654,"top":7437385.5681,"id_0":3654,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437368.0681,"col_index":51,"row_index":32}},{"id":3655,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38714267],[9.944767117,55.387053373],[9.944924322,55.387053373],[9.944924322,55.38714267],[9.944767117,55.38714267]]]},"properties":{"id":3655,"top":7437368.0681,"id_0":3655,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437350.5681,"col_index":51,"row_index":33}},{"id":3656,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.387053373],[9.944767117,55.386964076],[9.944924322,55.386964076],[9.944924322,55.387053373],[9.944767117,55.387053373]]]},"properties":{"id":3656,"top":7437350.5681,"id_0":3656,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437333.0681,"col_index":51,"row_index":34}},{"id":3657,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386964076],[9.944767117,55.386874778],[9.944924322,55.386874778],[9.944924322,55.386964076],[9.944767117,55.386964076]]]},"properties":{"id":3657,"top":7437333.0681,"id_0":3657,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437315.5681,"col_index":51,"row_index":35}},{"id":3658,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386874778],[9.944767117,55.38678548],[9.944924322,55.38678548],[9.944924322,55.386874778],[9.944767117,55.386874778]]]},"properties":{"id":3658,"top":7437315.5681,"id_0":3658,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437298.0681,"col_index":51,"row_index":36}},{"id":3659,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38678548],[9.944767117,55.386696182],[9.944924322,55.386696182],[9.944924322,55.38678548],[9.944767117,55.38678548]]]},"properties":{"id":3659,"top":7437298.0681,"id_0":3659,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437280.5681,"col_index":51,"row_index":37}},{"id":3660,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386696182],[9.944767117,55.386606884],[9.944924322,55.386606884],[9.944924322,55.386696182],[9.944767117,55.386696182]]]},"properties":{"id":3660,"top":7437280.5681,"id_0":3660,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437263.0681,"col_index":51,"row_index":38}},{"id":3661,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386606884],[9.944767117,55.386517586],[9.944924322,55.386517586],[9.944924322,55.386606884],[9.944767117,55.386606884]]]},"properties":{"id":3661,"top":7437263.0681,"id_0":3661,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437245.5681,"col_index":51,"row_index":39}},{"id":3662,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386517586],[9.944767117,55.386428287],[9.944924322,55.386428287],[9.944924322,55.386517586],[9.944767117,55.386517586]]]},"properties":{"id":3662,"top":7437245.5681,"id_0":3662,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437228.0681,"col_index":51,"row_index":40}},{"id":3663,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386428287],[9.944767117,55.386338989],[9.944924322,55.386338989],[9.944924322,55.386428287],[9.944767117,55.386428287]]]},"properties":{"id":3663,"top":7437228.0681,"id_0":3663,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437210.5681,"col_index":51,"row_index":41}},{"id":3664,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386338989],[9.944767117,55.38624969],[9.944924322,55.38624969],[9.944924322,55.386338989],[9.944767117,55.386338989]]]},"properties":{"id":3664,"top":7437210.5681,"id_0":3664,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437193.0681,"col_index":51,"row_index":42}},{"id":3665,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38624969],[9.944767117,55.386160391],[9.944924322,55.386160391],[9.944924322,55.38624969],[9.944767117,55.38624969]]]},"properties":{"id":3665,"top":7437193.0681,"id_0":3665,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437175.5681,"col_index":51,"row_index":43}},{"id":3666,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386160391],[9.944767117,55.386071091],[9.944924322,55.386071091],[9.944924322,55.386160391],[9.944767117,55.386160391]]]},"properties":{"id":3666,"top":7437175.5681,"id_0":3666,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437158.0681,"col_index":51,"row_index":44}},{"id":3667,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.386071091],[9.944767117,55.385981792],[9.944924322,55.385981792],[9.944924322,55.386071091],[9.944767117,55.386071091]]]},"properties":{"id":3667,"top":7437158.0681,"id_0":3667,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437140.5681,"col_index":51,"row_index":45}},{"id":3668,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385981792],[9.944767117,55.385892492],[9.944924322,55.385892492],[9.944924322,55.385981792],[9.944767117,55.385981792]]]},"properties":{"id":3668,"top":7437140.5681,"id_0":3668,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437123.0681,"col_index":51,"row_index":46}},{"id":3669,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385892492],[9.944767117,55.385803192],[9.944924322,55.385803192],[9.944924322,55.385892492],[9.944767117,55.385892492]]]},"properties":{"id":3669,"top":7437123.0681,"id_0":3669,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437105.5681,"col_index":51,"row_index":47}},{"id":3670,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385803192],[9.944767117,55.385713892],[9.944924322,55.385713892],[9.944924322,55.385803192],[9.944767117,55.385803192]]]},"properties":{"id":3670,"top":7437105.5681,"id_0":3670,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437088.0681,"col_index":51,"row_index":48}},{"id":3671,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385713892],[9.944767117,55.385624592],[9.944924322,55.385624592],[9.944924322,55.385713892],[9.944767117,55.385713892]]]},"properties":{"id":3671,"top":7437088.0681,"id_0":3671,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437070.5681,"col_index":51,"row_index":49}},{"id":3672,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385624592],[9.944767117,55.385535291],[9.944924322,55.385535291],[9.944924322,55.385624592],[9.944767117,55.385624592]]]},"properties":{"id":3672,"top":7437070.5681,"id_0":3672,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437053.0681,"col_index":51,"row_index":50}},{"id":3673,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385535291],[9.944767117,55.38544599],[9.944924322,55.38544599],[9.944924322,55.385535291],[9.944767117,55.385535291]]]},"properties":{"id":3673,"top":7437053.0681,"id_0":3673,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437035.5681,"col_index":51,"row_index":51}},{"id":3674,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38544599],[9.944767117,55.385356689],[9.944924322,55.385356689],[9.944924322,55.38544599],[9.944767117,55.38544599]]]},"properties":{"id":3674,"top":7437035.5681,"id_0":3674,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437018.0681,"col_index":51,"row_index":52}},{"id":3675,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385356689],[9.944767117,55.385267388],[9.944924322,55.385267388],[9.944924322,55.385356689],[9.944767117,55.385356689]]]},"properties":{"id":3675,"top":7437018.0681,"id_0":3675,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7437000.5681,"col_index":51,"row_index":53}},{"id":3676,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385267388],[9.944767117,55.385178087],[9.944924322,55.385178087],[9.944924322,55.385267388],[9.944767117,55.385267388]]]},"properties":{"id":3676,"top":7437000.5681,"id_0":3676,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436983.0681,"col_index":51,"row_index":54}},{"id":3677,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385178087],[9.944767117,55.385088785],[9.944924322,55.385088785],[9.944924322,55.385178087],[9.944767117,55.385178087]]]},"properties":{"id":3677,"top":7436983.0681,"id_0":3677,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436965.5681,"col_index":51,"row_index":55}},{"id":3678,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.385088785],[9.944767117,55.384999484],[9.944924322,55.384999484],[9.944924322,55.385088785],[9.944767117,55.385088785]]]},"properties":{"id":3678,"top":7436965.5681,"id_0":3678,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436948.0681,"col_index":51,"row_index":56}},{"id":3679,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384999484],[9.944767117,55.384910182],[9.944924322,55.384910182],[9.944924322,55.384999484],[9.944767117,55.384999484]]]},"properties":{"id":3679,"top":7436948.0681,"id_0":3679,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436930.5681,"col_index":51,"row_index":57}},{"id":3680,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384910182],[9.944767117,55.38482088],[9.944924322,55.38482088],[9.944924322,55.384910182],[9.944767117,55.384910182]]]},"properties":{"id":3680,"top":7436930.5681,"id_0":3680,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436913.0681,"col_index":51,"row_index":58}},{"id":3681,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.38482088],[9.944767117,55.384731577],[9.944924322,55.384731577],[9.944924322,55.38482088],[9.944767117,55.38482088]]]},"properties":{"id":3681,"top":7436913.0681,"id_0":3681,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436895.5681,"col_index":51,"row_index":59}},{"id":3682,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384731577],[9.944767117,55.384642275],[9.944924322,55.384642275],[9.944924322,55.384731577],[9.944767117,55.384731577]]]},"properties":{"id":3682,"top":7436895.5681,"id_0":3682,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436878.0681,"col_index":51,"row_index":60}},{"id":3683,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384642275],[9.944767117,55.384552972],[9.944924322,55.384552972],[9.944924322,55.384642275],[9.944767117,55.384642275]]]},"properties":{"id":3683,"top":7436878.0681,"id_0":3683,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436860.5681,"col_index":51,"row_index":61}},{"id":3684,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384552972],[9.944767117,55.384463669],[9.944924322,55.384463669],[9.944924322,55.384552972],[9.944767117,55.384552972]]]},"properties":{"id":3684,"top":7436860.5681,"id_0":3684,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436843.0681,"col_index":51,"row_index":62}},{"id":3685,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384463669],[9.944767117,55.384374366],[9.944924322,55.384374366],[9.944924322,55.384463669],[9.944767117,55.384463669]]]},"properties":{"id":3685,"top":7436843.0681,"id_0":3685,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436825.5681,"col_index":51,"row_index":63}},{"id":3686,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384374366],[9.944767117,55.384285062],[9.944924322,55.384285062],[9.944924322,55.384374366],[9.944767117,55.384374366]]]},"properties":{"id":3686,"top":7436825.5681,"id_0":3686,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436808.0681,"col_index":51,"row_index":64}},{"id":3687,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384285062],[9.944767117,55.384195759],[9.944924322,55.384195759],[9.944924322,55.384285062],[9.944767117,55.384285062]]]},"properties":{"id":3687,"top":7436808.0681,"id_0":3687,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436790.5681,"col_index":51,"row_index":65}},{"id":3688,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384195759],[9.944767117,55.384106455],[9.944924322,55.384106455],[9.944924322,55.384195759],[9.944767117,55.384195759]]]},"properties":{"id":3688,"top":7436790.5681,"id_0":3688,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436773.0681,"col_index":51,"row_index":66}},{"id":3689,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384106455],[9.944767117,55.384017151],[9.944924322,55.384017151],[9.944924322,55.384106455],[9.944767117,55.384106455]]]},"properties":{"id":3689,"top":7436773.0681,"id_0":3689,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436755.5681,"col_index":51,"row_index":67}},{"id":3690,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.384017151],[9.944767117,55.383927847],[9.944924322,55.383927847],[9.944924322,55.384017151],[9.944767117,55.384017151]]]},"properties":{"id":3690,"top":7436755.5681,"id_0":3690,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436738.0681,"col_index":51,"row_index":68}},{"id":3691,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.383927847],[9.944767117,55.383838543],[9.944924322,55.383838543],[9.944924322,55.383927847],[9.944767117,55.383927847]]]},"properties":{"id":3691,"top":7436738.0681,"id_0":3691,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436720.5681,"col_index":51,"row_index":69}},{"id":3692,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944767117,55.383838543],[9.944767117,55.383749238],[9.944924322,55.383749238],[9.944924322,55.383838543],[9.944767117,55.383838543]]]},"properties":{"id":3692,"top":7436720.5681,"id_0":3692,"left":1107046.4115,"Label":null,"right":1107063.9115,"bottom":7436703.0681,"col_index":51,"row_index":70}},{"id":3693,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.390089362],[9.944924322,55.390000071],[9.945081527,55.390000071],[9.945081527,55.390089362],[9.944924322,55.390089362]]]},"properties":{"id":3693,"top":7437945.5681,"id_0":3693,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437928.0681,"col_index":52,"row_index":0}},{"id":3694,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.390000071],[9.944924322,55.38991078],[9.945081527,55.38991078],[9.945081527,55.390000071],[9.944924322,55.390000071]]]},"properties":{"id":3694,"top":7437928.0681,"id_0":3694,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437910.5681,"col_index":52,"row_index":1}},{"id":3695,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38991078],[9.944924322,55.38982149],[9.945081527,55.38982149],[9.945081527,55.38991078],[9.944924322,55.38991078]]]},"properties":{"id":3695,"top":7437910.5681,"id_0":3695,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437893.0681,"col_index":52,"row_index":2}},{"id":3696,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38982149],[9.944924322,55.389732199],[9.945081527,55.389732199],[9.945081527,55.38982149],[9.944924322,55.38982149]]]},"properties":{"id":3696,"top":7437893.0681,"id_0":3696,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437875.5681,"col_index":52,"row_index":3}},{"id":3697,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389732199],[9.944924322,55.389642907],[9.945081527,55.389642907],[9.945081527,55.389732199],[9.944924322,55.389732199]]]},"properties":{"id":3697,"top":7437875.5681,"id_0":3697,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437858.0681,"col_index":52,"row_index":4}},{"id":3698,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389642907],[9.944924322,55.389553616],[9.945081527,55.389553616],[9.945081527,55.389642907],[9.944924322,55.389642907]]]},"properties":{"id":3698,"top":7437858.0681,"id_0":3698,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437840.5681,"col_index":52,"row_index":5}},{"id":3699,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389553616],[9.944924322,55.389464324],[9.945081527,55.389464324],[9.945081527,55.389553616],[9.944924322,55.389553616]]]},"properties":{"id":3699,"top":7437840.5681,"id_0":3699,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437823.0681,"col_index":52,"row_index":6}},{"id":3700,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389464324],[9.944924322,55.389375032],[9.945081527,55.389375032],[9.945081527,55.389464324],[9.944924322,55.389464324]]]},"properties":{"id":3700,"top":7437823.0681,"id_0":3700,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437805.5681,"col_index":52,"row_index":7}},{"id":3701,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389375032],[9.944924322,55.38928574],[9.945081527,55.38928574],[9.945081527,55.389375032],[9.944924322,55.389375032]]]},"properties":{"id":3701,"top":7437805.5681,"id_0":3701,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437788.0681,"col_index":52,"row_index":8}},{"id":3702,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38928574],[9.944924322,55.389196448],[9.945081527,55.389196448],[9.945081527,55.38928574],[9.944924322,55.38928574]]]},"properties":{"id":3702,"top":7437788.0681,"id_0":3702,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437770.5681,"col_index":52,"row_index":9}},{"id":3703,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389196448],[9.944924322,55.389107155],[9.945081527,55.389107155],[9.945081527,55.389196448],[9.944924322,55.389196448]]]},"properties":{"id":3703,"top":7437770.5681,"id_0":3703,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437753.0681,"col_index":52,"row_index":10}},{"id":3704,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389107155],[9.944924322,55.389017863],[9.945081527,55.389017863],[9.945081527,55.389107155],[9.944924322,55.389107155]]]},"properties":{"id":3704,"top":7437753.0681,"id_0":3704,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437735.5681,"col_index":52,"row_index":11}},{"id":3705,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.389017863],[9.944924322,55.38892857],[9.945081527,55.38892857],[9.945081527,55.389017863],[9.944924322,55.389017863]]]},"properties":{"id":3705,"top":7437735.5681,"id_0":3705,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437718.0681,"col_index":52,"row_index":12}},{"id":3706,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38892857],[9.944924322,55.388839277],[9.945081527,55.388839277],[9.945081527,55.38892857],[9.944924322,55.38892857]]]},"properties":{"id":3706,"top":7437718.0681,"id_0":3706,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437700.5681,"col_index":52,"row_index":13}},{"id":3707,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388839277],[9.944924322,55.388749984],[9.945081527,55.388749984],[9.945081527,55.388839277],[9.944924322,55.388839277]]]},"properties":{"id":3707,"top":7437700.5681,"id_0":3707,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437683.0681,"col_index":52,"row_index":14}},{"id":3708,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388749984],[9.944924322,55.38866069],[9.945081527,55.38866069],[9.945081527,55.388749984],[9.944924322,55.388749984]]]},"properties":{"id":3708,"top":7437683.0681,"id_0":3708,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437665.5681,"col_index":52,"row_index":15}},{"id":3709,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38866069],[9.944924322,55.388571396],[9.945081527,55.388571396],[9.945081527,55.38866069],[9.944924322,55.38866069]]]},"properties":{"id":3709,"top":7437665.5681,"id_0":3709,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437648.0681,"col_index":52,"row_index":16}},{"id":3710,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388571396],[9.944924322,55.388482103],[9.945081527,55.388482103],[9.945081527,55.388571396],[9.944924322,55.388571396]]]},"properties":{"id":3710,"top":7437648.0681,"id_0":3710,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437630.5681,"col_index":52,"row_index":17}},{"id":3711,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388482103],[9.944924322,55.388392808],[9.945081527,55.388392808],[9.945081527,55.388482103],[9.944924322,55.388482103]]]},"properties":{"id":3711,"top":7437630.5681,"id_0":3711,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437613.0681,"col_index":52,"row_index":18}},{"id":3712,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388392808],[9.944924322,55.388303514],[9.945081527,55.388303514],[9.945081527,55.388392808],[9.944924322,55.388392808]]]},"properties":{"id":3712,"top":7437613.0681,"id_0":3712,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437595.5681,"col_index":52,"row_index":19}},{"id":3713,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388303514],[9.944924322,55.38821422],[9.945081527,55.38821422],[9.945081527,55.388303514],[9.944924322,55.388303514]]]},"properties":{"id":3713,"top":7437595.5681,"id_0":3713,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437578.0681,"col_index":52,"row_index":20}},{"id":3714,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38821422],[9.944924322,55.388124925],[9.945081527,55.388124925],[9.945081527,55.38821422],[9.944924322,55.38821422]]]},"properties":{"id":3714,"top":7437578.0681,"id_0":3714,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437560.5681,"col_index":52,"row_index":21}},{"id":3715,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.388124925],[9.944924322,55.38803563],[9.945081527,55.38803563],[9.945081527,55.388124925],[9.944924322,55.388124925]]]},"properties":{"id":3715,"top":7437560.5681,"id_0":3715,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437543.0681,"col_index":52,"row_index":22}},{"id":3716,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38803563],[9.944924322,55.387946335],[9.945081527,55.387946335],[9.945081527,55.38803563],[9.944924322,55.38803563]]]},"properties":{"id":3716,"top":7437543.0681,"id_0":3716,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437525.5681,"col_index":52,"row_index":23}},{"id":3717,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387946335],[9.944924322,55.38785704],[9.945081527,55.38785704],[9.945081527,55.387946335],[9.944924322,55.387946335]]]},"properties":{"id":3717,"top":7437525.5681,"id_0":3717,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437508.0681,"col_index":52,"row_index":24}},{"id":3718,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38785704],[9.944924322,55.387767744],[9.945081527,55.387767744],[9.945081527,55.38785704],[9.944924322,55.38785704]]]},"properties":{"id":3718,"top":7437508.0681,"id_0":3718,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437490.5681,"col_index":52,"row_index":25}},{"id":3719,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387767744],[9.944924322,55.387678448],[9.945081527,55.387678448],[9.945081527,55.387767744],[9.944924322,55.387767744]]]},"properties":{"id":3719,"top":7437490.5681,"id_0":3719,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437473.0681,"col_index":52,"row_index":26}},{"id":3720,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387678448],[9.944924322,55.387589153],[9.945081527,55.387589153],[9.945081527,55.387678448],[9.944924322,55.387678448]]]},"properties":{"id":3720,"top":7437473.0681,"id_0":3720,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437455.5681,"col_index":52,"row_index":27}},{"id":3721,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387589153],[9.944924322,55.387499856],[9.945081527,55.387499856],[9.945081527,55.387589153],[9.944924322,55.387589153]]]},"properties":{"id":3721,"top":7437455.5681,"id_0":3721,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437438.0681,"col_index":52,"row_index":28}},{"id":3722,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387499856],[9.944924322,55.38741056],[9.945081527,55.38741056],[9.945081527,55.387499856],[9.944924322,55.387499856]]]},"properties":{"id":3722,"top":7437438.0681,"id_0":3722,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437420.5681,"col_index":52,"row_index":29}},{"id":3723,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38741056],[9.944924322,55.387321264],[9.945081527,55.387321264],[9.945081527,55.38741056],[9.944924322,55.38741056]]]},"properties":{"id":3723,"top":7437420.5681,"id_0":3723,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437403.0681,"col_index":52,"row_index":30}},{"id":3724,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387321264],[9.944924322,55.387231967],[9.945081527,55.387231967],[9.945081527,55.387321264],[9.944924322,55.387321264]]]},"properties":{"id":3724,"top":7437403.0681,"id_0":3724,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437385.5681,"col_index":52,"row_index":31}},{"id":3725,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387231967],[9.944924322,55.38714267],[9.945081527,55.38714267],[9.945081527,55.387231967],[9.944924322,55.387231967]]]},"properties":{"id":3725,"top":7437385.5681,"id_0":3725,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437368.0681,"col_index":52,"row_index":32}},{"id":3726,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38714267],[9.944924322,55.387053373],[9.945081527,55.387053373],[9.945081527,55.38714267],[9.944924322,55.38714267]]]},"properties":{"id":3726,"top":7437368.0681,"id_0":3726,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437350.5681,"col_index":52,"row_index":33}},{"id":3727,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.387053373],[9.944924322,55.386964076],[9.945081527,55.386964076],[9.945081527,55.387053373],[9.944924322,55.387053373]]]},"properties":{"id":3727,"top":7437350.5681,"id_0":3727,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437333.0681,"col_index":52,"row_index":34}},{"id":3728,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386964076],[9.944924322,55.386874778],[9.945081527,55.386874778],[9.945081527,55.386964076],[9.944924322,55.386964076]]]},"properties":{"id":3728,"top":7437333.0681,"id_0":3728,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437315.5681,"col_index":52,"row_index":35}},{"id":3729,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386874778],[9.944924322,55.38678548],[9.945081527,55.38678548],[9.945081527,55.386874778],[9.944924322,55.386874778]]]},"properties":{"id":3729,"top":7437315.5681,"id_0":3729,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437298.0681,"col_index":52,"row_index":36}},{"id":3730,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38678548],[9.944924322,55.386696182],[9.945081527,55.386696182],[9.945081527,55.38678548],[9.944924322,55.38678548]]]},"properties":{"id":3730,"top":7437298.0681,"id_0":3730,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437280.5681,"col_index":52,"row_index":37}},{"id":3731,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386696182],[9.944924322,55.386606884],[9.945081527,55.386606884],[9.945081527,55.386696182],[9.944924322,55.386696182]]]},"properties":{"id":3731,"top":7437280.5681,"id_0":3731,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437263.0681,"col_index":52,"row_index":38}},{"id":3732,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386606884],[9.944924322,55.386517586],[9.945081527,55.386517586],[9.945081527,55.386606884],[9.944924322,55.386606884]]]},"properties":{"id":3732,"top":7437263.0681,"id_0":3732,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437245.5681,"col_index":52,"row_index":39}},{"id":3733,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386517586],[9.944924322,55.386428287],[9.945081527,55.386428287],[9.945081527,55.386517586],[9.944924322,55.386517586]]]},"properties":{"id":3733,"top":7437245.5681,"id_0":3733,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437228.0681,"col_index":52,"row_index":40}},{"id":3734,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386428287],[9.944924322,55.386338989],[9.945081527,55.386338989],[9.945081527,55.386428287],[9.944924322,55.386428287]]]},"properties":{"id":3734,"top":7437228.0681,"id_0":3734,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437210.5681,"col_index":52,"row_index":41}},{"id":3735,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386338989],[9.944924322,55.38624969],[9.945081527,55.38624969],[9.945081527,55.386338989],[9.944924322,55.386338989]]]},"properties":{"id":3735,"top":7437210.5681,"id_0":3735,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437193.0681,"col_index":52,"row_index":42}},{"id":3736,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38624969],[9.944924322,55.386160391],[9.945081527,55.386160391],[9.945081527,55.38624969],[9.944924322,55.38624969]]]},"properties":{"id":3736,"top":7437193.0681,"id_0":3736,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437175.5681,"col_index":52,"row_index":43}},{"id":3737,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386160391],[9.944924322,55.386071091],[9.945081527,55.386071091],[9.945081527,55.386160391],[9.944924322,55.386160391]]]},"properties":{"id":3737,"top":7437175.5681,"id_0":3737,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437158.0681,"col_index":52,"row_index":44}},{"id":3738,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.386071091],[9.944924322,55.385981792],[9.945081527,55.385981792],[9.945081527,55.386071091],[9.944924322,55.386071091]]]},"properties":{"id":3738,"top":7437158.0681,"id_0":3738,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437140.5681,"col_index":52,"row_index":45}},{"id":3739,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385981792],[9.944924322,55.385892492],[9.945081527,55.385892492],[9.945081527,55.385981792],[9.944924322,55.385981792]]]},"properties":{"id":3739,"top":7437140.5681,"id_0":3739,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437123.0681,"col_index":52,"row_index":46}},{"id":3740,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385892492],[9.944924322,55.385803192],[9.945081527,55.385803192],[9.945081527,55.385892492],[9.944924322,55.385892492]]]},"properties":{"id":3740,"top":7437123.0681,"id_0":3740,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437105.5681,"col_index":52,"row_index":47}},{"id":3741,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385803192],[9.944924322,55.385713892],[9.945081527,55.385713892],[9.945081527,55.385803192],[9.944924322,55.385803192]]]},"properties":{"id":3741,"top":7437105.5681,"id_0":3741,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437088.0681,"col_index":52,"row_index":48}},{"id":3742,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385713892],[9.944924322,55.385624592],[9.945081527,55.385624592],[9.945081527,55.385713892],[9.944924322,55.385713892]]]},"properties":{"id":3742,"top":7437088.0681,"id_0":3742,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437070.5681,"col_index":52,"row_index":49}},{"id":3743,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385624592],[9.944924322,55.385535291],[9.945081527,55.385535291],[9.945081527,55.385624592],[9.944924322,55.385624592]]]},"properties":{"id":3743,"top":7437070.5681,"id_0":3743,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437053.0681,"col_index":52,"row_index":50}},{"id":3744,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385535291],[9.944924322,55.38544599],[9.945081527,55.38544599],[9.945081527,55.385535291],[9.944924322,55.385535291]]]},"properties":{"id":3744,"top":7437053.0681,"id_0":3744,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437035.5681,"col_index":52,"row_index":51}},{"id":3745,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38544599],[9.944924322,55.385356689],[9.945081527,55.385356689],[9.945081527,55.38544599],[9.944924322,55.38544599]]]},"properties":{"id":3745,"top":7437035.5681,"id_0":3745,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437018.0681,"col_index":52,"row_index":52}},{"id":3746,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385356689],[9.944924322,55.385267388],[9.945081527,55.385267388],[9.945081527,55.385356689],[9.944924322,55.385356689]]]},"properties":{"id":3746,"top":7437018.0681,"id_0":3746,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7437000.5681,"col_index":52,"row_index":53}},{"id":3747,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385267388],[9.944924322,55.385178087],[9.945081527,55.385178087],[9.945081527,55.385267388],[9.944924322,55.385267388]]]},"properties":{"id":3747,"top":7437000.5681,"id_0":3747,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436983.0681,"col_index":52,"row_index":54}},{"id":3748,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385178087],[9.944924322,55.385088785],[9.945081527,55.385088785],[9.945081527,55.385178087],[9.944924322,55.385178087]]]},"properties":{"id":3748,"top":7436983.0681,"id_0":3748,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436965.5681,"col_index":52,"row_index":55}},{"id":3749,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.385088785],[9.944924322,55.384999484],[9.945081527,55.384999484],[9.945081527,55.385088785],[9.944924322,55.385088785]]]},"properties":{"id":3749,"top":7436965.5681,"id_0":3749,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436948.0681,"col_index":52,"row_index":56}},{"id":3750,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384999484],[9.944924322,55.384910182],[9.945081527,55.384910182],[9.945081527,55.384999484],[9.944924322,55.384999484]]]},"properties":{"id":3750,"top":7436948.0681,"id_0":3750,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436930.5681,"col_index":52,"row_index":57}},{"id":3751,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384910182],[9.944924322,55.38482088],[9.945081527,55.38482088],[9.945081527,55.384910182],[9.944924322,55.384910182]]]},"properties":{"id":3751,"top":7436930.5681,"id_0":3751,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436913.0681,"col_index":52,"row_index":58}},{"id":3752,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.38482088],[9.944924322,55.384731577],[9.945081527,55.384731577],[9.945081527,55.38482088],[9.944924322,55.38482088]]]},"properties":{"id":3752,"top":7436913.0681,"id_0":3752,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436895.5681,"col_index":52,"row_index":59}},{"id":3753,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384731577],[9.944924322,55.384642275],[9.945081527,55.384642275],[9.945081527,55.384731577],[9.944924322,55.384731577]]]},"properties":{"id":3753,"top":7436895.5681,"id_0":3753,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436878.0681,"col_index":52,"row_index":60}},{"id":3754,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384642275],[9.944924322,55.384552972],[9.945081527,55.384552972],[9.945081527,55.384642275],[9.944924322,55.384642275]]]},"properties":{"id":3754,"top":7436878.0681,"id_0":3754,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436860.5681,"col_index":52,"row_index":61}},{"id":3755,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384552972],[9.944924322,55.384463669],[9.945081527,55.384463669],[9.945081527,55.384552972],[9.944924322,55.384552972]]]},"properties":{"id":3755,"top":7436860.5681,"id_0":3755,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436843.0681,"col_index":52,"row_index":62}},{"id":3756,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384463669],[9.944924322,55.384374366],[9.945081527,55.384374366],[9.945081527,55.384463669],[9.944924322,55.384463669]]]},"properties":{"id":3756,"top":7436843.0681,"id_0":3756,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436825.5681,"col_index":52,"row_index":63}},{"id":3757,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384374366],[9.944924322,55.384285062],[9.945081527,55.384285062],[9.945081527,55.384374366],[9.944924322,55.384374366]]]},"properties":{"id":3757,"top":7436825.5681,"id_0":3757,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436808.0681,"col_index":52,"row_index":64}},{"id":3758,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384285062],[9.944924322,55.384195759],[9.945081527,55.384195759],[9.945081527,55.384285062],[9.944924322,55.384285062]]]},"properties":{"id":3758,"top":7436808.0681,"id_0":3758,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436790.5681,"col_index":52,"row_index":65}},{"id":3759,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384195759],[9.944924322,55.384106455],[9.945081527,55.384106455],[9.945081527,55.384195759],[9.944924322,55.384195759]]]},"properties":{"id":3759,"top":7436790.5681,"id_0":3759,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436773.0681,"col_index":52,"row_index":66}},{"id":3760,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384106455],[9.944924322,55.384017151],[9.945081527,55.384017151],[9.945081527,55.384106455],[9.944924322,55.384106455]]]},"properties":{"id":3760,"top":7436773.0681,"id_0":3760,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436755.5681,"col_index":52,"row_index":67}},{"id":3761,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.384017151],[9.944924322,55.383927847],[9.945081527,55.383927847],[9.945081527,55.384017151],[9.944924322,55.384017151]]]},"properties":{"id":3761,"top":7436755.5681,"id_0":3761,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436738.0681,"col_index":52,"row_index":68}},{"id":3762,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.383927847],[9.944924322,55.383838543],[9.945081527,55.383838543],[9.945081527,55.383927847],[9.944924322,55.383927847]]]},"properties":{"id":3762,"top":7436738.0681,"id_0":3762,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436720.5681,"col_index":52,"row_index":69}},{"id":3763,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.944924322,55.383838543],[9.944924322,55.383749238],[9.945081527,55.383749238],[9.945081527,55.383838543],[9.944924322,55.383838543]]]},"properties":{"id":3763,"top":7436720.5681,"id_0":3763,"left":1107063.9115,"Label":null,"right":1107081.4115,"bottom":7436703.0681,"col_index":52,"row_index":70}},{"id":3764,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.390089362],[9.945081527,55.390000071],[9.945238732,55.390000071],[9.945238732,55.390089362],[9.945081527,55.390089362]]]},"properties":{"id":3764,"top":7437945.5681,"id_0":3764,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437928.0681,"col_index":53,"row_index":0}},{"id":3765,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.390000071],[9.945081527,55.38991078],[9.945238732,55.38991078],[9.945238732,55.390000071],[9.945081527,55.390000071]]]},"properties":{"id":3765,"top":7437928.0681,"id_0":3765,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437910.5681,"col_index":53,"row_index":1}},{"id":3766,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38991078],[9.945081527,55.38982149],[9.945238732,55.38982149],[9.945238732,55.38991078],[9.945081527,55.38991078]]]},"properties":{"id":3766,"top":7437910.5681,"id_0":3766,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437893.0681,"col_index":53,"row_index":2}},{"id":3767,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38982149],[9.945081527,55.389732199],[9.945238732,55.389732199],[9.945238732,55.38982149],[9.945081527,55.38982149]]]},"properties":{"id":3767,"top":7437893.0681,"id_0":3767,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437875.5681,"col_index":53,"row_index":3}},{"id":3768,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389732199],[9.945081527,55.389642907],[9.945238732,55.389642907],[9.945238732,55.389732199],[9.945081527,55.389732199]]]},"properties":{"id":3768,"top":7437875.5681,"id_0":3768,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437858.0681,"col_index":53,"row_index":4}},{"id":3769,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389642907],[9.945081527,55.389553616],[9.945238732,55.389553616],[9.945238732,55.389642907],[9.945081527,55.389642907]]]},"properties":{"id":3769,"top":7437858.0681,"id_0":3769,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437840.5681,"col_index":53,"row_index":5}},{"id":3770,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389553616],[9.945081527,55.389464324],[9.945238732,55.389464324],[9.945238732,55.389553616],[9.945081527,55.389553616]]]},"properties":{"id":3770,"top":7437840.5681,"id_0":3770,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437823.0681,"col_index":53,"row_index":6}},{"id":3771,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389464324],[9.945081527,55.389375032],[9.945238732,55.389375032],[9.945238732,55.389464324],[9.945081527,55.389464324]]]},"properties":{"id":3771,"top":7437823.0681,"id_0":3771,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437805.5681,"col_index":53,"row_index":7}},{"id":3772,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389375032],[9.945081527,55.38928574],[9.945238732,55.38928574],[9.945238732,55.389375032],[9.945081527,55.389375032]]]},"properties":{"id":3772,"top":7437805.5681,"id_0":3772,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437788.0681,"col_index":53,"row_index":8}},{"id":3773,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38928574],[9.945081527,55.389196448],[9.945238732,55.389196448],[9.945238732,55.38928574],[9.945081527,55.38928574]]]},"properties":{"id":3773,"top":7437788.0681,"id_0":3773,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437770.5681,"col_index":53,"row_index":9}},{"id":3774,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389196448],[9.945081527,55.389107155],[9.945238732,55.389107155],[9.945238732,55.389196448],[9.945081527,55.389196448]]]},"properties":{"id":3774,"top":7437770.5681,"id_0":3774,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437753.0681,"col_index":53,"row_index":10}},{"id":3775,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389107155],[9.945081527,55.389017863],[9.945238732,55.389017863],[9.945238732,55.389107155],[9.945081527,55.389107155]]]},"properties":{"id":3775,"top":7437753.0681,"id_0":3775,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437735.5681,"col_index":53,"row_index":11}},{"id":3776,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.389017863],[9.945081527,55.38892857],[9.945238732,55.38892857],[9.945238732,55.389017863],[9.945081527,55.389017863]]]},"properties":{"id":3776,"top":7437735.5681,"id_0":3776,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437718.0681,"col_index":53,"row_index":12}},{"id":3777,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38892857],[9.945081527,55.388839277],[9.945238732,55.388839277],[9.945238732,55.38892857],[9.945081527,55.38892857]]]},"properties":{"id":3777,"top":7437718.0681,"id_0":3777,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437700.5681,"col_index":53,"row_index":13}},{"id":3778,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388839277],[9.945081527,55.388749984],[9.945238732,55.388749984],[9.945238732,55.388839277],[9.945081527,55.388839277]]]},"properties":{"id":3778,"top":7437700.5681,"id_0":3778,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437683.0681,"col_index":53,"row_index":14}},{"id":3779,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388749984],[9.945081527,55.38866069],[9.945238732,55.38866069],[9.945238732,55.388749984],[9.945081527,55.388749984]]]},"properties":{"id":3779,"top":7437683.0681,"id_0":3779,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437665.5681,"col_index":53,"row_index":15}},{"id":3780,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38866069],[9.945081527,55.388571396],[9.945238732,55.388571396],[9.945238732,55.38866069],[9.945081527,55.38866069]]]},"properties":{"id":3780,"top":7437665.5681,"id_0":3780,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437648.0681,"col_index":53,"row_index":16}},{"id":3781,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388571396],[9.945081527,55.388482103],[9.945238732,55.388482103],[9.945238732,55.388571396],[9.945081527,55.388571396]]]},"properties":{"id":3781,"top":7437648.0681,"id_0":3781,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437630.5681,"col_index":53,"row_index":17}},{"id":3782,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388482103],[9.945081527,55.388392808],[9.945238732,55.388392808],[9.945238732,55.388482103],[9.945081527,55.388482103]]]},"properties":{"id":3782,"top":7437630.5681,"id_0":3782,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437613.0681,"col_index":53,"row_index":18}},{"id":3783,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388392808],[9.945081527,55.388303514],[9.945238732,55.388303514],[9.945238732,55.388392808],[9.945081527,55.388392808]]]},"properties":{"id":3783,"top":7437613.0681,"id_0":3783,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437595.5681,"col_index":53,"row_index":19}},{"id":3784,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388303514],[9.945081527,55.38821422],[9.945238732,55.38821422],[9.945238732,55.388303514],[9.945081527,55.388303514]]]},"properties":{"id":3784,"top":7437595.5681,"id_0":3784,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437578.0681,"col_index":53,"row_index":20}},{"id":3785,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38821422],[9.945081527,55.388124925],[9.945238732,55.388124925],[9.945238732,55.38821422],[9.945081527,55.38821422]]]},"properties":{"id":3785,"top":7437578.0681,"id_0":3785,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437560.5681,"col_index":53,"row_index":21}},{"id":3786,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.388124925],[9.945081527,55.38803563],[9.945238732,55.38803563],[9.945238732,55.388124925],[9.945081527,55.388124925]]]},"properties":{"id":3786,"top":7437560.5681,"id_0":3786,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437543.0681,"col_index":53,"row_index":22}},{"id":3787,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38803563],[9.945081527,55.387946335],[9.945238732,55.387946335],[9.945238732,55.38803563],[9.945081527,55.38803563]]]},"properties":{"id":3787,"top":7437543.0681,"id_0":3787,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437525.5681,"col_index":53,"row_index":23}},{"id":3788,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387946335],[9.945081527,55.38785704],[9.945238732,55.38785704],[9.945238732,55.387946335],[9.945081527,55.387946335]]]},"properties":{"id":3788,"top":7437525.5681,"id_0":3788,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437508.0681,"col_index":53,"row_index":24}},{"id":3789,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38785704],[9.945081527,55.387767744],[9.945238732,55.387767744],[9.945238732,55.38785704],[9.945081527,55.38785704]]]},"properties":{"id":3789,"top":7437508.0681,"id_0":3789,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437490.5681,"col_index":53,"row_index":25}},{"id":3790,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387767744],[9.945081527,55.387678448],[9.945238732,55.387678448],[9.945238732,55.387767744],[9.945081527,55.387767744]]]},"properties":{"id":3790,"top":7437490.5681,"id_0":3790,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437473.0681,"col_index":53,"row_index":26}},{"id":3791,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387678448],[9.945081527,55.387589153],[9.945238732,55.387589153],[9.945238732,55.387678448],[9.945081527,55.387678448]]]},"properties":{"id":3791,"top":7437473.0681,"id_0":3791,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437455.5681,"col_index":53,"row_index":27}},{"id":3792,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387589153],[9.945081527,55.387499856],[9.945238732,55.387499856],[9.945238732,55.387589153],[9.945081527,55.387589153]]]},"properties":{"id":3792,"top":7437455.5681,"id_0":3792,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437438.0681,"col_index":53,"row_index":28}},{"id":3793,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387499856],[9.945081527,55.38741056],[9.945238732,55.38741056],[9.945238732,55.387499856],[9.945081527,55.387499856]]]},"properties":{"id":3793,"top":7437438.0681,"id_0":3793,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437420.5681,"col_index":53,"row_index":29}},{"id":3794,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38741056],[9.945081527,55.387321264],[9.945238732,55.387321264],[9.945238732,55.38741056],[9.945081527,55.38741056]]]},"properties":{"id":3794,"top":7437420.5681,"id_0":3794,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437403.0681,"col_index":53,"row_index":30}},{"id":3795,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387321264],[9.945081527,55.387231967],[9.945238732,55.387231967],[9.945238732,55.387321264],[9.945081527,55.387321264]]]},"properties":{"id":3795,"top":7437403.0681,"id_0":3795,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437385.5681,"col_index":53,"row_index":31}},{"id":3796,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387231967],[9.945081527,55.38714267],[9.945238732,55.38714267],[9.945238732,55.387231967],[9.945081527,55.387231967]]]},"properties":{"id":3796,"top":7437385.5681,"id_0":3796,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437368.0681,"col_index":53,"row_index":32}},{"id":3797,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38714267],[9.945081527,55.387053373],[9.945238732,55.387053373],[9.945238732,55.38714267],[9.945081527,55.38714267]]]},"properties":{"id":3797,"top":7437368.0681,"id_0":3797,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437350.5681,"col_index":53,"row_index":33}},{"id":3798,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.387053373],[9.945081527,55.386964076],[9.945238732,55.386964076],[9.945238732,55.387053373],[9.945081527,55.387053373]]]},"properties":{"id":3798,"top":7437350.5681,"id_0":3798,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437333.0681,"col_index":53,"row_index":34}},{"id":3799,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386964076],[9.945081527,55.386874778],[9.945238732,55.386874778],[9.945238732,55.386964076],[9.945081527,55.386964076]]]},"properties":{"id":3799,"top":7437333.0681,"id_0":3799,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437315.5681,"col_index":53,"row_index":35}},{"id":3800,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386874778],[9.945081527,55.38678548],[9.945238732,55.38678548],[9.945238732,55.386874778],[9.945081527,55.386874778]]]},"properties":{"id":3800,"top":7437315.5681,"id_0":3800,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437298.0681,"col_index":53,"row_index":36}},{"id":3801,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38678548],[9.945081527,55.386696182],[9.945238732,55.386696182],[9.945238732,55.38678548],[9.945081527,55.38678548]]]},"properties":{"id":3801,"top":7437298.0681,"id_0":3801,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437280.5681,"col_index":53,"row_index":37}},{"id":3802,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386696182],[9.945081527,55.386606884],[9.945238732,55.386606884],[9.945238732,55.386696182],[9.945081527,55.386696182]]]},"properties":{"id":3802,"top":7437280.5681,"id_0":3802,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437263.0681,"col_index":53,"row_index":38}},{"id":3803,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386606884],[9.945081527,55.386517586],[9.945238732,55.386517586],[9.945238732,55.386606884],[9.945081527,55.386606884]]]},"properties":{"id":3803,"top":7437263.0681,"id_0":3803,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437245.5681,"col_index":53,"row_index":39}},{"id":3804,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386517586],[9.945081527,55.386428287],[9.945238732,55.386428287],[9.945238732,55.386517586],[9.945081527,55.386517586]]]},"properties":{"id":3804,"top":7437245.5681,"id_0":3804,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437228.0681,"col_index":53,"row_index":40}},{"id":3805,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386428287],[9.945081527,55.386338989],[9.945238732,55.386338989],[9.945238732,55.386428287],[9.945081527,55.386428287]]]},"properties":{"id":3805,"top":7437228.0681,"id_0":3805,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437210.5681,"col_index":53,"row_index":41}},{"id":3806,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386338989],[9.945081527,55.38624969],[9.945238732,55.38624969],[9.945238732,55.386338989],[9.945081527,55.386338989]]]},"properties":{"id":3806,"top":7437210.5681,"id_0":3806,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437193.0681,"col_index":53,"row_index":42}},{"id":3807,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38624969],[9.945081527,55.386160391],[9.945238732,55.386160391],[9.945238732,55.38624969],[9.945081527,55.38624969]]]},"properties":{"id":3807,"top":7437193.0681,"id_0":3807,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437175.5681,"col_index":53,"row_index":43}},{"id":3808,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386160391],[9.945081527,55.386071091],[9.945238732,55.386071091],[9.945238732,55.386160391],[9.945081527,55.386160391]]]},"properties":{"id":3808,"top":7437175.5681,"id_0":3808,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437158.0681,"col_index":53,"row_index":44}},{"id":3809,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.386071091],[9.945081527,55.385981792],[9.945238732,55.385981792],[9.945238732,55.386071091],[9.945081527,55.386071091]]]},"properties":{"id":3809,"top":7437158.0681,"id_0":3809,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437140.5681,"col_index":53,"row_index":45}},{"id":3810,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385981792],[9.945081527,55.385892492],[9.945238732,55.385892492],[9.945238732,55.385981792],[9.945081527,55.385981792]]]},"properties":{"id":3810,"top":7437140.5681,"id_0":3810,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437123.0681,"col_index":53,"row_index":46}},{"id":3811,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385892492],[9.945081527,55.385803192],[9.945238732,55.385803192],[9.945238732,55.385892492],[9.945081527,55.385892492]]]},"properties":{"id":3811,"top":7437123.0681,"id_0":3811,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437105.5681,"col_index":53,"row_index":47}},{"id":3812,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385803192],[9.945081527,55.385713892],[9.945238732,55.385713892],[9.945238732,55.385803192],[9.945081527,55.385803192]]]},"properties":{"id":3812,"top":7437105.5681,"id_0":3812,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437088.0681,"col_index":53,"row_index":48}},{"id":3813,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385713892],[9.945081527,55.385624592],[9.945238732,55.385624592],[9.945238732,55.385713892],[9.945081527,55.385713892]]]},"properties":{"id":3813,"top":7437088.0681,"id_0":3813,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437070.5681,"col_index":53,"row_index":49}},{"id":3814,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385624592],[9.945081527,55.385535291],[9.945238732,55.385535291],[9.945238732,55.385624592],[9.945081527,55.385624592]]]},"properties":{"id":3814,"top":7437070.5681,"id_0":3814,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437053.0681,"col_index":53,"row_index":50}},{"id":3815,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385535291],[9.945081527,55.38544599],[9.945238732,55.38544599],[9.945238732,55.385535291],[9.945081527,55.385535291]]]},"properties":{"id":3815,"top":7437053.0681,"id_0":3815,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437035.5681,"col_index":53,"row_index":51}},{"id":3816,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38544599],[9.945081527,55.385356689],[9.945238732,55.385356689],[9.945238732,55.38544599],[9.945081527,55.38544599]]]},"properties":{"id":3816,"top":7437035.5681,"id_0":3816,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437018.0681,"col_index":53,"row_index":52}},{"id":3817,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385356689],[9.945081527,55.385267388],[9.945238732,55.385267388],[9.945238732,55.385356689],[9.945081527,55.385356689]]]},"properties":{"id":3817,"top":7437018.0681,"id_0":3817,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7437000.5681,"col_index":53,"row_index":53}},{"id":3818,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385267388],[9.945081527,55.385178087],[9.945238732,55.385178087],[9.945238732,55.385267388],[9.945081527,55.385267388]]]},"properties":{"id":3818,"top":7437000.5681,"id_0":3818,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436983.0681,"col_index":53,"row_index":54}},{"id":3819,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385178087],[9.945081527,55.385088785],[9.945238732,55.385088785],[9.945238732,55.385178087],[9.945081527,55.385178087]]]},"properties":{"id":3819,"top":7436983.0681,"id_0":3819,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436965.5681,"col_index":53,"row_index":55}},{"id":3820,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.385088785],[9.945081527,55.384999484],[9.945238732,55.384999484],[9.945238732,55.385088785],[9.945081527,55.385088785]]]},"properties":{"id":3820,"top":7436965.5681,"id_0":3820,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436948.0681,"col_index":53,"row_index":56}},{"id":3821,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384999484],[9.945081527,55.384910182],[9.945238732,55.384910182],[9.945238732,55.384999484],[9.945081527,55.384999484]]]},"properties":{"id":3821,"top":7436948.0681,"id_0":3821,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436930.5681,"col_index":53,"row_index":57}},{"id":3822,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384910182],[9.945081527,55.38482088],[9.945238732,55.38482088],[9.945238732,55.384910182],[9.945081527,55.384910182]]]},"properties":{"id":3822,"top":7436930.5681,"id_0":3822,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436913.0681,"col_index":53,"row_index":58}},{"id":3823,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.38482088],[9.945081527,55.384731577],[9.945238732,55.384731577],[9.945238732,55.38482088],[9.945081527,55.38482088]]]},"properties":{"id":3823,"top":7436913.0681,"id_0":3823,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436895.5681,"col_index":53,"row_index":59}},{"id":3824,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384731577],[9.945081527,55.384642275],[9.945238732,55.384642275],[9.945238732,55.384731577],[9.945081527,55.384731577]]]},"properties":{"id":3824,"top":7436895.5681,"id_0":3824,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436878.0681,"col_index":53,"row_index":60}},{"id":3825,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384642275],[9.945081527,55.384552972],[9.945238732,55.384552972],[9.945238732,55.384642275],[9.945081527,55.384642275]]]},"properties":{"id":3825,"top":7436878.0681,"id_0":3825,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436860.5681,"col_index":53,"row_index":61}},{"id":3826,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384552972],[9.945081527,55.384463669],[9.945238732,55.384463669],[9.945238732,55.384552972],[9.945081527,55.384552972]]]},"properties":{"id":3826,"top":7436860.5681,"id_0":3826,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436843.0681,"col_index":53,"row_index":62}},{"id":3827,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384463669],[9.945081527,55.384374366],[9.945238732,55.384374366],[9.945238732,55.384463669],[9.945081527,55.384463669]]]},"properties":{"id":3827,"top":7436843.0681,"id_0":3827,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436825.5681,"col_index":53,"row_index":63}},{"id":3828,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384374366],[9.945081527,55.384285062],[9.945238732,55.384285062],[9.945238732,55.384374366],[9.945081527,55.384374366]]]},"properties":{"id":3828,"top":7436825.5681,"id_0":3828,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436808.0681,"col_index":53,"row_index":64}},{"id":3829,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384285062],[9.945081527,55.384195759],[9.945238732,55.384195759],[9.945238732,55.384285062],[9.945081527,55.384285062]]]},"properties":{"id":3829,"top":7436808.0681,"id_0":3829,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436790.5681,"col_index":53,"row_index":65}},{"id":3830,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384195759],[9.945081527,55.384106455],[9.945238732,55.384106455],[9.945238732,55.384195759],[9.945081527,55.384195759]]]},"properties":{"id":3830,"top":7436790.5681,"id_0":3830,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436773.0681,"col_index":53,"row_index":66}},{"id":3831,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384106455],[9.945081527,55.384017151],[9.945238732,55.384017151],[9.945238732,55.384106455],[9.945081527,55.384106455]]]},"properties":{"id":3831,"top":7436773.0681,"id_0":3831,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436755.5681,"col_index":53,"row_index":67}},{"id":3832,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.384017151],[9.945081527,55.383927847],[9.945238732,55.383927847],[9.945238732,55.384017151],[9.945081527,55.384017151]]]},"properties":{"id":3832,"top":7436755.5681,"id_0":3832,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436738.0681,"col_index":53,"row_index":68}},{"id":3833,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.383927847],[9.945081527,55.383838543],[9.945238732,55.383838543],[9.945238732,55.383927847],[9.945081527,55.383927847]]]},"properties":{"id":3833,"top":7436738.0681,"id_0":3833,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436720.5681,"col_index":53,"row_index":69}},{"id":3834,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945081527,55.383838543],[9.945081527,55.383749238],[9.945238732,55.383749238],[9.945238732,55.383838543],[9.945081527,55.383838543]]]},"properties":{"id":3834,"top":7436720.5681,"id_0":3834,"left":1107081.4115,"Label":null,"right":1107098.9115,"bottom":7436703.0681,"col_index":53,"row_index":70}},{"id":3835,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.390089362],[9.945238732,55.390000071],[9.945395938,55.390000071],[9.945395938,55.390089362],[9.945238732,55.390089362]]]},"properties":{"id":3835,"top":7437945.5681,"id_0":3835,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437928.0681,"col_index":54,"row_index":0}},{"id":3836,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.390000071],[9.945238732,55.38991078],[9.945395938,55.38991078],[9.945395938,55.390000071],[9.945238732,55.390000071]]]},"properties":{"id":3836,"top":7437928.0681,"id_0":3836,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437910.5681,"col_index":54,"row_index":1}},{"id":3837,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38991078],[9.945238732,55.38982149],[9.945395938,55.38982149],[9.945395938,55.38991078],[9.945238732,55.38991078]]]},"properties":{"id":3837,"top":7437910.5681,"id_0":3837,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437893.0681,"col_index":54,"row_index":2}},{"id":3838,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38982149],[9.945238732,55.389732199],[9.945395938,55.389732199],[9.945395938,55.38982149],[9.945238732,55.38982149]]]},"properties":{"id":3838,"top":7437893.0681,"id_0":3838,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437875.5681,"col_index":54,"row_index":3}},{"id":3839,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389732199],[9.945238732,55.389642907],[9.945395938,55.389642907],[9.945395938,55.389732199],[9.945238732,55.389732199]]]},"properties":{"id":3839,"top":7437875.5681,"id_0":3839,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437858.0681,"col_index":54,"row_index":4}},{"id":3840,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389642907],[9.945238732,55.389553616],[9.945395938,55.389553616],[9.945395938,55.389642907],[9.945238732,55.389642907]]]},"properties":{"id":3840,"top":7437858.0681,"id_0":3840,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437840.5681,"col_index":54,"row_index":5}},{"id":3841,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389553616],[9.945238732,55.389464324],[9.945395938,55.389464324],[9.945395938,55.389553616],[9.945238732,55.389553616]]]},"properties":{"id":3841,"top":7437840.5681,"id_0":3841,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437823.0681,"col_index":54,"row_index":6}},{"id":3842,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389464324],[9.945238732,55.389375032],[9.945395938,55.389375032],[9.945395938,55.389464324],[9.945238732,55.389464324]]]},"properties":{"id":3842,"top":7437823.0681,"id_0":3842,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437805.5681,"col_index":54,"row_index":7}},{"id":3843,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389375032],[9.945238732,55.38928574],[9.945395938,55.38928574],[9.945395938,55.389375032],[9.945238732,55.389375032]]]},"properties":{"id":3843,"top":7437805.5681,"id_0":3843,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437788.0681,"col_index":54,"row_index":8}},{"id":3844,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38928574],[9.945238732,55.389196448],[9.945395938,55.389196448],[9.945395938,55.38928574],[9.945238732,55.38928574]]]},"properties":{"id":3844,"top":7437788.0681,"id_0":3844,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437770.5681,"col_index":54,"row_index":9}},{"id":3845,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389196448],[9.945238732,55.389107155],[9.945395938,55.389107155],[9.945395938,55.389196448],[9.945238732,55.389196448]]]},"properties":{"id":3845,"top":7437770.5681,"id_0":3845,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437753.0681,"col_index":54,"row_index":10}},{"id":3846,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389107155],[9.945238732,55.389017863],[9.945395938,55.389017863],[9.945395938,55.389107155],[9.945238732,55.389107155]]]},"properties":{"id":3846,"top":7437753.0681,"id_0":3846,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437735.5681,"col_index":54,"row_index":11}},{"id":3847,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.389017863],[9.945238732,55.38892857],[9.945395938,55.38892857],[9.945395938,55.389017863],[9.945238732,55.389017863]]]},"properties":{"id":3847,"top":7437735.5681,"id_0":3847,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437718.0681,"col_index":54,"row_index":12}},{"id":3848,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38892857],[9.945238732,55.388839277],[9.945395938,55.388839277],[9.945395938,55.38892857],[9.945238732,55.38892857]]]},"properties":{"id":3848,"top":7437718.0681,"id_0":3848,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437700.5681,"col_index":54,"row_index":13}},{"id":3849,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388839277],[9.945238732,55.388749984],[9.945395938,55.388749984],[9.945395938,55.388839277],[9.945238732,55.388839277]]]},"properties":{"id":3849,"top":7437700.5681,"id_0":3849,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437683.0681,"col_index":54,"row_index":14}},{"id":3850,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388749984],[9.945238732,55.38866069],[9.945395938,55.38866069],[9.945395938,55.388749984],[9.945238732,55.388749984]]]},"properties":{"id":3850,"top":7437683.0681,"id_0":3850,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437665.5681,"col_index":54,"row_index":15}},{"id":3851,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38866069],[9.945238732,55.388571396],[9.945395938,55.388571396],[9.945395938,55.38866069],[9.945238732,55.38866069]]]},"properties":{"id":3851,"top":7437665.5681,"id_0":3851,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437648.0681,"col_index":54,"row_index":16}},{"id":3852,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388571396],[9.945238732,55.388482103],[9.945395938,55.388482103],[9.945395938,55.388571396],[9.945238732,55.388571396]]]},"properties":{"id":3852,"top":7437648.0681,"id_0":3852,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437630.5681,"col_index":54,"row_index":17}},{"id":3853,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388482103],[9.945238732,55.388392808],[9.945395938,55.388392808],[9.945395938,55.388482103],[9.945238732,55.388482103]]]},"properties":{"id":3853,"top":7437630.5681,"id_0":3853,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437613.0681,"col_index":54,"row_index":18}},{"id":3854,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388392808],[9.945238732,55.388303514],[9.945395938,55.388303514],[9.945395938,55.388392808],[9.945238732,55.388392808]]]},"properties":{"id":3854,"top":7437613.0681,"id_0":3854,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437595.5681,"col_index":54,"row_index":19}},{"id":3855,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388303514],[9.945238732,55.38821422],[9.945395938,55.38821422],[9.945395938,55.388303514],[9.945238732,55.388303514]]]},"properties":{"id":3855,"top":7437595.5681,"id_0":3855,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437578.0681,"col_index":54,"row_index":20}},{"id":3856,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38821422],[9.945238732,55.388124925],[9.945395938,55.388124925],[9.945395938,55.38821422],[9.945238732,55.38821422]]]},"properties":{"id":3856,"top":7437578.0681,"id_0":3856,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437560.5681,"col_index":54,"row_index":21}},{"id":3857,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.388124925],[9.945238732,55.38803563],[9.945395938,55.38803563],[9.945395938,55.388124925],[9.945238732,55.388124925]]]},"properties":{"id":3857,"top":7437560.5681,"id_0":3857,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437543.0681,"col_index":54,"row_index":22}},{"id":3858,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38803563],[9.945238732,55.387946335],[9.945395938,55.387946335],[9.945395938,55.38803563],[9.945238732,55.38803563]]]},"properties":{"id":3858,"top":7437543.0681,"id_0":3858,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437525.5681,"col_index":54,"row_index":23}},{"id":3859,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387946335],[9.945238732,55.38785704],[9.945395938,55.38785704],[9.945395938,55.387946335],[9.945238732,55.387946335]]]},"properties":{"id":3859,"top":7437525.5681,"id_0":3859,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437508.0681,"col_index":54,"row_index":24}},{"id":3860,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38785704],[9.945238732,55.387767744],[9.945395938,55.387767744],[9.945395938,55.38785704],[9.945238732,55.38785704]]]},"properties":{"id":3860,"top":7437508.0681,"id_0":3860,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437490.5681,"col_index":54,"row_index":25}},{"id":3861,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387767744],[9.945238732,55.387678448],[9.945395938,55.387678448],[9.945395938,55.387767744],[9.945238732,55.387767744]]]},"properties":{"id":3861,"top":7437490.5681,"id_0":3861,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437473.0681,"col_index":54,"row_index":26}},{"id":3862,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387678448],[9.945238732,55.387589153],[9.945395938,55.387589153],[9.945395938,55.387678448],[9.945238732,55.387678448]]]},"properties":{"id":3862,"top":7437473.0681,"id_0":3862,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437455.5681,"col_index":54,"row_index":27}},{"id":3863,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387589153],[9.945238732,55.387499856],[9.945395938,55.387499856],[9.945395938,55.387589153],[9.945238732,55.387589153]]]},"properties":{"id":3863,"top":7437455.5681,"id_0":3863,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437438.0681,"col_index":54,"row_index":28}},{"id":3864,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387499856],[9.945238732,55.38741056],[9.945395938,55.38741056],[9.945395938,55.387499856],[9.945238732,55.387499856]]]},"properties":{"id":3864,"top":7437438.0681,"id_0":3864,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437420.5681,"col_index":54,"row_index":29}},{"id":3865,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38741056],[9.945238732,55.387321264],[9.945395938,55.387321264],[9.945395938,55.38741056],[9.945238732,55.38741056]]]},"properties":{"id":3865,"top":7437420.5681,"id_0":3865,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437403.0681,"col_index":54,"row_index":30}},{"id":3866,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387321264],[9.945238732,55.387231967],[9.945395938,55.387231967],[9.945395938,55.387321264],[9.945238732,55.387321264]]]},"properties":{"id":3866,"top":7437403.0681,"id_0":3866,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437385.5681,"col_index":54,"row_index":31}},{"id":3867,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387231967],[9.945238732,55.38714267],[9.945395938,55.38714267],[9.945395938,55.387231967],[9.945238732,55.387231967]]]},"properties":{"id":3867,"top":7437385.5681,"id_0":3867,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437368.0681,"col_index":54,"row_index":32}},{"id":3868,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38714267],[9.945238732,55.387053373],[9.945395938,55.387053373],[9.945395938,55.38714267],[9.945238732,55.38714267]]]},"properties":{"id":3868,"top":7437368.0681,"id_0":3868,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437350.5681,"col_index":54,"row_index":33}},{"id":3869,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.387053373],[9.945238732,55.386964076],[9.945395938,55.386964076],[9.945395938,55.387053373],[9.945238732,55.387053373]]]},"properties":{"id":3869,"top":7437350.5681,"id_0":3869,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437333.0681,"col_index":54,"row_index":34}},{"id":3870,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386964076],[9.945238732,55.386874778],[9.945395938,55.386874778],[9.945395938,55.386964076],[9.945238732,55.386964076]]]},"properties":{"id":3870,"top":7437333.0681,"id_0":3870,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437315.5681,"col_index":54,"row_index":35}},{"id":3871,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386874778],[9.945238732,55.38678548],[9.945395938,55.38678548],[9.945395938,55.386874778],[9.945238732,55.386874778]]]},"properties":{"id":3871,"top":7437315.5681,"id_0":3871,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437298.0681,"col_index":54,"row_index":36}},{"id":3872,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38678548],[9.945238732,55.386696182],[9.945395938,55.386696182],[9.945395938,55.38678548],[9.945238732,55.38678548]]]},"properties":{"id":3872,"top":7437298.0681,"id_0":3872,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437280.5681,"col_index":54,"row_index":37}},{"id":3873,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386696182],[9.945238732,55.386606884],[9.945395938,55.386606884],[9.945395938,55.386696182],[9.945238732,55.386696182]]]},"properties":{"id":3873,"top":7437280.5681,"id_0":3873,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437263.0681,"col_index":54,"row_index":38}},{"id":3874,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386606884],[9.945238732,55.386517586],[9.945395938,55.386517586],[9.945395938,55.386606884],[9.945238732,55.386606884]]]},"properties":{"id":3874,"top":7437263.0681,"id_0":3874,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437245.5681,"col_index":54,"row_index":39}},{"id":3875,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386517586],[9.945238732,55.386428287],[9.945395938,55.386428287],[9.945395938,55.386517586],[9.945238732,55.386517586]]]},"properties":{"id":3875,"top":7437245.5681,"id_0":3875,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437228.0681,"col_index":54,"row_index":40}},{"id":3876,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386428287],[9.945238732,55.386338989],[9.945395938,55.386338989],[9.945395938,55.386428287],[9.945238732,55.386428287]]]},"properties":{"id":3876,"top":7437228.0681,"id_0":3876,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437210.5681,"col_index":54,"row_index":41}},{"id":3877,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386338989],[9.945238732,55.38624969],[9.945395938,55.38624969],[9.945395938,55.386338989],[9.945238732,55.386338989]]]},"properties":{"id":3877,"top":7437210.5681,"id_0":3877,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437193.0681,"col_index":54,"row_index":42}},{"id":3878,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38624969],[9.945238732,55.386160391],[9.945395938,55.386160391],[9.945395938,55.38624969],[9.945238732,55.38624969]]]},"properties":{"id":3878,"top":7437193.0681,"id_0":3878,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437175.5681,"col_index":54,"row_index":43}},{"id":3879,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386160391],[9.945238732,55.386071091],[9.945395938,55.386071091],[9.945395938,55.386160391],[9.945238732,55.386160391]]]},"properties":{"id":3879,"top":7437175.5681,"id_0":3879,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437158.0681,"col_index":54,"row_index":44}},{"id":3880,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.386071091],[9.945238732,55.385981792],[9.945395938,55.385981792],[9.945395938,55.386071091],[9.945238732,55.386071091]]]},"properties":{"id":3880,"top":7437158.0681,"id_0":3880,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437140.5681,"col_index":54,"row_index":45}},{"id":3881,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385981792],[9.945238732,55.385892492],[9.945395938,55.385892492],[9.945395938,55.385981792],[9.945238732,55.385981792]]]},"properties":{"id":3881,"top":7437140.5681,"id_0":3881,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437123.0681,"col_index":54,"row_index":46}},{"id":3882,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385892492],[9.945238732,55.385803192],[9.945395938,55.385803192],[9.945395938,55.385892492],[9.945238732,55.385892492]]]},"properties":{"id":3882,"top":7437123.0681,"id_0":3882,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437105.5681,"col_index":54,"row_index":47}},{"id":3883,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385803192],[9.945238732,55.385713892],[9.945395938,55.385713892],[9.945395938,55.385803192],[9.945238732,55.385803192]]]},"properties":{"id":3883,"top":7437105.5681,"id_0":3883,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437088.0681,"col_index":54,"row_index":48}},{"id":3884,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385713892],[9.945238732,55.385624592],[9.945395938,55.385624592],[9.945395938,55.385713892],[9.945238732,55.385713892]]]},"properties":{"id":3884,"top":7437088.0681,"id_0":3884,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437070.5681,"col_index":54,"row_index":49}},{"id":3885,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385624592],[9.945238732,55.385535291],[9.945395938,55.385535291],[9.945395938,55.385624592],[9.945238732,55.385624592]]]},"properties":{"id":3885,"top":7437070.5681,"id_0":3885,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437053.0681,"col_index":54,"row_index":50}},{"id":3886,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385535291],[9.945238732,55.38544599],[9.945395938,55.38544599],[9.945395938,55.385535291],[9.945238732,55.385535291]]]},"properties":{"id":3886,"top":7437053.0681,"id_0":3886,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437035.5681,"col_index":54,"row_index":51}},{"id":3887,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38544599],[9.945238732,55.385356689],[9.945395938,55.385356689],[9.945395938,55.38544599],[9.945238732,55.38544599]]]},"properties":{"id":3887,"top":7437035.5681,"id_0":3887,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437018.0681,"col_index":54,"row_index":52}},{"id":3888,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385356689],[9.945238732,55.385267388],[9.945395938,55.385267388],[9.945395938,55.385356689],[9.945238732,55.385356689]]]},"properties":{"id":3888,"top":7437018.0681,"id_0":3888,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7437000.5681,"col_index":54,"row_index":53}},{"id":3889,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385267388],[9.945238732,55.385178087],[9.945395938,55.385178087],[9.945395938,55.385267388],[9.945238732,55.385267388]]]},"properties":{"id":3889,"top":7437000.5681,"id_0":3889,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436983.0681,"col_index":54,"row_index":54}},{"id":3890,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385178087],[9.945238732,55.385088785],[9.945395938,55.385088785],[9.945395938,55.385178087],[9.945238732,55.385178087]]]},"properties":{"id":3890,"top":7436983.0681,"id_0":3890,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436965.5681,"col_index":54,"row_index":55}},{"id":3891,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.385088785],[9.945238732,55.384999484],[9.945395938,55.384999484],[9.945395938,55.385088785],[9.945238732,55.385088785]]]},"properties":{"id":3891,"top":7436965.5681,"id_0":3891,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436948.0681,"col_index":54,"row_index":56}},{"id":3892,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384999484],[9.945238732,55.384910182],[9.945395938,55.384910182],[9.945395938,55.384999484],[9.945238732,55.384999484]]]},"properties":{"id":3892,"top":7436948.0681,"id_0":3892,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436930.5681,"col_index":54,"row_index":57}},{"id":3893,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384910182],[9.945238732,55.38482088],[9.945395938,55.38482088],[9.945395938,55.384910182],[9.945238732,55.384910182]]]},"properties":{"id":3893,"top":7436930.5681,"id_0":3893,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436913.0681,"col_index":54,"row_index":58}},{"id":3894,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.38482088],[9.945238732,55.384731577],[9.945395938,55.384731577],[9.945395938,55.38482088],[9.945238732,55.38482088]]]},"properties":{"id":3894,"top":7436913.0681,"id_0":3894,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436895.5681,"col_index":54,"row_index":59}},{"id":3895,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384731577],[9.945238732,55.384642275],[9.945395938,55.384642275],[9.945395938,55.384731577],[9.945238732,55.384731577]]]},"properties":{"id":3895,"top":7436895.5681,"id_0":3895,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436878.0681,"col_index":54,"row_index":60}},{"id":3896,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384642275],[9.945238732,55.384552972],[9.945395938,55.384552972],[9.945395938,55.384642275],[9.945238732,55.384642275]]]},"properties":{"id":3896,"top":7436878.0681,"id_0":3896,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436860.5681,"col_index":54,"row_index":61}},{"id":3897,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384552972],[9.945238732,55.384463669],[9.945395938,55.384463669],[9.945395938,55.384552972],[9.945238732,55.384552972]]]},"properties":{"id":3897,"top":7436860.5681,"id_0":3897,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436843.0681,"col_index":54,"row_index":62}},{"id":3898,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384463669],[9.945238732,55.384374366],[9.945395938,55.384374366],[9.945395938,55.384463669],[9.945238732,55.384463669]]]},"properties":{"id":3898,"top":7436843.0681,"id_0":3898,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436825.5681,"col_index":54,"row_index":63}},{"id":3899,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384374366],[9.945238732,55.384285062],[9.945395938,55.384285062],[9.945395938,55.384374366],[9.945238732,55.384374366]]]},"properties":{"id":3899,"top":7436825.5681,"id_0":3899,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436808.0681,"col_index":54,"row_index":64}},{"id":3900,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384285062],[9.945238732,55.384195759],[9.945395938,55.384195759],[9.945395938,55.384285062],[9.945238732,55.384285062]]]},"properties":{"id":3900,"top":7436808.0681,"id_0":3900,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436790.5681,"col_index":54,"row_index":65}},{"id":3901,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384195759],[9.945238732,55.384106455],[9.945395938,55.384106455],[9.945395938,55.384195759],[9.945238732,55.384195759]]]},"properties":{"id":3901,"top":7436790.5681,"id_0":3901,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436773.0681,"col_index":54,"row_index":66}},{"id":3902,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384106455],[9.945238732,55.384017151],[9.945395938,55.384017151],[9.945395938,55.384106455],[9.945238732,55.384106455]]]},"properties":{"id":3902,"top":7436773.0681,"id_0":3902,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436755.5681,"col_index":54,"row_index":67}},{"id":3903,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.384017151],[9.945238732,55.383927847],[9.945395938,55.383927847],[9.945395938,55.384017151],[9.945238732,55.384017151]]]},"properties":{"id":3903,"top":7436755.5681,"id_0":3903,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436738.0681,"col_index":54,"row_index":68}},{"id":3904,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.383927847],[9.945238732,55.383838543],[9.945395938,55.383838543],[9.945395938,55.383927847],[9.945238732,55.383927847]]]},"properties":{"id":3904,"top":7436738.0681,"id_0":3904,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436720.5681,"col_index":54,"row_index":69}},{"id":3905,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945238732,55.383838543],[9.945238732,55.383749238],[9.945395938,55.383749238],[9.945395938,55.383838543],[9.945238732,55.383838543]]]},"properties":{"id":3905,"top":7436720.5681,"id_0":3905,"left":1107098.9115,"Label":null,"right":1107116.4115,"bottom":7436703.0681,"col_index":54,"row_index":70}},{"id":3906,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.390089362],[9.945395938,55.390000071],[9.945553143,55.390000071],[9.945553143,55.390089362],[9.945395938,55.390089362]]]},"properties":{"id":3906,"top":7437945.5681,"id_0":3906,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437928.0681,"col_index":55,"row_index":0}},{"id":3907,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.390000071],[9.945395938,55.38991078],[9.945553143,55.38991078],[9.945553143,55.390000071],[9.945395938,55.390000071]]]},"properties":{"id":3907,"top":7437928.0681,"id_0":3907,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437910.5681,"col_index":55,"row_index":1}},{"id":3908,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38991078],[9.945395938,55.38982149],[9.945553143,55.38982149],[9.945553143,55.38991078],[9.945395938,55.38991078]]]},"properties":{"id":3908,"top":7437910.5681,"id_0":3908,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437893.0681,"col_index":55,"row_index":2}},{"id":3909,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38982149],[9.945395938,55.389732199],[9.945553143,55.389732199],[9.945553143,55.38982149],[9.945395938,55.38982149]]]},"properties":{"id":3909,"top":7437893.0681,"id_0":3909,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437875.5681,"col_index":55,"row_index":3}},{"id":3910,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389732199],[9.945395938,55.389642907],[9.945553143,55.389642907],[9.945553143,55.389732199],[9.945395938,55.389732199]]]},"properties":{"id":3910,"top":7437875.5681,"id_0":3910,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437858.0681,"col_index":55,"row_index":4}},{"id":3911,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389642907],[9.945395938,55.389553616],[9.945553143,55.389553616],[9.945553143,55.389642907],[9.945395938,55.389642907]]]},"properties":{"id":3911,"top":7437858.0681,"id_0":3911,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437840.5681,"col_index":55,"row_index":5}},{"id":3912,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389553616],[9.945395938,55.389464324],[9.945553143,55.389464324],[9.945553143,55.389553616],[9.945395938,55.389553616]]]},"properties":{"id":3912,"top":7437840.5681,"id_0":3912,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437823.0681,"col_index":55,"row_index":6}},{"id":3913,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389464324],[9.945395938,55.389375032],[9.945553143,55.389375032],[9.945553143,55.389464324],[9.945395938,55.389464324]]]},"properties":{"id":3913,"top":7437823.0681,"id_0":3913,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437805.5681,"col_index":55,"row_index":7}},{"id":3914,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389375032],[9.945395938,55.38928574],[9.945553143,55.38928574],[9.945553143,55.389375032],[9.945395938,55.389375032]]]},"properties":{"id":3914,"top":7437805.5681,"id_0":3914,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437788.0681,"col_index":55,"row_index":8}},{"id":3915,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38928574],[9.945395938,55.389196448],[9.945553143,55.389196448],[9.945553143,55.38928574],[9.945395938,55.38928574]]]},"properties":{"id":3915,"top":7437788.0681,"id_0":3915,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437770.5681,"col_index":55,"row_index":9}},{"id":3916,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389196448],[9.945395938,55.389107155],[9.945553143,55.389107155],[9.945553143,55.389196448],[9.945395938,55.389196448]]]},"properties":{"id":3916,"top":7437770.5681,"id_0":3916,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437753.0681,"col_index":55,"row_index":10}},{"id":3917,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389107155],[9.945395938,55.389017863],[9.945553143,55.389017863],[9.945553143,55.389107155],[9.945395938,55.389107155]]]},"properties":{"id":3917,"top":7437753.0681,"id_0":3917,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437735.5681,"col_index":55,"row_index":11}},{"id":3918,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.389017863],[9.945395938,55.38892857],[9.945553143,55.38892857],[9.945553143,55.389017863],[9.945395938,55.389017863]]]},"properties":{"id":3918,"top":7437735.5681,"id_0":3918,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437718.0681,"col_index":55,"row_index":12}},{"id":3919,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38892857],[9.945395938,55.388839277],[9.945553143,55.388839277],[9.945553143,55.38892857],[9.945395938,55.38892857]]]},"properties":{"id":3919,"top":7437718.0681,"id_0":3919,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437700.5681,"col_index":55,"row_index":13}},{"id":3920,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388839277],[9.945395938,55.388749984],[9.945553143,55.388749984],[9.945553143,55.388839277],[9.945395938,55.388839277]]]},"properties":{"id":3920,"top":7437700.5681,"id_0":3920,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437683.0681,"col_index":55,"row_index":14}},{"id":3921,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388749984],[9.945395938,55.38866069],[9.945553143,55.38866069],[9.945553143,55.388749984],[9.945395938,55.388749984]]]},"properties":{"id":3921,"top":7437683.0681,"id_0":3921,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437665.5681,"col_index":55,"row_index":15}},{"id":3922,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38866069],[9.945395938,55.388571396],[9.945553143,55.388571396],[9.945553143,55.38866069],[9.945395938,55.38866069]]]},"properties":{"id":3922,"top":7437665.5681,"id_0":3922,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437648.0681,"col_index":55,"row_index":16}},{"id":3923,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388571396],[9.945395938,55.388482103],[9.945553143,55.388482103],[9.945553143,55.388571396],[9.945395938,55.388571396]]]},"properties":{"id":3923,"top":7437648.0681,"id_0":3923,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437630.5681,"col_index":55,"row_index":17}},{"id":3924,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388482103],[9.945395938,55.388392808],[9.945553143,55.388392808],[9.945553143,55.388482103],[9.945395938,55.388482103]]]},"properties":{"id":3924,"top":7437630.5681,"id_0":3924,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437613.0681,"col_index":55,"row_index":18}},{"id":3925,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388392808],[9.945395938,55.388303514],[9.945553143,55.388303514],[9.945553143,55.388392808],[9.945395938,55.388392808]]]},"properties":{"id":3925,"top":7437613.0681,"id_0":3925,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437595.5681,"col_index":55,"row_index":19}},{"id":3926,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388303514],[9.945395938,55.38821422],[9.945553143,55.38821422],[9.945553143,55.388303514],[9.945395938,55.388303514]]]},"properties":{"id":3926,"top":7437595.5681,"id_0":3926,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437578.0681,"col_index":55,"row_index":20}},{"id":3927,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38821422],[9.945395938,55.388124925],[9.945553143,55.388124925],[9.945553143,55.38821422],[9.945395938,55.38821422]]]},"properties":{"id":3927,"top":7437578.0681,"id_0":3927,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437560.5681,"col_index":55,"row_index":21}},{"id":3928,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.388124925],[9.945395938,55.38803563],[9.945553143,55.38803563],[9.945553143,55.388124925],[9.945395938,55.388124925]]]},"properties":{"id":3928,"top":7437560.5681,"id_0":3928,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437543.0681,"col_index":55,"row_index":22}},{"id":3929,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38803563],[9.945395938,55.387946335],[9.945553143,55.387946335],[9.945553143,55.38803563],[9.945395938,55.38803563]]]},"properties":{"id":3929,"top":7437543.0681,"id_0":3929,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437525.5681,"col_index":55,"row_index":23}},{"id":3930,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387946335],[9.945395938,55.38785704],[9.945553143,55.38785704],[9.945553143,55.387946335],[9.945395938,55.387946335]]]},"properties":{"id":3930,"top":7437525.5681,"id_0":3930,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437508.0681,"col_index":55,"row_index":24}},{"id":3931,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38785704],[9.945395938,55.387767744],[9.945553143,55.387767744],[9.945553143,55.38785704],[9.945395938,55.38785704]]]},"properties":{"id":3931,"top":7437508.0681,"id_0":3931,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437490.5681,"col_index":55,"row_index":25}},{"id":3932,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387767744],[9.945395938,55.387678448],[9.945553143,55.387678448],[9.945553143,55.387767744],[9.945395938,55.387767744]]]},"properties":{"id":3932,"top":7437490.5681,"id_0":3932,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437473.0681,"col_index":55,"row_index":26}},{"id":3933,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387678448],[9.945395938,55.387589153],[9.945553143,55.387589153],[9.945553143,55.387678448],[9.945395938,55.387678448]]]},"properties":{"id":3933,"top":7437473.0681,"id_0":3933,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437455.5681,"col_index":55,"row_index":27}},{"id":3934,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387589153],[9.945395938,55.387499856],[9.945553143,55.387499856],[9.945553143,55.387589153],[9.945395938,55.387589153]]]},"properties":{"id":3934,"top":7437455.5681,"id_0":3934,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437438.0681,"col_index":55,"row_index":28}},{"id":3935,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387499856],[9.945395938,55.38741056],[9.945553143,55.38741056],[9.945553143,55.387499856],[9.945395938,55.387499856]]]},"properties":{"id":3935,"top":7437438.0681,"id_0":3935,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437420.5681,"col_index":55,"row_index":29}},{"id":3936,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38741056],[9.945395938,55.387321264],[9.945553143,55.387321264],[9.945553143,55.38741056],[9.945395938,55.38741056]]]},"properties":{"id":3936,"top":7437420.5681,"id_0":3936,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437403.0681,"col_index":55,"row_index":30}},{"id":3937,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387321264],[9.945395938,55.387231967],[9.945553143,55.387231967],[9.945553143,55.387321264],[9.945395938,55.387321264]]]},"properties":{"id":3937,"top":7437403.0681,"id_0":3937,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437385.5681,"col_index":55,"row_index":31}},{"id":3938,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387231967],[9.945395938,55.38714267],[9.945553143,55.38714267],[9.945553143,55.387231967],[9.945395938,55.387231967]]]},"properties":{"id":3938,"top":7437385.5681,"id_0":3938,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437368.0681,"col_index":55,"row_index":32}},{"id":3939,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38714267],[9.945395938,55.387053373],[9.945553143,55.387053373],[9.945553143,55.38714267],[9.945395938,55.38714267]]]},"properties":{"id":3939,"top":7437368.0681,"id_0":3939,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437350.5681,"col_index":55,"row_index":33}},{"id":3940,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.387053373],[9.945395938,55.386964076],[9.945553143,55.386964076],[9.945553143,55.387053373],[9.945395938,55.387053373]]]},"properties":{"id":3940,"top":7437350.5681,"id_0":3940,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437333.0681,"col_index":55,"row_index":34}},{"id":3941,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386964076],[9.945395938,55.386874778],[9.945553143,55.386874778],[9.945553143,55.386964076],[9.945395938,55.386964076]]]},"properties":{"id":3941,"top":7437333.0681,"id_0":3941,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437315.5681,"col_index":55,"row_index":35}},{"id":3942,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386874778],[9.945395938,55.38678548],[9.945553143,55.38678548],[9.945553143,55.386874778],[9.945395938,55.386874778]]]},"properties":{"id":3942,"top":7437315.5681,"id_0":3942,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437298.0681,"col_index":55,"row_index":36}},{"id":3943,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38678548],[9.945395938,55.386696182],[9.945553143,55.386696182],[9.945553143,55.38678548],[9.945395938,55.38678548]]]},"properties":{"id":3943,"top":7437298.0681,"id_0":3943,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437280.5681,"col_index":55,"row_index":37}},{"id":3944,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386696182],[9.945395938,55.386606884],[9.945553143,55.386606884],[9.945553143,55.386696182],[9.945395938,55.386696182]]]},"properties":{"id":3944,"top":7437280.5681,"id_0":3944,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437263.0681,"col_index":55,"row_index":38}},{"id":3945,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386606884],[9.945395938,55.386517586],[9.945553143,55.386517586],[9.945553143,55.386606884],[9.945395938,55.386606884]]]},"properties":{"id":3945,"top":7437263.0681,"id_0":3945,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437245.5681,"col_index":55,"row_index":39}},{"id":3946,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386517586],[9.945395938,55.386428287],[9.945553143,55.386428287],[9.945553143,55.386517586],[9.945395938,55.386517586]]]},"properties":{"id":3946,"top":7437245.5681,"id_0":3946,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437228.0681,"col_index":55,"row_index":40}},{"id":3947,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386428287],[9.945395938,55.386338989],[9.945553143,55.386338989],[9.945553143,55.386428287],[9.945395938,55.386428287]]]},"properties":{"id":3947,"top":7437228.0681,"id_0":3947,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437210.5681,"col_index":55,"row_index":41}},{"id":3948,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386338989],[9.945395938,55.38624969],[9.945553143,55.38624969],[9.945553143,55.386338989],[9.945395938,55.386338989]]]},"properties":{"id":3948,"top":7437210.5681,"id_0":3948,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437193.0681,"col_index":55,"row_index":42}},{"id":3949,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38624969],[9.945395938,55.386160391],[9.945553143,55.386160391],[9.945553143,55.38624969],[9.945395938,55.38624969]]]},"properties":{"id":3949,"top":7437193.0681,"id_0":3949,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437175.5681,"col_index":55,"row_index":43}},{"id":3950,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386160391],[9.945395938,55.386071091],[9.945553143,55.386071091],[9.945553143,55.386160391],[9.945395938,55.386160391]]]},"properties":{"id":3950,"top":7437175.5681,"id_0":3950,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437158.0681,"col_index":55,"row_index":44}},{"id":3951,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.386071091],[9.945395938,55.385981792],[9.945553143,55.385981792],[9.945553143,55.386071091],[9.945395938,55.386071091]]]},"properties":{"id":3951,"top":7437158.0681,"id_0":3951,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437140.5681,"col_index":55,"row_index":45}},{"id":3952,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385981792],[9.945395938,55.385892492],[9.945553143,55.385892492],[9.945553143,55.385981792],[9.945395938,55.385981792]]]},"properties":{"id":3952,"top":7437140.5681,"id_0":3952,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437123.0681,"col_index":55,"row_index":46}},{"id":3953,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385892492],[9.945395938,55.385803192],[9.945553143,55.385803192],[9.945553143,55.385892492],[9.945395938,55.385892492]]]},"properties":{"id":3953,"top":7437123.0681,"id_0":3953,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437105.5681,"col_index":55,"row_index":47}},{"id":3954,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385803192],[9.945395938,55.385713892],[9.945553143,55.385713892],[9.945553143,55.385803192],[9.945395938,55.385803192]]]},"properties":{"id":3954,"top":7437105.5681,"id_0":3954,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437088.0681,"col_index":55,"row_index":48}},{"id":3955,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385713892],[9.945395938,55.385624592],[9.945553143,55.385624592],[9.945553143,55.385713892],[9.945395938,55.385713892]]]},"properties":{"id":3955,"top":7437088.0681,"id_0":3955,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437070.5681,"col_index":55,"row_index":49}},{"id":3956,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385624592],[9.945395938,55.385535291],[9.945553143,55.385535291],[9.945553143,55.385624592],[9.945395938,55.385624592]]]},"properties":{"id":3956,"top":7437070.5681,"id_0":3956,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437053.0681,"col_index":55,"row_index":50}},{"id":3957,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385535291],[9.945395938,55.38544599],[9.945553143,55.38544599],[9.945553143,55.385535291],[9.945395938,55.385535291]]]},"properties":{"id":3957,"top":7437053.0681,"id_0":3957,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437035.5681,"col_index":55,"row_index":51}},{"id":3958,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38544599],[9.945395938,55.385356689],[9.945553143,55.385356689],[9.945553143,55.38544599],[9.945395938,55.38544599]]]},"properties":{"id":3958,"top":7437035.5681,"id_0":3958,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437018.0681,"col_index":55,"row_index":52}},{"id":3959,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385356689],[9.945395938,55.385267388],[9.945553143,55.385267388],[9.945553143,55.385356689],[9.945395938,55.385356689]]]},"properties":{"id":3959,"top":7437018.0681,"id_0":3959,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7437000.5681,"col_index":55,"row_index":53}},{"id":3960,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385267388],[9.945395938,55.385178087],[9.945553143,55.385178087],[9.945553143,55.385267388],[9.945395938,55.385267388]]]},"properties":{"id":3960,"top":7437000.5681,"id_0":3960,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436983.0681,"col_index":55,"row_index":54}},{"id":3961,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385178087],[9.945395938,55.385088785],[9.945553143,55.385088785],[9.945553143,55.385178087],[9.945395938,55.385178087]]]},"properties":{"id":3961,"top":7436983.0681,"id_0":3961,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436965.5681,"col_index":55,"row_index":55}},{"id":3962,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.385088785],[9.945395938,55.384999484],[9.945553143,55.384999484],[9.945553143,55.385088785],[9.945395938,55.385088785]]]},"properties":{"id":3962,"top":7436965.5681,"id_0":3962,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436948.0681,"col_index":55,"row_index":56}},{"id":3963,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384999484],[9.945395938,55.384910182],[9.945553143,55.384910182],[9.945553143,55.384999484],[9.945395938,55.384999484]]]},"properties":{"id":3963,"top":7436948.0681,"id_0":3963,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436930.5681,"col_index":55,"row_index":57}},{"id":3964,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384910182],[9.945395938,55.38482088],[9.945553143,55.38482088],[9.945553143,55.384910182],[9.945395938,55.384910182]]]},"properties":{"id":3964,"top":7436930.5681,"id_0":3964,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436913.0681,"col_index":55,"row_index":58}},{"id":3965,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.38482088],[9.945395938,55.384731577],[9.945553143,55.384731577],[9.945553143,55.38482088],[9.945395938,55.38482088]]]},"properties":{"id":3965,"top":7436913.0681,"id_0":3965,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436895.5681,"col_index":55,"row_index":59}},{"id":3966,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384731577],[9.945395938,55.384642275],[9.945553143,55.384642275],[9.945553143,55.384731577],[9.945395938,55.384731577]]]},"properties":{"id":3966,"top":7436895.5681,"id_0":3966,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436878.0681,"col_index":55,"row_index":60}},{"id":3967,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384642275],[9.945395938,55.384552972],[9.945553143,55.384552972],[9.945553143,55.384642275],[9.945395938,55.384642275]]]},"properties":{"id":3967,"top":7436878.0681,"id_0":3967,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436860.5681,"col_index":55,"row_index":61}},{"id":3968,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384552972],[9.945395938,55.384463669],[9.945553143,55.384463669],[9.945553143,55.384552972],[9.945395938,55.384552972]]]},"properties":{"id":3968,"top":7436860.5681,"id_0":3968,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436843.0681,"col_index":55,"row_index":62}},{"id":3969,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384463669],[9.945395938,55.384374366],[9.945553143,55.384374366],[9.945553143,55.384463669],[9.945395938,55.384463669]]]},"properties":{"id":3969,"top":7436843.0681,"id_0":3969,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436825.5681,"col_index":55,"row_index":63}},{"id":3970,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384374366],[9.945395938,55.384285062],[9.945553143,55.384285062],[9.945553143,55.384374366],[9.945395938,55.384374366]]]},"properties":{"id":3970,"top":7436825.5681,"id_0":3970,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436808.0681,"col_index":55,"row_index":64}},{"id":3971,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384285062],[9.945395938,55.384195759],[9.945553143,55.384195759],[9.945553143,55.384285062],[9.945395938,55.384285062]]]},"properties":{"id":3971,"top":7436808.0681,"id_0":3971,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436790.5681,"col_index":55,"row_index":65}},{"id":3972,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384195759],[9.945395938,55.384106455],[9.945553143,55.384106455],[9.945553143,55.384195759],[9.945395938,55.384195759]]]},"properties":{"id":3972,"top":7436790.5681,"id_0":3972,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436773.0681,"col_index":55,"row_index":66}},{"id":3973,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384106455],[9.945395938,55.384017151],[9.945553143,55.384017151],[9.945553143,55.384106455],[9.945395938,55.384106455]]]},"properties":{"id":3973,"top":7436773.0681,"id_0":3973,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436755.5681,"col_index":55,"row_index":67}},{"id":3974,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.384017151],[9.945395938,55.383927847],[9.945553143,55.383927847],[9.945553143,55.384017151],[9.945395938,55.384017151]]]},"properties":{"id":3974,"top":7436755.5681,"id_0":3974,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436738.0681,"col_index":55,"row_index":68}},{"id":3975,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.383927847],[9.945395938,55.383838543],[9.945553143,55.383838543],[9.945553143,55.383927847],[9.945395938,55.383927847]]]},"properties":{"id":3975,"top":7436738.0681,"id_0":3975,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436720.5681,"col_index":55,"row_index":69}},{"id":3976,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945395938,55.383838543],[9.945395938,55.383749238],[9.945553143,55.383749238],[9.945553143,55.383838543],[9.945395938,55.383838543]]]},"properties":{"id":3976,"top":7436720.5681,"id_0":3976,"left":1107116.4115,"Label":null,"right":1107133.9115,"bottom":7436703.0681,"col_index":55,"row_index":70}},{"id":3977,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.390089362],[9.945553143,55.390000071],[9.945710348,55.390000071],[9.945710348,55.390089362],[9.945553143,55.390089362]]]},"properties":{"id":3977,"top":7437945.5681,"id_0":3977,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437928.0681,"col_index":56,"row_index":0}},{"id":3978,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.390000071],[9.945553143,55.38991078],[9.945710348,55.38991078],[9.945710348,55.390000071],[9.945553143,55.390000071]]]},"properties":{"id":3978,"top":7437928.0681,"id_0":3978,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437910.5681,"col_index":56,"row_index":1}},{"id":3979,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38991078],[9.945553143,55.38982149],[9.945710348,55.38982149],[9.945710348,55.38991078],[9.945553143,55.38991078]]]},"properties":{"id":3979,"top":7437910.5681,"id_0":3979,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437893.0681,"col_index":56,"row_index":2}},{"id":3980,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38982149],[9.945553143,55.389732199],[9.945710348,55.389732199],[9.945710348,55.38982149],[9.945553143,55.38982149]]]},"properties":{"id":3980,"top":7437893.0681,"id_0":3980,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437875.5681,"col_index":56,"row_index":3}},{"id":3981,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389732199],[9.945553143,55.389642907],[9.945710348,55.389642907],[9.945710348,55.389732199],[9.945553143,55.389732199]]]},"properties":{"id":3981,"top":7437875.5681,"id_0":3981,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437858.0681,"col_index":56,"row_index":4}},{"id":3982,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389642907],[9.945553143,55.389553616],[9.945710348,55.389553616],[9.945710348,55.389642907],[9.945553143,55.389642907]]]},"properties":{"id":3982,"top":7437858.0681,"id_0":3982,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437840.5681,"col_index":56,"row_index":5}},{"id":3983,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389553616],[9.945553143,55.389464324],[9.945710348,55.389464324],[9.945710348,55.389553616],[9.945553143,55.389553616]]]},"properties":{"id":3983,"top":7437840.5681,"id_0":3983,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437823.0681,"col_index":56,"row_index":6}},{"id":3984,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389464324],[9.945553143,55.389375032],[9.945710348,55.389375032],[9.945710348,55.389464324],[9.945553143,55.389464324]]]},"properties":{"id":3984,"top":7437823.0681,"id_0":3984,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437805.5681,"col_index":56,"row_index":7}},{"id":3985,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389375032],[9.945553143,55.38928574],[9.945710348,55.38928574],[9.945710348,55.389375032],[9.945553143,55.389375032]]]},"properties":{"id":3985,"top":7437805.5681,"id_0":3985,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437788.0681,"col_index":56,"row_index":8}},{"id":3986,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38928574],[9.945553143,55.389196448],[9.945710348,55.389196448],[9.945710348,55.38928574],[9.945553143,55.38928574]]]},"properties":{"id":3986,"top":7437788.0681,"id_0":3986,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437770.5681,"col_index":56,"row_index":9}},{"id":3987,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389196448],[9.945553143,55.389107155],[9.945710348,55.389107155],[9.945710348,55.389196448],[9.945553143,55.389196448]]]},"properties":{"id":3987,"top":7437770.5681,"id_0":3987,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437753.0681,"col_index":56,"row_index":10}},{"id":3988,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389107155],[9.945553143,55.389017863],[9.945710348,55.389017863],[9.945710348,55.389107155],[9.945553143,55.389107155]]]},"properties":{"id":3988,"top":7437753.0681,"id_0":3988,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437735.5681,"col_index":56,"row_index":11}},{"id":3989,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.389017863],[9.945553143,55.38892857],[9.945710348,55.38892857],[9.945710348,55.389017863],[9.945553143,55.389017863]]]},"properties":{"id":3989,"top":7437735.5681,"id_0":3989,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437718.0681,"col_index":56,"row_index":12}},{"id":3990,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38892857],[9.945553143,55.388839277],[9.945710348,55.388839277],[9.945710348,55.38892857],[9.945553143,55.38892857]]]},"properties":{"id":3990,"top":7437718.0681,"id_0":3990,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437700.5681,"col_index":56,"row_index":13}},{"id":3991,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388839277],[9.945553143,55.388749984],[9.945710348,55.388749984],[9.945710348,55.388839277],[9.945553143,55.388839277]]]},"properties":{"id":3991,"top":7437700.5681,"id_0":3991,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437683.0681,"col_index":56,"row_index":14}},{"id":3992,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388749984],[9.945553143,55.38866069],[9.945710348,55.38866069],[9.945710348,55.388749984],[9.945553143,55.388749984]]]},"properties":{"id":3992,"top":7437683.0681,"id_0":3992,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437665.5681,"col_index":56,"row_index":15}},{"id":3993,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38866069],[9.945553143,55.388571396],[9.945710348,55.388571396],[9.945710348,55.38866069],[9.945553143,55.38866069]]]},"properties":{"id":3993,"top":7437665.5681,"id_0":3993,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437648.0681,"col_index":56,"row_index":16}},{"id":3994,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388571396],[9.945553143,55.388482103],[9.945710348,55.388482103],[9.945710348,55.388571396],[9.945553143,55.388571396]]]},"properties":{"id":3994,"top":7437648.0681,"id_0":3994,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437630.5681,"col_index":56,"row_index":17}},{"id":3995,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388482103],[9.945553143,55.388392808],[9.945710348,55.388392808],[9.945710348,55.388482103],[9.945553143,55.388482103]]]},"properties":{"id":3995,"top":7437630.5681,"id_0":3995,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437613.0681,"col_index":56,"row_index":18}},{"id":3996,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388392808],[9.945553143,55.388303514],[9.945710348,55.388303514],[9.945710348,55.388392808],[9.945553143,55.388392808]]]},"properties":{"id":3996,"top":7437613.0681,"id_0":3996,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437595.5681,"col_index":56,"row_index":19}},{"id":3997,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388303514],[9.945553143,55.38821422],[9.945710348,55.38821422],[9.945710348,55.388303514],[9.945553143,55.388303514]]]},"properties":{"id":3997,"top":7437595.5681,"id_0":3997,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437578.0681,"col_index":56,"row_index":20}},{"id":3998,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38821422],[9.945553143,55.388124925],[9.945710348,55.388124925],[9.945710348,55.38821422],[9.945553143,55.38821422]]]},"properties":{"id":3998,"top":7437578.0681,"id_0":3998,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437560.5681,"col_index":56,"row_index":21}},{"id":3999,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.388124925],[9.945553143,55.38803563],[9.945710348,55.38803563],[9.945710348,55.388124925],[9.945553143,55.388124925]]]},"properties":{"id":3999,"top":7437560.5681,"id_0":3999,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437543.0681,"col_index":56,"row_index":22}},{"id":4000,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38803563],[9.945553143,55.387946335],[9.945710348,55.387946335],[9.945710348,55.38803563],[9.945553143,55.38803563]]]},"properties":{"id":4000,"top":7437543.0681,"id_0":4000,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437525.5681,"col_index":56,"row_index":23}},{"id":4001,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387946335],[9.945553143,55.38785704],[9.945710348,55.38785704],[9.945710348,55.387946335],[9.945553143,55.387946335]]]},"properties":{"id":4001,"top":7437525.5681,"id_0":4001,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437508.0681,"col_index":56,"row_index":24}},{"id":4002,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38785704],[9.945553143,55.387767744],[9.945710348,55.387767744],[9.945710348,55.38785704],[9.945553143,55.38785704]]]},"properties":{"id":4002,"top":7437508.0681,"id_0":4002,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437490.5681,"col_index":56,"row_index":25}},{"id":4003,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387767744],[9.945553143,55.387678448],[9.945710348,55.387678448],[9.945710348,55.387767744],[9.945553143,55.387767744]]]},"properties":{"id":4003,"top":7437490.5681,"id_0":4003,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437473.0681,"col_index":56,"row_index":26}},{"id":4004,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387678448],[9.945553143,55.387589153],[9.945710348,55.387589153],[9.945710348,55.387678448],[9.945553143,55.387678448]]]},"properties":{"id":4004,"top":7437473.0681,"id_0":4004,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437455.5681,"col_index":56,"row_index":27}},{"id":4005,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387589153],[9.945553143,55.387499856],[9.945710348,55.387499856],[9.945710348,55.387589153],[9.945553143,55.387589153]]]},"properties":{"id":4005,"top":7437455.5681,"id_0":4005,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437438.0681,"col_index":56,"row_index":28}},{"id":4006,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387499856],[9.945553143,55.38741056],[9.945710348,55.38741056],[9.945710348,55.387499856],[9.945553143,55.387499856]]]},"properties":{"id":4006,"top":7437438.0681,"id_0":4006,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437420.5681,"col_index":56,"row_index":29}},{"id":4007,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38741056],[9.945553143,55.387321264],[9.945710348,55.387321264],[9.945710348,55.38741056],[9.945553143,55.38741056]]]},"properties":{"id":4007,"top":7437420.5681,"id_0":4007,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437403.0681,"col_index":56,"row_index":30}},{"id":4008,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387321264],[9.945553143,55.387231967],[9.945710348,55.387231967],[9.945710348,55.387321264],[9.945553143,55.387321264]]]},"properties":{"id":4008,"top":7437403.0681,"id_0":4008,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437385.5681,"col_index":56,"row_index":31}},{"id":4009,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387231967],[9.945553143,55.38714267],[9.945710348,55.38714267],[9.945710348,55.387231967],[9.945553143,55.387231967]]]},"properties":{"id":4009,"top":7437385.5681,"id_0":4009,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437368.0681,"col_index":56,"row_index":32}},{"id":4010,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38714267],[9.945553143,55.387053373],[9.945710348,55.387053373],[9.945710348,55.38714267],[9.945553143,55.38714267]]]},"properties":{"id":4010,"top":7437368.0681,"id_0":4010,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437350.5681,"col_index":56,"row_index":33}},{"id":4011,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.387053373],[9.945553143,55.386964076],[9.945710348,55.386964076],[9.945710348,55.387053373],[9.945553143,55.387053373]]]},"properties":{"id":4011,"top":7437350.5681,"id_0":4011,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437333.0681,"col_index":56,"row_index":34}},{"id":4012,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386964076],[9.945553143,55.386874778],[9.945710348,55.386874778],[9.945710348,55.386964076],[9.945553143,55.386964076]]]},"properties":{"id":4012,"top":7437333.0681,"id_0":4012,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437315.5681,"col_index":56,"row_index":35}},{"id":4013,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386874778],[9.945553143,55.38678548],[9.945710348,55.38678548],[9.945710348,55.386874778],[9.945553143,55.386874778]]]},"properties":{"id":4013,"top":7437315.5681,"id_0":4013,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437298.0681,"col_index":56,"row_index":36}},{"id":4014,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38678548],[9.945553143,55.386696182],[9.945710348,55.386696182],[9.945710348,55.38678548],[9.945553143,55.38678548]]]},"properties":{"id":4014,"top":7437298.0681,"id_0":4014,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437280.5681,"col_index":56,"row_index":37}},{"id":4015,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386696182],[9.945553143,55.386606884],[9.945710348,55.386606884],[9.945710348,55.386696182],[9.945553143,55.386696182]]]},"properties":{"id":4015,"top":7437280.5681,"id_0":4015,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437263.0681,"col_index":56,"row_index":38}},{"id":4016,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386606884],[9.945553143,55.386517586],[9.945710348,55.386517586],[9.945710348,55.386606884],[9.945553143,55.386606884]]]},"properties":{"id":4016,"top":7437263.0681,"id_0":4016,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437245.5681,"col_index":56,"row_index":39}},{"id":4017,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386517586],[9.945553143,55.386428287],[9.945710348,55.386428287],[9.945710348,55.386517586],[9.945553143,55.386517586]]]},"properties":{"id":4017,"top":7437245.5681,"id_0":4017,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437228.0681,"col_index":56,"row_index":40}},{"id":4018,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386428287],[9.945553143,55.386338989],[9.945710348,55.386338989],[9.945710348,55.386428287],[9.945553143,55.386428287]]]},"properties":{"id":4018,"top":7437228.0681,"id_0":4018,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437210.5681,"col_index":56,"row_index":41}},{"id":4019,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386338989],[9.945553143,55.38624969],[9.945710348,55.38624969],[9.945710348,55.386338989],[9.945553143,55.386338989]]]},"properties":{"id":4019,"top":7437210.5681,"id_0":4019,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437193.0681,"col_index":56,"row_index":42}},{"id":4020,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38624969],[9.945553143,55.386160391],[9.945710348,55.386160391],[9.945710348,55.38624969],[9.945553143,55.38624969]]]},"properties":{"id":4020,"top":7437193.0681,"id_0":4020,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437175.5681,"col_index":56,"row_index":43}},{"id":4021,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386160391],[9.945553143,55.386071091],[9.945710348,55.386071091],[9.945710348,55.386160391],[9.945553143,55.386160391]]]},"properties":{"id":4021,"top":7437175.5681,"id_0":4021,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437158.0681,"col_index":56,"row_index":44}},{"id":4022,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.386071091],[9.945553143,55.385981792],[9.945710348,55.385981792],[9.945710348,55.386071091],[9.945553143,55.386071091]]]},"properties":{"id":4022,"top":7437158.0681,"id_0":4022,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437140.5681,"col_index":56,"row_index":45}},{"id":4023,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385981792],[9.945553143,55.385892492],[9.945710348,55.385892492],[9.945710348,55.385981792],[9.945553143,55.385981792]]]},"properties":{"id":4023,"top":7437140.5681,"id_0":4023,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437123.0681,"col_index":56,"row_index":46}},{"id":4024,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385892492],[9.945553143,55.385803192],[9.945710348,55.385803192],[9.945710348,55.385892492],[9.945553143,55.385892492]]]},"properties":{"id":4024,"top":7437123.0681,"id_0":4024,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437105.5681,"col_index":56,"row_index":47}},{"id":4025,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385803192],[9.945553143,55.385713892],[9.945710348,55.385713892],[9.945710348,55.385803192],[9.945553143,55.385803192]]]},"properties":{"id":4025,"top":7437105.5681,"id_0":4025,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437088.0681,"col_index":56,"row_index":48}},{"id":4026,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385713892],[9.945553143,55.385624592],[9.945710348,55.385624592],[9.945710348,55.385713892],[9.945553143,55.385713892]]]},"properties":{"id":4026,"top":7437088.0681,"id_0":4026,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437070.5681,"col_index":56,"row_index":49}},{"id":4027,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385624592],[9.945553143,55.385535291],[9.945710348,55.385535291],[9.945710348,55.385624592],[9.945553143,55.385624592]]]},"properties":{"id":4027,"top":7437070.5681,"id_0":4027,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437053.0681,"col_index":56,"row_index":50}},{"id":4028,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385535291],[9.945553143,55.38544599],[9.945710348,55.38544599],[9.945710348,55.385535291],[9.945553143,55.385535291]]]},"properties":{"id":4028,"top":7437053.0681,"id_0":4028,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437035.5681,"col_index":56,"row_index":51}},{"id":4029,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38544599],[9.945553143,55.385356689],[9.945710348,55.385356689],[9.945710348,55.38544599],[9.945553143,55.38544599]]]},"properties":{"id":4029,"top":7437035.5681,"id_0":4029,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437018.0681,"col_index":56,"row_index":52}},{"id":4030,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385356689],[9.945553143,55.385267388],[9.945710348,55.385267388],[9.945710348,55.385356689],[9.945553143,55.385356689]]]},"properties":{"id":4030,"top":7437018.0681,"id_0":4030,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7437000.5681,"col_index":56,"row_index":53}},{"id":4031,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385267388],[9.945553143,55.385178087],[9.945710348,55.385178087],[9.945710348,55.385267388],[9.945553143,55.385267388]]]},"properties":{"id":4031,"top":7437000.5681,"id_0":4031,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436983.0681,"col_index":56,"row_index":54}},{"id":4032,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385178087],[9.945553143,55.385088785],[9.945710348,55.385088785],[9.945710348,55.385178087],[9.945553143,55.385178087]]]},"properties":{"id":4032,"top":7436983.0681,"id_0":4032,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436965.5681,"col_index":56,"row_index":55}},{"id":4033,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.385088785],[9.945553143,55.384999484],[9.945710348,55.384999484],[9.945710348,55.385088785],[9.945553143,55.385088785]]]},"properties":{"id":4033,"top":7436965.5681,"id_0":4033,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436948.0681,"col_index":56,"row_index":56}},{"id":4034,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384999484],[9.945553143,55.384910182],[9.945710348,55.384910182],[9.945710348,55.384999484],[9.945553143,55.384999484]]]},"properties":{"id":4034,"top":7436948.0681,"id_0":4034,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436930.5681,"col_index":56,"row_index":57}},{"id":4035,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384910182],[9.945553143,55.38482088],[9.945710348,55.38482088],[9.945710348,55.384910182],[9.945553143,55.384910182]]]},"properties":{"id":4035,"top":7436930.5681,"id_0":4035,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436913.0681,"col_index":56,"row_index":58}},{"id":4036,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.38482088],[9.945553143,55.384731577],[9.945710348,55.384731577],[9.945710348,55.38482088],[9.945553143,55.38482088]]]},"properties":{"id":4036,"top":7436913.0681,"id_0":4036,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436895.5681,"col_index":56,"row_index":59}},{"id":4037,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384731577],[9.945553143,55.384642275],[9.945710348,55.384642275],[9.945710348,55.384731577],[9.945553143,55.384731577]]]},"properties":{"id":4037,"top":7436895.5681,"id_0":4037,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436878.0681,"col_index":56,"row_index":60}},{"id":4038,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384642275],[9.945553143,55.384552972],[9.945710348,55.384552972],[9.945710348,55.384642275],[9.945553143,55.384642275]]]},"properties":{"id":4038,"top":7436878.0681,"id_0":4038,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436860.5681,"col_index":56,"row_index":61}},{"id":4039,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384552972],[9.945553143,55.384463669],[9.945710348,55.384463669],[9.945710348,55.384552972],[9.945553143,55.384552972]]]},"properties":{"id":4039,"top":7436860.5681,"id_0":4039,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436843.0681,"col_index":56,"row_index":62}},{"id":4040,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384463669],[9.945553143,55.384374366],[9.945710348,55.384374366],[9.945710348,55.384463669],[9.945553143,55.384463669]]]},"properties":{"id":4040,"top":7436843.0681,"id_0":4040,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436825.5681,"col_index":56,"row_index":63}},{"id":4041,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384374366],[9.945553143,55.384285062],[9.945710348,55.384285062],[9.945710348,55.384374366],[9.945553143,55.384374366]]]},"properties":{"id":4041,"top":7436825.5681,"id_0":4041,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436808.0681,"col_index":56,"row_index":64}},{"id":4042,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384285062],[9.945553143,55.384195759],[9.945710348,55.384195759],[9.945710348,55.384285062],[9.945553143,55.384285062]]]},"properties":{"id":4042,"top":7436808.0681,"id_0":4042,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436790.5681,"col_index":56,"row_index":65}},{"id":4043,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384195759],[9.945553143,55.384106455],[9.945710348,55.384106455],[9.945710348,55.384195759],[9.945553143,55.384195759]]]},"properties":{"id":4043,"top":7436790.5681,"id_0":4043,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436773.0681,"col_index":56,"row_index":66}},{"id":4044,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384106455],[9.945553143,55.384017151],[9.945710348,55.384017151],[9.945710348,55.384106455],[9.945553143,55.384106455]]]},"properties":{"id":4044,"top":7436773.0681,"id_0":4044,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436755.5681,"col_index":56,"row_index":67}},{"id":4045,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.384017151],[9.945553143,55.383927847],[9.945710348,55.383927847],[9.945710348,55.384017151],[9.945553143,55.384017151]]]},"properties":{"id":4045,"top":7436755.5681,"id_0":4045,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436738.0681,"col_index":56,"row_index":68}},{"id":4046,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.383927847],[9.945553143,55.383838543],[9.945710348,55.383838543],[9.945710348,55.383927847],[9.945553143,55.383927847]]]},"properties":{"id":4046,"top":7436738.0681,"id_0":4046,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436720.5681,"col_index":56,"row_index":69}},{"id":4047,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945553143,55.383838543],[9.945553143,55.383749238],[9.945710348,55.383749238],[9.945710348,55.383838543],[9.945553143,55.383838543]]]},"properties":{"id":4047,"top":7436720.5681,"id_0":4047,"left":1107133.9115,"Label":null,"right":1107151.4115,"bottom":7436703.0681,"col_index":56,"row_index":70}},{"id":4048,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.390089362],[9.945710348,55.390000071],[9.945867553,55.390000071],[9.945867553,55.390089362],[9.945710348,55.390089362]]]},"properties":{"id":4048,"top":7437945.5681,"id_0":4048,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437928.0681,"col_index":57,"row_index":0}},{"id":4049,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.390000071],[9.945710348,55.38991078],[9.945867553,55.38991078],[9.945867553,55.390000071],[9.945710348,55.390000071]]]},"properties":{"id":4049,"top":7437928.0681,"id_0":4049,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437910.5681,"col_index":57,"row_index":1}},{"id":4050,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38991078],[9.945710348,55.38982149],[9.945867553,55.38982149],[9.945867553,55.38991078],[9.945710348,55.38991078]]]},"properties":{"id":4050,"top":7437910.5681,"id_0":4050,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437893.0681,"col_index":57,"row_index":2}},{"id":4051,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38982149],[9.945710348,55.389732199],[9.945867553,55.389732199],[9.945867553,55.38982149],[9.945710348,55.38982149]]]},"properties":{"id":4051,"top":7437893.0681,"id_0":4051,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437875.5681,"col_index":57,"row_index":3}},{"id":4052,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389732199],[9.945710348,55.389642907],[9.945867553,55.389642907],[9.945867553,55.389732199],[9.945710348,55.389732199]]]},"properties":{"id":4052,"top":7437875.5681,"id_0":4052,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437858.0681,"col_index":57,"row_index":4}},{"id":4053,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389642907],[9.945710348,55.389553616],[9.945867553,55.389553616],[9.945867553,55.389642907],[9.945710348,55.389642907]]]},"properties":{"id":4053,"top":7437858.0681,"id_0":4053,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437840.5681,"col_index":57,"row_index":5}},{"id":4054,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389553616],[9.945710348,55.389464324],[9.945867553,55.389464324],[9.945867553,55.389553616],[9.945710348,55.389553616]]]},"properties":{"id":4054,"top":7437840.5681,"id_0":4054,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437823.0681,"col_index":57,"row_index":6}},{"id":4055,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389464324],[9.945710348,55.389375032],[9.945867553,55.389375032],[9.945867553,55.389464324],[9.945710348,55.389464324]]]},"properties":{"id":4055,"top":7437823.0681,"id_0":4055,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437805.5681,"col_index":57,"row_index":7}},{"id":4056,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389375032],[9.945710348,55.38928574],[9.945867553,55.38928574],[9.945867553,55.389375032],[9.945710348,55.389375032]]]},"properties":{"id":4056,"top":7437805.5681,"id_0":4056,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437788.0681,"col_index":57,"row_index":8}},{"id":4057,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38928574],[9.945710348,55.389196448],[9.945867553,55.389196448],[9.945867553,55.38928574],[9.945710348,55.38928574]]]},"properties":{"id":4057,"top":7437788.0681,"id_0":4057,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437770.5681,"col_index":57,"row_index":9}},{"id":4058,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389196448],[9.945710348,55.389107155],[9.945867553,55.389107155],[9.945867553,55.389196448],[9.945710348,55.389196448]]]},"properties":{"id":4058,"top":7437770.5681,"id_0":4058,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437753.0681,"col_index":57,"row_index":10}},{"id":4059,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389107155],[9.945710348,55.389017863],[9.945867553,55.389017863],[9.945867553,55.389107155],[9.945710348,55.389107155]]]},"properties":{"id":4059,"top":7437753.0681,"id_0":4059,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437735.5681,"col_index":57,"row_index":11}},{"id":4060,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.389017863],[9.945710348,55.38892857],[9.945867553,55.38892857],[9.945867553,55.389017863],[9.945710348,55.389017863]]]},"properties":{"id":4060,"top":7437735.5681,"id_0":4060,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437718.0681,"col_index":57,"row_index":12}},{"id":4061,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38892857],[9.945710348,55.388839277],[9.945867553,55.388839277],[9.945867553,55.38892857],[9.945710348,55.38892857]]]},"properties":{"id":4061,"top":7437718.0681,"id_0":4061,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437700.5681,"col_index":57,"row_index":13}},{"id":4062,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388839277],[9.945710348,55.388749984],[9.945867553,55.388749984],[9.945867553,55.388839277],[9.945710348,55.388839277]]]},"properties":{"id":4062,"top":7437700.5681,"id_0":4062,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437683.0681,"col_index":57,"row_index":14}},{"id":4063,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388749984],[9.945710348,55.38866069],[9.945867553,55.38866069],[9.945867553,55.388749984],[9.945710348,55.388749984]]]},"properties":{"id":4063,"top":7437683.0681,"id_0":4063,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437665.5681,"col_index":57,"row_index":15}},{"id":4064,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38866069],[9.945710348,55.388571396],[9.945867553,55.388571396],[9.945867553,55.38866069],[9.945710348,55.38866069]]]},"properties":{"id":4064,"top":7437665.5681,"id_0":4064,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437648.0681,"col_index":57,"row_index":16}},{"id":4065,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388571396],[9.945710348,55.388482103],[9.945867553,55.388482103],[9.945867553,55.388571396],[9.945710348,55.388571396]]]},"properties":{"id":4065,"top":7437648.0681,"id_0":4065,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437630.5681,"col_index":57,"row_index":17}},{"id":4066,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388482103],[9.945710348,55.388392808],[9.945867553,55.388392808],[9.945867553,55.388482103],[9.945710348,55.388482103]]]},"properties":{"id":4066,"top":7437630.5681,"id_0":4066,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437613.0681,"col_index":57,"row_index":18}},{"id":4067,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388392808],[9.945710348,55.388303514],[9.945867553,55.388303514],[9.945867553,55.388392808],[9.945710348,55.388392808]]]},"properties":{"id":4067,"top":7437613.0681,"id_0":4067,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437595.5681,"col_index":57,"row_index":19}},{"id":4068,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388303514],[9.945710348,55.38821422],[9.945867553,55.38821422],[9.945867553,55.388303514],[9.945710348,55.388303514]]]},"properties":{"id":4068,"top":7437595.5681,"id_0":4068,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437578.0681,"col_index":57,"row_index":20}},{"id":4069,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38821422],[9.945710348,55.388124925],[9.945867553,55.388124925],[9.945867553,55.38821422],[9.945710348,55.38821422]]]},"properties":{"id":4069,"top":7437578.0681,"id_0":4069,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437560.5681,"col_index":57,"row_index":21}},{"id":4070,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.388124925],[9.945710348,55.38803563],[9.945867553,55.38803563],[9.945867553,55.388124925],[9.945710348,55.388124925]]]},"properties":{"id":4070,"top":7437560.5681,"id_0":4070,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437543.0681,"col_index":57,"row_index":22}},{"id":4071,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38803563],[9.945710348,55.387946335],[9.945867553,55.387946335],[9.945867553,55.38803563],[9.945710348,55.38803563]]]},"properties":{"id":4071,"top":7437543.0681,"id_0":4071,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437525.5681,"col_index":57,"row_index":23}},{"id":4072,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387946335],[9.945710348,55.38785704],[9.945867553,55.38785704],[9.945867553,55.387946335],[9.945710348,55.387946335]]]},"properties":{"id":4072,"top":7437525.5681,"id_0":4072,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437508.0681,"col_index":57,"row_index":24}},{"id":4073,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38785704],[9.945710348,55.387767744],[9.945867553,55.387767744],[9.945867553,55.38785704],[9.945710348,55.38785704]]]},"properties":{"id":4073,"top":7437508.0681,"id_0":4073,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437490.5681,"col_index":57,"row_index":25}},{"id":4074,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387767744],[9.945710348,55.387678448],[9.945867553,55.387678448],[9.945867553,55.387767744],[9.945710348,55.387767744]]]},"properties":{"id":4074,"top":7437490.5681,"id_0":4074,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437473.0681,"col_index":57,"row_index":26}},{"id":4075,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387678448],[9.945710348,55.387589153],[9.945867553,55.387589153],[9.945867553,55.387678448],[9.945710348,55.387678448]]]},"properties":{"id":4075,"top":7437473.0681,"id_0":4075,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437455.5681,"col_index":57,"row_index":27}},{"id":4076,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387589153],[9.945710348,55.387499856],[9.945867553,55.387499856],[9.945867553,55.387589153],[9.945710348,55.387589153]]]},"properties":{"id":4076,"top":7437455.5681,"id_0":4076,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437438.0681,"col_index":57,"row_index":28}},{"id":4077,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387499856],[9.945710348,55.38741056],[9.945867553,55.38741056],[9.945867553,55.387499856],[9.945710348,55.387499856]]]},"properties":{"id":4077,"top":7437438.0681,"id_0":4077,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437420.5681,"col_index":57,"row_index":29}},{"id":4078,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38741056],[9.945710348,55.387321264],[9.945867553,55.387321264],[9.945867553,55.38741056],[9.945710348,55.38741056]]]},"properties":{"id":4078,"top":7437420.5681,"id_0":4078,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437403.0681,"col_index":57,"row_index":30}},{"id":4079,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387321264],[9.945710348,55.387231967],[9.945867553,55.387231967],[9.945867553,55.387321264],[9.945710348,55.387321264]]]},"properties":{"id":4079,"top":7437403.0681,"id_0":4079,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437385.5681,"col_index":57,"row_index":31}},{"id":4080,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387231967],[9.945710348,55.38714267],[9.945867553,55.38714267],[9.945867553,55.387231967],[9.945710348,55.387231967]]]},"properties":{"id":4080,"top":7437385.5681,"id_0":4080,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437368.0681,"col_index":57,"row_index":32}},{"id":4081,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38714267],[9.945710348,55.387053373],[9.945867553,55.387053373],[9.945867553,55.38714267],[9.945710348,55.38714267]]]},"properties":{"id":4081,"top":7437368.0681,"id_0":4081,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437350.5681,"col_index":57,"row_index":33}},{"id":4082,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.387053373],[9.945710348,55.386964076],[9.945867553,55.386964076],[9.945867553,55.387053373],[9.945710348,55.387053373]]]},"properties":{"id":4082,"top":7437350.5681,"id_0":4082,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437333.0681,"col_index":57,"row_index":34}},{"id":4083,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386964076],[9.945710348,55.386874778],[9.945867553,55.386874778],[9.945867553,55.386964076],[9.945710348,55.386964076]]]},"properties":{"id":4083,"top":7437333.0681,"id_0":4083,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437315.5681,"col_index":57,"row_index":35}},{"id":4084,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386874778],[9.945710348,55.38678548],[9.945867553,55.38678548],[9.945867553,55.386874778],[9.945710348,55.386874778]]]},"properties":{"id":4084,"top":7437315.5681,"id_0":4084,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437298.0681,"col_index":57,"row_index":36}},{"id":4085,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38678548],[9.945710348,55.386696182],[9.945867553,55.386696182],[9.945867553,55.38678548],[9.945710348,55.38678548]]]},"properties":{"id":4085,"top":7437298.0681,"id_0":4085,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437280.5681,"col_index":57,"row_index":37}},{"id":4086,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386696182],[9.945710348,55.386606884],[9.945867553,55.386606884],[9.945867553,55.386696182],[9.945710348,55.386696182]]]},"properties":{"id":4086,"top":7437280.5681,"id_0":4086,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437263.0681,"col_index":57,"row_index":38}},{"id":4087,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386606884],[9.945710348,55.386517586],[9.945867553,55.386517586],[9.945867553,55.386606884],[9.945710348,55.386606884]]]},"properties":{"id":4087,"top":7437263.0681,"id_0":4087,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437245.5681,"col_index":57,"row_index":39}},{"id":4088,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386517586],[9.945710348,55.386428287],[9.945867553,55.386428287],[9.945867553,55.386517586],[9.945710348,55.386517586]]]},"properties":{"id":4088,"top":7437245.5681,"id_0":4088,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437228.0681,"col_index":57,"row_index":40}},{"id":4089,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386428287],[9.945710348,55.386338989],[9.945867553,55.386338989],[9.945867553,55.386428287],[9.945710348,55.386428287]]]},"properties":{"id":4089,"top":7437228.0681,"id_0":4089,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437210.5681,"col_index":57,"row_index":41}},{"id":4090,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386338989],[9.945710348,55.38624969],[9.945867553,55.38624969],[9.945867553,55.386338989],[9.945710348,55.386338989]]]},"properties":{"id":4090,"top":7437210.5681,"id_0":4090,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437193.0681,"col_index":57,"row_index":42}},{"id":4091,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38624969],[9.945710348,55.386160391],[9.945867553,55.386160391],[9.945867553,55.38624969],[9.945710348,55.38624969]]]},"properties":{"id":4091,"top":7437193.0681,"id_0":4091,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437175.5681,"col_index":57,"row_index":43}},{"id":4092,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386160391],[9.945710348,55.386071091],[9.945867553,55.386071091],[9.945867553,55.386160391],[9.945710348,55.386160391]]]},"properties":{"id":4092,"top":7437175.5681,"id_0":4092,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437158.0681,"col_index":57,"row_index":44}},{"id":4093,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.386071091],[9.945710348,55.385981792],[9.945867553,55.385981792],[9.945867553,55.386071091],[9.945710348,55.386071091]]]},"properties":{"id":4093,"top":7437158.0681,"id_0":4093,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437140.5681,"col_index":57,"row_index":45}},{"id":4094,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385981792],[9.945710348,55.385892492],[9.945867553,55.385892492],[9.945867553,55.385981792],[9.945710348,55.385981792]]]},"properties":{"id":4094,"top":7437140.5681,"id_0":4094,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437123.0681,"col_index":57,"row_index":46}},{"id":4095,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385892492],[9.945710348,55.385803192],[9.945867553,55.385803192],[9.945867553,55.385892492],[9.945710348,55.385892492]]]},"properties":{"id":4095,"top":7437123.0681,"id_0":4095,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437105.5681,"col_index":57,"row_index":47}},{"id":4096,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385803192],[9.945710348,55.385713892],[9.945867553,55.385713892],[9.945867553,55.385803192],[9.945710348,55.385803192]]]},"properties":{"id":4096,"top":7437105.5681,"id_0":4096,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437088.0681,"col_index":57,"row_index":48}},{"id":4097,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385713892],[9.945710348,55.385624592],[9.945867553,55.385624592],[9.945867553,55.385713892],[9.945710348,55.385713892]]]},"properties":{"id":4097,"top":7437088.0681,"id_0":4097,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437070.5681,"col_index":57,"row_index":49}},{"id":4098,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385624592],[9.945710348,55.385535291],[9.945867553,55.385535291],[9.945867553,55.385624592],[9.945710348,55.385624592]]]},"properties":{"id":4098,"top":7437070.5681,"id_0":4098,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437053.0681,"col_index":57,"row_index":50}},{"id":4099,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385535291],[9.945710348,55.38544599],[9.945867553,55.38544599],[9.945867553,55.385535291],[9.945710348,55.385535291]]]},"properties":{"id":4099,"top":7437053.0681,"id_0":4099,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437035.5681,"col_index":57,"row_index":51}},{"id":4100,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38544599],[9.945710348,55.385356689],[9.945867553,55.385356689],[9.945867553,55.38544599],[9.945710348,55.38544599]]]},"properties":{"id":4100,"top":7437035.5681,"id_0":4100,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437018.0681,"col_index":57,"row_index":52}},{"id":4101,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385356689],[9.945710348,55.385267388],[9.945867553,55.385267388],[9.945867553,55.385356689],[9.945710348,55.385356689]]]},"properties":{"id":4101,"top":7437018.0681,"id_0":4101,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7437000.5681,"col_index":57,"row_index":53}},{"id":4102,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385267388],[9.945710348,55.385178087],[9.945867553,55.385178087],[9.945867553,55.385267388],[9.945710348,55.385267388]]]},"properties":{"id":4102,"top":7437000.5681,"id_0":4102,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436983.0681,"col_index":57,"row_index":54}},{"id":4103,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385178087],[9.945710348,55.385088785],[9.945867553,55.385088785],[9.945867553,55.385178087],[9.945710348,55.385178087]]]},"properties":{"id":4103,"top":7436983.0681,"id_0":4103,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436965.5681,"col_index":57,"row_index":55}},{"id":4104,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.385088785],[9.945710348,55.384999484],[9.945867553,55.384999484],[9.945867553,55.385088785],[9.945710348,55.385088785]]]},"properties":{"id":4104,"top":7436965.5681,"id_0":4104,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436948.0681,"col_index":57,"row_index":56}},{"id":4105,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384999484],[9.945710348,55.384910182],[9.945867553,55.384910182],[9.945867553,55.384999484],[9.945710348,55.384999484]]]},"properties":{"id":4105,"top":7436948.0681,"id_0":4105,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436930.5681,"col_index":57,"row_index":57}},{"id":4106,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384910182],[9.945710348,55.38482088],[9.945867553,55.38482088],[9.945867553,55.384910182],[9.945710348,55.384910182]]]},"properties":{"id":4106,"top":7436930.5681,"id_0":4106,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436913.0681,"col_index":57,"row_index":58}},{"id":4107,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.38482088],[9.945710348,55.384731577],[9.945867553,55.384731577],[9.945867553,55.38482088],[9.945710348,55.38482088]]]},"properties":{"id":4107,"top":7436913.0681,"id_0":4107,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436895.5681,"col_index":57,"row_index":59}},{"id":4108,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384731577],[9.945710348,55.384642275],[9.945867553,55.384642275],[9.945867553,55.384731577],[9.945710348,55.384731577]]]},"properties":{"id":4108,"top":7436895.5681,"id_0":4108,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436878.0681,"col_index":57,"row_index":60}},{"id":4109,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384642275],[9.945710348,55.384552972],[9.945867553,55.384552972],[9.945867553,55.384642275],[9.945710348,55.384642275]]]},"properties":{"id":4109,"top":7436878.0681,"id_0":4109,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436860.5681,"col_index":57,"row_index":61}},{"id":4110,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384552972],[9.945710348,55.384463669],[9.945867553,55.384463669],[9.945867553,55.384552972],[9.945710348,55.384552972]]]},"properties":{"id":4110,"top":7436860.5681,"id_0":4110,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436843.0681,"col_index":57,"row_index":62}},{"id":4111,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384463669],[9.945710348,55.384374366],[9.945867553,55.384374366],[9.945867553,55.384463669],[9.945710348,55.384463669]]]},"properties":{"id":4111,"top":7436843.0681,"id_0":4111,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436825.5681,"col_index":57,"row_index":63}},{"id":4112,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384374366],[9.945710348,55.384285062],[9.945867553,55.384285062],[9.945867553,55.384374366],[9.945710348,55.384374366]]]},"properties":{"id":4112,"top":7436825.5681,"id_0":4112,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436808.0681,"col_index":57,"row_index":64}},{"id":4113,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384285062],[9.945710348,55.384195759],[9.945867553,55.384195759],[9.945867553,55.384285062],[9.945710348,55.384285062]]]},"properties":{"id":4113,"top":7436808.0681,"id_0":4113,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436790.5681,"col_index":57,"row_index":65}},{"id":4114,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384195759],[9.945710348,55.384106455],[9.945867553,55.384106455],[9.945867553,55.384195759],[9.945710348,55.384195759]]]},"properties":{"id":4114,"top":7436790.5681,"id_0":4114,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436773.0681,"col_index":57,"row_index":66}},{"id":4115,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384106455],[9.945710348,55.384017151],[9.945867553,55.384017151],[9.945867553,55.384106455],[9.945710348,55.384106455]]]},"properties":{"id":4115,"top":7436773.0681,"id_0":4115,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436755.5681,"col_index":57,"row_index":67}},{"id":4116,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.384017151],[9.945710348,55.383927847],[9.945867553,55.383927847],[9.945867553,55.384017151],[9.945710348,55.384017151]]]},"properties":{"id":4116,"top":7436755.5681,"id_0":4116,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436738.0681,"col_index":57,"row_index":68}},{"id":4117,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.383927847],[9.945710348,55.383838543],[9.945867553,55.383838543],[9.945867553,55.383927847],[9.945710348,55.383927847]]]},"properties":{"id":4117,"top":7436738.0681,"id_0":4117,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436720.5681,"col_index":57,"row_index":69}},{"id":4118,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945710348,55.383838543],[9.945710348,55.383749238],[9.945867553,55.383749238],[9.945867553,55.383838543],[9.945710348,55.383838543]]]},"properties":{"id":4118,"top":7436720.5681,"id_0":4118,"left":1107151.4115,"Label":null,"right":1107168.9115,"bottom":7436703.0681,"col_index":57,"row_index":70}},{"id":4119,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.390089362],[9.945867553,55.390000071],[9.946024758,55.390000071],[9.946024758,55.390089362],[9.945867553,55.390089362]]]},"properties":{"id":4119,"top":7437945.5681,"id_0":4119,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437928.0681,"col_index":58,"row_index":0}},{"id":4120,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.390000071],[9.945867553,55.38991078],[9.946024758,55.38991078],[9.946024758,55.390000071],[9.945867553,55.390000071]]]},"properties":{"id":4120,"top":7437928.0681,"id_0":4120,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437910.5681,"col_index":58,"row_index":1}},{"id":4121,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38991078],[9.945867553,55.38982149],[9.946024758,55.38982149],[9.946024758,55.38991078],[9.945867553,55.38991078]]]},"properties":{"id":4121,"top":7437910.5681,"id_0":4121,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437893.0681,"col_index":58,"row_index":2}},{"id":4122,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38982149],[9.945867553,55.389732199],[9.946024758,55.389732199],[9.946024758,55.38982149],[9.945867553,55.38982149]]]},"properties":{"id":4122,"top":7437893.0681,"id_0":4122,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437875.5681,"col_index":58,"row_index":3}},{"id":4123,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389732199],[9.945867553,55.389642907],[9.946024758,55.389642907],[9.946024758,55.389732199],[9.945867553,55.389732199]]]},"properties":{"id":4123,"top":7437875.5681,"id_0":4123,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437858.0681,"col_index":58,"row_index":4}},{"id":4124,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389642907],[9.945867553,55.389553616],[9.946024758,55.389553616],[9.946024758,55.389642907],[9.945867553,55.389642907]]]},"properties":{"id":4124,"top":7437858.0681,"id_0":4124,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437840.5681,"col_index":58,"row_index":5}},{"id":4125,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389553616],[9.945867553,55.389464324],[9.946024758,55.389464324],[9.946024758,55.389553616],[9.945867553,55.389553616]]]},"properties":{"id":4125,"top":7437840.5681,"id_0":4125,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437823.0681,"col_index":58,"row_index":6}},{"id":4126,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389464324],[9.945867553,55.389375032],[9.946024758,55.389375032],[9.946024758,55.389464324],[9.945867553,55.389464324]]]},"properties":{"id":4126,"top":7437823.0681,"id_0":4126,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437805.5681,"col_index":58,"row_index":7}},{"id":4127,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389375032],[9.945867553,55.38928574],[9.946024758,55.38928574],[9.946024758,55.389375032],[9.945867553,55.389375032]]]},"properties":{"id":4127,"top":7437805.5681,"id_0":4127,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437788.0681,"col_index":58,"row_index":8}},{"id":4128,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38928574],[9.945867553,55.389196448],[9.946024758,55.389196448],[9.946024758,55.38928574],[9.945867553,55.38928574]]]},"properties":{"id":4128,"top":7437788.0681,"id_0":4128,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437770.5681,"col_index":58,"row_index":9}},{"id":4129,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389196448],[9.945867553,55.389107155],[9.946024758,55.389107155],[9.946024758,55.389196448],[9.945867553,55.389196448]]]},"properties":{"id":4129,"top":7437770.5681,"id_0":4129,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437753.0681,"col_index":58,"row_index":10}},{"id":4130,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389107155],[9.945867553,55.389017863],[9.946024758,55.389017863],[9.946024758,55.389107155],[9.945867553,55.389107155]]]},"properties":{"id":4130,"top":7437753.0681,"id_0":4130,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437735.5681,"col_index":58,"row_index":11}},{"id":4131,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.389017863],[9.945867553,55.38892857],[9.946024758,55.38892857],[9.946024758,55.389017863],[9.945867553,55.389017863]]]},"properties":{"id":4131,"top":7437735.5681,"id_0":4131,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437718.0681,"col_index":58,"row_index":12}},{"id":4132,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38892857],[9.945867553,55.388839277],[9.946024758,55.388839277],[9.946024758,55.38892857],[9.945867553,55.38892857]]]},"properties":{"id":4132,"top":7437718.0681,"id_0":4132,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437700.5681,"col_index":58,"row_index":13}},{"id":4133,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388839277],[9.945867553,55.388749984],[9.946024758,55.388749984],[9.946024758,55.388839277],[9.945867553,55.388839277]]]},"properties":{"id":4133,"top":7437700.5681,"id_0":4133,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437683.0681,"col_index":58,"row_index":14}},{"id":4134,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388749984],[9.945867553,55.38866069],[9.946024758,55.38866069],[9.946024758,55.388749984],[9.945867553,55.388749984]]]},"properties":{"id":4134,"top":7437683.0681,"id_0":4134,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437665.5681,"col_index":58,"row_index":15}},{"id":4135,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38866069],[9.945867553,55.388571396],[9.946024758,55.388571396],[9.946024758,55.38866069],[9.945867553,55.38866069]]]},"properties":{"id":4135,"top":7437665.5681,"id_0":4135,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437648.0681,"col_index":58,"row_index":16}},{"id":4136,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388571396],[9.945867553,55.388482103],[9.946024758,55.388482103],[9.946024758,55.388571396],[9.945867553,55.388571396]]]},"properties":{"id":4136,"top":7437648.0681,"id_0":4136,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437630.5681,"col_index":58,"row_index":17}},{"id":4137,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388482103],[9.945867553,55.388392808],[9.946024758,55.388392808],[9.946024758,55.388482103],[9.945867553,55.388482103]]]},"properties":{"id":4137,"top":7437630.5681,"id_0":4137,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437613.0681,"col_index":58,"row_index":18}},{"id":4138,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388392808],[9.945867553,55.388303514],[9.946024758,55.388303514],[9.946024758,55.388392808],[9.945867553,55.388392808]]]},"properties":{"id":4138,"top":7437613.0681,"id_0":4138,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437595.5681,"col_index":58,"row_index":19}},{"id":4139,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388303514],[9.945867553,55.38821422],[9.946024758,55.38821422],[9.946024758,55.388303514],[9.945867553,55.388303514]]]},"properties":{"id":4139,"top":7437595.5681,"id_0":4139,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437578.0681,"col_index":58,"row_index":20}},{"id":4140,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38821422],[9.945867553,55.388124925],[9.946024758,55.388124925],[9.946024758,55.38821422],[9.945867553,55.38821422]]]},"properties":{"id":4140,"top":7437578.0681,"id_0":4140,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437560.5681,"col_index":58,"row_index":21}},{"id":4141,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.388124925],[9.945867553,55.38803563],[9.946024758,55.38803563],[9.946024758,55.388124925],[9.945867553,55.388124925]]]},"properties":{"id":4141,"top":7437560.5681,"id_0":4141,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437543.0681,"col_index":58,"row_index":22}},{"id":4142,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38803563],[9.945867553,55.387946335],[9.946024758,55.387946335],[9.946024758,55.38803563],[9.945867553,55.38803563]]]},"properties":{"id":4142,"top":7437543.0681,"id_0":4142,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437525.5681,"col_index":58,"row_index":23}},{"id":4143,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387946335],[9.945867553,55.38785704],[9.946024758,55.38785704],[9.946024758,55.387946335],[9.945867553,55.387946335]]]},"properties":{"id":4143,"top":7437525.5681,"id_0":4143,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437508.0681,"col_index":58,"row_index":24}},{"id":4144,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38785704],[9.945867553,55.387767744],[9.946024758,55.387767744],[9.946024758,55.38785704],[9.945867553,55.38785704]]]},"properties":{"id":4144,"top":7437508.0681,"id_0":4144,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437490.5681,"col_index":58,"row_index":25}},{"id":4145,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387767744],[9.945867553,55.387678448],[9.946024758,55.387678448],[9.946024758,55.387767744],[9.945867553,55.387767744]]]},"properties":{"id":4145,"top":7437490.5681,"id_0":4145,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437473.0681,"col_index":58,"row_index":26}},{"id":4146,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387678448],[9.945867553,55.387589153],[9.946024758,55.387589153],[9.946024758,55.387678448],[9.945867553,55.387678448]]]},"properties":{"id":4146,"top":7437473.0681,"id_0":4146,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437455.5681,"col_index":58,"row_index":27}},{"id":4147,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387589153],[9.945867553,55.387499856],[9.946024758,55.387499856],[9.946024758,55.387589153],[9.945867553,55.387589153]]]},"properties":{"id":4147,"top":7437455.5681,"id_0":4147,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437438.0681,"col_index":58,"row_index":28}},{"id":4148,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387499856],[9.945867553,55.38741056],[9.946024758,55.38741056],[9.946024758,55.387499856],[9.945867553,55.387499856]]]},"properties":{"id":4148,"top":7437438.0681,"id_0":4148,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437420.5681,"col_index":58,"row_index":29}},{"id":4149,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38741056],[9.945867553,55.387321264],[9.946024758,55.387321264],[9.946024758,55.38741056],[9.945867553,55.38741056]]]},"properties":{"id":4149,"top":7437420.5681,"id_0":4149,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437403.0681,"col_index":58,"row_index":30}},{"id":4150,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387321264],[9.945867553,55.387231967],[9.946024758,55.387231967],[9.946024758,55.387321264],[9.945867553,55.387321264]]]},"properties":{"id":4150,"top":7437403.0681,"id_0":4150,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437385.5681,"col_index":58,"row_index":31}},{"id":4151,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387231967],[9.945867553,55.38714267],[9.946024758,55.38714267],[9.946024758,55.387231967],[9.945867553,55.387231967]]]},"properties":{"id":4151,"top":7437385.5681,"id_0":4151,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437368.0681,"col_index":58,"row_index":32}},{"id":4152,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38714267],[9.945867553,55.387053373],[9.946024758,55.387053373],[9.946024758,55.38714267],[9.945867553,55.38714267]]]},"properties":{"id":4152,"top":7437368.0681,"id_0":4152,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437350.5681,"col_index":58,"row_index":33}},{"id":4153,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.387053373],[9.945867553,55.386964076],[9.946024758,55.386964076],[9.946024758,55.387053373],[9.945867553,55.387053373]]]},"properties":{"id":4153,"top":7437350.5681,"id_0":4153,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437333.0681,"col_index":58,"row_index":34}},{"id":4154,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386964076],[9.945867553,55.386874778],[9.946024758,55.386874778],[9.946024758,55.386964076],[9.945867553,55.386964076]]]},"properties":{"id":4154,"top":7437333.0681,"id_0":4154,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437315.5681,"col_index":58,"row_index":35}},{"id":4155,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386874778],[9.945867553,55.38678548],[9.946024758,55.38678548],[9.946024758,55.386874778],[9.945867553,55.386874778]]]},"properties":{"id":4155,"top":7437315.5681,"id_0":4155,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437298.0681,"col_index":58,"row_index":36}},{"id":4156,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38678548],[9.945867553,55.386696182],[9.946024758,55.386696182],[9.946024758,55.38678548],[9.945867553,55.38678548]]]},"properties":{"id":4156,"top":7437298.0681,"id_0":4156,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437280.5681,"col_index":58,"row_index":37}},{"id":4157,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386696182],[9.945867553,55.386606884],[9.946024758,55.386606884],[9.946024758,55.386696182],[9.945867553,55.386696182]]]},"properties":{"id":4157,"top":7437280.5681,"id_0":4157,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437263.0681,"col_index":58,"row_index":38}},{"id":4158,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386606884],[9.945867553,55.386517586],[9.946024758,55.386517586],[9.946024758,55.386606884],[9.945867553,55.386606884]]]},"properties":{"id":4158,"top":7437263.0681,"id_0":4158,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437245.5681,"col_index":58,"row_index":39}},{"id":4159,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386517586],[9.945867553,55.386428287],[9.946024758,55.386428287],[9.946024758,55.386517586],[9.945867553,55.386517586]]]},"properties":{"id":4159,"top":7437245.5681,"id_0":4159,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437228.0681,"col_index":58,"row_index":40}},{"id":4160,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386428287],[9.945867553,55.386338989],[9.946024758,55.386338989],[9.946024758,55.386428287],[9.945867553,55.386428287]]]},"properties":{"id":4160,"top":7437228.0681,"id_0":4160,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437210.5681,"col_index":58,"row_index":41}},{"id":4161,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386338989],[9.945867553,55.38624969],[9.946024758,55.38624969],[9.946024758,55.386338989],[9.945867553,55.386338989]]]},"properties":{"id":4161,"top":7437210.5681,"id_0":4161,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437193.0681,"col_index":58,"row_index":42}},{"id":4162,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38624969],[9.945867553,55.386160391],[9.946024758,55.386160391],[9.946024758,55.38624969],[9.945867553,55.38624969]]]},"properties":{"id":4162,"top":7437193.0681,"id_0":4162,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437175.5681,"col_index":58,"row_index":43}},{"id":4163,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386160391],[9.945867553,55.386071091],[9.946024758,55.386071091],[9.946024758,55.386160391],[9.945867553,55.386160391]]]},"properties":{"id":4163,"top":7437175.5681,"id_0":4163,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437158.0681,"col_index":58,"row_index":44}},{"id":4164,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.386071091],[9.945867553,55.385981792],[9.946024758,55.385981792],[9.946024758,55.386071091],[9.945867553,55.386071091]]]},"properties":{"id":4164,"top":7437158.0681,"id_0":4164,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437140.5681,"col_index":58,"row_index":45}},{"id":4165,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385981792],[9.945867553,55.385892492],[9.946024758,55.385892492],[9.946024758,55.385981792],[9.945867553,55.385981792]]]},"properties":{"id":4165,"top":7437140.5681,"id_0":4165,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437123.0681,"col_index":58,"row_index":46}},{"id":4166,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385892492],[9.945867553,55.385803192],[9.946024758,55.385803192],[9.946024758,55.385892492],[9.945867553,55.385892492]]]},"properties":{"id":4166,"top":7437123.0681,"id_0":4166,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437105.5681,"col_index":58,"row_index":47}},{"id":4167,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385803192],[9.945867553,55.385713892],[9.946024758,55.385713892],[9.946024758,55.385803192],[9.945867553,55.385803192]]]},"properties":{"id":4167,"top":7437105.5681,"id_0":4167,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437088.0681,"col_index":58,"row_index":48}},{"id":4168,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385713892],[9.945867553,55.385624592],[9.946024758,55.385624592],[9.946024758,55.385713892],[9.945867553,55.385713892]]]},"properties":{"id":4168,"top":7437088.0681,"id_0":4168,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437070.5681,"col_index":58,"row_index":49}},{"id":4169,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385624592],[9.945867553,55.385535291],[9.946024758,55.385535291],[9.946024758,55.385624592],[9.945867553,55.385624592]]]},"properties":{"id":4169,"top":7437070.5681,"id_0":4169,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437053.0681,"col_index":58,"row_index":50}},{"id":4170,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385535291],[9.945867553,55.38544599],[9.946024758,55.38544599],[9.946024758,55.385535291],[9.945867553,55.385535291]]]},"properties":{"id":4170,"top":7437053.0681,"id_0":4170,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437035.5681,"col_index":58,"row_index":51}},{"id":4171,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38544599],[9.945867553,55.385356689],[9.946024758,55.385356689],[9.946024758,55.38544599],[9.945867553,55.38544599]]]},"properties":{"id":4171,"top":7437035.5681,"id_0":4171,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437018.0681,"col_index":58,"row_index":52}},{"id":4172,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385356689],[9.945867553,55.385267388],[9.946024758,55.385267388],[9.946024758,55.385356689],[9.945867553,55.385356689]]]},"properties":{"id":4172,"top":7437018.0681,"id_0":4172,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7437000.5681,"col_index":58,"row_index":53}},{"id":4173,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385267388],[9.945867553,55.385178087],[9.946024758,55.385178087],[9.946024758,55.385267388],[9.945867553,55.385267388]]]},"properties":{"id":4173,"top":7437000.5681,"id_0":4173,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436983.0681,"col_index":58,"row_index":54}},{"id":4174,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385178087],[9.945867553,55.385088785],[9.946024758,55.385088785],[9.946024758,55.385178087],[9.945867553,55.385178087]]]},"properties":{"id":4174,"top":7436983.0681,"id_0":4174,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436965.5681,"col_index":58,"row_index":55}},{"id":4175,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.385088785],[9.945867553,55.384999484],[9.946024758,55.384999484],[9.946024758,55.385088785],[9.945867553,55.385088785]]]},"properties":{"id":4175,"top":7436965.5681,"id_0":4175,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436948.0681,"col_index":58,"row_index":56}},{"id":4176,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384999484],[9.945867553,55.384910182],[9.946024758,55.384910182],[9.946024758,55.384999484],[9.945867553,55.384999484]]]},"properties":{"id":4176,"top":7436948.0681,"id_0":4176,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436930.5681,"col_index":58,"row_index":57}},{"id":4177,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384910182],[9.945867553,55.38482088],[9.946024758,55.38482088],[9.946024758,55.384910182],[9.945867553,55.384910182]]]},"properties":{"id":4177,"top":7436930.5681,"id_0":4177,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436913.0681,"col_index":58,"row_index":58}},{"id":4178,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.38482088],[9.945867553,55.384731577],[9.946024758,55.384731577],[9.946024758,55.38482088],[9.945867553,55.38482088]]]},"properties":{"id":4178,"top":7436913.0681,"id_0":4178,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436895.5681,"col_index":58,"row_index":59}},{"id":4179,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384731577],[9.945867553,55.384642275],[9.946024758,55.384642275],[9.946024758,55.384731577],[9.945867553,55.384731577]]]},"properties":{"id":4179,"top":7436895.5681,"id_0":4179,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436878.0681,"col_index":58,"row_index":60}},{"id":4180,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384642275],[9.945867553,55.384552972],[9.946024758,55.384552972],[9.946024758,55.384642275],[9.945867553,55.384642275]]]},"properties":{"id":4180,"top":7436878.0681,"id_0":4180,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436860.5681,"col_index":58,"row_index":61}},{"id":4181,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384552972],[9.945867553,55.384463669],[9.946024758,55.384463669],[9.946024758,55.384552972],[9.945867553,55.384552972]]]},"properties":{"id":4181,"top":7436860.5681,"id_0":4181,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436843.0681,"col_index":58,"row_index":62}},{"id":4182,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384463669],[9.945867553,55.384374366],[9.946024758,55.384374366],[9.946024758,55.384463669],[9.945867553,55.384463669]]]},"properties":{"id":4182,"top":7436843.0681,"id_0":4182,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436825.5681,"col_index":58,"row_index":63}},{"id":4183,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384374366],[9.945867553,55.384285062],[9.946024758,55.384285062],[9.946024758,55.384374366],[9.945867553,55.384374366]]]},"properties":{"id":4183,"top":7436825.5681,"id_0":4183,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436808.0681,"col_index":58,"row_index":64}},{"id":4184,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384285062],[9.945867553,55.384195759],[9.946024758,55.384195759],[9.946024758,55.384285062],[9.945867553,55.384285062]]]},"properties":{"id":4184,"top":7436808.0681,"id_0":4184,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436790.5681,"col_index":58,"row_index":65}},{"id":4185,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384195759],[9.945867553,55.384106455],[9.946024758,55.384106455],[9.946024758,55.384195759],[9.945867553,55.384195759]]]},"properties":{"id":4185,"top":7436790.5681,"id_0":4185,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436773.0681,"col_index":58,"row_index":66}},{"id":4186,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384106455],[9.945867553,55.384017151],[9.946024758,55.384017151],[9.946024758,55.384106455],[9.945867553,55.384106455]]]},"properties":{"id":4186,"top":7436773.0681,"id_0":4186,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436755.5681,"col_index":58,"row_index":67}},{"id":4187,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.384017151],[9.945867553,55.383927847],[9.946024758,55.383927847],[9.946024758,55.384017151],[9.945867553,55.384017151]]]},"properties":{"id":4187,"top":7436755.5681,"id_0":4187,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436738.0681,"col_index":58,"row_index":68}},{"id":4188,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.383927847],[9.945867553,55.383838543],[9.946024758,55.383838543],[9.946024758,55.383927847],[9.945867553,55.383927847]]]},"properties":{"id":4188,"top":7436738.0681,"id_0":4188,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436720.5681,"col_index":58,"row_index":69}},{"id":4189,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.945867553,55.383838543],[9.945867553,55.383749238],[9.946024758,55.383749238],[9.946024758,55.383838543],[9.945867553,55.383838543]]]},"properties":{"id":4189,"top":7436720.5681,"id_0":4189,"left":1107168.9115,"Label":null,"right":1107186.4115,"bottom":7436703.0681,"col_index":58,"row_index":70}},{"id":3,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38991078],[9.936749653,55.38982149],[9.936906858,55.38982149],[9.936906858,55.38991078],[9.936749653,55.38991078]]]},"properties":{"id":3,"top":7437910.5681,"id_0":3,"left":1106153.9115,"Label":"1 ","right":1106171.4115,"bottom":7437893.0681,"col_index":0,"row_index":2}},{"id":4,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38982149],[9.936749653,55.389732199],[9.936906858,55.389732199],[9.936906858,55.38982149],[9.936749653,55.38982149]]]},"properties":{"id":4,"top":7437893.0681,"id_0":4,"left":1106153.9115,"Label":"2 ","right":1106171.4115,"bottom":7437875.5681,"col_index":0,"row_index":3}},{"id":5,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389732199],[9.936749653,55.389642907],[9.936906858,55.389642907],[9.936906858,55.389732199],[9.936749653,55.389732199]]]},"properties":{"id":5,"top":7437875.5681,"id_0":5,"left":1106153.9115,"Label":"3 ","right":1106171.4115,"bottom":7437858.0681,"col_index":0,"row_index":4}},{"id":6,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389642907],[9.936749653,55.389553616],[9.936906858,55.389553616],[9.936906858,55.389642907],[9.936749653,55.389642907]]]},"properties":{"id":6,"top":7437858.0681,"id_0":6,"left":1106153.9115,"Label":"4 ","right":1106171.4115,"bottom":7437840.5681,"col_index":0,"row_index":5}},{"id":7,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389553616],[9.936749653,55.389464324],[9.936906858,55.389464324],[9.936906858,55.389553616],[9.936749653,55.389553616]]]},"properties":{"id":7,"top":7437840.5681,"id_0":7,"left":1106153.9115,"Label":"5 ","right":1106171.4115,"bottom":7437823.0681,"col_index":0,"row_index":6}},{"id":8,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389464324],[9.936749653,55.389375032],[9.936906858,55.389375032],[9.936906858,55.389464324],[9.936749653,55.389464324]]]},"properties":{"id":8,"top":7437823.0681,"id_0":8,"left":1106153.9115,"Label":"6 ","right":1106171.4115,"bottom":7437805.5681,"col_index":0,"row_index":7}},{"id":9,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389375032],[9.936749653,55.38928574],[9.936906858,55.38928574],[9.936906858,55.389375032],[9.936749653,55.389375032]]]},"properties":{"id":9,"top":7437805.5681,"id_0":9,"left":1106153.9115,"Label":"7 ","right":1106171.4115,"bottom":7437788.0681,"col_index":0,"row_index":8}},{"id":10,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38928574],[9.936749653,55.389196448],[9.936906858,55.389196448],[9.936906858,55.38928574],[9.936749653,55.38928574]]]},"properties":{"id":10,"top":7437788.0681,"id_0":10,"left":1106153.9115,"Label":"8 ","right":1106171.4115,"bottom":7437770.5681,"col_index":0,"row_index":9}},{"id":11,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389196448],[9.936749653,55.389107155],[9.936906858,55.389107155],[9.936906858,55.389196448],[9.936749653,55.389196448]]]},"properties":{"id":11,"top":7437770.5681,"id_0":11,"left":1106153.9115,"Label":"9 ","right":1106171.4115,"bottom":7437753.0681,"col_index":0,"row_index":10}},{"id":12,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389107155],[9.936749653,55.389017863],[9.936906858,55.389017863],[9.936906858,55.389107155],[9.936749653,55.389107155]]]},"properties":{"id":12,"top":7437753.0681,"id_0":12,"left":1106153.9115,"Label":"10","right":1106171.4115,"bottom":7437735.5681,"col_index":0,"row_index":11}},{"id":13,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.389017863],[9.936749653,55.38892857],[9.936906858,55.38892857],[9.936906858,55.389017863],[9.936749653,55.389017863]]]},"properties":{"id":13,"top":7437735.5681,"id_0":13,"left":1106153.9115,"Label":"11","right":1106171.4115,"bottom":7437718.0681,"col_index":0,"row_index":12}},{"id":14,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38892857],[9.936749653,55.388839277],[9.936906858,55.388839277],[9.936906858,55.38892857],[9.936749653,55.38892857]]]},"properties":{"id":14,"top":7437718.0681,"id_0":14,"left":1106153.9115,"Label":"12","right":1106171.4115,"bottom":7437700.5681,"col_index":0,"row_index":13}},{"id":15,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.388839277],[9.936749653,55.388749984],[9.936906858,55.388749984],[9.936906858,55.388839277],[9.936749653,55.388839277]]]},"properties":{"id":15,"top":7437700.5681,"id_0":15,"left":1106153.9115,"Label":"13","right":1106171.4115,"bottom":7437683.0681,"col_index":0,"row_index":14}},{"id":143,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937064063,55.390089362],[9.937064063,55.390000071],[9.937221268,55.390000071],[9.937221268,55.390089362],[9.937064063,55.390089362]]]},"properties":{"id":143,"top":7437945.5681,"id_0":143,"left":1106188.9115,"Label":"A ","right":1106206.4115,"bottom":7437928.0681,"col_index":2,"row_index":0}},{"id":214,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937221268,55.390089362],[9.937221268,55.390000071],[9.937378474,55.390000071],[9.937378474,55.390089362],[9.937221268,55.390089362]]]},"properties":{"id":214,"top":7437945.5681,"id_0":214,"left":1106206.4115,"Label":"B ","right":1106223.9115,"bottom":7437928.0681,"col_index":3,"row_index":0}},{"id":285,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937378474,55.390089362],[9.937378474,55.390000071],[9.937535679,55.390000071],[9.937535679,55.390089362],[9.937378474,55.390089362]]]},"properties":{"id":285,"top":7437945.5681,"id_0":285,"left":1106223.9115,"Label":"C ","right":1106241.4115,"bottom":7437928.0681,"col_index":4,"row_index":0}},{"id":356,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937535679,55.390089362],[9.937535679,55.390000071],[9.937692884,55.390000071],[9.937692884,55.390089362],[9.937535679,55.390089362]]]},"properties":{"id":356,"top":7437945.5681,"id_0":356,"left":1106241.4115,"Label":"D ","right":1106258.9115,"bottom":7437928.0681,"col_index":5,"row_index":0}},{"id":427,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937692884,55.390089362],[9.937692884,55.390000071],[9.937850089,55.390000071],[9.937850089,55.390089362],[9.937692884,55.390089362]]]},"properties":{"id":427,"top":7437945.5681,"id_0":427,"left":1106258.9115,"Label":"E ","right":1106276.4115,"bottom":7437928.0681,"col_index":6,"row_index":0}},{"id":498,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.937850089,55.390089362],[9.937850089,55.390000071],[9.938007294,55.390000071],[9.938007294,55.390089362],[9.937850089,55.390089362]]]},"properties":{"id":498,"top":7437945.5681,"id_0":498,"left":1106276.4115,"Label":"F ","right":1106293.9115,"bottom":7437928.0681,"col_index":7,"row_index":0}},{"id":569,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938007294,55.390089362],[9.938007294,55.390000071],[9.938164499,55.390000071],[9.938164499,55.390089362],[9.938007294,55.390089362]]]},"properties":{"id":569,"top":7437945.5681,"id_0":569,"left":1106293.9115,"Label":"G ","right":1106311.4115,"bottom":7437928.0681,"col_index":8,"row_index":0}},{"id":640,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938164499,55.390089362],[9.938164499,55.390000071],[9.938321705,55.390000071],[9.938321705,55.390089362],[9.938164499,55.390089362]]]},"properties":{"id":640,"top":7437945.5681,"id_0":640,"left":1106311.4115,"Label":"H ","right":1106328.9115,"bottom":7437928.0681,"col_index":9,"row_index":0}},{"id":711,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938321705,55.390089362],[9.938321705,55.390000071],[9.93847891,55.390000071],[9.93847891,55.390089362],[9.938321705,55.390089362]]]},"properties":{"id":711,"top":7437945.5681,"id_0":711,"left":1106328.9115,"Label":"I ","right":1106346.4115,"bottom":7437928.0681,"col_index":10,"row_index":0}},{"id":782,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93847891,55.390089362],[9.93847891,55.390000071],[9.938636115,55.390000071],[9.938636115,55.390089362],[9.93847891,55.390089362]]]},"properties":{"id":782,"top":7437945.5681,"id_0":782,"left":1106346.4115,"Label":"J ","right":1106363.9115,"bottom":7437928.0681,"col_index":11,"row_index":0}},{"id":853,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938636115,55.390089362],[9.938636115,55.390000071],[9.93879332,55.390000071],[9.93879332,55.390089362],[9.938636115,55.390089362]]]},"properties":{"id":853,"top":7437945.5681,"id_0":853,"left":1106363.9115,"Label":"K ","right":1106381.4115,"bottom":7437928.0681,"col_index":12,"row_index":0}},{"id":924,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.93879332,55.390089362],[9.93879332,55.390000071],[9.938950525,55.390000071],[9.938950525,55.390089362],[9.93879332,55.390089362]]]},"properties":{"id":924,"top":7437945.5681,"id_0":924,"left":1106381.4115,"Label":"L ","right":1106398.9115,"bottom":7437928.0681,"col_index":13,"row_index":0}},{"id":995,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.938950525,55.390089362],[9.938950525,55.390000071],[9.939107731,55.390000071],[9.939107731,55.390089362],[9.938950525,55.390089362]]]},"properties":{"id":995,"top":7437945.5681,"id_0":995,"left":1106398.9115,"Label":"M ","right":1106416.4115,"bottom":7437928.0681,"col_index":14,"row_index":0}},{"id":1066,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939107731,55.390089362],[9.939107731,55.390000071],[9.939264936,55.390000071],[9.939264936,55.390089362],[9.939107731,55.390089362]]]},"properties":{"id":1066,"top":7437945.5681,"id_0":1066,"left":1106416.4115,"Label":"N ","right":1106433.9115,"bottom":7437928.0681,"col_index":15,"row_index":0}},{"id":1137,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939264936,55.390089362],[9.939264936,55.390000071],[9.939422141,55.390000071],[9.939422141,55.390089362],[9.939264936,55.390089362]]]},"properties":{"id":1137,"top":7437945.5681,"id_0":1137,"left":1106433.9115,"Label":"O ","right":1106451.4115,"bottom":7437928.0681,"col_index":16,"row_index":0}},{"id":1208,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939422141,55.390089362],[9.939422141,55.390000071],[9.939579346,55.390000071],[9.939579346,55.390089362],[9.939422141,55.390089362]]]},"properties":{"id":1208,"top":7437945.5681,"id_0":1208,"left":1106451.4115,"Label":"P ","right":1106468.9115,"bottom":7437928.0681,"col_index":17,"row_index":0}},{"id":1279,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939579346,55.390089362],[9.939579346,55.390000071],[9.939736551,55.390000071],[9.939736551,55.390089362],[9.939579346,55.390089362]]]},"properties":{"id":1279,"top":7437945.5681,"id_0":1279,"left":1106468.9115,"Label":"Q ","right":1106486.4115,"bottom":7437928.0681,"col_index":18,"row_index":0}},{"id":1350,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939736551,55.390089362],[9.939736551,55.390000071],[9.939893756,55.390000071],[9.939893756,55.390089362],[9.939736551,55.390089362]]]},"properties":{"id":1350,"top":7437945.5681,"id_0":1350,"left":1106486.4115,"Label":"R ","right":1106503.9115,"bottom":7437928.0681,"col_index":19,"row_index":0}},{"id":1421,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.939893756,55.390089362],[9.939893756,55.390000071],[9.940050962,55.390000071],[9.940050962,55.390089362],[9.939893756,55.390089362]]]},"properties":{"id":1421,"top":7437945.5681,"id_0":1421,"left":1106503.9115,"Label":"S ","right":1106521.4115,"bottom":7437928.0681,"col_index":20,"row_index":0}},{"id":1492,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940050962,55.390089362],[9.940050962,55.390000071],[9.940208167,55.390000071],[9.940208167,55.390089362],[9.940050962,55.390089362]]]},"properties":{"id":1492,"top":7437945.5681,"id_0":1492,"left":1106521.4115,"Label":"T ","right":1106538.9115,"bottom":7437928.0681,"col_index":21,"row_index":0}},{"id":1563,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940208167,55.390089362],[9.940208167,55.390000071],[9.940365372,55.390000071],[9.940365372,55.390089362],[9.940208167,55.390089362]]]},"properties":{"id":1563,"top":7437945.5681,"id_0":1563,"left":1106538.9115,"Label":"U ","right":1106556.4115,"bottom":7437928.0681,"col_index":22,"row_index":0}},{"id":1634,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940365372,55.390089362],[9.940365372,55.390000071],[9.940522577,55.390000071],[9.940522577,55.390089362],[9.940365372,55.390089362]]]},"properties":{"id":1634,"top":7437945.5681,"id_0":1634,"left":1106556.4115,"Label":"V ","right":1106573.9115,"bottom":7437928.0681,"col_index":23,"row_index":0}},{"id":1705,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940522577,55.390089362],[9.940522577,55.390000071],[9.940679782,55.390000071],[9.940679782,55.390089362],[9.940522577,55.390089362]]]},"properties":{"id":1705,"top":7437945.5681,"id_0":1705,"left":1106573.9115,"Label":"W ","right":1106591.4115,"bottom":7437928.0681,"col_index":24,"row_index":0}},{"id":1776,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940679782,55.390089362],[9.940679782,55.390000071],[9.940836987,55.390000071],[9.940836987,55.390089362],[9.940679782,55.390089362]]]},"properties":{"id":1776,"top":7437945.5681,"id_0":1776,"left":1106591.4115,"Label":"X ","right":1106608.9115,"bottom":7437928.0681,"col_index":25,"row_index":0}},{"id":1847,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940836987,55.390089362],[9.940836987,55.390000071],[9.940994193,55.390000071],[9.940994193,55.390089362],[9.940836987,55.390089362]]]},"properties":{"id":1847,"top":7437945.5681,"id_0":1847,"left":1106608.9115,"Label":"Y ","right":1106626.4115,"bottom":7437928.0681,"col_index":26,"row_index":0}},{"id":1918,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.940994193,55.390089362],[9.940994193,55.390000071],[9.941151398,55.390000071],[9.941151398,55.390089362],[9.940994193,55.390089362]]]},"properties":{"id":1918,"top":7437945.5681,"id_0":1918,"left":1106626.4115,"Label":"Z ","right":1106643.9115,"bottom":7437928.0681,"col_index":27,"row_index":0}},{"id":1989,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941151398,55.390089362],[9.941151398,55.390000071],[9.941308603,55.390000071],[9.941308603,55.390089362],[9.941151398,55.390089362]]]},"properties":{"id":1989,"top":7437945.5681,"id_0":1989,"left":1106643.9115,"Label":"AA","right":1106661.4115,"bottom":7437928.0681,"col_index":28,"row_index":0}},{"id":2060,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941308603,55.390089362],[9.941308603,55.390000071],[9.941465808,55.390000071],[9.941465808,55.390089362],[9.941308603,55.390089362]]]},"properties":{"id":2060,"top":7437945.5681,"id_0":2060,"left":1106661.4115,"Label":"AB","right":1106678.9115,"bottom":7437928.0681,"col_index":29,"row_index":0}},{"id":2131,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941465808,55.390089362],[9.941465808,55.390000071],[9.941623013,55.390000071],[9.941623013,55.390089362],[9.941465808,55.390089362]]]},"properties":{"id":2131,"top":7437945.5681,"id_0":2131,"left":1106678.9115,"Label":"AC","right":1106696.4115,"bottom":7437928.0681,"col_index":30,"row_index":0}},{"id":2202,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941623013,55.390089362],[9.941623013,55.390000071],[9.941780218,55.390000071],[9.941780218,55.390089362],[9.941623013,55.390089362]]]},"properties":{"id":2202,"top":7437945.5681,"id_0":2202,"left":1106696.4115,"Label":"AD","right":1106713.9115,"bottom":7437928.0681,"col_index":31,"row_index":0}},{"id":2273,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941780218,55.390089362],[9.941780218,55.390000071],[9.941937424,55.390000071],[9.941937424,55.390089362],[9.941780218,55.390089362]]]},"properties":{"id":2273,"top":7437945.5681,"id_0":2273,"left":1106713.9115,"Label":"AE","right":1106731.4115,"bottom":7437928.0681,"col_index":32,"row_index":0}},{"id":2344,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.941937424,55.390089362],[9.941937424,55.390000071],[9.942094629,55.390000071],[9.942094629,55.390089362],[9.941937424,55.390089362]]]},"properties":{"id":2344,"top":7437945.5681,"id_0":2344,"left":1106731.4115,"Label":"AF","right":1106748.9115,"bottom":7437928.0681,"col_index":33,"row_index":0}},{"id":2415,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942094629,55.390089362],[9.942094629,55.390000071],[9.942251834,55.390000071],[9.942251834,55.390089362],[9.942094629,55.390089362]]]},"properties":{"id":2415,"top":7437945.5681,"id_0":2415,"left":1106748.9115,"Label":"AG","right":1106766.4115,"bottom":7437928.0681,"col_index":34,"row_index":0}},{"id":2486,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942251834,55.390089362],[9.942251834,55.390000071],[9.942409039,55.390000071],[9.942409039,55.390089362],[9.942251834,55.390089362]]]},"properties":{"id":2486,"top":7437945.5681,"id_0":2486,"left":1106766.4115,"Label":"AH","right":1106783.9115,"bottom":7437928.0681,"col_index":35,"row_index":0}},{"id":2557,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942409039,55.390089362],[9.942409039,55.390000071],[9.942566244,55.390000071],[9.942566244,55.390089362],[9.942409039,55.390089362]]]},"properties":{"id":2557,"top":7437945.5681,"id_0":2557,"left":1106783.9115,"Label":"AI","right":1106801.4115,"bottom":7437928.0681,"col_index":36,"row_index":0}},{"id":2628,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942566244,55.390089362],[9.942566244,55.390000071],[9.94272345,55.390000071],[9.94272345,55.390089362],[9.942566244,55.390089362]]]},"properties":{"id":2628,"top":7437945.5681,"id_0":2628,"left":1106801.4115,"Label":"AJ","right":1106818.9115,"bottom":7437928.0681,"col_index":37,"row_index":0}},{"id":2699,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94272345,55.390089362],[9.94272345,55.390000071],[9.942880655,55.390000071],[9.942880655,55.390089362],[9.94272345,55.390089362]]]},"properties":{"id":2699,"top":7437945.5681,"id_0":2699,"left":1106818.9115,"Label":"AK","right":1106836.4115,"bottom":7437928.0681,"col_index":38,"row_index":0}},{"id":2770,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.942880655,55.390089362],[9.942880655,55.390000071],[9.94303786,55.390000071],[9.94303786,55.390089362],[9.942880655,55.390089362]]]},"properties":{"id":2770,"top":7437945.5681,"id_0":2770,"left":1106836.4115,"Label":"AL","right":1106853.9115,"bottom":7437928.0681,"col_index":39,"row_index":0}},{"id":2841,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94303786,55.390089362],[9.94303786,55.390000071],[9.943195065,55.390000071],[9.943195065,55.390089362],[9.94303786,55.390089362]]]},"properties":{"id":2841,"top":7437945.5681,"id_0":2841,"left":1106853.9115,"Label":"AM","right":1106871.4115,"bottom":7437928.0681,"col_index":40,"row_index":0}},{"id":2912,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943195065,55.390089362],[9.943195065,55.390000071],[9.94335227,55.390000071],[9.94335227,55.390089362],[9.943195065,55.390089362]]]},"properties":{"id":2912,"top":7437945.5681,"id_0":2912,"left":1106871.4115,"Label":"AN","right":1106888.9115,"bottom":7437928.0681,"col_index":41,"row_index":0}},{"id":2983,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.94335227,55.390089362],[9.94335227,55.390000071],[9.943509475,55.390000071],[9.943509475,55.390089362],[9.94335227,55.390089362]]]},"properties":{"id":2983,"top":7437945.5681,"id_0":2983,"left":1106888.9115,"Label":"AO","right":1106906.4115,"bottom":7437928.0681,"col_index":42,"row_index":0}},{"id":3054,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.943509475,55.390089362],[9.943509475,55.390000071],[9.943666681,55.390000071],[9.943666681,55.390089362],[9.943509475,55.390089362]]]},"properties":{"id":3054,"top":7437945.5681,"id_0":3054,"left":1106906.4115,"Label":"AP","right":1106923.9115,"bottom":7437928.0681,"col_index":43,"row_index":0}},{"id":28,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387678448],[9.936749653,55.387589153],[9.936906858,55.387589153],[9.936906858,55.387678448],[9.936749653,55.387678448]]]},"properties":{"id":28,"top":7437473.0681,"id_0":28,"left":1106153.9115,"Label":"26","right":1106171.4115,"bottom":7437455.5681,"col_index":0,"row_index":27}},{"id":29,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387589153],[9.936749653,55.387499856],[9.936906858,55.387499856],[9.936906858,55.387589153],[9.936749653,55.387589153]]]},"properties":{"id":29,"top":7437455.5681,"id_0":29,"left":1106153.9115,"Label":"27","right":1106171.4115,"bottom":7437438.0681,"col_index":0,"row_index":28}},{"id":30,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387499856],[9.936749653,55.38741056],[9.936906858,55.38741056],[9.936906858,55.387499856],[9.936749653,55.387499856]]]},"properties":{"id":30,"top":7437438.0681,"id_0":30,"left":1106153.9115,"Label":"28","right":1106171.4115,"bottom":7437420.5681,"col_index":0,"row_index":29}},{"id":31,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38741056],[9.936749653,55.387321264],[9.936906858,55.387321264],[9.936906858,55.38741056],[9.936749653,55.38741056]]]},"properties":{"id":31,"top":7437420.5681,"id_0":31,"left":1106153.9115,"Label":"29","right":1106171.4115,"bottom":7437403.0681,"col_index":0,"row_index":30}},{"id":32,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387321264],[9.936749653,55.387231967],[9.936906858,55.387231967],[9.936906858,55.387321264],[9.936749653,55.387321264]]]},"properties":{"id":32,"top":7437403.0681,"id_0":32,"left":1106153.9115,"Label":"30","right":1106171.4115,"bottom":7437385.5681,"col_index":0,"row_index":31}},{"id":33,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387231967],[9.936749653,55.38714267],[9.936906858,55.38714267],[9.936906858,55.387231967],[9.936749653,55.387231967]]]},"properties":{"id":33,"top":7437385.5681,"id_0":33,"left":1106153.9115,"Label":"31","right":1106171.4115,"bottom":7437368.0681,"col_index":0,"row_index":32}},{"id":34,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38714267],[9.936749653,55.387053373],[9.936906858,55.387053373],[9.936906858,55.38714267],[9.936749653,55.38714267]]]},"properties":{"id":34,"top":7437368.0681,"id_0":34,"left":1106153.9115,"Label":"32","right":1106171.4115,"bottom":7437350.5681,"col_index":0,"row_index":33}},{"id":35,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.387053373],[9.936749653,55.386964076],[9.936906858,55.386964076],[9.936906858,55.387053373],[9.936749653,55.387053373]]]},"properties":{"id":35,"top":7437350.5681,"id_0":35,"left":1106153.9115,"Label":"33","right":1106171.4115,"bottom":7437333.0681,"col_index":0,"row_index":34}},{"id":36,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386964076],[9.936749653,55.386874778],[9.936906858,55.386874778],[9.936906858,55.386964076],[9.936749653,55.386964076]]]},"properties":{"id":36,"top":7437333.0681,"id_0":36,"left":1106153.9115,"Label":"34","right":1106171.4115,"bottom":7437315.5681,"col_index":0,"row_index":35}},{"id":37,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386874778],[9.936749653,55.38678548],[9.936906858,55.38678548],[9.936906858,55.386874778],[9.936749653,55.386874778]]]},"properties":{"id":37,"top":7437315.5681,"id_0":37,"left":1106153.9115,"Label":"35","right":1106171.4115,"bottom":7437298.0681,"col_index":0,"row_index":36}},{"id":38,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38678548],[9.936749653,55.386696182],[9.936906858,55.386696182],[9.936906858,55.38678548],[9.936749653,55.38678548]]]},"properties":{"id":38,"top":7437298.0681,"id_0":38,"left":1106153.9115,"Label":"36","right":1106171.4115,"bottom":7437280.5681,"col_index":0,"row_index":37}},{"id":39,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386696182],[9.936749653,55.386606884],[9.936906858,55.386606884],[9.936906858,55.386696182],[9.936749653,55.386696182]]]},"properties":{"id":39,"top":7437280.5681,"id_0":39,"left":1106153.9115,"Label":"37","right":1106171.4115,"bottom":7437263.0681,"col_index":0,"row_index":38}},{"id":40,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386606884],[9.936749653,55.386517586],[9.936906858,55.386517586],[9.936906858,55.386606884],[9.936749653,55.386606884]]]},"properties":{"id":40,"top":7437263.0681,"id_0":40,"left":1106153.9115,"Label":"38","right":1106171.4115,"bottom":7437245.5681,"col_index":0,"row_index":39}},{"id":41,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386517586],[9.936749653,55.386428287],[9.936906858,55.386428287],[9.936906858,55.386517586],[9.936749653,55.386517586]]]},"properties":{"id":41,"top":7437245.5681,"id_0":41,"left":1106153.9115,"Label":"39","right":1106171.4115,"bottom":7437228.0681,"col_index":0,"row_index":40}},{"id":42,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386428287],[9.936749653,55.386338989],[9.936906858,55.386338989],[9.936906858,55.386428287],[9.936749653,55.386428287]]]},"properties":{"id":42,"top":7437228.0681,"id_0":42,"left":1106153.9115,"Label":"40","right":1106171.4115,"bottom":7437210.5681,"col_index":0,"row_index":41}},{"id":43,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386338989],[9.936749653,55.38624969],[9.936906858,55.38624969],[9.936906858,55.386338989],[9.936749653,55.386338989]]]},"properties":{"id":43,"top":7437210.5681,"id_0":43,"left":1106153.9115,"Label":"41","right":1106171.4115,"bottom":7437193.0681,"col_index":0,"row_index":42}},{"id":44,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38624969],[9.936749653,55.386160391],[9.936906858,55.386160391],[9.936906858,55.38624969],[9.936749653,55.38624969]]]},"properties":{"id":44,"top":7437193.0681,"id_0":44,"left":1106153.9115,"Label":"42","right":1106171.4115,"bottom":7437175.5681,"col_index":0,"row_index":43}},{"id":45,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386160391],[9.936749653,55.386071091],[9.936906858,55.386071091],[9.936906858,55.386160391],[9.936749653,55.386160391]]]},"properties":{"id":45,"top":7437175.5681,"id_0":45,"left":1106153.9115,"Label":"43","right":1106171.4115,"bottom":7437158.0681,"col_index":0,"row_index":44}},{"id":46,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.386071091],[9.936749653,55.385981792],[9.936906858,55.385981792],[9.936906858,55.386071091],[9.936749653,55.386071091]]]},"properties":{"id":46,"top":7437158.0681,"id_0":46,"left":1106153.9115,"Label":"44","right":1106171.4115,"bottom":7437140.5681,"col_index":0,"row_index":45}},{"id":47,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385981792],[9.936749653,55.385892492],[9.936906858,55.385892492],[9.936906858,55.385981792],[9.936749653,55.385981792]]]},"properties":{"id":47,"top":7437140.5681,"id_0":47,"left":1106153.9115,"Label":"45","right":1106171.4115,"bottom":7437123.0681,"col_index":0,"row_index":46}},{"id":48,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385892492],[9.936749653,55.385803192],[9.936906858,55.385803192],[9.936906858,55.385892492],[9.936749653,55.385892492]]]},"properties":{"id":48,"top":7437123.0681,"id_0":48,"left":1106153.9115,"Label":"46","right":1106171.4115,"bottom":7437105.5681,"col_index":0,"row_index":47}},{"id":49,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385803192],[9.936749653,55.385713892],[9.936906858,55.385713892],[9.936906858,55.385803192],[9.936749653,55.385803192]]]},"properties":{"id":49,"top":7437105.5681,"id_0":49,"left":1106153.9115,"Label":"47","right":1106171.4115,"bottom":7437088.0681,"col_index":0,"row_index":48}},{"id":50,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385713892],[9.936749653,55.385624592],[9.936906858,55.385624592],[9.936906858,55.385713892],[9.936749653,55.385713892]]]},"properties":{"id":50,"top":7437088.0681,"id_0":50,"left":1106153.9115,"Label":"48","right":1106171.4115,"bottom":7437070.5681,"col_index":0,"row_index":49}},{"id":51,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385624592],[9.936749653,55.385535291],[9.936906858,55.385535291],[9.936906858,55.385624592],[9.936749653,55.385624592]]]},"properties":{"id":51,"top":7437070.5681,"id_0":51,"left":1106153.9115,"Label":"49","right":1106171.4115,"bottom":7437053.0681,"col_index":0,"row_index":50}},{"id":52,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385535291],[9.936749653,55.38544599],[9.936906858,55.38544599],[9.936906858,55.385535291],[9.936749653,55.385535291]]]},"properties":{"id":52,"top":7437053.0681,"id_0":52,"left":1106153.9115,"Label":"50","right":1106171.4115,"bottom":7437035.5681,"col_index":0,"row_index":51}},{"id":53,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38544599],[9.936749653,55.385356689],[9.936906858,55.385356689],[9.936906858,55.38544599],[9.936749653,55.38544599]]]},"properties":{"id":53,"top":7437035.5681,"id_0":53,"left":1106153.9115,"Label":"51","right":1106171.4115,"bottom":7437018.0681,"col_index":0,"row_index":52}},{"id":54,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385356689],[9.936749653,55.385267388],[9.936906858,55.385267388],[9.936906858,55.385356689],[9.936749653,55.385356689]]]},"properties":{"id":54,"top":7437018.0681,"id_0":54,"left":1106153.9115,"Label":"52","right":1106171.4115,"bottom":7437000.5681,"col_index":0,"row_index":53}},{"id":55,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385267388],[9.936749653,55.385178087],[9.936906858,55.385178087],[9.936906858,55.385267388],[9.936749653,55.385267388]]]},"properties":{"id":55,"top":7437000.5681,"id_0":55,"left":1106153.9115,"Label":"53","right":1106171.4115,"bottom":7436983.0681,"col_index":0,"row_index":54}},{"id":56,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385178087],[9.936749653,55.385088785],[9.936906858,55.385088785],[9.936906858,55.385178087],[9.936749653,55.385178087]]]},"properties":{"id":56,"top":7436983.0681,"id_0":56,"left":1106153.9115,"Label":"54","right":1106171.4115,"bottom":7436965.5681,"col_index":0,"row_index":55}},{"id":57,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.385088785],[9.936749653,55.384999484],[9.936906858,55.384999484],[9.936906858,55.385088785],[9.936749653,55.385088785]]]},"properties":{"id":57,"top":7436965.5681,"id_0":57,"left":1106153.9115,"Label":"55","right":1106171.4115,"bottom":7436948.0681,"col_index":0,"row_index":56}},{"id":58,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384999484],[9.936749653,55.384910182],[9.936906858,55.384910182],[9.936906858,55.384999484],[9.936749653,55.384999484]]]},"properties":{"id":58,"top":7436948.0681,"id_0":58,"left":1106153.9115,"Label":"56","right":1106171.4115,"bottom":7436930.5681,"col_index":0,"row_index":57}},{"id":59,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384910182],[9.936749653,55.38482088],[9.936906858,55.38482088],[9.936906858,55.384910182],[9.936749653,55.384910182]]]},"properties":{"id":59,"top":7436930.5681,"id_0":59,"left":1106153.9115,"Label":"57","right":1106171.4115,"bottom":7436913.0681,"col_index":0,"row_index":58}},{"id":60,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.38482088],[9.936749653,55.384731577],[9.936906858,55.384731577],[9.936906858,55.38482088],[9.936749653,55.38482088]]]},"properties":{"id":60,"top":7436913.0681,"id_0":60,"left":1106153.9115,"Label":"58","right":1106171.4115,"bottom":7436895.5681,"col_index":0,"row_index":59}},{"id":61,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384731577],[9.936749653,55.384642275],[9.936906858,55.384642275],[9.936906858,55.384731577],[9.936749653,55.384731577]]]},"properties":{"id":61,"top":7436895.5681,"id_0":61,"left":1106153.9115,"Label":"59","right":1106171.4115,"bottom":7436878.0681,"col_index":0,"row_index":60}},{"id":62,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384642275],[9.936749653,55.384552972],[9.936906858,55.384552972],[9.936906858,55.384642275],[9.936749653,55.384642275]]]},"properties":{"id":62,"top":7436878.0681,"id_0":62,"left":1106153.9115,"Label":"60","right":1106171.4115,"bottom":7436860.5681,"col_index":0,"row_index":61}},{"id":63,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384552972],[9.936749653,55.384463669],[9.936906858,55.384463669],[9.936906858,55.384552972],[9.936749653,55.384552972]]]},"properties":{"id":63,"top":7436860.5681,"id_0":63,"left":1106153.9115,"Label":"61","right":1106171.4115,"bottom":7436843.0681,"col_index":0,"row_index":62}},{"id":64,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384463669],[9.936749653,55.384374366],[9.936906858,55.384374366],[9.936906858,55.384463669],[9.936749653,55.384463669]]]},"properties":{"id":64,"top":7436843.0681,"id_0":64,"left":1106153.9115,"Label":"62","right":1106171.4115,"bottom":7436825.5681,"col_index":0,"row_index":63}},{"id":65,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384374366],[9.936749653,55.384285062],[9.936906858,55.384285062],[9.936906858,55.384374366],[9.936749653,55.384374366]]]},"properties":{"id":65,"top":7436825.5681,"id_0":65,"left":1106153.9115,"Label":"63","right":1106171.4115,"bottom":7436808.0681,"col_index":0,"row_index":64}},{"id":66,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384285062],[9.936749653,55.384195759],[9.936906858,55.384195759],[9.936906858,55.384285062],[9.936749653,55.384285062]]]},"properties":{"id":66,"top":7436808.0681,"id_0":66,"left":1106153.9115,"Label":"64","right":1106171.4115,"bottom":7436790.5681,"col_index":0,"row_index":65}},{"id":67,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384195759],[9.936749653,55.384106455],[9.936906858,55.384106455],[9.936906858,55.384195759],[9.936749653,55.384195759]]]},"properties":{"id":67,"top":7436790.5681,"id_0":67,"left":1106153.9115,"Label":"65","right":1106171.4115,"bottom":7436773.0681,"col_index":0,"row_index":66}},{"id":68,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384106455],[9.936749653,55.384017151],[9.936906858,55.384017151],[9.936906858,55.384106455],[9.936749653,55.384106455]]]},"properties":{"id":68,"top":7436773.0681,"id_0":68,"left":1106153.9115,"Label":"66","right":1106171.4115,"bottom":7436755.5681,"col_index":0,"row_index":67}},{"id":69,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.384017151],[9.936749653,55.383927847],[9.936906858,55.383927847],[9.936906858,55.384017151],[9.936749653,55.384017151]]]},"properties":{"id":69,"top":7436755.5681,"id_0":69,"left":1106153.9115,"Label":"67","right":1106171.4115,"bottom":7436738.0681,"col_index":0,"row_index":68}},{"id":70,"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.936749653,55.383927847],[9.936749653,55.383838543],[9.936906858,55.383838543],[9.936906858,55.383927847],[9.936749653,55.383927847]]]},"properties":{"id":70,"top":7436738.0681,"id_0":70,"left":1106153.9115,"Label":"68","right":1106171.4115,"bottom":7436720.5681,"col_index":0,"row_index":69}}]} diff --git a/src/static_src/vendor/leaflet-fullscreen/LICENSE b/src/static_src/vendor/leaflet-fullscreen/LICENSE new file mode 100644 index 000000000..25af556a8 --- /dev/null +++ b/src/static_src/vendor/leaflet-fullscreen/LICENSE @@ -0,0 +1,5 @@ +Copyright (c) 2015, MapBox + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/src/static_src/vendor/leaflet-fullscreen/Leaflet.fullscreen.min.js b/src/static_src/vendor/leaflet-fullscreen/Leaflet.fullscreen.min.js new file mode 100644 index 000000000..41071277a --- /dev/null +++ b/src/static_src/vendor/leaflet-fullscreen/Leaflet.fullscreen.min.js @@ -0,0 +1 @@ +(function(factory){var L;if(typeof define==="function"&&define.amd){define(["leaflet"],factory)}else if(typeof module!=="undefined"){L=require("leaflet");module.exports=factory(L)}else{if(typeof window.L==="undefined"){throw new Error("Leaflet must be loaded first")}factory(window.L)}})(function(L){L.Control.Fullscreen=L.Control.extend({options:{position:"topleft",title:{"false":"View Fullscreen","true":"Exit Fullscreen"}},onAdd:function(map){var container=L.DomUtil.create("div","leaflet-control-fullscreen leaflet-bar leaflet-control");this.link=L.DomUtil.create("a","leaflet-control-fullscreen-button leaflet-bar-part",container);this.link.href="#";this._map=map;this._map.on("fullscreenchange",this._toggleTitle,this);this._toggleTitle();L.DomEvent.on(this.link,"click",this._click,this);return container},_click:function(e){L.DomEvent.stopPropagation(e);L.DomEvent.preventDefault(e);this._map.toggleFullscreen(this.options)},_toggleTitle:function(){this.link.title=this.options.title[this._map.isFullscreen()]}});L.Map.include({isFullscreen:function(){return this._isFullscreen||false},toggleFullscreen:function(options){var container=this.getContainer();if(this.isFullscreen()){if(options&&options.pseudoFullscreen){this._disablePseudoFullscreen(container)}else if(document.exitFullscreen){document.exitFullscreen()}else if(document.mozCancelFullScreen){document.mozCancelFullScreen()}else if(document.webkitCancelFullScreen){document.webkitCancelFullScreen()}else if(document.msExitFullscreen){document.msExitFullscreen()}else{this._disablePseudoFullscreen(container)}}else{if(options&&options.pseudoFullscreen){this._enablePseudoFullscreen(container)}else if(container.requestFullscreen){container.requestFullscreen()}else if(container.mozRequestFullScreen){container.mozRequestFullScreen()}else if(container.webkitRequestFullscreen){container.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT)}else if(container.msRequestFullscreen){container.msRequestFullscreen()}else{this._enablePseudoFullscreen(container)}}},_enablePseudoFullscreen:function(container){L.DomUtil.addClass(container,"leaflet-pseudo-fullscreen");this._setFullscreen(true);this.fire("fullscreenchange")},_disablePseudoFullscreen:function(container){L.DomUtil.removeClass(container,"leaflet-pseudo-fullscreen");this._setFullscreen(false);this.fire("fullscreenchange")},_setFullscreen:function(fullscreen){this._isFullscreen=fullscreen;var container=this.getContainer();if(fullscreen){L.DomUtil.addClass(container,"leaflet-fullscreen-on")}else{L.DomUtil.removeClass(container,"leaflet-fullscreen-on")}this.invalidateSize()},_onFullscreenChange:function(e){var fullscreenElement=document.fullscreenElement||document.mozFullScreenElement||document.webkitFullscreenElement||document.msFullscreenElement;if(fullscreenElement===this.getContainer()&&!this._isFullscreen){this._setFullscreen(true);this.fire("fullscreenchange")}else if(fullscreenElement!==this.getContainer()&&this._isFullscreen){this._setFullscreen(false);this.fire("fullscreenchange")}}});L.Map.mergeOptions({fullscreenControl:false});L.Map.addInitHook(function(){if(this.options.fullscreenControl){this.fullscreenControl=new L.Control.Fullscreen(this.options.fullscreenControl);this.addControl(this.fullscreenControl)}var fullscreenchange;if("onfullscreenchange"in document){fullscreenchange="fullscreenchange"}else if("onmozfullscreenchange"in document){fullscreenchange="mozfullscreenchange"}else if("onwebkitfullscreenchange"in document){fullscreenchange="webkitfullscreenchange"}else if("onmsfullscreenchange"in document){fullscreenchange="MSFullscreenChange"}if(fullscreenchange){var onFullscreenChange=L.bind(this._onFullscreenChange,this);this.whenReady(function(){L.DomEvent.on(document,fullscreenchange,onFullscreenChange)});this.on("unload",function(){L.DomEvent.off(document,fullscreenchange,onFullscreenChange)})}});L.control.fullscreen=function(options){return new L.Control.Fullscreen(options)}}); diff --git a/src/static_src/vendor/leaflet-fullscreen/fullscreen.png b/src/static_src/vendor/leaflet-fullscreen/fullscreen.png new file mode 100644 index 0000000000000000000000000000000000000000..7384960aeb574240163a493a151fead20dc0611a GIT binary patch literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^Qb26N!3HF!ywT_YQY^(zo*^7SP{WY|;&T>wL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4qJR0?c|VVoi#&H*nzk><=VJ7@HQU1Z_V>w`?l#_f{i*8umu)iddGww* z>3vx+!GG1OU;EWUx0X~hxG2rq^x@2zjVbjX|F1ZfDD>^!i>Z@e=`4{;y0s+g&91Al p8%^ww-;@2hQY^(zo*^7SP{WbZ0pxQQctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@`?%7!^HT z978JRyuIbf*JL2VaIybmlC5OHCOKa72`f5-7F_i-&hI_2WYN~Lh-s=-MZdrEUP%*} z>sZ2eQPQPc-_~GhNruVq5#|tNZ+oU=grd-gUnYNV=qh zG%mj`vhJT;R_We%ZYLD1nqTlNvfit=eS6-uth>4XAS32xbAe3_xBA?>tb=y5HuU z3;cF;mu&UdD*aXc7p&&~tXS+n%cpkMnWxvJ=SIz`_Afs_0puwZOTbRIWrz!l?^k@w RJ`)(C44$rjF6*2UngH1ls0082 literal 0 HcmV?d00001 diff --git a/src/static_src/vendor/leaflet-fullscreen/leaflet.fullscreen.css b/src/static_src/vendor/leaflet-fullscreen/leaflet.fullscreen.css new file mode 100644 index 000000000..f4892578e --- /dev/null +++ b/src/static_src/vendor/leaflet-fullscreen/leaflet.fullscreen.css @@ -0,0 +1,40 @@ +.leaflet-control-fullscreen a { + background:#fff url(fullscreen.png) no-repeat 0 0; + background-size:26px 52px; + } + .leaflet-touch .leaflet-control-fullscreen a { + background-position: 2px 2px; + } + .leaflet-fullscreen-on .leaflet-control-fullscreen a { + background-position:0 -26px; + } + .leaflet-touch.leaflet-fullscreen-on .leaflet-control-fullscreen a { + background-position: 2px -24px; + } + +/* Do not combine these two rules; IE will break. */ +.leaflet-container:-webkit-full-screen { + width:100%!important; + height:100%!important; + } +.leaflet-container.leaflet-fullscreen-on { + width:100%!important; + height:100%!important; + } + +.leaflet-pseudo-fullscreen { + position:fixed!important; + width:100%!important; + height:100%!important; + top:0!important; + left:0!important; + z-index:99999; + } + +@media + (-webkit-min-device-pixel-ratio:2), + (min-resolution:192dpi) { + .leaflet-control-fullscreen a { + background-image:url(fullscreen@2x.png); + } + } diff --git a/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.css b/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.css new file mode 100644 index 000000000..91b3e0cf3 --- /dev/null +++ b/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.css @@ -0,0 +1,16 @@ +/*! @preserve + * Leaflet Panel Layers v1.3.1 - 2022-11-18 + * + * Copyright 2022 Stefano Cudini + * stefano.cudini@gmail.com + * https://opengeo.tech/ + * + * Licensed under the MIT license. + * + * Demos: + * https://opengeo.tech/maps/leaflet-panel-layers/ + * + * Source: + * git@github.com:stefanocudini/leaflet-panel-layers.git + */ +.leaflet-panel-layers .leaflet-panel-layers-list{display:block}.leaflet-panel-layers.expanded .leaflet-panel-layers-list{display:block}.leaflet-top.leaflet-right .leaflet-panel-layers:not(.compact){margin:0}.leaflet-panel-layers{width:30px;min-width:30px}.leaflet-panel-layers.expanded{width:auto;overflow-x:hidden;overflow-y:auto}.leaflet-panel-layers.expanded .leaflet-panel-layers-list{display:block}.leaflet-panel-layers:not(.expanded) .leaflet-panel-layers-grouplabel,.leaflet-panel-layers:not(.expanded) .leaflet-panel-layers-selector,.leaflet-panel-layers:not(.expanded) .leaflet-panel-layers-title>span{display:none}.leaflet-panel-layers-separator{clear:both}.leaflet-panel-layers-item .leaflet-panel-layers-title{display:block;white-space:nowrap;float:none;cursor:pointer}.leaflet-panel-layers-title .leaflet-panel-layers-selector{float:right}.leaflet-panel-layers-group{position:relative;width:auto;height:auto;clear:both;overflow:hidden}.leaflet-panel-layers-icon{text-align:center;float:left}.leaflet-panel-layers-group.collapsible:not(.expanded){height:25px}.leaflet-panel-layers-group.collapsible:not(.expanded) .leaflet-panel-layers-grouplabel{height:20px;overflow:hidden}.leaflet-panel-layers-group.collapsible:not(.expanded) .leaflet-panel-layers-item{display:none}.leaflet-panel-layers-group.collapsible .leaflet-panel-layers-grouplabel{display:block;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.leaflet-panel-layers-item{display:block;height:auto;clear:both;white-space:nowrap;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.leaflet-panel-layers-overlays .leaflet-panel-layers-item{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;width:auto;display:block}.leaflet-panel-layers-base .leaflet-panel-layers-selector{float:left}.leaflet-panel-layers-overlays .leaflet-panel-layers-selector{float:right}.leaflet-panel-layers.expanded .leaflet-panel-layers-overlays input{display:block}.leaflet-control-layers-selector{float:left}.leaflet-panel-layers-grouplabel .leaflet-panel-layers-selector{visibility:hidden;position:absolute;top:1px;right:7px}.leaflet-panel-layers-group:hover .leaflet-panel-layers-selector{visibility:visible}.leaflet-panel-layers{padding:4px;background:rgba(255,255,255,.5);box-shadow:-2px 0 8px rgba(0,0,0,.3)}.leaflet-panel-layers.expanded{padding:4px}.leaflet-panel-layers-selector{position:relative;top:1px;margin-top:2px}.leaflet-panel-layers-separator{height:8px;margin:12px 4px 0 4px;border-top:1px solid rgba(0,0,0,.3)}.leaflet-panel-layers-item{min-height:20px}.leaflet-panel-layers-margin{height:25px}.leaflet-panel-layers-icon{line-height:20px;display:inline-block;height:20px;width:20px;background:#fff}.leaflet-panel-layers-group.collapsible .leaflet-panel-layers-icon:first-child{min-width:20px;font-size:16px;text-align:center;background:0 0}.leaflet-panel-layers-group{padding:2px 4px;margin-bottom:4px;border:1px solid rgba(0,0,0,.3);background:rgba(255,255,255,.6);border-radius:3px}.leaflet-panel-layers-overlays .leaflet-panel-layers-item{margin-bottom:4px;padding:2px;background:#fff;border:1px solid rgba(0,0,0,.3);border-radius:4px}.leaflet-panel-layers-overlays .leaflet-panel-layers-item:hover{border:1px solid #888;cursor:pointer} diff --git a/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.js b/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.js new file mode 100644 index 000000000..1d9873204 --- /dev/null +++ b/src/static_src/vendor/leaflet-panel-layers/leaflet-panel-layers.min.js @@ -0,0 +1,16 @@ +/*! @preserve + * Leaflet Panel Layers v1.3.1 - 2022-11-18 + * + * Copyright 2022 Stefano Cudini + * stefano.cudini@gmail.com + * https://opengeo.tech/ + * + * Licensed under the MIT license. + * + * Demos: + * https://opengeo.tech/maps/leaflet-panel-layers/ + * + * Source: + * git@github.com:stefanocudini/leaflet-panel-layers.git + */ +!function(e){if("function"==typeof define&&define.amd)define(["leaflet"],e);else if("undefined"!=typeof module)module.exports=e(require("leaflet"));else{if(void 0===window.L)throw"Leaflet must be loaded first";e(window.L)}}(function(l){return l.Control.PanelLayers=l.Control.Layers.extend({includes:"1"===l.version[0]?l.Evented.prototype:l.Mixin.Events,options:{compact:!1,compactOffset:0,collapsed:!1,autoZIndex:!0,collapsibleGroups:!1,selectorGroup:!1,buildItem:null,title:"",className:"",position:"topright"},initialize:function(e,t,a){var i,s,r;for(i in l.setOptions(this,a),this._layers=[],this._groups={},this._items={},this._layersActives=[],this._lastZIndex=0,this._handlingClick=!1,this.className="leaflet-panel-layers",e)if(e[i].group&&e[i].layers)for(s in r=e[i].collapsed||!1,e[i].layers)this._addLayer(e[i].layers[s],!1,e[i].group,r);else this._addLayer(e[i],!1);for(i in t)if(t[i].group&&t[i].layers)for(s in r=t[i].collapsed||!1,t[i].layers)this._addLayer(t[i].layers[s],!0,t[i].group,r);else this._addLayer(t[i],!0)},onAdd:function(e){var t,a=this;for(t in this._layersActives)e.addLayer(this._layersActives[t]);return l.Control.Layers.prototype.onAdd.call(this,e),this._map.on("resize",function(e){a._updateHeight(e.newSize.y)}),this._onInputClick(),this._container},addBaseLayer:function(e,t,a){return e.name=t||e.name||"",this._addLayer(e,!1,a),this._update(),this},addOverlay:function(e,t,a){return e.name=t||e.name||"",this._addLayer(e,!0,a),this._update(),this},removeLayer:function(e){e=e.hasOwnProperty("layer")?this._layerFromDef(e):e;return this._map.removeLayer(e),l.Control.Layers.prototype.removeLayer.call(this,e),this},clearLayers:function(){for(var e=0;e"+this.options.title+"",t.appendChild(e)),t.appendChild(this._form)},_updateHeight:function(e){e=e||this._map.getSize().y,this.options.compact?this._form.style.maxHeight=e-this.options.compactOffset+"px":this._form.style.height=e+"px"},_expand:function(){l.DomUtil.addClass(this._container,"expanded")},_collapse:function(){this._container.className=this._container.className.replace("expanded","")},_getPath:function(e,t){var a=t.split("."),t=a.pop(),i=a.length,s=a[0],r=1;if(0 0.2126 * r + 0.7152 * g + 0.0722 * b; // per ITU-R BT.709 + const isDark = (r, g, b) => getLightness(r, g, b) < 150; + const isLight = (r, g, b) => getLightness(r, g, b) > 150; + var iconClass, iconSpinClass = "", iconColorClass = "", iconColorStyle = "", options = this.options; + var r = 0, g = 0, b = 0; + if(options.color) { + var bigint = parseInt(options.color.replace("#",""), 16); + r = (bigint >> 16) & 255; + g = (bigint >> 8) & 255; + b = bigint & 255; + if(isDark(r,g,b)) iconColorClass = "icon-white"; + if(isLight(r,g,b)) iconColorClass = "icon-black"; + } + + if(options.icon.slice(0,options.prefix.length+1) === options.prefix + "-") { + iconClass = options.icon; + } else { + iconClass = options.prefix + "-" + options.icon; + } + + if(options.spin && typeof options.spinClass === "string") { + iconSpinClass = options.spinClass; + } + + if(options.iconColor && iconColorClass === "") { + if(options.iconColor === 'white' || options.iconColor === 'black') { + iconColorClass = "icon-" + options.iconColor; + } else { + iconColorStyle = "style='color: " + options.iconColor + "' "; + } + } + + return ""; + }, + + _setIconStyles: function (img, name) { + var options = this.options, + size = L.point(options[name === 'shadow' ? 'shadowSize' : 'iconSize']), + anchor; + + if (name === 'shadow') { + anchor = L.point(options.shadowAnchor || options.iconAnchor); + } else { + anchor = L.point(options.iconAnchor); + } + + if (!anchor && size) { + anchor = size.divideBy(2, true); + } + + img.className = 'awesome-marker-' + name + ' ' + options.className; + + if (anchor) { + img.style.marginLeft = (-anchor.x) + 'px'; + img.style.marginTop = (-anchor.y) + 'px'; + } + + if (size) { + img.style.width = size.x + 'px'; + img.style.height = size.y + 'px'; + } + }, + + createShadow: function () { + var div = document.createElement('div'); + + this._setIconStyles(div, 'shadow'); + return div; + } + }); + + L.AwesomeMarkers.icon = function (options) { + return new L.AwesomeMarkers.Icon(options); + }; + +}(this, document)); diff --git a/src/static_src/js/leaflet.js b/src/static_src/vendor/leaflet/leaflet.js similarity index 100% rename from src/static_src/js/leaflet.js rename to src/static_src/vendor/leaflet/leaflet.js diff --git a/src/static_src/js/proj4.js b/src/static_src/vendor/leaflet/proj4.js similarity index 100% rename from src/static_src/js/proj4.js rename to src/static_src/vendor/leaflet/proj4.js diff --git a/src/static_src/js/proj4leaflet.js b/src/static_src/vendor/leaflet/proj4leaflet.js similarity index 100% rename from src/static_src/js/proj4leaflet.js rename to src/static_src/vendor/leaflet/proj4leaflet.js diff --git a/src/static_src/vendor/universal-icon-picker/LICENSE b/src/static_src/vendor/universal-icon-picker/LICENSE new file mode 100644 index 000000000..f17c7fe10 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Gilles Migliori + +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/src/static_src/vendor/universal-icon-picker/README.md b/src/static_src/vendor/universal-icon-picker/README.md new file mode 100644 index 000000000..199895572 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/README.md @@ -0,0 +1,277 @@ + +# Universal Icon Picker + +![Language: Vanilla JS](https://img.shields.io/badge/-vanilla%20js-555?logo=JavaScript) +![Dependencies: none](https://img.shields.io/badge/dependencies-none-04B54E) +![GitHub file size in bytes](https://img.shields.io/github/size/migliori/universal-icon-picker/assets/js/universal-icon-picker.min.js) +[![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.crans.org/besson/LICENSE.html) + +Nice small Javascript **Icon Picker for any icon library** + +*Vanilla Javascript* - *No dependency* - *2.6ko gzipped* + +Originally forked from [aesthetic-icon-picker](https://github.com/sh-sabbir/aesthetic-icon-picker/tree/20d6aa6134311b44891809cc852dbf247a029495) + +## Demo + +[https://universal-icon-picker.miglisoft.com](https://universal-icon-picker.miglisoft.com) + +## Features + +- Load any icon library from a single JSON file +- Load the icon fonts stylesheets from local files or CDNs +- Autoload the icon fonts (JSON + stylesheets) or load them only on request +- Add as many icon libraries as you like to each instance of the plugin +- Create multiple instances and triggers on the same page +- Change the icon libraries attached to an instance whenever you want +- Group icons of the same family by categories +- Load one or more styles from the same icon family individually +- Search / Filter icons +- Built-in `onSelect()` and `onReset()` callback functions +- Attach the Icon Picker to any HTML element +- Add your favourite icon libraries very easily + +## Integrated icon libraries + +### Font Awesome + +- All +- Solid +- Regular +- Brands + +### Material Icons + +- Filled +- Outlined +- Round +- Sharp +- Two-tone + +### Other icon libraries + +- Bootstrap Icons +- Elegant Icons +- Feather Icons +- Fomantic UI Icons +- Foundation Icons +- Happy Icons +- Icomoon +- Open-iconic +- Tabler Icons +- Weather Icons +- Zondicons + +## Installation + +Clone / download or install with npm + +```bash + npm install @migliori/universal-icon-picker@1.1.8 +``` + +## Usage/Examples + +```html + + + + + + + + + + + + + + + + + +``` + +## Options + +| option | type | value | +|------------------|------------|----------------------------------------------------------------------------------------------------------------------------------------| +| allowEmpty | *Boolean* | Add an empty icon selector in the beginning of each icon list.
    Default: true | +| iconLibraries | *Array* | Array of JSON icon libraries in `assets/icons-libraries`.
    Default: `null` | +| iconLibrariesCss | *Array* | Array of CSS icon libraries in `assets/stylesheets` or from any CDN. Leave empty if your page already loads them.
    Default: `null` | +| mode | *String* | `'autoload'` or `'onrequest'`. Default: `'autoload'` | +| parentElement | *String* | Selector for the parent element to attach the icon picker to. Default: `body` | +| onReset | *Function* | Callback function when the user clicks the `reset` button.
    Default: `null` | +| onSelect | *Function* | Callback function when the user clicks the `insert` button.
    Default: `null` | +| resetSelector | *String* | Selector for the HTML *reset* button on your page.
    Default: `null` | +| language | *String* | Language code for the UI messages.
    E.g.: 'en'
    Default: `navigator.language || navigator.userLanguage` (browser language) | +| loadCustomCss | *Boolean* | If true, universal icon picker does **not** load its own css allowing for custom css. Default: `false` | +## Configuring loaded assets + +Universtal icon picker will retrieve some assets from the server based on where ths script itself was retrieved from (`assets/js/universal-icon-picker.min.js`) : + +1. Icons from the `assets/images`folder +2. Icon library json files from the `assets/icon-libraries` folder + +Also, the naming of the library names in the sidebar is derived from their file name in `assets/icon-libraries`. + +In most cases this will just work fine. For some installations, however, you need to adjust the exact paths from where to retrieve those assets. + +### Configuring icon assets + +Three option settings overwrite the paths for the three icons used: + +| option | type | value | +|------------------|----------|------------------------------------------------------| +| closeUrl | *String* | Path of the close button icon (some type of "x") | +| starUrl | *String* | Path of the star icon for the side bar | +| searchUrl | *String* | Path of the magnifying glass icon for the search bar | + +### Configuring library assets + +Library assets are defined by `iconLibraries`. If the library does include a slash (`/`) it is assumed to be an URL or path of the library's json file. If it does not include a slash the library is searched for in the `assets/icon-libraries` folder. + + + +### Example + +```javascript +const options = { + iconLibraries: [ + 'happy-icons.min.json', + 'font-awesome.min.json' + ], + iconLibrariesCss: [ + 'happy-icons.min.css', + 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css' + ], + resetSelector: '#uip-reset-btn', + onSelect: function(jsonIconData) { + document.getElementById('output-icon').innerHTML = jsonIconData.iconMarkup; + + console.log(jsonIconData); + /* will output something like: + { + "libraryId": "fa-solid", + "libraryName": "fontAwesome", + "iconHtml": "", + "iconMarkup": "<i class="fa-solid fa-oil-can"></i>", + "iconClass": "fa-solid fa-oil-can", + "iconText": "" + } + */ + }, + onReset: function() { + document.getElementById('output-icon').innerHTML = ''; + } +} + +// Instanciate the Icon Picker +var uip = new UniversalIconPicker('#selector', options); +``` + +See the source code of the [demo](https://universal-icon-picker.miglisoft.com) for more examples + +## Public methods + +- ### setOptions(options) + + Update the *options* of an Icon Picker instance + + Example: + + ```javascript + // Instanciate the Icon Picker + + var uip = new UniversalIconPicker('#selector', options); + + // later, change the icon libraries + uip.setOptions({ + iconLibraries: ['weather-icons.min.json'], + iconLibrariesCss: ['weather-icons.min.css'] + }); + + ``` + + Live demo: [https://universal-icon-picker.miglisoft.com/demo/demo-4.html](https://universal-icon-picker.miglisoft.com/demo/demo-4.html) + +## Change / Upgrade Fontawesome version & icons + +A built-in tool is provided to get the Fontawesome icon list from the Fontawesome API and for Bootstrap icons to scrape the Bootstrap icon list from their website. + +To choose the Fontawesome version: + +1. open `tools/fontawesome-icons-list.html` in your code editor and change the version number: + + ```html + // set the fontawesome version version here + const fontawesomeVersion = '6.0.0'; + ``` + +2. open it in your browser to retrieve the JSON list + +3. save the complete list in `assets/icon-libraries/font-awesome.json` and each style (brands, regular, solid) in the appropriate json file (`assets/icon-libraries/font-awesome-brands.json`, ...) + +4. minify the json files to `.min.json` + +For Bootstrap icons use `tools/bootstrap-icons-list.html`. It scrapes the latest version from the website. You will need to add the version number manually to the generated json file. + +## Screenshots + +![Universal Icon Picker Screenshot](https://universal-icon-picker.miglisoft.com/demo/assets/images/screenshot.png) + +## Contributing + +Contributions are always welcome! + +Please contact us for any improvement suggestions or send your pull requests + +## Changelog + +2024/09/26 + +- add the type="button" attribute to the icon picker button +- add the parentElement option to attach the icon picker to a specific element + +2024/04/16 + +- add language option to set the UI language + +2023/03/09 + +- add loadCustomCss option +- Double click inserts icon + +2023/02/09 + +- add Fomantic UI icons + +2022/11/18 + +- update npm package + +2022/02/26 + +- detect absolute css urls starting without protocol ; ie: '//domain.com/my-font.css' +- allow more complex trigger button selectors ; ie: '#div button["name=iconpicker-opener"]' +- add the "onBeforeOpen" option +- add the "onBeforeOpen" demo (demo 5) + +2022/02/23 + +- First release +- fix icon selections when changing the icon library programatically with setOptions() +- update README + + +## License + +[MIT](https://choosealicense.com/licenses/mit/) + +## Credits + +Thanks to Sabbir for his [Aesthetic Icon Picker](https://github.com/sh-sabbir/aesthetic-icon-picker/tree/20d6aa6134311b44891809cc852dbf247a029495), which gave me a clean & strong base code for this project. diff --git a/src/static_src/vendor/universal-icon-picker/assets/icons-libraries/font-awesome-5.0.13.json b/src/static_src/vendor/universal-icon-picker/assets/icons-libraries/font-awesome-5.0.13.json new file mode 100644 index 000000000..d2b813501 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/icons-libraries/font-awesome-5.0.13.json @@ -0,0 +1,980 @@ +{ + "solid": { + "prefix": "fa fa-", + "icon-style": "fa", + "list-icon": "fa fa-font-awesome", + "version": "5.0.13", + "icons": [ +"ad", +"address-book", +"address-card", +"adjust", +"air-freshener", +"align-center", +"align-justify", +"align-left", +"align-right", +"allergies", +"ambulance", +"american-sign-language-interpreting", +"anchor", +"angle-double-down", +"angle-double-left", +"angle-double-right", +"angle-double-up", +"angle-down", +"angle-left", +"angle-right", +"angle-up", +"angry", +"ankh", +"apple-alt", +"archive", +"archway", +"arrow-alt-circle-down", +"arrow-alt-circle-left", +"arrow-alt-circle-right", +"arrow-alt-circle-up", +"arrow-circle-down", +"arrow-circle-left", +"arrow-circle-right", +"arrow-circle-up", +"arrow-down", +"arrow-left", +"arrow-right", +"arrow-up", +"arrows-alt-h", +"arrows-alt-v", +"arrows-alt", +"assistive-listening-systems", +"asterisk", +"at", +"atlas", +"atom", +"audio-description", +"award", +"baby-carriage", +"baby", +"backspace", +"backward", +"bacon", +"bahai", +"balance-scale-left", +"balance-scale-right", +"balance-scale", +"ban", +"band-aid", +"barcode", +"bars", +"baseball-ball", +"basketball-ball", +"bath", +"battery-empty", +"battery-full", +"battery-half", +"battery-quarter", +"battery-three-quarters", +"bed", +"beer", +"bell-slash", +"bell", +"bezier-curve", +"bible", +"bicycle", +"biking", +"binoculars", +"biohazard", +"birthday-cake", +"blender-phone", +"blender", +"blind", +"blog", +"bold", +"bolt", +"bomb", +"bone", +"bong", +"book-dead", +"book-medical", +"book-open", +"book-reader", +"book", +"bookmark", +"border-all", +"border-none", +"border-style", +"bowling-ball", +"box-open", +"box", +"boxes", +"braille", +"brain", +"bread-slice", +"briefcase-medical", +"briefcase", +"broadcast-tower", +"broom", +"brush", +"bug", +"building", +"bullhorn", +"bullseye", +"burn", +"bus-alt", +"bus", +"business-time", +"calculator", +"calendar-alt", +"calendar-check", +"calendar-day", +"calendar-minus", +"calendar-plus", +"calendar-times", +"calendar-week", +"calendar", +"camera-retro", +"camera", +"campground", +"candy-cane", +"cannabis", +"capsules", +"car-alt", +"car-battery", +"car-crash", +"car-side", +"car", +"caravan", +"caret-down", +"caret-left", +"caret-right", +"caret-square-down", +"caret-square-left", +"caret-square-right", +"caret-square-up", +"caret-up", +"carrot", +"cart-arrow-down", +"cart-plus", +"cash-register", +"cat", +"certificate", +"chair", +"chalkboard-teacher", +"chalkboard", +"charging-station", +"chart-area", +"chart-bar", +"chart-line", +"chart-pie", +"check-circle", +"check-double", +"check-square", +"check", +"cheese", +"chess-bishop", +"chess-board", +"chess-king", +"chess-knight", +"chess-pawn", +"chess-queen", +"chess-rook", +"chess", +"chevron-circle-down", +"chevron-circle-left", +"chevron-circle-right", +"chevron-circle-up", +"chevron-down", +"chevron-left", +"chevron-right", +"chevron-up", +"child", +"church", +"circle-notch", +"circle", +"city", +"clinic-medical", +"clipboard-check", +"clipboard-list", +"clipboard", +"clock", +"clone", +"closed-captioning", +"cloud-download-alt", +"cloud-meatball", +"cloud-moon-rain", +"cloud-moon", +"cloud-rain", +"cloud-showers-heavy", +"cloud-sun-rain", +"cloud-sun", +"cloud-upload-alt", +"cloud", +"cocktail", +"code-branch", +"code", +"coffee", +"cog", +"cogs", +"coins", +"columns", +"comment-alt", +"comment-dollar", +"comment-dots", +"comment-medical", +"comment-slash", +"comment", +"comments-dollar", +"comments", +"compact-disc", +"compass", +"compress-alt", +"compress-arrows-alt", +"compress", +"concierge-bell", +"cookie-bite", +"cookie", +"copy", +"copyright", +"couch", +"credit-card", +"crop-alt", +"crop", +"cross", +"crosshairs", +"crow", +"crown", +"crutch", +"cube", +"cubes", +"cut", +"dailymotion", +"database", +"deaf", +"democrat", +"desktop", +"dharmachakra", +"diagnoses", +"dice-d20", +"dice-d6", +"dice-five", +"dice-four", +"dice-one", +"dice-six", +"dice-three", +"dice-two", +"dice", +"digital-tachograph", +"directions", +"divide", +"dizzy", +"dna", +"dog", +"dollar-sign", +"dolly-flatbed", +"dolly", +"donate", +"door-closed", +"door-open", +"dot-circle", +"dove", +"download", +"drafting-compass", +"dragon", +"draw-polygon", +"drum-steelpan", +"drum", +"drumstick-bite", +"dumbbell", +"dumpster-fire", +"dumpster", +"dungeon", +"edit", +"egg", +"eject", +"ellipsis-h", +"ellipsis-v", +"envelope-open-text", +"envelope-open", +"envelope-square", +"envelope", +"equals", +"eraser", +"ethernet", +"euro-sign", +"exchange-alt", +"exclamation-circle", +"exclamation-triangle", +"exclamation", +"expand-alt", +"expand-arrows-alt", +"expand", +"external-link-alt", +"external-link-square-alt", +"eye-dropper", +"eye-slash", +"eye", +"fan", +"fast-backward", +"fast-forward", +"fax", +"feather-alt", +"feather", +"female", +"fighter-jet", +"file-alt", +"file-archive", +"file-audio", +"file-code", +"file-contract", +"file-csv", +"file-download", +"file-excel", +"file-export", +"file-image", +"file-import", +"file-invoice-dollar", +"file-invoice", +"file-medical-alt", +"file-medical", +"file-pdf", +"file-powerpoint", +"file-prescription", +"file-signature", +"file-upload", +"file-video", +"file-word", +"file", +"fill-drip", +"fill", +"film", +"filter", +"fingerprint", +"fire-alt", +"fire-extinguisher", +"fire", +"firefox-browser", +"first-aid", +"fish", +"fist-raised", +"flag-checkered", +"flag-usa", +"flag", +"flask", +"flushed", +"folder-minus", +"folder-open", +"folder-plus", +"folder", +"font", +"football-ball", +"forward", +"frog", +"frown-open", +"frown", +"funnel-dollar", +"futbol", +"gamepad", +"gas-pump", +"gavel", +"gem", +"genderless", +"ghost", +"gift", +"gifts", +"glass-cheers", +"glass-martini-alt", +"glass-martini", +"glass-whiskey", +"glasses", +"globe-africa", +"globe-americas", +"globe-asia", +"globe-europe", +"globe", +"golf-ball", +"gopuram", +"graduation-cap", +"greater-than-equal", +"greater-than", +"grimace", +"grin-alt", +"grin-beam-sweat", +"grin-beam", +"grin-hearts", +"grin-squint-tears", +"grin-squint", +"grin-stars", +"grin-tears", +"grin-tongue-squint", +"grin-tongue-wink", +"grin-tongue", +"grin-wink", +"grin", +"grip-horizontal", +"grip-lines-vertical", +"grip-lines", +"grip-vertical", +"guitar", +"h-square", +"hamburger", +"hammer", +"hamsa", +"hand-holding-heart", +"hand-holding-usd", +"hand-holding", +"hand-lizard", +"hand-middle-finger", +"hand-paper", +"hand-peace", +"hand-point-down", +"hand-point-left", +"hand-point-right", +"hand-point-up", +"hand-pointer", +"hand-rock", +"hand-scissors", +"hand-spock", +"hands-helping", +"hands", +"handshake", +"hanukiah", +"hard-hat", +"hashtag", +"hat-cowboy-side", +"hat-cowboy", +"hat-wizard", +"hdd", +"heading", +"headphones-alt", +"headphones", +"headset", +"heart-broken", +"heart", +"heartbeat", +"helicopter", +"highlighter", +"hiking", +"hippo", +"history", +"hockey-puck", +"holly-berry", +"home", +"horse-head", +"horse", +"hospital-alt", +"hospital-symbol", +"hospital", +"hot-tub", +"hotdog", +"hotel", +"hourglass-end", +"hourglass-half", +"hourglass-start", +"hourglass", +"house-damage", +"hryvnia", +"i-cursor", +"ice-cream", +"icicles", +"icons", +"id-badge", +"id-card-alt", +"id-card", +"ideal", +"igloo", +"image", +"images", +"inbox", +"indent", +"industry", +"infinity", +"info-circle", +"info", +"italic", +"jedi", +"joint", +"journal-whills", +"kaaba", +"key", +"keyboard", +"khanda", +"kiss-beam", +"kiss-wink-heart", +"kiss", +"kiwi-bird", +"landmark", +"language", +"laptop-code", +"laptop-medical", +"laptop", +"laugh-beam", +"laugh-squint", +"laugh-wink", +"laugh", +"layer-group", +"leaf", +"lemon", +"less-than-equal", +"less-than", +"level-down-alt", +"level-up-alt", +"life-ring", +"lightbulb", +"link", +"lira-sign", +"list-alt", +"list-ol", +"list-ul", +"list", +"location-arrow", +"lock-open", +"lock", +"long-arrow-alt-down", +"long-arrow-alt-left", +"long-arrow-alt-right", +"long-arrow-alt-up", +"low-vision", +"luggage-cart", +"magic", +"magnet", +"mail-bulk", +"male", +"map-marked-alt", +"map-marked", +"map-marker-alt", +"map-marker", +"map-pin", +"map-signs", +"map", +"marker", +"mars-double", +"mars-stroke-h", +"mars-stroke-v", +"mars-stroke", +"mars", +"mask", +"medal", +"medkit", +"meh-blank", +"meh-rolling-eyes", +"meh", +"memory", +"menorah", +"mercury", +"meteor", +"microblog", +"microchip", +"microphone-alt-slash", +"microphone-alt", +"microphone-slash", +"microphone", +"microscope", +"minus-circle", +"minus-square", +"minus", +"mitten", +"mixer", +"mobile-alt", +"mobile", +"money-bill-alt", +"money-bill-wave-alt", +"money-bill-wave", +"money-bill", +"money-check-alt", +"money-check", +"monument", +"moon", +"mortar-pestle", +"mosque", +"motorcycle", +"mountain", +"mouse-pointer", +"mouse", +"mug-hot", +"music", +"network-wired", +"neuter", +"newspaper", +"not-equal", +"notes-medical", +"object-group", +"object-ungroup", +"oil-can", +"om", +"otter", +"outdent", +"pager", +"paint-brush", +"paint-roller", +"palette", +"pallet", +"paper-plane", +"paperclip", +"parachute-box", +"paragraph", +"parking", +"passport", +"pastafarianism", +"paste", +"pause-circle", +"pause", +"paw", +"peace", +"pen-alt", +"pen-fancy", +"pen-nib", +"pen-square", +"pen", +"pencil-alt", +"pencil-ruler", +"people-carry", +"pepper-hot", +"percent", +"percentage", +"person-booth", +"phone-alt", +"phone-slash", +"phone-square-alt", +"phone-square", +"phone-volume", +"phone", +"photo-video", +"pied-piper-square", +"piggy-bank", +"pills", +"pizza-slice", +"place-of-worship", +"plane-arrival", +"plane-departure", +"plane", +"play-circle", +"play", +"plug", +"plus-circle", +"plus-square", +"plus", +"podcast", +"poll-h", +"poll", +"poo-storm", +"poo", +"poop", +"portrait", +"pound-sign", +"power-off", +"pray", +"praying-hands", +"prescription-bottle-alt", +"prescription-bottle", +"prescription", +"print", +"procedures", +"project-diagram", +"puzzle-piece", +"qrcode", +"question-circle", +"question", +"quidditch", +"quote-left", +"quote-right", +"quran", +"radiation-alt", +"radiation", +"rainbow", +"random", +"receipt", +"record-vinyl", +"recycle", +"redo-alt", +"redo", +"registered", +"remove-format", +"reply-all", +"reply", +"republican", +"restroom", +"retweet", +"ribbon", +"ring", +"road", +"robot", +"rocket", +"route", +"rss-square", +"rss", +"ruble-sign", +"ruler-combined", +"ruler-horizontal", +"ruler-vertical", +"ruler", +"running", +"rupee-sign", +"sad-cry", +"sad-tear", +"satellite-dish", +"satellite", +"save", +"school", +"screwdriver", +"scroll", +"sd-card", +"search-dollar", +"search-location", +"search-minus", +"search-plus", +"search", +"seedling", +"server", +"shapes", +"share-alt-square", +"share-alt", +"share-square", +"share", +"shekel-sign", +"shield-alt", +"ship", +"shipping-fast", +"shoe-prints", +"shopify", +"shopping-bag", +"shopping-basket", +"shopping-cart", +"shower", +"shuttle-van", +"sign-in-alt", +"sign-language", +"sign-out-alt", +"sign", +"signal", +"signature", +"sim-card", +"sitemap", +"skating", +"skiing-nordic", +"skiing", +"skull-crossbones", +"skull", +"slash", +"sleigh", +"sliders-h", +"smile-beam", +"smile-wink", +"smile", +"smog", +"smoking-ban", +"smoking", +"sms", +"snowboarding", +"snowflake", +"snowman", +"snowplow", +"socks", +"solar-panel", +"sort-alpha-down-alt", +"sort-alpha-down", +"sort-alpha-up-alt", +"sort-alpha-up", +"sort-amount-down-alt", +"sort-amount-down", +"sort-amount-up-alt", +"sort-amount-up", +"sort-down", +"sort-numeric-down-alt", +"sort-numeric-down", +"sort-numeric-up-alt", +"sort-numeric-up", +"sort-up", +"sort", +"spa", +"space-shuttle", +"spell-check", +"spider", +"spinner", +"splotch", +"spray-can", +"square-full", +"square-root-alt", +"square", +"stamp", +"star-and-crescent", +"star-half-alt", +"star-half", +"star-of-david", +"star-of-life", +"star", +"step-backward", +"step-forward", +"stethoscope", +"sticky-note", +"stop-circle", +"stop", +"stopwatch", +"store-alt", +"store", +"stream", +"street-view", +"strikethrough", +"stroopwafel", +"subscript", +"subway", +"suitcase-rolling", +"suitcase", +"sun", +"superscript", +"surprise", +"swatchbook", +"swimmer", +"swimming-pool", +"synagogue", +"sync-alt", +"sync", +"syringe", +"table-tennis", +"table", +"tablet-alt", +"tablet", +"tablets", +"tachometer-alt", +"tag", +"tags", +"tape", +"tasks", +"taxi", +"teeth-open", +"teeth", +"temperature-high", +"temperature-low", +"tenge", +"terminal", +"text-height", +"text-width", +"th-large", +"th-list", +"th", +"theater-masks", +"thermometer-empty", +"thermometer-full", +"thermometer-half", +"thermometer-quarter", +"thermometer-three-quarters", +"thermometer", +"thumbs-down", +"thumbs-up", +"thumbtack", +"ticket-alt", +"times-circle", +"times", +"tint-slash", +"tint", +"tired", +"toggle-off", +"toggle-on", +"toilet-paper", +"toilet", +"toolbox", +"tools", +"tooth", +"torah", +"torii-gate", +"tractor", +"trademark", +"traffic-light", +"trailer", +"train", +"tram", +"transgender-alt", +"transgender", +"trash-alt", +"trash-restore-alt", +"trash-restore", +"trash", +"tree", +"trophy", +"truck-loading", +"truck-monster", +"truck-moving", +"truck-pickup", +"truck", +"tshirt", +"tty", +"tv", +"umbrella-beach", +"umbrella", +"underline", +"undo-alt", +"undo", +"unity", +"universal-access", +"university", +"unlink", +"unlock-alt", +"unlock", +"upload", +"user-alt-slash", +"user-alt", +"user-astronaut", +"user-check", +"user-circle", +"user-clock", +"user-cog", +"user-edit", +"user-friends", +"user-graduate", +"user-injured", +"user-lock", +"user-md", +"user-minus", +"user-ninja", +"user-nurse", +"user-plus", +"user-secret", +"user-shield", +"user-slash", +"user-tag", +"user-tie", +"user-times", +"user", +"users-cog", +"users", +"utensil-spoon", +"utensils", +"vector-square", +"venus-double", +"venus-mars", +"venus", +"vial", +"vials", +"video-slash", +"video", +"vihara", +"voicemail", +"volleyball-ball", +"volume-down", +"volume-mute", +"volume-off", +"volume-up", +"vote-yea", +"vr-cardboard", +"walking", +"wallet", +"warehouse", +"water", +"wave-square", +"weight-hanging", +"weight", +"wheelchair", +"wifi", +"wind", +"window-close", +"window-maximize", +"window-minimize", +"window-restore", +"wine-bottle", +"wine-glass-alt", +"wine-glass", +"won-sign", +"wrench", +"x-ray", +"yen-sign", +"yin-yang" + ]}} diff --git a/src/static_src/vendor/universal-icon-picker/assets/images/magnifying-glass-solid.svg b/src/static_src/vendor/universal-icon-picker/assets/images/magnifying-glass-solid.svg new file mode 100644 index 000000000..e1f309300 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/images/magnifying-glass-solid.svg @@ -0,0 +1 @@ + diff --git a/src/static_src/vendor/universal-icon-picker/assets/images/star-of-life-solid.svg b/src/static_src/vendor/universal-icon-picker/assets/images/star-of-life-solid.svg new file mode 100644 index 000000000..5cb24353d --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/images/star-of-life-solid.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/static_src/vendor/universal-icon-picker/assets/images/xmark-solid.svg b/src/static_src/vendor/universal-icon-picker/assets/images/xmark-solid.svg new file mode 100644 index 000000000..a9d34ca00 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/images/xmark-solid.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js b/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js new file mode 100644 index 000000000..643b3cdb7 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js @@ -0,0 +1,2 @@ +const scriptUrl=new URL(document.currentScript.src),iconPickerUrl=scriptUrl.origin+scriptUrl.pathname.substring(0,scriptUrl.pathname.lastIndexOf("/js")+1),loadedDependencies=[],i18nMessages={en:{all_icons:"All icons",all_label:"All",close_label:"Close",icon_picker:"Universal Icon Picker",insert_label:"Insert",search_label:"Search",search_placeholder:"Filter by name…"},fr:{all_icons:"Toutes les icônes",all_label:"Tout",close_label:"Fermer",icon_picker:"Sélecteur d'icônes universel",insert_label:"Insérer",search_label:"Rechercher",search_placeholder:"Filtrer par nom…"}};!function(i,e){"function"==typeof define&&define.amd?define([],e()):"object"==typeof exports?module.exports=e():i.UniversalIconPicker=e()}(this,(function(){"use strict";const i=function(i,e){let s,t={};for(s in i)Object.prototype.hasOwnProperty.call(i,s)&&(t[s]=i[s]);for(s in e)Object.prototype.hasOwnProperty.call(e,s)&&(t[s]=e[s]);return t};function e(e,s){this.selector=e;let t={allowEmpty:!0,iconLibraries:null,iconLibrariesCss:null,mode:"autoload",parentElement:"body",onBeforeOpen:null,onReset:null,onSelect:null,resetSelector:null,language:navigator.language||navigator.userLanguage,loadCustomCss:!1};this.options=i(t,s),this.activeLibraryId="",this.filterIcon="",this.iconEventsLoaded=!1,this.iconLibraries={},this.iconLibrariesLoaded=!1,this.iconMarkup="",this.iconWrap="",this.idSuffix="-"+this.selector.replace(/[#\s[\]="]/g,""),this.sideBarBtn="",this.sideBarList=[];let n=this.options.language.toLowerCase().split("-")[0].split("_")[0];this.messages=n in i18nMessages?i18nMessages[n]:i18nMessages.en,this.universalWrap='
    '+this.messages.icon_picker+'
    '+this.messages.close_label+'
    ",this.universalDomEle=function(i){const e=document.createElement("div");return e.innerHTML=i,e.firstChild}(this.universalWrap),this.sidebarTabs=this.universalDomEle.querySelector(".uip-modal--sidebar-tabs"),this.previewWrap=this.universalDomEle.querySelector("#uip-modal--icon-preview"+this.idSuffix),this.searchInput=this.universalDomEle.querySelector(".uip-modal--icon-search input"),"autoload"===this.options.mode?this.init():document.querySelector(this.selector).addEventListener("click",this.init.bind(this),{once:!0})}return e.prototype={init:function(){this._loadCssFiles(),"autoload"!==this.options.mode&&this._onBeforeOpen().then((()=>{this.open()})),document.querySelector(this.selector).addEventListener("click",(()=>{this._onBeforeOpen().then((()=>{this.open()}))})),this.options.resetSelector&&document.querySelector(this.options.resetSelector).addEventListener("click",this.options.onReset)},open:function(){this._loadIconLibraries().then((()=>{this.iconLibrariesLoaded=!0,document.getElementById("uip-modal"+this.idSuffix)?(this.universalDomEle.classList.remove("uip-close"),this.universalDomEle.classList.add("uip-open")):(document.querySelector(this.options.parentElement).appendChild(this.universalDomEle),this.universalDomEle.querySelector(".uip-modal--header-close-btn").addEventListener("click",(()=>{this.universalDomEle.classList.add("uip-close"),this.universalDomEle.classList.remove("uip-open")})),this.universalDomEle.querySelector(".uip-insert-icon-button").addEventListener("click",(()=>{let i=this.universalDomEle.querySelector(".universal-selected");if(i){let e=i.querySelector("i").outerHTML,s={libraryId:i.dataset.libraryId,libraryName:i.dataset.libraryName,iconHtml:null,iconMarkup:null,iconClass:null,iconText:null};i.querySelector("i").classList.value.match("uip-icon-none")||(s.iconHtml=e,s.iconMarkup=function(i){const e={"&":"&","<":"<",">":">",'"':""","'":"'"};return i.replace(/[&<>"']/g,(function(i){return e[i]}))}(e),s.iconClass=i.querySelector("i").classList.value,s.iconText=i.querySelector("i").innerText),this.options.onSelect(s)}this.universalDomEle.classList.add("uip-close"),this.universalDomEle.classList.remove("uip-open")}))),this.iconEventsLoaded||(this.universalDomEle.querySelectorAll(".uip-icon-item").forEach((i=>{i.addEventListener("click",(i=>{this.iconWrap.forEach((i=>{i.classList.remove("universal-selected")})),i.currentTarget.classList.toggle("universal-selected")})),i.addEventListener("dblclick",(i=>{this.universalDomEle.querySelector(".uip-insert-icon-button").click()}))})),this.iconEventsLoaded=!0),this.universalDomEle.querySelector(".uip-modal--icon-search input").focus()}))},setOptions:function(e){this.options=i(this.options,e),e.iconLibrariesCss&&this._loadCssFiles(),e.iconLibraries&&(this.iconEventsLoaded=!1,this.iconLibrariesLoaded=!1,this._resetIconAndSidebarList())},_clickHandlerFunc:function(i){i.currentTarget.classList.contains("universal-active")||(this.sideBarBtn.forEach((function(i){i.classList.remove("universal-active")})),i.currentTarget.classList.add("universal-active")),this._sidebarFilterFunc(i.currentTarget.dataset.libraryId)},_iconItemMarkup:function(i,e){let s="",t=e["icon-style"],n=e.prefix;return this.options.allowEmpty&&(s+='
     
    None
    '),n.match(/^material-icons/)?e.icons.forEach((function(e){s+='
    '+e+'
    '+e.replace("-"," ")+"
    "})):e.icons.forEach((function(e){s+='
    '+e.replace("-"," ")+"
    "})),s},_iconItemPush:function(i){this.previewWrap.innerHTML="",i.forEach((i=>{this.previewWrap.appendChild(i[1])}))},_loadCssFiles:function(){let i=document.createElement("link");loadedDependencies.includes("universal-icon-picker.min.css")||this.options.loadCustomCss||(i.rel="stylesheet",i.type="text/css",i.href=iconPickerUrl+"stylesheets/universal-icon-picker.min.css",i.media="screen",document.head.appendChild(i),loadedDependencies.push("universal-icon-picker.min.css")),this.options.iconLibrariesCss&&this.options.iconLibrariesCss.forEach((e=>{if(!loadedDependencies.includes(e)){let s=iconPickerUrl+"stylesheets/"+e;e.match(/^http|^\/\//)&&(s=e),i=document.createElement("link"),i.rel="stylesheet",i.type="text/css",i.href=s,i.media="screen",document.head.appendChild(i),loadedDependencies.push(e)}}))},_loadIconLibraries:async function(i=0){if(!this.options.iconLibraries)return console.error("Universal icon picker - no icon library loaded"),!1;if(this.iconLibrariesLoaded)return!0;0===i&&this.options.iconLibraries.length>1&&this.sideBarList.push({title:this.messages.all_icons,"list-icon":"","library-id":"all",prefix:""});let e,s=this.options.iconLibraries[i];s.includes("/")?(e=/[^/]*$/.exec(s)[0],e=/^[^.]*/.exec(e)[0]):(s=iconPickerUrl+"icons-libraries/"+s,e=s.substring(s.lastIndexOf("/")+1)),await fetch(s).then((i=>i.json())).then((s=>{let t={};return t[e.replace(/-([a-z])/g,(function(i){return i[1].toUpperCase()})).replace(/\.[a-z.]+$/,"")]=s,Object.assign(this.iconLibraries,t),i+1===this.options.iconLibraries.length?(this._setIconAndSidebarList(),this.activeLibraryId=this.sideBarList[0]["library-id"],this.sidebarTabs.innerHTML=this._sideBarListMarkup(this.sideBarList),this.previewWrap.innerHTML=this.iconMarkup,this.iconWrap=this.previewWrap.querySelectorAll(".uip-icon-item"),this.searchInput.addEventListener("keyup",function(i,e,s){let t;return function(){const n=this,r=arguments,a=s&&!t;clearTimeout(t),t=setTimeout((function(){t=null,s||i.apply(n,r)}),e),a&&i.apply(n,r)}}(this._searchFunc,100).bind(this),!1),this.sideBarBtn=this.sidebarTabs.querySelectorAll(".uip-modal--sidebar-tab-item"),this.sideBarBtn.forEach((i=>{i.addEventListener("click",this._clickHandlerFunc.bind(this),!1)})),!0):this._loadIconLibraries(i+1)})).catch((i=>(console.log(i),i)))},_onBeforeOpen:async function(){if("function"==typeof this.options.onBeforeOpen)return this.options.onBeforeOpen()},_resetIconAndSidebarList:function(){this.sideBarList=[],this.iconMarkup="",this.iconLibraries={},this.iconWrap="",this.filterIcon="",this.sideBarBtn="",this.activeLibraryId=""},_searchFunc:function(i){const e=i.target.value.toLowerCase();this._searchFilterFunc(e,"filter")},_searchFilterFunc:function(i,e){this.filterIcon=Object.entries(this.iconWrap).filter((s=>-1!==s[1].dataset[e].indexOf(i)&&("all"===this.activeLibraryId||s[1].dataset.libraryId===this.activeLibraryId))),this._iconItemPush(this.filterIcon)},_setIconAndSidebarList:function(){for(const[i,e]of Object.entries(this.iconLibraries))this._setSideBarList(e.verboseName||i.replace(/([A-Z])/g," $1"),e),this._setIconMarkup(i,e)},_setIconMarkup:function(i,e){void 0!==e.icons?this.iconMarkup+=this._iconItemMarkup(i,e):Object.entries(e).forEach((e=>{this.iconMarkup+=this._iconItemMarkup(i,e[1])}))},_sidebarFilterFunc:function(i){this.activeLibraryId=i,this.filterIcon=Object.entries(this.iconWrap).filter((function(e){return"all"===i||i===e[1].dataset.libraryId})),this._iconItemPush(this.filterIcon)},_setSideBarList:function(i,e){let s;void 0!==e.icons?(s={title:i,prefix:void 0!==e.prefix?e.prefix:"","list-icon":void 0!==e["list-icon"]?e["list-icon"]:"","library-id":void 0!==e["icon-style"]?e["icon-style"]:"all"},this.sideBarList.push(s)):Object.entries(e).forEach((e=>{s={title:i+" - "+e[0],prefix:void 0!==e[1].prefix?e[1].prefix:"","list-icon":void 0!==e[1]["list-icon"]?e[1]["list-icon"]:"","library-id":void 0!==e[1]["icon-style"]?e[1]["icon-style"]:"all"},this.sideBarList.push(s)}))},_sideBarListMarkup:function(i){let e="";return i.forEach((i=>{let s="";if(i["library-id"]===this.activeLibraryId&&(s=" universal-active"),"all"!==i["library-id"]){let t='';i.prefix.match(/^material-icons/)&&(t=''+i["list-icon"]+""),e+='
    '+t+i.title+"
    "}else e+='
    '+this.messages.all_label+''+i.title+"
    "})),e}},e})); +//# sourceMappingURL=universal-icon-picker.min.js.map diff --git a/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js.map b/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js.map new file mode 100644 index 000000000..1b3eb6081 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/js/universal-icon-picker.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["universal-icon-picker.js"],"names":[],"mappings":"AAEC,KAAM,UAAY,IAAI,IAAI,SAAS,cAAc,KAC3C,cAAgB,UAAU,OAAS,UAAU,SAAS,UAAU,EAAG,UAAU,SAAS,YAAY,OAAS,GAC3G,mBAAqB,GAErB,aAAe,CACjB,GAAI,CACA,UAAW,YACX,UAAW,MACX,YAAa,QACb,YAAa,wBACb,aAAc,SACd,aAAc,SACd,mBAAoB,mBAExB,GAAI,CACA,UAAW,oBACX,UAAW,OACX,YAAa,SACb,YAAa,+BACb,aAAc,UACd,aAAc,aACd,mBAAoB,sBAI3B,SAAU,EAAM,GACS,mBAAX,QAAyB,OAAO,IACvC,OAAO,GAAI,KACe,iBAAZ,QACd,OAAO,QAAU,IAEjB,EAA0B,oBAAI,GAEtC,CARA,CAQE,MAAM,WACJ,aAEA,MAyCM,EAAS,SAAU,EAAU,GAC/B,IAAI,EAAM,EAAW,CAAC,EACtB,IAAK,KAAQ,EACL,OAAO,UAAU,eAAe,KAAK,EAAU,KAC/C,EAAS,GAAQ,EAAS,IAGlC,IAAK,KAAQ,EACL,OAAO,UAAU,eAAe,KAAK,EAAS,KAC9C,EAAS,GAAQ,EAAQ,IAIjC,OAAO,CACX,EAYA,SAAS,EAAoB,EAAU,GACnC,KAAK,SAAW,EAEhB,IAAI,EAAW,CACX,YAAY,EACZ,cAAe,KACf,iBAAkB,KAClB,KAAM,WACN,cAAe,OACf,aAAc,KACd,QAAS,KACT,SAAU,KACV,cAAe,KACf,SAAU,UAAU,UAAY,UAAU,aAC1C,eAAe,GAEnB,KAAK,QAAU,EAAO,EAAU,GAEhC,KAAK,gBAAkB,GACvB,KAAK,WAAa,GAClB,KAAK,kBAAmB,EACxB,KAAK,cAAgB,CAAC,EACtB,KAAK,qBAAsB,EAC3B,KAAK,WAAa,GAClB,KAAK,SAAW,GAChB,KAAK,SAAW,IAAM,KAAK,SAAS,QAAQ,cAAe,IAC3D,KAAK,WAAa,GAClB,KAAK,YAAc,GAGnB,IAAI,EAAW,KAAK,QAAQ,SAAS,cAAc,MAAM,KAAK,GAAG,MAAM,KAAK,GAExE,KAAK,SADL,KAAY,aACI,aAAa,GAEb,aAAiB,GAGrC,KAAK,cAAgB,gDAAkD,KAAK,SAAW,wJAA0J,KAAK,SAAS,YAAc,oEAAsE,EAAQ,UAAY,cAAgB,2BAA6B,iCAAmC,KAAK,SAAS,YAAc,YAAc,KAAK,SAAS,YAAc,2EAA6E,KAAK,SAAW,sHAAwH,KAAK,SAAW,mHAAqH,KAAK,SAAS,mBAAqB,gBAAkB,EAAQ,WAAa,cAAgB,sCAAwC,iCAAmC,KAAK,SAAS,aAAe,YAAc,KAAK,SAAS,aAAe,wFAA0F,KAAK,SAAW,iJAAmJ,KAAK,SAAS,aAAe,8BAE91C,KAAK,gBA1GY,SAAU,GAC3B,MAAM,EAAM,SAAS,cAAc,OAEnC,OADA,EAAI,UAAY,EACT,EAAI,UACf,CAsG2B,CAAa,KAAK,eACzC,KAAK,YAAc,KAAK,gBAAgB,cAAc,4BACtD,KAAK,YAAc,KAAK,gBAAgB,cAAc,2BAA6B,KAAK,UACxF,KAAK,YAAc,KAAK,gBAAgB,cAAc,iCAC5B,aAAtB,KAAK,QAAQ,KACb,KAAK,OAEL,SAAS,cAAc,KAAK,UAAU,iBAAiB,QAAS,KAAK,KAAK,KAAK,MAAO,CAAE,MAAM,GAEtG,CAqWA,OAjWA,EAAoB,UAAY,CAK5B,KAAM,WACF,KAAK,gBACqB,aAAtB,KAAK,QAAQ,MACb,KAAK,gBAAgB,MAAK,KACtB,KAAK,MAAM,IAGnB,SAAS,cAAc,KAAK,UAAU,iBAAiB,SAAS,KAC5D,KAAK,gBAAgB,MAAK,KACtB,KAAK,MAAM,GACb,IAIF,KAAK,QAAQ,eACb,SAAS,cAAc,KAAK,QAAQ,eAAe,iBAAiB,QAAS,KAAK,QAAQ,QAElG,EAEA,KAAM,WACF,KAAK,qBAAqB,MAAK,KAC3B,KAAK,qBAAsB,EACtB,SAAS,eAAe,YAAc,KAAK,WAsC5C,KAAK,gBAAgB,UAAU,OAAO,aACtC,KAAK,gBAAgB,UAAU,IAAI,cArCnC,SAAS,cAAc,KAAK,QAAQ,eAAe,YAAY,KAAK,iBAGpE,KAAK,gBAAgB,cAAc,gCAAgC,iBAAiB,SAAS,KACzF,KAAK,gBAAgB,UAAU,IAAI,aACnC,KAAK,gBAAgB,UAAU,OAAO,WAAW,IAIrD,KAAK,gBAAgB,cAAc,2BAA2B,iBAAiB,SAAS,KACpF,IAAI,EAAW,KAAK,gBAAgB,cAAc,uBAElD,GAAI,EAAU,CACV,IAAI,EAAW,EAAS,cAAc,KAAK,UACvC,EAAa,CACb,UAAa,EAAS,QAAQ,UAC9B,YAAe,EAAS,QAAQ,YAChC,SAAY,KACZ,WAAc,KACd,UAAa,KACb,SAAY,MAEX,EAAS,cAAc,KAAK,UAAU,MAAM,MAAM,mBACnD,EAAW,SAAW,EACtB,EAAW,WAtJpB,SAAU,GACzB,MAAM,EAAM,CACR,IAAK,QACL,IAAK,OACL,IAAK,OACL,IAAK,SACL,IAAM,UAGV,OAAO,EAAK,QAAQ,YAAY,SAAU,GACtC,OAAO,EAAI,EACf,GACJ,CA0IoD,CAAW,GACnC,EAAW,UAAY,EAAS,cAAc,KAAK,UAAU,MAC7D,EAAW,SAAW,EAAS,cAAc,KAAK,WAGtD,KAAK,QAAQ,SAAS,EAC1B,CACA,KAAK,gBAAgB,UAAU,IAAI,aACnC,KAAK,gBAAgB,UAAU,OAAO,WAAW,KAQpD,KAAK,mBAEN,KAAK,gBAAgB,iBAAiB,kBAAkB,SAAS,IAC7D,EAAK,iBAAiB,SAAU,IAC5B,KAAK,SAAS,SAAS,IACnB,EAAG,UAAU,OAAO,qBAAqB,IAE7C,EAAI,cAAc,UAAU,OAAO,qBAAqB,IAE5D,EAAK,iBAAiB,YAAa,IAC/B,KAAK,gBAAgB,cAAc,2BAA2B,OAAO,GACvE,IAEN,KAAK,kBAAmB,GAG5B,KAAK,gBAAgB,cAAc,iCAAiC,OAAO,GAEnF,EAEA,WAAY,SAAU,GAClB,KAAK,QAAU,EAAO,KAAK,QAAS,GAChC,EAAK,kBACL,KAAK,gBAEL,EAAK,gBAEL,KAAK,kBAAmB,EACxB,KAAK,qBAAsB,EAC3B,KAAK,2BAEb,EAKA,kBAAmB,SAAU,GACpB,EAAE,cAAc,UAAU,SAAS,sBACpC,KAAK,WAAW,SAAQ,SAAU,GAC9B,EAAK,UAAU,OAAO,mBAC1B,IACA,EAAE,cAAc,UAAU,IAAI,qBAElC,KAAK,mBAAmB,EAAE,cAAc,QAAmB,UAC/D,EAEA,gBAAiB,SAAU,EAAa,GACpC,IAAI,EAAS,GACT,EAAU,EAAY,cACtB,EAAS,EAAoB,OAcjC,OAbI,KAAK,QAAQ,aACb,GAAU,+CAAiD,EAAU,uCAAyC,EAAc,gDAAkD,EAAS,iGAEvL,EAAO,MAAM,mBACb,EAAmB,MAAE,SAAQ,SAAU,GACnC,GAAU,+CAAiD,EAAU,kBAAoB,EAAO,wBAA0B,EAAc,gDAAkD,EAAS,KAAO,EAAO,8CAAgD,EAAO,KAAO,EAAK,QAAQ,IAAK,KAAO,oBAC5S,IAEA,EAAmB,MAAE,SAAQ,SAAU,GACnC,GAAU,+CAAiD,EAAU,kBAAoB,EAAO,wBAA0B,EAAc,gDAAkD,CAAC,EAAQ,GAAM,KAAK,IAAM,gDAAkD,EAAO,KAAO,EAAK,QAAQ,IAAK,KAAO,oBACjT,IAGG,CACX,EAEA,cAAe,SAAU,GACrB,KAAK,YAAY,UAAY,GAC7B,EAAU,SAAS,IACf,KAAK,YAAY,YAAY,EAAK,GAAG,GAE7C,EAEA,cAAe,WACX,IAAI,EAAO,SAAS,cAAc,QAC7B,mBAAmB,SAAS,kCAAqC,KAAK,QAAQ,gBAC/E,EAAK,IAAM,aACX,EAAK,KAAO,WACZ,EAAK,KAAO,cAAgB,4CAC5B,EAAK,MAAQ,SACb,SAAS,KAAK,YAAY,GAC1B,mBAAmB,KAAK,kCAExB,KAAK,QAAQ,kBACb,KAAK,QAAQ,iBAAiB,SAAQ,IAClC,IAAK,mBAAmB,SAAS,GAAU,CACvC,IAAI,EAAc,cAAgB,eAAiB,EAC/C,EAAQ,MAAM,iBACd,EAAc,GAElB,EAAO,SAAS,cAAc,QAC9B,EAAK,IAAM,aACX,EAAK,KAAO,WACZ,EAAK,KAAO,EACZ,EAAK,MAAQ,SACb,SAAS,KAAK,YAAY,GAC1B,mBAAmB,KAAK,EAC5B,IAGZ,EAEA,mBAAoB,eAAgB,EAAI,GACpC,IAAK,KAAK,QAAQ,cAEd,OADA,QAAQ,MAAM,mDACP,EAEX,GAAI,KAAK,oBACL,OAAO,EAED,IAAN,GAAW,KAAK,QAAQ,cAAc,OAAS,GAC/C,KAAK,YAAY,KAAK,CAClB,MAAS,KAAK,SAAS,UACvB,YAAa,GACb,aAAc,MACd,OAAU,KAIlB,IACI,EADA,EAAa,KAAK,QAAQ,cAAc,GAExC,EAAW,SAAS,MACpB,EAAU,SAAS,KAAK,GAAY,GACpC,EAAU,SAAS,KAAK,GAAS,KAEjC,EAAa,cAAgB,mBAAqB,EAClD,EAAU,EAAW,UAAU,EAAW,YAAY,KAAO,UAG3D,MAAM,GACP,MAAK,GAAY,EAAS,SAC1B,MAAK,IAGF,IAAI,EAAa,CAAC,EAGlB,OAFA,EAF8B,EAAQ,QAAQ,aAAa,SAAU,GAAK,OAAO,EAAE,GAAG,aAAe,IAAG,QAAQ,aAAc,KAE1F,EACpC,OAAO,OAAO,KAAK,cAAe,GAC9B,EAAI,IAAM,KAAK,QAAQ,cAAc,QAErC,KAAK,yBAEL,KAAK,gBAAkB,KAAK,YAAY,GAAG,cAG3C,KAAK,YAAY,UAAY,KAAK,mBAAmB,KAAK,aAG1D,KAAK,YAAY,UAAY,KAAK,WAGlC,KAAK,SAAW,KAAK,YAAY,iBAAiB,kBAGlD,KAAK,YAAY,iBAAiB,QA/UrC,SAAU,EAAM,EAAM,GACnC,IAAI,EACJ,OAAO,WACH,MAAM,EAAU,KACZ,EAAO,UAKL,EAAU,IAAc,EAC9B,aAAa,GACb,EAAU,YANI,WACV,EAAU,KACL,GAAW,EAAK,MAAM,EAAS,EACxC,GAG4B,GACxB,GAAS,EAAK,MAAM,EAAS,EACrC,CACJ,CAiU+D,CAAS,KAAK,YAAa,KAAK,KAAK,OAAO,GAGvF,KAAK,WAAa,KAAK,YAAY,iBAAiB,gCAGpD,KAAK,WAAW,SAAS,IACrB,EAAK,iBAAiB,QAAS,KAAK,kBAAkB,KAAK,OAAO,EAAM,KAGrE,GAEA,KAAK,mBAAmB,EAAI,EACvC,IACD,OAAO,IACN,QAAQ,IAAI,GACL,IAEnB,EAEA,cAAe,iBACX,GAA2C,mBAA/B,KAAK,QAAoB,aACjC,OAAO,KAAK,QAAQ,cAE5B,EAEA,yBAA0B,WACtB,KAAK,YAAc,GACnB,KAAK,WAAa,GAClB,KAAK,cAAgB,CAAC,EACtB,KAAK,SAAW,GAChB,KAAK,WAAa,GAClB,KAAK,WAAa,GAClB,KAAK,gBAAkB,EAC3B,EAEA,YAAa,SAAU,GAGnB,MAAM,EAAa,EAAE,OAAO,MAAM,cAClC,KAAK,kBAAkB,EAAY,SAEvC,EAEA,kBAAmB,SAAU,EAAY,GACrC,KAAK,WAAa,OAAO,QAAQ,KAAK,UAAU,QAAQ,IAC/C,IAAM,EAAK,GAAG,QAAQ,GAAU,QAAQ,KAAyC,QAAzB,KAAK,iBAA6B,EAAK,GAAG,QAAmB,YAAM,KAAK,mBAMzI,KAAK,cAAc,KAAK,WAE5B,EAEA,uBAAwB,WACpB,IAAK,MAAO,EAAa,KAAmB,OAAO,QAAQ,KAAK,eAC5D,KAAK,gBAAgB,EAAe,aAA8B,EArV5D,QAAQ,WAAY,OAqVsD,GAChF,KAAK,eAAe,EAAa,EAEzC,EAEA,eAAgB,SAAU,EAAa,QACN,IAAzB,EAAe,MACf,KAAK,YAAc,KAAK,gBAAgB,EAAa,GAErD,OAAO,QAAQ,GAAgB,SAAS,IACpC,KAAK,YAAc,KAAK,gBAAgB,EAAa,EAAK,GAAG,GAGzE,EAEA,mBAAoB,SAAU,GAC1B,KAAK,gBAAkB,EACvB,KAAK,WAAa,OAAO,QAAQ,KAAK,UAAU,QAAO,SAAU,GAC7D,MAAI,QAAU,GAAc,IAAe,EAAK,GAAG,QAAmB,SAI1E,IAEA,KAAK,cAAc,KAAK,WAE5B,EAEA,gBAAiB,SAAU,EAAa,GACpC,IAAI,OACyB,IAAzB,EAAe,OACf,EAAW,CACP,MAAS,EACT,YAAuC,IAA7B,EAAuB,OAAkB,EAAuB,OAAI,GAC9E,iBAA6C,IAAhC,EAAe,aAA6B,EAAe,aAAe,GACvF,kBAA+C,IAAjC,EAAe,cAA8B,EAAe,cAAgB,OAE9F,KAAK,YAAY,KAAK,IAEtB,OAAO,QAAQ,GAAgB,SAAQ,IACnC,EAAW,CACP,MAAS,EAAc,MAAQ,EAAK,GACpC,YAAgC,IAAtB,EAAK,GAAW,OAAkB,EAAK,GAAW,OAAI,GAChE,iBAAsC,IAAzB,EAAK,GAAG,aAA6B,EAAK,GAAG,aAAe,GACzE,kBAAwC,IAA1B,EAAK,GAAG,cAA8B,EAAK,GAAG,cAAgB,OAEhF,KAAK,YAAY,KAAK,EAAS,GAG3C,EAEA,mBAAoB,SAAU,GAC1B,IAAI,EAAS,GAiBb,OAhBA,EAAY,SAAS,IACjB,IAAI,EAAc,GAIlB,GAHI,EAAK,gBAAkB,KAAK,kBAC5B,EAAc,qBAEd,QAAU,EAAK,cAAe,CAC9B,IAAI,EAAU,aAAe,EAAK,aAAe,SAC7C,EAAa,OAAE,MAAM,qBACrB,EAAU,aAAe,EAAa,OAAI,KAAO,EAAK,aAAe,QAEzE,GAAU,0CAA4C,EAAc,sBAAwB,EAAK,cAAgB,KAAO,EAAU,EAAY,MAAI,QACtJ,MACI,GAAU,0CAA4C,EAAc,sBAAwB,EAAK,cAAgB,gBAAkB,KAAK,QAAQ,SAAW,cAAgB,kCAAoC,yCAA2C,KAAK,SAAS,UAAY,YAAc,KAAK,SAAS,UAAY,OAAS,EAAY,MAAI,QACzV,IAGG,CACX,GAGG,CACX,K"} diff --git a/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.css b/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.css new file mode 100644 index 000000000..94998d6d3 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.css @@ -0,0 +1,361 @@ +.uip-modal { + position: fixed; + height: 100%; + width: 100%; + bottom: 0; + left: 0; + background-color: rgba(0, 0, 0, 0.6); + z-index: 9999; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + /* Footer */ +} +.uip-modal *, +.uip-modal :before, +.uip-modal :after { + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.uip-modal.uip-close { + opacity: 0; + visibility: hidden; + -webkit-transition: all 0.4s ease-in-out; + transition: all 0.4s ease-in-out; +} +.uip-modal.uip-open { + opacity: 1; + visibility: visible; + -webkit-transition: all 0.4s ease-in-out; + transition: all 0.4s ease-in-out; +} +.uip-modal .uip-modal--content { + position: absolute; + border-radius: 3px; + -webkit-box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2); + box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2); + overflow: hidden; + font-family: Roboto, Arial, Helvetica, Verdana, sans-serif; + background-color: #f1f3f5; + width: 100%; + margin: auto; + left: 0; + right: 0; + /* Header */ + /* body */ +} +.uip-modal .uip-modal--content .uip-modal--header { + padding: 15px 15px; + background-color: #fff; + -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); + position: relative; + z-index: 1; + font-size: 15px; + color: #495157; + font-weight: 500; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; +} +.uip-modal .uip-modal--content .uip-modal--header .uip-modal--header-logo-title { + padding-top: 2px; + line-height: 1; + text-transform: uppercase; + font-weight: bold; + cursor: pointer; +} +.uip-modal .uip-modal--content .uip-modal--header .uip-modal--header-close-btn { + cursor: pointer; +} +.uip-modal .uip-modal--content .uip-modal--body { + font-size: 12px; + line-height: 1.5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 0; + height: 700px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + min-height: 50px; + max-height: 85vh; + overflow: auto; + /* Sidebar Tabs */ + /* Preview wrapper */ +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar { + -ms-flex-negative: 0; + flex-shrink: 0; + width: 25%; + background-color: hsla(0, 0%, 100%, 0.3); +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs { + margin-top: 30px; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item { + padding: 15px; + font-size: 14px; + color: #6d7882; + text-align: left; + cursor: pointer; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + text-transform: capitalize; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item i { + font-size: 20px; + padding-right: 15px; + color: #a4afb7; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item img { + padding-right: 15px; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active { + background-color: #fff; + -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1); +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active:after { + content: ""; + position: absolute; + height: 100%; + width: 5px; + top: 0; + left: 0; + background-color: #1cc2ff; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active i { + color: #1cc2ff; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + /* search filter */ +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner { + overflow: auto; + margin: 25px -15px 0; + padding: 0 15px 15px; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview { + display: -ms-grid; + display: grid; + grid-gap: 20px; + margin: 20px 0; + /* Icon Item */ +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item { + position: relative; + padding: 10px; + background-color: #fff; + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05); + border-radius: 3px; + cursor: pointer; + -webkit-transition: all 0.3s; + transition: all 0.3s; + overflow: hidden; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item:hover { + -webkit-box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); + box-shadow: 0 1px 14px rgba(0, 0, 0, 0.16); +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item.universal-selected { + -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #1cc2ff; + box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 0 0 3px #1cc2ff; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 1px; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner i, +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner .uip-icon-item__icon { + font-size: 25px; + color: #6d7882; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner .uip-icon-item-name { + color: #c2cbd2; + font-size: 11px; + padding: 13px 0 0; + max-width: 100%; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + text-transform: capitalize; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search { + position: relative; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input { + width: calc(100% - 15px); + padding: 8px 15px; + background-color: #fff; + border: none; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-webkit-input-placeholder { + font-style: italic; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-moz-placeholder { + font-style: italic; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input:-ms-input-placeholder { + font-style: italic; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-ms-input-placeholder { + font-style: italic; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::placeholder { + font-style: italic; +} +.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search img { + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + right: 25px; +} +.uip-modal .uip-modal--footer { + border-top: 1px solid #e6e9ec; + text-align: center; + background-color: #fff; + border: none; + display: none; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 5px; + -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); + box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; +} +.uip-modal .uip-modal--footer button.uip-insert-icon-button { + padding: 10px 35px; + color: #fff; + font-size: 15px; + background-color: #42d6a0; + border: none; + cursor: pointer; + outline: 0; +} +.uip-modal .uip-modal--footer .universal-button { + height: 40px; + margin-left: 5px; +} +.uip-modal .uip-modal--footer .universal-button-success { + padding: 12px 36px; + color: #fff; + width: initial; + font-size: 15px; +} +.uip-modal .uip-modal--footer .universal-button-success:hover { + background-color: #42d6a0; +} + +/* Responsive css */ +.uip-modal--icon-preview { + -ms-grid-columns: (1fr)[2]; + grid-template-columns: repeat(2, 1fr); +} + +.uip-modal--icon-preview-wrap { + width: 100%; + padding: 30px 50px 0; +} + +.uip-modal .uip-modal--content { + max-width: 100%; +} + +.uip-modal--sidebar-tab-item { + padding: 15px 15px 15px 25px; + font-size: 11px; +} +.uip-modal--sidebar-tab-item i { + font-size: 15px; +} + +.uip-modal--sidebar-tab-item i, +.uip-modal--sidebar-tab-item img { + display: none; +} + +@media (min-width: 480px) { + .uip-modal--icon-preview { + -ms-grid-columns: (1fr)[3]; + grid-template-columns: repeat(3, 1fr); + } + .uip-modal--icon-preview-wrap { + padding: 30px 80px 0; + width: 75%; + } + .uip-modal--sidebar-tab-item i, + .uip-modal--sidebar-tab-item img { + display: block; + } +} +@media (min-width: 600px) { + .uip-modal--icon-preview { + -ms-grid-columns: (1fr)[4]; + grid-template-columns: repeat(4, 1fr); + } +} +@media (min-width: 768px) { + .uip-modal--icon-preview { + -ms-grid-columns: (1fr)[5]; + grid-template-columns: repeat(5, 1fr); + } +} +@media (min-width: 1024px) { + .uip-modal--icon-preview { + -ms-grid-columns: (1fr)[6]; + grid-template-columns: repeat(6, 1fr); + } + .uip-modal .uip-modal--content { + max-width: 990px; + } +} +@media (min-width: 1440px) { + .uip-modal--icon-preview { + -ms-grid-columns: (1fr)[7]; + grid-template-columns: repeat(7, 1fr); + } + .uip-modal .uip-modal--content { + max-width: 1200px; + } +} diff --git a/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.min.css b/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.min.css new file mode 100644 index 000000000..8701ad175 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/assets/stylesheets/universal-icon-picker.min.css @@ -0,0 +1 @@ +.uip-modal{position:fixed;height:100%;width:100%;bottom:0;left:0;background-color:rgba(0,0,0,0.6);z-index:9999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.uip-modal *,.uip-modal :after,.uip-modal :before{-webkit-box-sizing:border-box;box-sizing:border-box}.uip-modal.uip-close{opacity:0;visibility:hidden;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.uip-modal.uip-open{opacity:1;visibility:visible;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out}.uip-modal .uip-modal--content{position:absolute;border-radius:3px;-webkit-box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);overflow:hidden;font-family:Roboto,Arial,Helvetica,Verdana,sans-serif;background-color:#f1f3f5;width:100%;margin:auto;left:0;right:0}.uip-modal .uip-modal--content .uip-modal--header{padding:15px 15px;background-color:#fff;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.1);box-shadow:0 0 8px rgba(0,0,0,0.1);position:relative;z-index:1;font-size:15px;color:#495157;font-weight:500;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.uip-modal .uip-modal--content .uip-modal--header .uip-modal--header-logo-title{padding-top:2px;line-height:1;text-transform:uppercase;font-weight:bold;cursor:pointer}.uip-modal .uip-modal--content .uip-modal--header .uip-modal--header-close-btn{cursor:pointer}.uip-modal .uip-modal--content .uip-modal--body{font-size:12px;line-height:1.5;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;height:700px;display:-webkit-box;display:-ms-flexbox;display:flex;min-height:50px;max-height:85vh;overflow:auto}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar{-ms-flex-negative:0;flex-shrink:0;width:25%;background-color:hsla(0,0%,100%,0.3)}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs{margin-top:30px}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item{padding:15px;font-size:14px;color:#6d7882;text-align:left;cursor:pointer;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-transform:capitalize}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item i{font-size:20px;padding-right:15px;color:#a4afb7}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item img{padding-right:15px}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active{background-color:#fff;-webkit-box-shadow:0 6px 20px 0 rgba(0,0,0,0.1);box-shadow:0 6px 20px 0 rgba(0,0,0,0.1)}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active:after{content:"";position:absolute;height:100%;width:5px;top:0;left:0;background-color:#1cc2ff}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--sidebar .uip-modal--sidebar-tabs .uip-modal--sidebar-tab-item.universal-active i{color:#1cc2ff}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner{overflow:auto;margin:25px -15px 0;padding:0 15px 15px}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview{display:-ms-grid;display:grid;grid-gap:20px;margin:20px 0}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item{position:relative;padding:10px;background-color:#fff;-webkit-box-shadow:0 1px 12px rgba(0,0,0,0.05);box-shadow:0 1px 12px rgba(0,0,0,0.05);border-radius:3px;cursor:pointer;-webkit-transition:all 0.3s;transition:all 0.3s;overflow:hidden}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item:hover{-webkit-box-shadow:0 1px 14px rgba(0,0,0,0.16);box-shadow:0 1px 14px rgba(0,0,0,0.16)}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item.universal-selected{-webkit-box-shadow:0 1px 12px rgba(0,0,0,0.05),0 0 0 3px #1cc2ff;box-shadow:0 1px 12px rgba(0,0,0,0.05),0 0 0 3px #1cc2ff}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:1px}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner .uip-icon-item__icon,.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner i{font-size:25px;color:#6d7882}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-preview-inner .uip-modal--icon-preview .uip-icon-item .uip-icon-item-inner .uip-icon-item-name{color:#c2cbd2;font-size:11px;padding:13px 0 0;max-width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;text-transform:capitalize}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search{position:relative}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input{width:calc(100% - 15px);padding:8px 15px;background-color:#fff;border:none}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-webkit-input-placeholder{font-style:italic}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-moz-placeholder{font-style:italic}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input:-ms-input-placeholder{font-style:italic}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::-ms-input-placeholder{font-style:italic}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search input::placeholder{font-style:italic}.uip-modal .uip-modal--content .uip-modal--body .uip-modal--icon-preview-wrap .uip-modal--icon-search img{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:25px}.uip-modal .uip-modal--footer{border-top:1px solid #e6e9ec;text-align:center;background-color:#fff;border:none;display:none;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:5px;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.1);box-shadow:0 0 8px rgba(0,0,0,0.1);position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.uip-modal .uip-modal--footer button.uip-insert-icon-button{padding:10px 35px;color:#fff;font-size:15px;background-color:#42d6a0;border:none;cursor:pointer;outline:0}.uip-modal .uip-modal--footer .universal-button{height:40px;margin-left:5px}.uip-modal .uip-modal--footer .universal-button-success{padding:12px 36px;color:#fff;width:initial;font-size:15px}.uip-modal .uip-modal--footer .universal-button-success:hover{background-color:#42d6a0}.uip-modal--icon-preview{-ms-grid-columns:(1fr)[2];grid-template-columns:repeat(2,1fr)}.uip-modal--icon-preview-wrap{width:100%;padding:30px 50px 0}.uip-modal .uip-modal--content{max-width:100%}.uip-modal--sidebar-tab-item{padding:15px 15px 15px 25px;font-size:11px}.uip-modal--sidebar-tab-item i{font-size:15px}.uip-modal--sidebar-tab-item i,.uip-modal--sidebar-tab-item img{display:none}@media (min-width:480px){.uip-modal--icon-preview{-ms-grid-columns:(1fr)[3];grid-template-columns:repeat(3,1fr)}.uip-modal--icon-preview-wrap{padding:30px 80px 0;width:75%}.uip-modal--sidebar-tab-item i,.uip-modal--sidebar-tab-item img{display:block}}@media (min-width:600px){.uip-modal--icon-preview{-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4,1fr)}}@media (min-width:768px){.uip-modal--icon-preview{-ms-grid-columns:(1fr)[5];grid-template-columns:repeat(5,1fr)}}@media (min-width:1024px){.uip-modal--icon-preview{-ms-grid-columns:(1fr)[6];grid-template-columns:repeat(6,1fr)}.uip-modal .uip-modal--content{max-width:990px}}@media (min-width:1440px){.uip-modal--icon-preview{-ms-grid-columns:(1fr)[7];grid-template-columns:repeat(7,1fr)}.uip-modal .uip-modal--content{max-width:1200px}} diff --git a/src/static_src/vendor/universal-icon-picker/package.json b/src/static_src/vendor/universal-icon-picker/package.json new file mode 100644 index 000000000..5626242b5 --- /dev/null +++ b/src/static_src/vendor/universal-icon-picker/package.json @@ -0,0 +1,28 @@ +{ + "name": "@migliori/universal-icon-picker", + "version": "1.1.8", + "description": "Vanilla JS Icon Picker for any Icon Library", + "main": "index.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/migliori/universal-icon-picker.git" + }, + "keywords": [ + "icon", + "picker", + "javascript", + "fontawesome", + "bootstrap", + "material", + "icon picker" + ], + "author": "Gilles Migliori", + "license": "MIT", + "bugs": { + "url": "https://github.com/migliori/universal-icon-picker/issues" + }, + "homepage": "https://universal-icon-picker.miglisoft.com" +} diff --git a/src/teams/admin.py b/src/teams/admin.py index 423f27f34..866bc6427 100644 --- a/src/teams/admin.py +++ b/src/teams/admin.py @@ -23,17 +23,17 @@ class TeamAdmin(admin.ModelAdmin): save_as = True @admin.display( - description="Responsible", + description="Leads", ) - def get_responsible(self, obj): + def get_leads(self, obj): return ", ".join( - [resp.profile.public_credit_name for resp in obj.responsible_members.all()], + [lead.profile.public_credit_name for lead in obj.leads.all()], ) list_display = [ "name", "camp", - "get_responsible", + "get_leads", "needs_members", "public_irc_channel_name", "public_irc_channel_bot", diff --git a/src/teams/apps.py b/src/teams/apps.py index ab1025565..753e60cf2 100644 --- a/src/teams/apps.py +++ b/src/teams/apps.py @@ -4,6 +4,7 @@ from .signal_handlers import teammember_deleted from .signal_handlers import teammember_saved +from .signal_handlers import team_saved class TeamsConfig(AppConfig): @@ -19,5 +20,10 @@ def ready(self): post_delete.connect( teammember_deleted, sender="teams.TeamMember", - dispatch_uid="teammember_save_signal", + dispatch_uid="teammember_delete_signal", + ) + post_save.connect( + team_saved, + sender="teams.Team", + dispatch_uid="team_save_signal", ) diff --git a/src/teams/email.py b/src/teams/email.py index 6450e178a..2e1825a07 100644 --- a/src/teams/email.py +++ b/src/teams/email.py @@ -55,9 +55,7 @@ def add_new_membership_email(membership): responsible_team=membership.team, text_template="emails/new_membership_email.txt", html_template="emails/new_membership_email.html", - to_recipients=[ - resp.email for resp in membership.team.responsible_members.all() - ], + to_recipients=[resp.email for resp in membership.team.leads.all()], formatdict=formatdict, subject="New membership request for {} at {}".format( membership.team.name, diff --git a/src/teams/migrations/0053_alter_teammember_options_and_more.py b/src/teams/migrations/0053_alter_teammember_options_and_more.py new file mode 100644 index 000000000..89da1380d --- /dev/null +++ b/src/teams/migrations/0053_alter_teammember_options_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.2.16 on 2024-09-28 06:09 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('auth', '0012_alter_user_first_name_max_length'), + ('teams', '0052_team_permission_set'), + ] + + operations = [ + migrations.AlterModelOptions( + name='teammember', + options={'ordering': ['-lead', '-approved']}, + ), + migrations.RenameField( + model_name='teammember', + old_name='responsible', + new_name='lead', + ), + migrations.RemoveField( + model_name='team', + name='permission_set', + ), + migrations.AddField( + model_name='team', + name='group', + field=models.OneToOneField(blank=True, help_text='The django group carrying the team permissions for this team.', null=True, on_delete=django.db.models.deletion.CASCADE, to='auth.group'), + ), + ] diff --git a/src/teams/migrations/0054_create_team_groups.py b/src/teams/migrations/0054_create_team_groups.py new file mode 100644 index 000000000..052e27437 --- /dev/null +++ b/src/teams/migrations/0054_create_team_groups.py @@ -0,0 +1,33 @@ +# Generated by Django 4.2.16 on 2024-09-28 06:10 + +from django.db import migrations +from django.contrib.auth.models import Group + +def create_team_groups(apps, schema_editor): + Team = apps.get_model("teams", "Team") + + for team in Team.objects.all(): + # skip team if it already has a group + if hasattr(team, "group"): + continue + # get or create group for team + group, created = Group.objects.get_or_create( + name=f"{team.camp.slug}-{team.slug}-team", + ) + # set group and save + team.group = group + team.save() + # loop over team memberships and add group memberships + for membership in team.memberships.all(): + membership.update_group_memberships() + + +class Migration(migrations.Migration): + + dependencies = [ + ('teams', '0053_alter_teammember_options_and_more'), + ] + + operations = [ + migrations.RunPython(create_team_groups), + ] diff --git a/src/teams/models.py b/src/teams/models.py index 58ff7cb9f..febbc2d3e 100644 --- a/src/teams/models.py +++ b/src/teams/models.py @@ -1,4 +1,7 @@ +from django.contrib.contenttypes.models import ContentType import logging +from camps.models import Permission as CampPermission + from django.conf import settings from django.contrib.postgres.fields import DateTimeRangeField @@ -6,6 +9,7 @@ from django.db import models from django.urls import reverse_lazy from django_prometheus.models import ExportModelOperationsMixin +from django.contrib.auth.models import Group, Permission from utils.models import CampRelatedModel from utils.models import CreatedUpdatedModel @@ -48,6 +52,14 @@ class Team(ExportModelOperationsMixin("team"), CampRelatedModel): name = models.CharField(max_length=255, help_text="The team name") + group = models.OneToOneField( + Group, + null=True, + blank=True, + on_delete=models.CASCADE, + help_text="The django group carrying the team permissions for this team.", + ) + slug = models.SlugField( max_length=255, blank=True, @@ -60,13 +72,6 @@ class Team(ExportModelOperationsMixin("team"), CampRelatedModel): description = models.TextField() - permission_set = models.CharField( - max_length=100, - blank=True, - default="", - help_text="The name of this Teams set of permissions. Must be a value from camps.models.Permission.Meta.permissions.", - ) - needs_members = models.BooleanField( default=True, help_text="Check to indicate that this team needs more members", @@ -172,6 +177,12 @@ def save(self, **kwargs): if not self.shortslug: self.shortslug = self.slug + # generate group if needed + if not self.group: + self.group = Group.objects.create( + name=f"{self.camp.slug}-{self.slug}-team", + ) + super().save(**kwargs) def clean(self): @@ -255,40 +266,64 @@ def unapproved_members(self): return self.members.filter(teammember__approved=False) @property - def responsible_members(self): + def leads(self): """ - Return only approved and responsible members - Used to handle permissions for team management + Return only approved team leads + Used to handle permissions for team leads """ return self.members.filter( teammember__approved=True, - teammember__responsible=True, + teammember__lead=True, ) @property def regular_members(self): """ - Return only approved and not responsible members with + Return only approved and not lead members with an approved public_credit_name. Used on the people pages. """ return self.members.filter( teammember__approved=True, - teammember__responsible=False, + teammember__lead=False, ) @property def unnamed_members(self): """ - Returns only approved and not responsible members, + Returns only approved and not team lead members, without an approved public_credit_name. """ return self.members.filter( teammember__approved=True, - teammember__responsible=False, + teammember__lead=False, profile__public_credit_name_approved=False, ) + @property + def member_permission_set(self): + return f"camps.{self.slug}_team_member" + + @property + def mapper_permission_set(self): + return f"camps.{self.slug}_team_mapper" + + @property + def facilitator_permission_set(self): + return f"camps.{self.slug}_team_facilitator" + + @property + def lead_permission_set(self): + return f"camps.{self.slug}_team_lead" + + @property + def pos_permission_set(self): + return f"camps.{self.slug}_team_pos" + + @property + def infopager_permission_set(self): + return f"camps.{self.slug}_team_infopager" + class TeamMember(ExportModelOperationsMixin("team_member"), CampRelatedModel): user = models.ForeignKey( @@ -308,7 +343,7 @@ class TeamMember(ExportModelOperationsMixin("team_member"), CampRelatedModel): help_text="True if this membership is approved. False if not.", ) - responsible = models.BooleanField( + lead = models.BooleanField( default=False, help_text="True if this teammember is responsible for this Team. False if not.", ) @@ -319,13 +354,13 @@ class TeamMember(ExportModelOperationsMixin("team_member"), CampRelatedModel): ) class Meta: - ordering = ["-responsible", "-approved"] + ordering = ["-lead", "-approved"] def __str__(self): return "{} is {} {} member of team {}".format( self.user, "" if self.approved else "an unapproved", - "" if not self.responsible else "a responsible", + "" if not self.lead else "a lead", self.team, ) @@ -336,6 +371,32 @@ def camp(self): camp_filter = "team__camp" + def update_group_membership(self, deleted=False): + """Ensure group membership for this team membership is correct.""" + if self.approved and not deleted: + logger.debug(f"Adding user {self.user} to group {self.team.group}") + self.team.group.user_set.add(self.user) + else: + logger.debug(f"Removing user {self.user} from group {self.team.group}") + self.team.group.user_set.remove(self.user) + + def update_team_lead_permissions(self, deleted=False): + """Ensure team lead perms for this team membership are correct.""" + lead_perm = Permission.objects.get( + codename=f"{self.team.slug}_team_lead", + content_type=ContentType.objects.get_for_model(CampPermission), + ) + if self.approved and self.lead and not deleted: + logger.debug( + f"Adding team lead permissions to user {self.user} for {self.team}", + ) + self.user.user_permissions.add(lead_perm) + else: + logger.debug( + f"Removing team lead permissions from user {self.user} for {self.team}", + ) + self.user.user_permissions.remove(lead_perm) + class TeamTask(ExportModelOperationsMixin("team_task"), CampRelatedModel): team = models.ForeignKey( diff --git a/src/teams/signal_handlers.py b/src/teams/signal_handlers.py index 067310da8..926821a99 100644 --- a/src/teams/signal_handlers.py +++ b/src/teams/signal_handlers.py @@ -1,4 +1,6 @@ import logging +from django.conf import settings + logger = logging.getLogger("bornhack.%s" % __name__) @@ -7,7 +9,7 @@ def teammember_saved(sender, instance, created, **kwargs): """ This signal handler is called whenever a TeamMember instance is saved """ - # if this is a new unapproved teammember send a mail to team responsibles + # if this is a new unapproved teammember send a mail to team leads if created and not instance.approved: # call the mail sending function # late import to please django 3.2 or "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet." @@ -15,6 +17,11 @@ def teammember_saved(sender, instance, created, **kwargs): if not add_new_membership_email(instance): logger.error("Error adding email to outgoing queue") + return + + # make sure the teams group membership and permission is uptodate + instance.update_group_membership() + instance.update_team_lead_permissions() def teammember_deleted(sender, instance, **kwargs): @@ -34,3 +41,31 @@ def teammember_deleted(sender, instance, **kwargs): ): # TODO: remove user from public channel ACL pass + + # make sure the teams group membership is uptodate + instance.update_group_membership(deleted=True) + instance.update_team_lead_permissions(deleted=True) + + +def team_saved(sender, instance, created, **kwargs): + """ + This signal handler is called whenever a Team instance is saved + """ + # late imports + from django.contrib.auth.models import Permission + from django.contrib.contenttypes.models import ContentType + from camps.models import Permission as CampPermission + + perm_content_type = ContentType.objects.get_for_model(CampPermission) + # make sure required permissions exist in the database + for name, desc in settings.BORNHACK_TEAM_PERMISSIONS.items(): + codename = f"{instance.slug}_team_{name}" + perm, created = Permission.objects.get_or_create( + codename=codename, + content_type=perm_content_type, + defaults={ + "name": f"{instance.name} {desc}", + }, + ) + if created: + logger.debug(f"Created new permission camps.{codename}") diff --git a/src/teams/templates/team_base.html b/src/teams/templates/team_base.html index 484f11425..869d52c45 100644 --- a/src/teams/templates/team_base.html +++ b/src/teams/templates/team_base.html @@ -25,7 +25,7 @@

    {{ team.name }} Team

  • Members - {% if request.user in team.responsible_members.all and team.unapproved_members %} + {% if request.user in team.leads.all and team.unapproved_members %} Pending {% endif %} @@ -45,7 +45,7 @@

    {{ team.name }} Team

  • {% endif %} - {% if request.user in team.responsible_members %} + {% if request.user in team.leads %}
  • Info categories @@ -71,7 +71,7 @@

    {{ team.name }} Team

    {% if request.user in team.members.all %}

    Your membership status: {% membershipstatus user team %}

    - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %}
    Manage Team {% endif %} diff --git a/src/teams/templates/team_guide.html b/src/teams/templates/team_guide.html index 20d131b0d..e5776a831 100644 --- a/src/teams/templates/team_guide.html +++ b/src/teams/templates/team_guide.html @@ -15,7 +15,7 @@ target="_blank"> Print - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Edit {% endif %} diff --git a/src/teams/templates/team_join.html b/src/teams/templates/team_join.html index d34fa3734..974e152ae 100644 --- a/src/teams/templates/team_join.html +++ b/src/teams/templates/team_join.html @@ -9,7 +9,7 @@

    Really join the {{ team.name }} Team for {{ team.camp.title }}?

    -

    Your membership will need to be approved by a team responsible. You will receive an email when your membership request has been processed.

    +

    Your membership will need to be approved by a team lead. You will receive an email when your membership request has been processed.

    diff --git a/src/teams/templates/team_list.html b/src/teams/templates/team_list.html index 78fb507cb..2582a9bcc 100644 --- a/src/teams/templates/team_list.html +++ b/src/teams/templates/team_list.html @@ -12,9 +12,9 @@

    {{ camp.title }} Teams

    About teams

    -

    This is a list of the teams for {{ camp.title }}. To join a team just press the Join button, but please put some info in your profile first, so the team responsible has some idea who you are.

    -

    You can also leave a team of course, but please let the team responsible know why :)

    -

    Team memberships need to be approved by a team responsible. You will receive a message when your membership has been approved.

    +

    This is a list of the teams for {{ camp.title }}. To join a team just press the Join button, but please put some info in your profile first, so the team leads have some idea who you are.

    +

    You can also leave a team of course, but please let the team leads know why :)

    +

    Team memberships need to be approved by a team lead. You will receive a message when your membership has been approved.

    At {{ camp.title }} all organisers and volunteers buy full tickets like everyone else. At future events our budget may allow for discounts or free tickets for volunteers, but currently it does not.

    We currently have {{ teams.count }} teams for {{ camp.title }}.

    @@ -30,8 +30,8 @@

    Your teams

  • {{ team_member.team.name }} - {% if team_member.responsible %} - (Responsible) + {% if team_member.lead %} + (Lead) {% endif %}
  • @@ -54,7 +54,7 @@

    Your teams

    Name Description - Responsible + Lead Members Tasks {% if request.user.is_authenticated %} @@ -76,7 +76,7 @@

    Your teams

    - {% for resp in team.responsible_members.all %} + {% for resp in team.leads.all %} {{ resp.profile.get_public_credit_name }}{% if not forloop.last %},{% endif %}
    {% endfor %} @@ -98,7 +98,7 @@

    Your teams

    Details - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Manage {% endif %} {% if request.user in team.members.all %} diff --git a/src/teams/templates/team_members.html b/src/teams/templates/team_members.html index 12389aad1..64bd2c039 100644 --- a/src/teams/templates/team_members.html +++ b/src/teams/templates/team_members.html @@ -24,7 +24,7 @@

    Members

    Status - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Email @@ -39,16 +39,16 @@

    Members

    {% for member in team.memberships.all %} - {% if member.approved or not member.approved and request.user in team.responsible_members.all %} + {% if member.approved or not member.approved and request.user in team.leads.all %} {{ member.user.profile.get_public_credit_name }} {% if member.user == request.user %}(this is you!){% endif %} - Team {% if member.responsible %}Responsible{% else %}Member{% endif %} + Team {% if member.lead %}Lead{% else %}Member{% endif %} {% if not member.approved %}(pending approval){% endif %} - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} {{ member.user.email }} diff --git a/src/teams/templates/team_shift_list.html b/src/teams/templates/team_shift_list.html index 5553718f3..5e5b950f7 100644 --- a/src/teams/templates/team_shift_list.html +++ b/src/teams/templates/team_shift_list.html @@ -8,7 +8,7 @@ {% block team_content %} - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Create a single shift @@ -56,7 +56,7 @@

    {% endfor %} - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Edit diff --git a/src/teams/templates/team_tasks.html b/src/teams/templates/team_tasks.html index a72b24fe4..75c4f80d6 100644 --- a/src/teams/templates/team_tasks.html +++ b/src/teams/templates/team_tasks.html @@ -16,7 +16,7 @@

    Tasks

    The {{ team.name }} Team is responsible for the following tasks. - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Create Task {% endif %}

    @@ -44,7 +44,7 @@

    Tasks

    {{ task.completed }} Details - {% if request.user in team.responsible_members.all %} + {% if request.user in team.leads.all %} Edit Task {% endif %} diff --git a/src/teams/templatetags/teams_tags.py b/src/teams/templatetags/teams_tags.py index 3dc724ce4..e3500210a 100644 --- a/src/teams/templatetags/teams_tags.py +++ b/src/teams/templatetags/teams_tags.py @@ -13,8 +13,8 @@ def is_team_member(user, team): @register.simple_tag def membershipstatus(user, team, showicon=False): - if user in team.responsible_members.all(): - text = "Responsible" + if user in team.leads.all(): + text = "Lead" icon = "fa-star" elif user in team.approved_members.all(): text = "Member" diff --git a/src/teams/views/base.py b/src/teams/views/base.py index 8150fcd1e..b205bd633 100644 --- a/src/teams/views/base.py +++ b/src/teams/views/base.py @@ -11,7 +11,7 @@ from ..models import Team from ..models import TeamMember -from .mixins import EnsureTeamResponsibleMixin +from .mixins import EnsureTeamLeadMixin from camps.mixins import CampViewMixin logger = logging.getLogger("bornhack.%s" % __name__) @@ -28,7 +28,7 @@ def get_queryset(self, *args, **kwargs): qs = qs.prefetch_related("members__profile") # FIXME: there is more to be gained here but the templatetag we use to see if # the logged-in user is a member of the current team does not benefit from the prefetching, - # also the getting of team responsible members and their profiles do not use the prefetching + # also the getting of team leads and their profiles do not use the prefetching # :( /tyk return qs @@ -55,7 +55,7 @@ def get_context_data(self, **kwargs): return context -class TeamManageView(CampViewMixin, EnsureTeamResponsibleMixin, UpdateView): +class TeamManageView(CampViewMixin, EnsureTeamLeadMixin, UpdateView): model = Team template_name = "team_manage.html" fields = [ diff --git a/src/teams/views/info.py b/src/teams/views/info.py index e59698fed..3a957118a 100644 --- a/src/teams/views/info.py +++ b/src/teams/views/info.py @@ -1,4 +1,4 @@ -from django.contrib.auth.mixins import LoginRequiredMixin +from teams.views.mixins import TeamInfopagerPermissionMixin from django.http import HttpResponseRedirect from django.views.generic import CreateView from django.views.generic import DeleteView @@ -6,19 +6,14 @@ from django.views.generic import UpdateView from reversion.views import RevisionMixin -from ..models import Team -from .mixins import EnsureTeamResponsibleMixin from .mixins import TeamViewMixin -from camps.mixins import CampViewMixin from info.models import InfoCategory from info.models import InfoItem class InfoCategoriesListView( - LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + TeamInfopagerPermissionMixin, ListView, ): model = InfoCategory @@ -26,18 +21,10 @@ class InfoCategoriesListView( slug_field = "anchor" active_menu = "info_categories" - def get_team(self): - return Team.objects.get( - camp__slug=self.kwargs["camp_slug"], - slug=self.kwargs["team_slug"], - ) - class InfoItemCreateView( - LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + TeamInfopagerPermissionMixin, CreateView, ): model = InfoItem @@ -46,12 +33,6 @@ class InfoItemCreateView( slug_field = "anchor" active_menu = "info_categories" - def get_team(self): - return Team.objects.get( - camp__slug=self.kwargs["camp_slug"], - slug=self.kwargs["team_slug"], - ) - def form_valid(self, form): info_item = form.save(commit=False) category = InfoCategory.objects.get( @@ -75,10 +56,8 @@ def get_context_data(self, **kwargs): class InfoItemUpdateView( - LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + TeamInfopagerPermissionMixin, RevisionMixin, UpdateView, ): @@ -89,12 +68,6 @@ class InfoItemUpdateView( slug_url_kwarg = "item_anchor" active_menu = "info_categories" - def get_team(self): - return Team.objects.get( - camp__slug=self.kwargs["camp_slug"], - slug=self.kwargs["team_slug"], - ) - def get_success_url(self): next = self.request.GET.get("next") if next: @@ -103,10 +76,8 @@ def get_success_url(self): class InfoItemDeleteView( - LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + TeamInfopagerPermissionMixin, RevisionMixin, DeleteView, ): @@ -116,12 +87,6 @@ class InfoItemDeleteView( slug_url_kwarg = "item_anchor" active_menu = "info_categories" - def get_team(self): - return Team.objects.get( - camp__slug=self.kwargs["camp_slug"], - slug=self.kwargs["team_slug"], - ) - def get_success_url(self): next = self.request.GET.get("next") if next: diff --git a/src/teams/views/members.py b/src/teams/views/members.py index fd7d1e6dd..a767f29d6 100644 --- a/src/teams/views/members.py +++ b/src/teams/views/members.py @@ -10,7 +10,7 @@ from ..email import add_removed_membership_email from ..models import Team from ..models import TeamMember -from .mixins import EnsureTeamMemberResponsibleMixin +from .mixins import EnsureTeamMemberLeadMixin from .mixins import TeamViewMixin from camps.mixins import CampViewMixin from profiles.models import Profile @@ -89,9 +89,8 @@ def form_valid(self, form): class TeamMemberRemoveView( LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamMemberResponsibleMixin, + EnsureTeamMemberLeadMixin, UpdateView, ): template_name = "teammember_remove.html" @@ -122,9 +121,8 @@ def form_valid(self, form): class TeamMemberApproveView( LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamMemberResponsibleMixin, + EnsureTeamMemberLeadMixin, UpdateView, ): template_name = "teammember_approve.html" diff --git a/src/teams/views/mixins.py b/src/teams/views/mixins.py index cbdb474f4..886ce2727 100644 --- a/src/teams/views/mixins.py +++ b/src/teams/views/mixins.py @@ -1,3 +1,5 @@ +from utils.mixins import RaisePermissionRequiredMixin +from camps.mixins import CampViewMixin from django.contrib import messages from django.shortcuts import redirect from django.views.generic.detail import SingleObjectMixin @@ -6,14 +8,12 @@ from teams.models import TeamMember -class EnsureTeamResponsibleMixin: - """ - Use to make sure request.user is responsible for the team specified by kwargs['team_slug'] - """ +class EnsureTeamLeadMixin: + """Use to make sure request.user has team lead permission for the team specified by kwargs['team_slug']""" def dispatch(self, request, *args, **kwargs): self.team = Team.objects.get(slug=kwargs["team_slug"], camp=self.camp) - if request.user not in self.team.responsible_members.all(): + if self.team.lead_permission_set not in request.user.get_all_permissions(): messages.error(request, "No thanks") return redirect( "teams:general", @@ -24,15 +24,16 @@ def dispatch(self, request, *args, **kwargs): return super().dispatch(request, *args, **kwargs) -class EnsureTeamMemberResponsibleMixin(SingleObjectMixin): - """ - Use to make sure request.user is responsible for the team which TeamMember belongs to - """ +class EnsureTeamMemberLeadMixin(SingleObjectMixin): + """Use to make sure request.user has team lead permission for the team which TeamMember belongs to""" model = TeamMember def dispatch(self, request, *args, **kwargs): - if request.user not in self.get_object().team.responsible_members.all(): + if ( + self.get_object().team.lead_permission_set + not in request.user.get_all_permissions() + ): messages.error(request, "No thanks") return redirect( "teams:general", @@ -43,11 +44,19 @@ def dispatch(self, request, *args, **kwargs): return super().dispatch(request, *args, **kwargs) -class TeamViewMixin: - def get_team(self): - return self.get_object().team +class TeamViewMixin(CampViewMixin): + def setup(self, *args, **kwargs): + super().setup(*args, **kwargs) + self.team = Team.objects.get(slug=kwargs["team_slug"], camp=self.camp) def get_context_data(self, *args, **kwargs): context = super().get_context_data(**kwargs) - context["team"] = self.get_team() + context["team"] = self.team return context + + +class TeamInfopagerPermissionMixin(RaisePermissionRequiredMixin): + """Permission mixin for views restricted to users with infopager permission for self.team""" + + def get_permission_required(self): + return [self.team.infopager_permission_set] diff --git a/src/teams/views/tasks.py b/src/teams/views/tasks.py index bbbc0027b..6a71c907f 100644 --- a/src/teams/views/tasks.py +++ b/src/teams/views/tasks.py @@ -11,7 +11,7 @@ from ..models import Team from ..models import TeamMember from ..models import TeamTask -from .mixins import EnsureTeamResponsibleMixin +from .mixins import EnsureTeamLeadMixin from .mixins import TeamViewMixin from camps.mixins import CampViewMixin @@ -30,7 +30,7 @@ class Meta: fields = ["comment"] -class TaskDetailView(CampViewMixin, TeamViewMixin, DetailView): +class TaskDetailView(TeamViewMixin, DetailView): template_name = "task_detail.html" context_object_name = "task" model = TeamTask @@ -73,9 +73,8 @@ def __init__(self, **kwargs): class TaskCreateView( LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + EnsureTeamLeadMixin, CreateView, ): model = TeamTask @@ -103,9 +102,8 @@ def get_success_url(self): class TaskUpdateView( LoginRequiredMixin, - CampViewMixin, TeamViewMixin, - EnsureTeamResponsibleMixin, + EnsureTeamLeadMixin, UpdateView, ): model = TeamTask diff --git a/src/templates/includes/menuitems.html b/src/templates/includes/menuitems.html index 37423772b..e942c1bd3 100644 --- a/src/templates/includes/menuitems.html +++ b/src/templates/includes/menuitems.html @@ -5,11 +5,12 @@ Villages Sponsors Teams +Map
    {% endblock content %} diff --git a/src/backoffice/views/permissions.py b/src/backoffice/views/permissions.py index ecb6a4ef4..8cacaf488 100644 --- a/src/backoffice/views/permissions.py +++ b/src/backoffice/views/permissions.py @@ -148,10 +148,17 @@ class PermissionByUserView(OrgaOrTeamLeadViewMixin, ListView): def get_queryset(self, *args, **kwargs): qs = super().get_queryset(*args, **kwargs) permission_content_type = ContentType.objects.get_for_model(CampPermission) - users = qs.filter(user_permissions__isnull=False, user_permissions__content_type=permission_content_type) | qs.filter( - groups__permissions__isnull=False, - groups__permissions__content_type=permission_content_type, - ) | qs.filter(is_superuser=True) + users = ( + qs.filter( + user_permissions__isnull=False, + user_permissions__content_type=permission_content_type, + ) + | qs.filter( + groups__permissions__isnull=False, + groups__permissions__content_type=permission_content_type, + ) + | qs.filter(is_superuser=True) + ) return users.distinct() From 1c2f651a6dd40aa1ee8fe894b52f1746cd39121a Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 2 Oct 2024 07:51:31 +0200 Subject: [PATCH 13/15] exclude superusers from backoffice permissions by permissions view --- src/backoffice/views/permissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backoffice/views/permissions.py b/src/backoffice/views/permissions.py index 8cacaf488..eaa6387ae 100644 --- a/src/backoffice/views/permissions.py +++ b/src/backoffice/views/permissions.py @@ -177,7 +177,7 @@ def get_queryset(self, *args, **kwargs): User.objects.with_perm( perm, backend="django.contrib.auth.backends.ModelBackend", - ), + ).exclude(is_superuser=True), ), ) return perms From 9c62362d95030781f78c3b032b1f8a3cc56862df Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 2 Oct 2024 08:06:03 +0200 Subject: [PATCH 14/15] disable permission checkboxes for superusers in backoffice permissions view --- src/backoffice/forms.py | 3 ++- src/backoffice/templates/team_permissions_manage.html | 5 ++++- src/backoffice/views/permissions.py | 8 ++++++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/backoffice/forms.py b/src/backoffice/forms.py index 24d3aaa22..502c9bf97 100644 --- a/src/backoffice/forms.py +++ b/src/backoffice/forms.py @@ -1,3 +1,4 @@ +from django.contrib.auth.models import User from django import forms from django.core.exceptions import ValidationError import json @@ -276,7 +277,7 @@ def __init__(self, matrix: dict[str, list[str]], *args, **kwargs): super().__init__(*args, **kwargs) for username in matrix.keys(): for perm in matrix[username]: - if perm in ["lead", "member"]: + if perm in ["lead", "member"] or User.objects.get(username=username).is_superuser: disabled = True else: disabled = False diff --git a/src/backoffice/templates/team_permissions_manage.html b/src/backoffice/templates/team_permissions_manage.html index 61b42c5fe..28f65fab3 100644 --- a/src/backoffice/templates/team_permissions_manage.html +++ b/src/backoffice/templates/team_permissions_manage.html @@ -1,4 +1,5 @@ {% extends 'base.html' %} +{% load bornhack %} {% load bootstrap3 %} {% block content %} @@ -7,7 +8,7 @@

    Manage {{ team.name }} Team Permissions

    -

    This view makes it possible to grant/revoke permissions for {{ team.name }} Team members. The lead and member permissions are granted through team memberships and can not be changed here.

    +

    This view makes it possible to grant/revoke permissions for {{ team.name }} Team members. The lead and member permissions are granted through team memberships and can not be changed here. Superusers have all permissions and they can not be revoked here.

    {% include "includes/permissions_explainer.html" %}
    {% csrf_token %} @@ -17,6 +18,7 @@

    Manage {{ team.name }} Team Permissions

    Username Name Public Credit Name + Superuser {% for perm in perms %} {{ perm }} {% endfor %} @@ -28,6 +30,7 @@

    Manage {{ team.name }} Team Permissions

    {{ member.username }} {{ member.profile.name }} {{ member.profile.public_credit_name }} + {{ member.is_superuser|truefalseicon }} {% for perm in perms %} {% for field in form.visible_fields %} {% if field.name == member.username|add:"_"|add:perm %} diff --git a/src/backoffice/views/permissions.py b/src/backoffice/views/permissions.py index eaa6387ae..780479858 100644 --- a/src/backoffice/views/permissions.py +++ b/src/backoffice/views/permissions.py @@ -121,12 +121,16 @@ def form_valid(self, form): if perm not in perms: # no sneaking in unexpected perms continue + user = self.team.members.get(username=username) + if user.is_superuser: + # superusers magically have all permissions, nothing to do here + continue if form.cleaned_data[field]: - self.team.members.get(username=username).user_permissions.add( + user.user_permissions.add( team_permissions[perm], ) else: - self.team.members.get(username=username).user_permissions.remove( + user.user_permissions.remove( team_permissions[perm], ) messages.success( From e48961f67af8bf6f69027960c81f931e79b9ac3f Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 2 Oct 2024 08:09:31 +0200 Subject: [PATCH 15/15] fixup backoffice permission manage table --- src/backoffice/templates/team_permissions_manage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backoffice/templates/team_permissions_manage.html b/src/backoffice/templates/team_permissions_manage.html index 28f65fab3..6ebd5e297 100644 --- a/src/backoffice/templates/team_permissions_manage.html +++ b/src/backoffice/templates/team_permissions_manage.html @@ -12,7 +12,7 @@

    Manage {{ team.name }} Team Permissions

    {% include "includes/permissions_explainer.html" %} {% csrf_token %} - +
    Username