diff --git a/README.md b/README.md index 9eda7ed84ee9fa60b2a95ea27f3e64945c77bddc..b4b4c99abd3bd9fdefab9229cc4600860fc67d55 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,19 @@ # PROG2900 ## Dependencies -### Python + +## Endpoints +``` +\ +\update_map +\get_relation +\add_new_lake?lake=name +``` + +### Server To run the server... -### Dart & Flutter +### Application ### Database @@ -13,9 +22,9 @@ Precompiled binaries can be found on https://www.sqlite.org/download.html. Extra binary in a folder and note its path. Add the path to your system environment variables. Now you can manage the SQLite database. -## Adding new maps -The current server only contains the data for a single lake, Mjøsa. To add more lakes -go to https://overpass-turbo.eu/. Once you have navigated to Overpass API, enter +## Adding new lakes +To add a new lake to the system, go to https://overpass-turbo.eu/. +Once you have navigated to Overpass API, enter the Overpass query below in the left field, but swap 'lakeName' out with the name of the lake you want to add. Once the query has been adjusted, press the 'Run' button. @@ -29,14 +38,25 @@ press the 'Run' button. (._;>;); out body; ``` + + + + If a text box saying "This query returned quite a lot of data (approx. x MB). Your browser may have a hard time trying to render this. Do you really want to continue? " appears, press 'continue anyway'. Double check that you have the correct lake, then press 'Export'. In the 'Export' menu, download the shape data as GeoJson. Once downloaded, name the file the *lakeName.json, and move the file into IceMap/server/lake_relations. Once you have added the file, run map division... -## Endpoints + + +The result will be two new files named lakeName_centers.txt and lakeName_div.json. The original +lakeName.geojson file should also remain in the system. Additionally, the file named all_lake_names.json +should be updated to contain the newly added lake name. + + + -## Bugs +## Known bugs ## Developers diff --git a/app/lib/consts.dart b/app/lib/consts.dart index d1c7751a71c5564ccd46cbcae484bfc4e276be05..afbad25b27fb300aaa9e94f905bd948aea251f0d 100644 --- a/app/lib/consts.dart +++ b/app/lib/consts.dart @@ -8,15 +8,16 @@ import 'package:google_fonts/google_fonts.dart'; const String port = "8443"; const String serverURI = "https://127.0.0.1:$port/"; const String mapEndpoint = "update_map"; -const int fetchInterval = 60; // Fetch marker data every n minutes // Map variables String selectedLake = 'Mjøsa'; // Init to Mjøsa, NB should be initialised to last selected lake Uint8List selectedRelation = Uint8List(0); List<Measurement> selectedMarkerList = []; -LatLng mapCenter = LatLng(60.8000, 10.8471); +SubDiv? selectedSubDiv; + +LatLng mapCenter = LatLng(60.8000, 10.8471); // NB may not be necessary DateTime ?lastUpdate; // Last time data was fetched from server -List<String> lakeSearchOptions = []; // Init empty +List<String> lakeSearchOptions = []; bool internetConnection = true; // Font settings @@ -32,14 +33,6 @@ final titleStyle = GoogleFonts.chakraPetch( fontWeight: FontWeight.bold, ); final regTextStyle = GoogleFonts.chakraPetch(fontSize: 16, color: textColor); -final regTextStyleBig = GoogleFonts.chakraPetch(fontSize: 18, color: textColor); +final regTextStyleBig = GoogleFonts.chakraPetch(fontSize: 20, color: textColor); final chartTextStyle = GoogleFonts.chakraPetch(fontSize: 12, color: textColor); final subHeadingStyle = GoogleFonts.chakraPetch(fontSize: 18, color: textColor, fontWeight: FontWeight.bold); - -// Colors -const darkBlue = Color(0xFF015E8F); -const teal = Color(0xFF00B4D8); -const darkestBlue = Color(0xFF03045E); -const lightBlue = Color(0xFFCAF0F8); -const superLightBlue = Color(0xFFCAF0F8); -const barBlue = Color(0xFF0077B6); \ No newline at end of file diff --git a/app/lib/data_classes.dart b/app/lib/data_classes.dart index 8de99433b443b8ddcb9f3ed213c34e6496ffa034..e7ba466baf760cf669de24ef6d4cfdd2194f0329 100644 --- a/app/lib/data_classes.dart +++ b/app/lib/data_classes.dart @@ -39,7 +39,7 @@ class SubDiv { LatLng center; double accuracy; Color color; - Color savedColor; + List<IceStats> iceStats; SubDiv({ required this.sub_div_id, @@ -49,7 +49,7 @@ class SubDiv { required this.center, required this.accuracy, required this.color, - required this.savedColor + required this.iceStats, }); factory SubDiv.fromJson(Map<String, dynamic> json) { @@ -62,7 +62,57 @@ class SubDiv { accuracy: json['Accuracy'], // Set grey as default color color: json['Color'] != null ? Color(json['Color']) : Colors.grey, - savedColor: json['Color'] != null ? Color(json['Color']) : Colors.grey, + iceStats: (json['IceStats'] as List<dynamic>?) + ?.map((data) => IceStats.fromJson(data)) + .toList() ?? [], + ); + } +} + +class IceStats { + DateTime dateTime; + double slushIce; + double blackIce; + double totalIce; + double snowDepth; + double totalSnow; + double cloudCover; + double temperature; + + IceStats({ + required this.dateTime, + required this.slushIce, + required this.blackIce, + required this.totalIce, + required this.snowDepth, + required this.totalSnow, + required this.cloudCover, + required this.temperature, + }); + + factory IceStats.fromJson(Map<String, dynamic>? json) { + if (json == null) { // Return empty json + return IceStats( + dateTime: DateTime.now(), + slushIce: 0.0, + blackIce: 0.0, + totalIce: 0.0, + snowDepth: 0.0, + totalSnow: 0.0, + cloudCover: 0.0, + temperature: 0.0, + ); + } + + return IceStats( + dateTime: DateTime.parse(json['Date']), + slushIce: json['Slush ice (m)'] != null ? json['Slush ice (m)'].toDouble() : 0.0, + blackIce: json['Black ice (m)'] != null ? json['Black ice (m)'].toDouble() : 0.0, + totalIce: json['Total ice (m)'] != null ? json['Total ice (m)'].toDouble() : 0.0, + snowDepth: json['Snow depth (m)'] != null ? json['Snow depth (m)'].toDouble() : 0.0, + totalSnow: json['Total snow (m)'] != null ? json['Total snow (m)'].toDouble() : 0.0, + cloudCover: json['Cloud cover'] != null ? json['Cloud cover'].toDouble() : 0.0, + temperature: json['Temperature (t)'] != null ? json['Temperature (t)'].toDouble() : 0.0, ); } } diff --git a/app/lib/pages/default_page.dart b/app/lib/pages/default_page.dart index 9ec84cbb1bda4f9b0f0c48a7b39ead5d4174898f..dcce804ada048bcea5ea57c6423b98984a3dd8c6 100644 --- a/app/lib/pages/default_page.dart +++ b/app/lib/pages/default_page.dart @@ -1,13 +1,12 @@ import 'dart:async'; -import 'package:app/server_requests/fetch_relation.dart'; +import 'dart:convert'; import 'package:flutter/material.dart'; +import 'package:app/server_requests/init_state.dart'; +import 'package:liquid_pull_to_refresh/liquid_pull_to_refresh.dart'; import '../consts.dart'; -import '../data_classes.dart'; import '../widgets/main_layout.dart'; import '../utils/custom_search_delegate.dart'; -import '../server_requests/fetch_relation.dart'; -import '../server_requests/fetch_markers.dart'; class DefaultPage extends StatefulWidget { const DefaultPage({Key? key}) : super(key: key); @@ -20,6 +19,7 @@ class _DefaultPageState extends State<DefaultPage> { late Timer _timer; bool serverConnection = true; bool dialogShown = false; + final backgroundColor = Colors.black87; @override void dispose() { @@ -27,37 +27,17 @@ class _DefaultPageState extends State<DefaultPage> { super.dispose(); } - /// Display message to user - void showConnectionMessage() { - showDialog( - context: context, - builder: (context) => AlertDialog( - actions: [ - TextButton( - onPressed: () { - Navigator.of(context).pop(); - }, - child: const Text("Ok"), - ) - ], - title: const Center( - child: Text("No server connection") - ), - contentPadding: const EdgeInsets.all(10.0), - content: const Text( - "The app may display outdated information. Use with caution!", - textAlign: TextAlign.center, // Align text center - ), - ), - ); + Future<void> _handleRefresh() async { + return await initialiseState(false); } @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( + backgroundColor: backgroundColor, appBar: AppBar( - backgroundColor: Colors.black87, + backgroundColor: backgroundColor, leading: IconButton( icon: const Icon( Icons.menu, @@ -81,36 +61,38 @@ class _DefaultPageState extends State<DefaultPage> { showSearch( // Fetch new relation and measurements on search context: context, delegate: CustomSearchDelegate((String result) { - setState(() async { - selectedRelation = await fetchRelation(); - selectedMarkerList = await fetchMeasurements().then((fetchResult) { - List<Measurement> measurements = fetchResult.measurements; - serverConnection = fetchResult.connected; - - // Return the measurements - return measurements; - }).catchError((error) { - serverConnection = false; - throw Exception("Failed to fetch measurements: $error"); + // Make request only if the selected lake is different from the current selected lake + if (result != selectedLake) { + setState(() { + print("SetState called!"); + selectedLake = result; }); - selectedLake = result; - }); + initialiseState(false); + } }), ); }, ), ], ), - body: Container( // Return container with list view and background color - color: const Color(0xff151515), - child: ListView( - children: [ - MapContainerWidget( - markerList: selectedMarkerList, - relation: selectedRelation, - serverConnection: serverConnection, - ), - ], + body: LiquidPullToRefresh( + color: backgroundColor, + height: 100, + backgroundColor: Colors.grey[600], + onRefresh: _handleRefresh, + animSpeedFactor: 3, + showChildOpacityTransition: false, + child: Container( // Return main container with map and stats widget + color: const Color(0xff151515), + child: ListView( + children: [ + MapContainerWidget( + measurements: selectedMarkerList, + relation: selectedRelation, + serverConnection: serverConnection, + ), + ], + ), ), ), ), diff --git a/app/lib/pages/loading_page.dart b/app/lib/pages/loading_page.dart index c58553cd5fa1f81230b919916c22d11795ac97e2..f9d12dc19c17cbae44937f32080e1797aa1a201e 100644 --- a/app/lib/pages/loading_page.dart +++ b/app/lib/pages/loading_page.dart @@ -25,7 +25,7 @@ class _LoadingPageState extends State<LoadingPage> } Future<void> _navigateToDefaultPage() async { - await initialiseState(); + await initialiseState(true); // Navigate to the default page once state is initialised Navigator.of(context).pushReplacement(MaterialPageRoute( diff --git a/app/lib/server_requests/fetch_markers.dart b/app/lib/server_requests/fetch_markers.dart index 80cbc1726d1dc265c8c97da753c1b44c1efeabd6..a69c2cf89934d3851148becd19c5784ff227296b 100644 --- a/app/lib/server_requests/fetch_markers.dart +++ b/app/lib/server_requests/fetch_markers.dart @@ -23,9 +23,9 @@ Future<FetchResult> fetchMeasurements() async { (X509Certificate cert, String host, int port) => true; // Request markers from server - var parameterValue = 'Mjosa'; // NB temp hardcoded, should use selectedLake directly in url param var request = await client.getUrl(Uri.parse('$serverURI$mapEndpoint?lake=' - '${Uri.encodeComponent(parameterValue)}')); + '${Uri.encodeFull(selectedLake)}')); + var response = await request.close(); // Close response body at end of function // Parse body to JSON if request is ok @@ -55,14 +55,16 @@ Future<FetchResult> fetchMeasurements() async { } } } - return loadSavedData(); + return loadMeasurements(); } catch (e) { - return loadSavedData(); + print("Error in fetching measurements from server: $e"); + return loadMeasurements(); } } -Future<FetchResult> loadSavedData() async { +Future<FetchResult> loadMeasurements() async { try { + print("Loading measurements from file"); // Get latest saved data from file if the server does not respond Directory appDocumentsDirectory = await getApplicationDocumentsDirectory(); String filePath = '${appDocumentsDirectory.path}/last_data.json'; @@ -70,6 +72,9 @@ Future<FetchResult> loadSavedData() async { // Read file contents File file = File(filePath); if (await file.exists()) { + + print('Reading marker data from file'); + String contents = await file.readAsString(); List<dynamic> jsonData = json.decode(contents); // Parse JSON string from file List<Measurement> measurements = jsonData.map((data) => Measurement.fromJson(data)).toList(); diff --git a/app/lib/server_requests/fetch_relation.dart b/app/lib/server_requests/fetch_relation.dart index 999ec52e5795cd5c521c9aced78dae5427c97ae6..e4553c252611e199e3e52477472e0b1f047e9454 100644 --- a/app/lib/server_requests/fetch_relation.dart +++ b/app/lib/server_requests/fetch_relation.dart @@ -15,10 +15,8 @@ Future<Uint8List> fetchRelation() async { (X509Certificate cert, String host, int port) => true; // Execute request to to get_relation endpoint - var parameterValue = 'Mjosa'; // NB temp hardcoded, should use selectedLake directly in url param - //var request = await client.getUrl(Uri.parse('${serverURI}get_relation')); var request = await client.getUrl(Uri.parse('${serverURI}get_relation?lake=' - '${Uri.encodeComponent(parameterValue)}')); + '${Uri.encodeFull(selectedLake)}')); var response = await request.close(); // Close response body at end of function @@ -39,15 +37,17 @@ Future<Uint8List> fetchRelation() async { return Uint8List.fromList(utf8.encode(responseBody)); } } - return loadSavedRelation(); + return loadRelation(); } catch (e) { - return loadSavedRelation(); + print("Error in fetching relation from server: $e"); + return loadRelation(); } } /// Load last saved relation data form last_relation.json -Future<Uint8List> loadSavedRelation() async { +Future<Uint8List> loadRelation() async { try { + print("Loading relation from file"); // Get latest saved relation from file if the server does not respond Directory appDocumentsDirectory = await getApplicationDocumentsDirectory(); String filePath = '${appDocumentsDirectory.path}/last_relation.json'; diff --git a/app/lib/server_requests/init_state.dart b/app/lib/server_requests/init_state.dart index 4338c4a2971c8b3873f474ae3f5c0909c3d6ce63..6cdf33ebbb5fcbd702226a4e2f9e52cd40174add 100644 --- a/app/lib/server_requests/init_state.dart +++ b/app/lib/server_requests/init_state.dart @@ -13,7 +13,7 @@ import '../server_requests/fetch_relation.dart'; /// initialiseState makes three requests to the server, one requesting /// measurements for the selected relation, the other requesting the relation, /// and the last requesting the list of all system lakes -Future<void> initialiseState() async { +Future<void> initialiseState(bool fetchSearchOptions) async { bool serverConnection = true; late Future<List<Measurement>> markerListFuture; @@ -21,13 +21,12 @@ Future<void> initialiseState() async { try { if (!internetConnection) { // Read data from files if no internet connection - selectedRelation = await loadSavedRelation(); + selectedRelation = await loadRelation(); - FetchResult fetchResult = await loadSavedData(); + FetchResult fetchResult = await loadMeasurements(); List<Measurement> measurements = fetchResult.measurements; selectedMarkerList = measurements; - lakeSearchOptions = ["Mjøsa"]; } else { // Try to fetch measurement data from server markerListFuture = fetchMeasurements().then((fetchResult) { List<Measurement> measurements = fetchResult.measurements; @@ -44,10 +43,12 @@ Future<void> initialiseState() async { if (serverConnection) { relationFuture = fetchRelation(); } else { // Read last saved data - relationFuture = loadSavedRelation(); + relationFuture = loadRelation(); } - initSearchOptions(); + if (fetchSearchOptions) { + initSearchOptions(); + } //selectedRelation = await relationFuture; selectedRelation = await relationFuture; // NB update once fixed @@ -84,6 +85,6 @@ Future<void> initSearchOptions() async { } } } catch (e) { - lakeSearchOptions = ["Mjøsa"]; // Init default list + print("Failed to fetch lake names: $e"); } } \ No newline at end of file diff --git a/app/lib/utils/custom_search_delegate.dart b/app/lib/utils/custom_search_delegate.dart index 798c4c0b9ea0edcaabd26550833c9dcc89e2d226..09886e07a28751863ca4e73e64d944ea59355276 100644 --- a/app/lib/utils/custom_search_delegate.dart +++ b/app/lib/utils/custom_search_delegate.dart @@ -44,14 +44,9 @@ class CustomSearchDelegate extends SearchDelegate { itemCount: searchResults.length, itemBuilder: (context, index) { var result = searchResults[index]; - return GestureDetector( - onTap: () { - onResultSelected(result); - close(context, result); - }, - child: ListTile( - title: Text(result), - ), + return ListTile( + title: Text(result), + tileColor: Colors.red, ); }, ); @@ -72,6 +67,10 @@ class CustomSearchDelegate extends SearchDelegate { if (searchResults.isNotEmpty) { return ListTile( title: Text(result), + onTap: () { + onResultSelected(result); + close(context, result); + }, ); } else { diff --git a/app/lib/utils/format_month.dart b/app/lib/utils/format_month.dart new file mode 100644 index 0000000000000000000000000000000000000000..30f32e57c1b19fdb31790edd2f009ed756923073 --- /dev/null +++ b/app/lib/utils/format_month.dart @@ -0,0 +1,30 @@ +String formatMonth(int month) { + switch (month) { + case 1: + return 'Jan'; + case 2: + return 'Feb'; + case 3: + return 'Mar'; + case 4: + return 'Apr'; + case 5: + return 'May'; + case 6: + return 'Jun'; + case 7: + return 'Jul'; + case 8: + return 'Aug'; + case 9: + return 'Sep'; + case 10: + return 'Oct'; + case 11: + return 'Nov'; + case 12: + return 'Dec'; + default: + return ''; + } +} \ No newline at end of file diff --git a/app/lib/widgets/choropleth_map.dart b/app/lib/widgets/choropleth_map.dart index 770ce4ef5a3c8e2d907d06b133545c18a982f222..c4db7cefaeb20dcefd80dbc2a78ec3aefde705b1 100644 --- a/app/lib/widgets/choropleth_map.dart +++ b/app/lib/widgets/choropleth_map.dart @@ -27,14 +27,14 @@ class ChoroplethMap extends StatefulWidget { final Uint8List relation; final List<Measurement> measurements; - final void Function(int _selectedIndex) onSelectionChanged; // Callback function + final void Function(int _selectedIndex) onSelectionChanged; @override _ChoroplethMapState createState() => _ChoroplethMapState(); } class _ChoroplethMapState extends State<ChoroplethMap> { - int _selectedIndex = -1; + int _selectedIndex = -1; // Subdivision/map tile index Color _selectedColor = Colors.grey; // Initialise to gray late MapShapeSource _dataSource; late final MapZoomPanBehavior _zoomPanBehavior = MapZoomPanBehavior(); @@ -86,6 +86,7 @@ class _ChoroplethMapState extends State<ChoroplethMap> { @override Widget build(BuildContext context) { + print("Map built!"); return Stack( children: [ SfMapsTheme( @@ -103,7 +104,7 @@ class _ChoroplethMapState extends State<ChoroplethMap> { strokeWidth: 1, // Shape selection selectedIndex: _selectedIndex, - onSelectionChanged: (int index) { // Shape selection behavior + onSelectionChanged: (int index) { setState(() { _selectedIndex = index; _selectedColor = _subdivisions[index].color; diff --git a/app/lib/widgets/bar_graph/bar_data.dart b/app/lib/widgets/graph_data/bar_data.dart similarity index 63% rename from app/lib/widgets/bar_graph/bar_data.dart rename to app/lib/widgets/graph_data/bar_data.dart index 6ef9b182597faf1fd8a5cc2dab159c7edea16153..668d86e7009e221e3d46847a5ef243d413cd2239 100644 --- a/app/lib/widgets/bar_graph/bar_data.dart +++ b/app/lib/widgets/graph_data/bar_data.dart @@ -1,6 +1,9 @@ import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; +import '../../consts.dart'; +import '../../utils/format_month.dart'; + class BarData extends StatefulWidget { const BarData({super.key}); @@ -12,23 +15,34 @@ class BarData extends StatefulWidget { class _BarDataState extends State<BarData> { static const double barWidth = 30; - // NB should be rounded to two decimals in server - // NB should be allocated values dynamically - // Bar items show data for 10 previous days - static const barData = <int, List<double>>{ - 0: [1.5, 4, 2.5], - 1: [1.8, 5.6, 3], - 2: [1.5, 3.1, 3.5], - 3: [1.5, 1.5, 4], - 4: [2, 2, 5], - 5: [1.2, 1.5, 4.3], - 6: [1.2, 4.8, 5], - }; + // Allocate bar data dynamically from selected subdivision + var barData = <int, List<double>>{}; + double totalHeight = 0; + int touchedIndex = -1; @override void initState() { super.initState(); + + // Allocate bar data dynamically based from the selected subdivision + for (int i = 0; i < 7; i++) { + var entry = selectedSubDiv?.iceStats[i]; + if (entry != null) { + barData[i] = [ + entry.slushIce, + entry.blackIce, + entry.snowDepth, + ]; + + // Find tallest layer + if (entry.totalIce > totalHeight) { + totalHeight = entry.totalIce; + } + } else { + barData[i] = [0.0, 0.0, 0.0]; + } + } } BarChartGroupData generateGroup( @@ -59,7 +73,7 @@ class _BarDataState extends State<BarData> { BarChartRodStackItem( value1, value1 + value2, - const Color(0xFF000085), + const Color(0xFF3766E0), ), BarChartRodStackItem( value1 + value2, @@ -106,28 +120,55 @@ class _BarDataState extends State<BarData> { child: BarChart( BarChartData( alignment: BarChartAlignment.center, - maxY: 12, + maxY: totalHeight + totalHeight/4, // NB Set minY: 0, titlesData: FlTitlesData( show: true, bottomTitles: SideTitles( showTitles: true, - reservedSize: 5, + reservedSize: 20, getTextStyles: (value) => const TextStyle(color: Colors.white60), + getTitles: (value) { + // Convert bar indexes to dates + if (barData.isNotEmpty && value >= 0 && value < barData.length) { + int index = value.toInt(); + + DateTime today = DateTime.now(); + + // Subtract index from the day of the month of the current date + int day = today.day - (6-index); + + String date = day.toString(); + String month = formatMonth(today.month); + + return '$month $date'; + } + return ''; + }, ), leftTitles: SideTitles( showTitles: true, getTextStyles: (value) => const TextStyle(color: Colors.white60), - margin: 10, + margin: 5, reservedSize: 30, - interval: 2, + interval: totalHeight/5, ), rightTitles: SideTitles( showTitles: true, getTextStyles: (value) => const TextStyle(color: Colors.white60), - margin: 10, + margin: 5, reservedSize: 30, - interval: 2, + interval: totalHeight/5, + ), + topTitles: SideTitles( + showTitles: true, + getTextStyles: (value) => const TextStyle(color: Colors.white60), + margin: 0, + reservedSize: 10, + getTitles: (value) { + // Return "cm" for a specific value (e.g., 0) and empty string for others + return value == 0 ? 'cm' : ''; + }, ), ), groupsSpace: 14, @@ -155,9 +196,9 @@ class _BarDataState extends State<BarData> { child: Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ + _buildLegendItem(const Color(0xFF13dbff), "Black ice"), + _buildLegendItem(const Color(0xFF3766E0), "Slush ice"), _buildLegendItem(Colors.white60, "Snow"), - _buildLegendItem(const Color(0xFF000085), "Black ice"), - _buildLegendItem(const Color(0xFF13dbff), "Slush ice"), ], ), ), diff --git a/app/lib/widgets/main_layout.dart b/app/lib/widgets/main_layout.dart index 767d42292b6ed5c7f3fbcdba7092036842e27d22..5b6706e608900f59ba5fe8ebfe3f63ec43a52e9b 100644 --- a/app/lib/widgets/main_layout.dart +++ b/app/lib/widgets/main_layout.dart @@ -1,6 +1,4 @@ import 'dart:typed_data'; -import 'package:flutter_map/flutter_map.dart'; -import 'package:fuzzy/fuzzy.dart'; import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; import 'package:shared_preferences/shared_preferences.dart'; @@ -12,16 +10,17 @@ import 'choropleth_map.dart'; import '../data_classes.dart'; import 'satellite_layer.dart'; import 'quick_view_chart.dart'; +import '../utils/format_month.dart'; /// MapContainerWidget is the main widget that contains the map with all /// its layers, polygons and markers. class MapContainerWidget extends StatefulWidget { - final List<Measurement> markerList; + final List<Measurement> measurements; final Uint8List relation; final bool serverConnection; const MapContainerWidget({Key? key, - required this.markerList, + required this.measurements, required this.relation, required this.serverConnection, }) : super(key: key); @@ -32,14 +31,15 @@ class MapContainerWidget extends StatefulWidget { class _MapContainerWidgetState extends State<MapContainerWidget> { - Measurement? selectedTile; // Containing data for selected marker bool isMinimized = true; // Quick view box state tacker - bool satLayer = false; // Satellite layer visibility tracker - bool OSMlayer = false; + bool satLayer = false; // Satellite layer visibility state + bool osmLayer = false; // OSM layer visibility state - bool isSatTapped = false; // Button tap state tracker, satellite - bool isMapTapped = false; // Button tap state tracker, OSmap + bool isSatTapped = false; // Satellite button tap state tracker + bool isMapTapped = false; // OSM button tap state tracker + + Measurement? selectedMeasurement = selectedMarkerList[0]; // Initialise lastUpdate variable from persistent storage if server fetch fails Future<void> checkAndSetLastUpdate() async { @@ -60,11 +60,11 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { void handleSelection(int index) { String indexString = index.toString(); setState(() { - // NB should be optimalised - for (Measurement measurement in widget.markerList) { + for (Measurement measurement in widget.measurements) { for (SubDiv subdivision in measurement.subDivs) { if (subdivision.sub_div_id == indexString) { - selectedTile= widget.markerList[index]; + selectedSubDiv = subdivision; + selectedMeasurement = measurement; break; } } @@ -75,7 +75,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { @override Widget build(BuildContext context) { // Initialise selectedMarker to first element in markerList - selectedTile ??= widget.markerList[0]; + selectedSubDiv ??= widget.measurements[0].subDivs[0]; checkAndSetLastUpdate(); @@ -107,7 +107,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { padding: const EdgeInsets.all(15.0), // Padding around map child: ChoroplethMap( relation: widget.relation, - measurements: widget.markerList, + measurements: widget.measurements, onSelectionChanged: handleSelection,), ), ), @@ -115,8 +115,8 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { width: screenWidth * boxWidth, height: screenWidth * boxHeight, child: Visibility( - visible: OSMlayer, - child: OSM(markerList: widget.markerList), + visible: osmLayer, + child: OSM(markerList: widget.measurements), ), ), Positioned( // Satellite button @@ -147,12 +147,12 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { child: GestureDetector( onTap: () { setState(() { - OSMlayer = !OSMlayer; // Toggle satellite layer state on press + osmLayer = !osmLayer; // Toggle satellite layer state on press }); }, child: Container( padding: const EdgeInsets.all(8), - decoration: OSMlayer ? const BoxDecoration( // Add decoration only when pressed + decoration: osmLayer ? const BoxDecoration( // Add decoration only when pressed shape: BoxShape.circle, color: Colors.grey, ) : null, @@ -217,7 +217,7 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ], ), const SizedBox(height: contPadding), // Padding between containers - Column( + Column( // Ice stats container crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( @@ -240,11 +240,16 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { style: subHeadingStyle, ), Text( - 'Date: ${(selectedTile?.timeMeasured.day ?? '-')}/${(selectedTile?.timeMeasured.month ?? '-')}/${(selectedTile?.timeMeasured.year ?? '-')}', + 'Date: ${(selectedMeasurement?.timeMeasured.day ?? '-')}/${(selectedMeasurement?.timeMeasured.month ?? '-')}/${(selectedMeasurement?.timeMeasured.year ?? '-')}', + style: regTextStyle, + ), + Text( + 'Time: ${selectedMeasurement?.timeMeasured.hour}:00', style: regTextStyle, ), + const SizedBox(height: contPadding), Text( - 'Time: ${selectedTile?.timeMeasured.hour}:00', + 'Measuring point: (${selectedMeasurement?.measurementID}, ${selectedMeasurement?.measurementID})', style: regTextStyle, ), ], @@ -252,49 +257,12 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ), ), ), - const SizedBox(height: contPadding*2), - SizedBox( - width: screenWidth * boxWidth * 1.2, - child: Center( - child: Text( - 'Measuring point: (${selectedTile?.measurementID}, ${selectedTile?.measurementID})', - style: regTextStyle, - ), - ), - ), + const SizedBox(height: contPadding*2.5), SizedBox( width: screenWidth * boxWidth * 1.2, child: const StatCharts(), ), - const SizedBox(height: contPadding*2), - SizedBox( - width: screenWidth * boxWidth * 1.2, - child: Padding( - padding: const EdgeInsets.only(top: 20, left: 30), - child: Column( - crossAxisAlignment: CrossAxisAlignment.start, - children: [ - Row( - children: [ - const Icon( - Icons.info, - color: Colors.white54, - ), - const SizedBox(width: 10), - Expanded( - child: Text( - 'For every x of y, there has to be z cm of ' - 'q for every kg of applied weight to ensure ?', - style: regTextStyle, - ), - ), - ], - ), - ], - ), - ), - ), - const SizedBox(height: contPadding*2), + const SizedBox(height: contPadding*4), ], ), ], @@ -303,34 +271,3 @@ class _MapContainerWidgetState extends State<MapContainerWidget> { ); } } - -String formatMonth(int month) { - switch (month) { - case 1: - return 'Jan'; - case 2: - return 'Feb'; - case 3: - return 'Mar'; - case 4: - return 'Apr'; - case 5: - return 'May'; - case 6: - return 'Jun'; - case 7: - return 'Jul'; - case 8: - return 'Aug'; - case 9: - return 'Sep'; - case 10: - return 'Oct'; - case 11: - return 'Nov'; - case 12: - return 'Dec'; - default: - return ''; - } -} \ No newline at end of file diff --git a/app/lib/widgets/stat_charts.dart b/app/lib/widgets/stat_charts.dart index f97ee153ee00e797d83b30065e7371f4e7c6be1e..df24a427969c40ddd3de4d83b8fd955e7a918cc2 100644 --- a/app/lib/widgets/stat_charts.dart +++ b/app/lib/widgets/stat_charts.dart @@ -1,6 +1,7 @@ import 'package:flutter/material.dart'; import 'package:fl_chart/fl_chart.dart'; -import 'bar_graph/bar_data.dart'; +import 'graph_data/bar_data.dart'; +import '../../consts.dart'; class StatCharts extends StatelessWidget { const StatCharts({Key? key}) : super(key: key); @@ -68,16 +69,34 @@ class StatCharts extends StatelessWidget { Widget build(BuildContext context) { return Column( children: [ - /*SizedBox( + SizedBox( + child: Center( + child: Text( + 'Ice layers', + style: regTextStyleBig, + ), + ), + ), + SizedBox( + width: MediaQuery.of(context).size.width-30, + child: const BarData(), + ), + /* + const SizedBox(height: 60), + SizedBox( + child: Center( + child: Text( + 'Total ice thickness', + style: regTextStyleBig, + ), + ), + ), + const SizedBox(height: 10), + SizedBox( width: MediaQuery.of(context).size.width * 0.8, // Set the width of the LineChart height: 200, child: buildLineChart(context), ),*/ - const SizedBox(height: 20), - SizedBox( - width: MediaQuery.of(context).size.width, - child: const BarData(), - ), ], ); } diff --git a/app/pubspec.lock b/app/pubspec.lock index f052b8a782a53e5dfd02c4305034688622205349..984f6899ab9a4b32ab6cb57848133f5223380fdc 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -248,6 +248,14 @@ packages: url: "https://pub.dev" source: hosted version: "2.1.1" + liquid_pull_to_refresh: + dependency: "direct main" + description: + name: liquid_pull_to_refresh + sha256: "11e4cd8c5460085a31b479ec4e1cd063eb8e599f35684d57a44dafa1fd1f67f3" + url: "https://pub.dev" + source: hosted + version: "3.0.1" lists: dependency: transitive description: diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 84fd4516d63b13f277e6f5a31ed0f71f9752840a..84f52da0bd413378cff2befea4868d068e1d2b95 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -22,6 +22,7 @@ dependencies: fuzzy: any # Search algorithm connectivity_plus: ^3.0.3 # Check internet connection get: ^4.6.5 + liquid_pull_to_refresh: ^3.0.0 # Pull to refresh dev_dependencies: flutter_test: diff --git a/images/geojson-export.png b/images/geojson-export.png new file mode 100644 index 0000000000000000000000000000000000000000..86d549e6e1977d68c367c0c2864dd6440360d1ad Binary files /dev/null and b/images/geojson-export.png differ diff --git a/images/geojson-file.png b/images/geojson-file.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef76bc8b1573f3d38e0cdab3a0de59836a12930 Binary files /dev/null and b/images/geojson-file.png differ diff --git a/images/overpass-query.png b/images/overpass-query.png new file mode 100644 index 0000000000000000000000000000000000000000..2f9c9a62bcf2dd3d6895cecd1fcf3e796be4bcf7 Binary files /dev/null and b/images/overpass-query.png differ diff --git a/images/resulting-files.png b/images/resulting-files.png new file mode 100644 index 0000000000000000000000000000000000000000..68a026907de6d0f323387987eef0845e36c80917 Binary files /dev/null and b/images/resulting-files.png differ diff --git a/server/ModelFromNVE/__pycache__/setenvironment.cpython-311.pyc b/server/ModelFromNVE/__pycache__/setenvironment.cpython-311.pyc index e02cd2606fe2db8b3cb4217eb48d0c11e7cd8e49..1fce7f7eb0501adbcb8e999f32d25cdd74eababf 100644 Binary files a/server/ModelFromNVE/__pycache__/setenvironment.cpython-311.pyc and b/server/ModelFromNVE/__pycache__/setenvironment.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodelling/__pycache__/constants.cpython-311.pyc b/server/ModelFromNVE/icemodelling/__pycache__/constants.cpython-311.pyc index b072973c04715d1c12f34d62689af90350e0ddeb..913972aefad8fad3dc909be26e7feaf98faa8ab4 100644 Binary files a/server/ModelFromNVE/icemodelling/__pycache__/constants.cpython-311.pyc and b/server/ModelFromNVE/icemodelling/__pycache__/constants.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodelling/__pycache__/ice.cpython-311.pyc b/server/ModelFromNVE/icemodelling/__pycache__/ice.cpython-311.pyc index 7103796f4ffed34da8e4182787f746ba71106b0c..666c71f624fccdd01dc506c918a2d49173f82b60 100644 Binary files a/server/ModelFromNVE/icemodelling/__pycache__/ice.cpython-311.pyc and b/server/ModelFromNVE/icemodelling/__pycache__/ice.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodelling/__pycache__/icethickness.cpython-311.pyc b/server/ModelFromNVE/icemodelling/__pycache__/icethickness.cpython-311.pyc index aabd58f5f2d5ee9759931ed7653dc4286b9a19f8..140becda4e843539aa0433353569690d255c88b2 100644 Binary files a/server/ModelFromNVE/icemodelling/__pycache__/icethickness.cpython-311.pyc and b/server/ModelFromNVE/icemodelling/__pycache__/icethickness.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodelling/__pycache__/parameterization.cpython-311.pyc b/server/ModelFromNVE/icemodelling/__pycache__/parameterization.cpython-311.pyc index f28769d4304f34121d76e431c3c8c1fef83be0b9..1a50eab3931fde0055999076f6df42e4a69b9779 100644 Binary files a/server/ModelFromNVE/icemodelling/__pycache__/parameterization.cpython-311.pyc and b/server/ModelFromNVE/icemodelling/__pycache__/parameterization.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodelling/__pycache__/weatherelement.cpython-311.pyc b/server/ModelFromNVE/icemodelling/__pycache__/weatherelement.cpython-311.pyc index 5f6e15b2d907a52ccc8ed1757d94a886084a4e48..2c25ae5432cf36b9db76f647f1943321adbd4730 100644 Binary files a/server/ModelFromNVE/icemodelling/__pycache__/weatherelement.cpython-311.pyc and b/server/ModelFromNVE/icemodelling/__pycache__/weatherelement.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodellingscripts/__pycache__/getIceThicknessLakes.cpython-311.pyc b/server/ModelFromNVE/icemodellingscripts/__pycache__/getIceThicknessLakes.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dbdeee0ef194c9bd40333ba43d750871ae4b282c Binary files /dev/null and b/server/ModelFromNVE/icemodellingscripts/__pycache__/getIceThicknessLakes.cpython-311.pyc differ diff --git a/server/ModelFromNVE/icemodellingscripts/getIceThicknessLakes.py b/server/ModelFromNVE/icemodellingscripts/getIceThicknessLakes.py index 42f05907e1c74abdf40ec98e431f9313b5ab5cfd..3848e097b73dc579608ad51b4cb8748a7ea3eabb 100644 --- a/server/ModelFromNVE/icemodellingscripts/getIceThicknessLakes.py +++ b/server/ModelFromNVE/icemodellingscripts/getIceThicknessLakes.py @@ -272,7 +272,7 @@ if __name__ == "__main__": ''' - sub_divs = get_subdiv_ids_n_cords('../../lake_relations/skumsjøen_centers.txt') # lokasjon for txt fil + sub_divs = get_subdiv_ids_n_cords('../../map_handler/lake_relations/skumsjøen_centers.txt') # lokasjon for txt fil from_date = "2024-01-10" to_date = "2024-01-20" diff --git a/server/ModelFromNVE/logs/icemodelling_2024-04-11.log b/server/ModelFromNVE/logs/icemodelling_2024-04-11.log new file mode 100644 index 0000000000000000000000000000000000000000..4b9fa6a09c687ab0ddc2da8d9373b61638857a1c --- /dev/null +++ b/server/ModelFromNVE/logs/icemodelling_2024-04-11.log @@ -0,0 +1,265 @@ +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +12:42: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:22: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:24: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:25: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +13:38: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +14:00: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:18: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:30: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:31: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:34: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:35: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:36: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:39: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:40: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:47: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:48: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:53: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. +15:55: weatherelement.py -> patch_novalue_in_weather_element_list: Value missing on UTM33 X266707 Y6749365 2024-01-10 06:00:00 tm. Adding avg value -11.049999999999969. diff --git a/server/ModelFromNVE/output/plots/skumsjoen_sub_div.json b/server/ModelFromNVE/output/plots/skumsjoen_sub_div.json new file mode 100644 index 0000000000000000000000000000000000000000..af3d2975d503069792d53cd2ce5dadd6f73d57f4 --- /dev/null +++ b/server/ModelFromNVE/output/plots/skumsjoen_sub_div.json @@ -0,0 +1,658 @@ +{ + "0": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "1": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "2": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "3": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "4": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "5": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "6": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ], + "7": [ + { + "Date": "2024-04-08", + "Slush ice (m)": 0.246, + "Black ice (m)": 0.423, + "Total ice (m)": 0.669, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.795 + }, + { + "Date": "2024-04-09", + "Slush ice (m)": 0.198, + "Black ice (m)": 0.423, + "Total ice (m)": 0.621, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.12 + }, + { + "Date": "2024-04-10", + "Slush ice (m)": 0.155, + "Black ice (m)": 0.423, + "Total ice (m)": 0.578, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.22 + }, + { + "Date": "2024-04-11", + "Slush ice (m)": 0.112, + "Black ice (m)": 0.423, + "Total ice (m)": 0.535, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 7.07 + }, + { + "Date": "2024-04-12", + "Slush ice (m)": 0.07, + "Black ice (m)": 0.423, + "Total ice (m)": 0.493, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.395 + }, + { + "Date": "2024-04-13", + "Slush ice (m)": 0.017, + "Black ice (m)": 0.423, + "Total ice (m)": 0.44, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 8.195 + }, + { + "Date": "2024-04-14", + "Slush ice (m)": 0, + "Black ice (m)": 0.406, + "Total ice (m)": 0.406, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 5.57 + }, + { + "Date": "2024-04-15", + "Slush ice (m)": 0, + "Black ice (m)": 0.391, + "Total ice (m)": 0.391, + "Snow depth (m)": 0.0, + "Total snow (m)": 0.0, + "Cloud cover": 0.1, + "Temperature (c)": 3.645 + } + ] +} \ No newline at end of file diff --git a/server/ModelFromNVE/utilities/__pycache__/doconversions.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/doconversions.cpython-311.pyc index 25c612269213096cf39c735595b08c74124d4dfa..62bce09243373230e73e50fa9e5f9bed55c10d6d 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/doconversions.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/doconversions.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/getfiledata.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/getfiledata.cpython-311.pyc index 881db0aaaae20ffcb5f1913da03670fc2c0694e0..893fe62ec1045139a8ede88f8d521ff43874a358 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/getfiledata.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/getfiledata.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/getgts.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/getgts.cpython-311.pyc index f566b56b32f049c44044ed0e2b5146d8915068fd..3a9a15321c2b05de22e541efe4b1c331e9584968 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/getgts.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/getgts.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/getmisc.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/getmisc.cpython-311.pyc index 7fdff3bb2c7d44ce9913cb4a9ddd220e3e78be9e..05af15e65a8fcb0cb60913f5e850434518672a38 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/getmisc.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/getmisc.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/getregobsdata.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/getregobsdata.cpython-311.pyc index f54173dddd295adbf4a8f0fb880917e35f45edca..5ab6e9e79da8792dee82004f7c05892ce5e61233 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/getregobsdata.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/getregobsdata.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/getwsklima.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/getwsklima.cpython-311.pyc index 0586179afe47585f718995951616628a89c2ab45..ad346e676bc0e6b5944e57c8cef4f3b4b21d20cd 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/getwsklima.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/getwsklima.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/makefiledata.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/makefiledata.cpython-311.pyc index 8ebda778d5a1c234ffaab5d783c8102128337ed3..9f02b39a7d84d86fc7b482c8c73b558802b9ed87 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/makefiledata.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/makefiledata.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/makelogs.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/makelogs.cpython-311.pyc index cc919acd18a39993e9384048fe2963d414fc4028..fa2ce0ed63056fa22020536111271c57befa76e3 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/makelogs.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/makelogs.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/makepickle.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/makepickle.cpython-311.pyc index 4f46bd87fb279391e80bd93918d53331260bb4f5..777f7160c68de582f078dec0ccb4b3548950fea1 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/makepickle.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/makepickle.cpython-311.pyc differ diff --git a/server/ModelFromNVE/utilities/__pycache__/makeplots.cpython-311.pyc b/server/ModelFromNVE/utilities/__pycache__/makeplots.cpython-311.pyc index d79b8396c677f11cc5a4f615fbfabe29379b77c5..94dcb504eb83b2ed49419acd1bb27261b7d0a8f0 100644 Binary files a/server/ModelFromNVE/utilities/__pycache__/makeplots.cpython-311.pyc and b/server/ModelFromNVE/utilities/__pycache__/makeplots.cpython-311.pyc differ diff --git a/server/__pycache__/consts.cpython-311.pyc b/server/__pycache__/consts.cpython-311.pyc index d47db4fadc975e2973e185a82508db4d8429a975..665ab22882bf6b2546aaf16a76e6084d5d314cc3 100644 Binary files a/server/__pycache__/consts.cpython-311.pyc and b/server/__pycache__/consts.cpython-311.pyc differ diff --git a/server/consts.py b/server/consts.py index 6be29cfbf4d5c8d8470413ecead84c6ade7f37b9..a667ac84a59424ea4130bb890349b34e7a37ff3d 100644 --- a/server/consts.py +++ b/server/consts.py @@ -9,5 +9,6 @@ CERT_DIR = "server/certificates/" SSL_KEY_PATH = CERT_DIR + "testKey.key" SSL_CERT_PATH = CERT_DIR + "testCert.crt" -# Measurement specs -AREA_SIZE = 20 +# File paths +MAP_HANDLER_PATH = "server/map_handler/" +LAKE_RELATIONS_PATH = MAP_HANDLER_PATH + "lake_relations/" diff --git a/server/database/icedb b/server/database/icedb index f72af9b3586a8d3546eeb065f92c8eba1b20ed47..21581f431073869d4d23a0682bd4fe2bfd994a8f 100644 Binary files a/server/database/icedb and b/server/database/icedb differ diff --git a/server/database/icedb-journal b/server/database/icedb-journal new file mode 100644 index 0000000000000000000000000000000000000000..eede3c9c9083ed7ac7144f5566f64dd1417883ab Binary files /dev/null and b/server/database/icedb-journal differ diff --git a/server/main.py b/server/main.py index 846143eea398bb521be833e62899746a588c7bbb..7158a57fc97339963bd6fcda87bf0b49b4a9f6c9 100644 --- a/server/main.py +++ b/server/main.py @@ -1,14 +1,16 @@ -from flask import Flask -from http.server import HTTPServer, BaseHTTPRequestHandler -from consts import SSL_CERT_PATH, SSL_KEY_PATH, HOST, PORT -from map_handler.get_measurements import get_all_markers -from map_handler.add_lake import cut_map -from map_handler.process_lake import fetch_divided_map -from map_handler.input_new_data import input_new_Lidar_data -from urllib.parse import urlparse, parse_qs import ssl import json import sqlite3 +from flask import Flask +from urllib.parse import urlparse, parse_qs, unquote +from consts import SSL_CERT_PATH, SSL_KEY_PATH, HOST, PORT +from http.server import HTTPServer, BaseHTTPRequestHandler + +from map_handler.add_new_lake import cut_map +from server.consts import LAKE_RELATIONS_PATH +from map_handler.get_lake_relation import get_divided_map +from map_handler.get_measurements import get_measurements +from map_handler.input_new_data import input_new_Lidar_data app = Flask(__name__) terminate_server = 0 @@ -41,28 +43,57 @@ class IceHTTP(BaseHTTPRequestHandler): self.wfile.write(b"Root path hit!") elif self.path == '/get_lake_names': - with open('server/map_handler/lake_relations/all_lake_names.json', 'r') as file: - lake_names = json.load(file) + try: + with open(LAKE_RELATIONS_PATH + 'all_lake_names.json', 'r') as file: + lake_names = json.load(file) + + # Disable ensure_ascii to keep 'ø' + json_data = json.dumps(lake_names, ensure_ascii=False) + + self.send_response(200) + self.send_header('Content-type', 'application/json') + self.end_headers() + + self.wfile.write(json_data.encode('iso-8859-1')) # Special character encoding + except Exception as e: + print(f"Failed to fetch lake list: {e}") + self.send_response(500) + self.send_header('Content-type', 'application/json') + self.end_headers() + elif self.path.startswith('/update_map'): + parsed_path = urlparse(self.path) + query_params = parse_qs(parsed_path.query) - # Disable ensure_ascii to keep 'ø' - json_data = json.dumps(lake_names, ensure_ascii=False) + lake_name_param = query_params.get('lake', [''])[0] + lake_name = unquote(lake_name_param) # Decode url param - self.send_response(200) - self.send_header('Content-type', 'application/json') - self.end_headers() + if lake_name_param: + get_measurements(self, self.cursor, lake_name) # Get all markers + else: + self.send_response(400) + self.send_header('Content-type', 'application/json') + self.end_headers() - self.wfile.write(json_data.encode('iso-8859-1')) # Special character encoding - elif self.path.startswith('/update_map'): # NB: should be POST? - parsed_path = urlparse(self.path) - query_params = parse_qs(parsed_path.query) - get_all_markers(self, self.cursor, 'mjosa') # Get all markers # NB: temporary hardcoded waterBodyName elif self.path.startswith('/get_relation'): parsed_path = urlparse(self.path) query_params = parse_qs(parsed_path.query) - fetch_divided_map(self, 'Mjosa') # NB temp hardcoded value - elif self.path == '/divide_new_relation': - cut_map(self, 'Mjosa') + + lake_name_param = query_params.get('lake', [''])[0] + lake_name = unquote(lake_name_param) # Decode url param + + get_divided_map(self, lake_name) + elif self.path.startswith('/add_new_lake'): + parsed_path = urlparse(self.path) + query_params = parse_qs(parsed_path.query) + + lake_name = query_params.get('lake', [None])[0] + if lake_name is not None: + cut_map(self, cursor, lake_name) + else: + self.send_response(400) + self.send_header('Content-type', 'application/json') + self.end_headers() def do_POST(self): if self.path == '/new_lidar_data': diff --git a/server/map_handler/__pycache__/add_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_lake.cpython-311.pyc deleted file mode 100644 index 9273e1d98fac5a18558f571c266cc29040000aa5..0000000000000000000000000000000000000000 Binary files a/server/map_handler/__pycache__/add_lake.cpython-311.pyc and /dev/null differ diff --git a/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc b/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc index 1ebfb30e892fc06a0ebe716236c82ae01c6ae030..b9605380da74de9664e3748aaab67cd6a1f49f85 100644 Binary files a/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc and b/server/map_handler/__pycache__/add_new_lake.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/get_lake_data.cpython-311.pyc b/server/map_handler/__pycache__/get_lake_data.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1b4d24d13d09a2c4b32ab6de3f73969fb265183 Binary files /dev/null and b/server/map_handler/__pycache__/get_lake_data.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/get_lake_relation.cpython-311.pyc b/server/map_handler/__pycache__/get_lake_relation.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0246bf6ee4345972419667b0c7b475106842d065 Binary files /dev/null and b/server/map_handler/__pycache__/get_lake_relation.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc index 738499b30b843de2743516c74543ef6dacca696a..62768300f47550b86289036a61c962087e6bda21 100644 Binary files a/server/map_handler/__pycache__/get_measurements.cpython-311.pyc and b/server/map_handler/__pycache__/get_measurements.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/input_new_data.cpython-311.pyc b/server/map_handler/__pycache__/input_new_data.cpython-311.pyc index 7f959582f8d78d8341fb2f14b0c7bfc033a99259..6b7334b408e14cb1b5f4a0e804b3394cae03dbc6 100644 Binary files a/server/map_handler/__pycache__/input_new_data.cpython-311.pyc and b/server/map_handler/__pycache__/input_new_data.cpython-311.pyc differ diff --git a/server/map_handler/__pycache__/process_lake.cpython-311.pyc b/server/map_handler/__pycache__/process_lake.cpython-311.pyc deleted file mode 100644 index 8789c1778de26f2fba48817f2cc609251a53097c..0000000000000000000000000000000000000000 Binary files a/server/map_handler/__pycache__/process_lake.cpython-311.pyc and /dev/null differ diff --git a/server/map_handler/add_lake.py b/server/map_handler/add_lake.py deleted file mode 100644 index f8eced82bca76a39eb04e1a06503671b633131ff..0000000000000000000000000000000000000000 --- a/server/map_handler/add_lake.py +++ /dev/null @@ -1,140 +0,0 @@ -import geopandas as gpd -from shapely.geometry import Polygon, LineString, MultiLineString -from shapely.ops import linemerge, unary_union, polygonize -import json -import os - - -# Read a json file with relation data and send to response object -def cut_map(self, body_of_water: str): # NB: implement body_of_water - # Read relation from GeoJson file and extract all polygons - geo_data = gpd.read_file("server/lake_relations/mjosa.geojson") - polygon_data = geo_data[geo_data['geometry'].geom_type == 'Polygon'] - polygons = [Polygon(polygon.exterior) for polygon in polygon_data['geometry']] - - if len(polygons) <= 1: - raise Exception("Failed to convert JSON object to Shapely Polygons") - - divided_map = [] - - for polygon in polygons: - cell_width = 0.04 - cell_height = 0.02 # NB could be calculated based on cell_width and distance from equator - - lines = create_grid(polygon, cell_width, cell_height) - lines.append(polygon.boundary) - lines = unary_union(lines) - lines = linemerge(lines) - lines = list(polygonize(lines)) - - divided_map.extend(combine_grid_with_poly(polygon, lines)) - - ''' - ####################### PLOTTING ############################ - tiles = [gpd.GeoDataFrame(geometry=[tile]) for tile in divided_map] - - print("Plotting... This may take some time...") - # NB test plot - fig, ax = plt.subplots() - ax.set_aspect(1.5) - - # Plot each tile - for tile in tiles: # NB temporarily limited to 5 tiles - random_color = "#{:06x}".format(random.randint(0, 0xFFFFFF)) - gpd.GeoSeries(tile.geometry).plot(ax=ax, facecolor=random_color, edgecolor='none') - - - plt.show() - ##################### PLOTTIND END ########################### - ''' - - features = [] - - sub_div_id = 0 - for tile in divided_map: - - # Calculate tile center based on bounds, and round down to two decimals - min_x, min_y, max_x, max_y = tile.bounds - center = round(max_x - min_x, 4), round(max_y - min_y, 4) - # center = round(tile.centroid.coords[0][0], 4), round(tile.centroid.coords[0][1], 4) - - rounded_coordinates = [] - if isinstance(tile, Polygon): - for coords in tile.exterior.coords: - rounded_coords = (round(coords[0], 4), round(coords[1], 4)) - rounded_coordinates.append(rounded_coords) - rounded_tile = Polygon(rounded_coordinates) - - tile_feature = { - 'type': 'Feature', - 'properties': { - 'sub_div_id': str(sub_div_id), - 'sub_div_center': center - }, - 'geometry': rounded_tile.__geo_interface__ - } - features.append(tile_feature) - sub_div_id += 1 - - feature_collection = { - 'type': 'FeatureCollection', - 'features': features, - 'tile_count': sub_div_id, # Add the last subdivision ID as number of tiles - } - - #write_json_to_file("server/lake_relations", "mjosa", feature_collection) - self.send_response(200) - self.send_header("Content-type", "application/json") - self.end_headers() - - self.wfile.write(json.dumps(feature_collection).encode('utf-8')) - - -def create_grid(poly: Polygon, cell_width, cell_height): - # Retrieve bounds of the entire polygon - bounds = poly.bounds - - min_x, min_y, max_x, max_y = bounds - grid_lines = [] - - # Horizontal lines - y = min_y - while y <= max_y: - line = LineString([(min_x, y), (max_x, y)]) - grid_lines.append(line) - y += cell_height - - # Vertical lines - x = min_x - while x <= max_x: - line = LineString([(x, min_y), (x, max_y)]) - grid_lines.append(line) - x += cell_width - - return grid_lines - - -def combine_grid_with_poly(polygon, grid): - intersecting_tiles = [] - - for line in grid: - if line.intersects(polygon): - intersection = line.intersection(polygon) - # Check if intersection is a MultiLineString - if isinstance(intersection, MultiLineString): - # Extend the intersecting tiles with the polygonized results - intersecting_tiles.extend(list(polygonize(intersection))) - else: - intersecting_tiles.append(intersection) - - return intersecting_tiles - - -def write_json_to_file(path: str, file_name: str, json_data: dict): - # NB add lake name to 'added_lakes.txt' - print("Writing to file...") - if not os.path.exists(path): - raise Exception("Directory from path does not exist") - - with open(path + '/' + file_name + '_div.json', 'w') as f: - json.dump(json_data, f) diff --git a/server/map_handler/add_new_lake.py b/server/map_handler/add_new_lake.py new file mode 100644 index 0000000000000000000000000000000000000000..0aac9eb90536f51a3afa9bd860ec8b058e2d9edf --- /dev/null +++ b/server/map_handler/add_new_lake.py @@ -0,0 +1,167 @@ +import os +import json +import random +import geopandas as gpd +from matplotlib import pyplot as plt +from shapely.ops import linemerge, unary_union, polygonize +from shapely.geometry import Polygon, LineString, MultiLineString + +from server.consts import LAKE_RELATIONS_PATH + + +# Read a json file with relation data and send to response object +def cut_map(self, cursor, lake_name: str): + try: + # Read relation from GeoJson file and extract all polygons + geo_data = gpd.read_file(LAKE_RELATIONS_PATH + lake_name + ".geojson") + polygon_data = geo_data[geo_data['geometry'].geom_type == 'Polygon'] + polygons = [Polygon(polygon.exterior) for polygon in polygon_data['geometry']] + + if len(polygons) <= 1: + raise Exception("Failed to convert JSON object to Shapely Polygons") + + divided_map = [] + + # List of all subdivisions with their center coordinates + # Expected format: [(sub_div_id, [x,y]), (sub_div_id, [x,y]), ...] + sub_div_center_list = [] + + for polygon in polygons: + cell_width = 0.04 + cell_height = 0.02 # NB could be calculated based on cell_width and distance from equator + + lines = create_grid(polygon, cell_width, cell_height) + lines.append(polygon.boundary) + lines = unary_union(lines) + lines = linemerge(lines) + lines = list(polygonize(lines)) + + divided_map.extend(combine_grid_with_poly(polygon, lines)) + + features = [] + + sub_div_id = 0 + for tile in divided_map: + + # Calculate tile center based on bounds, and round down to two decimals + min_x, min_y, max_x, max_y = tile.bounds + center = round(max_y - (max_y - min_y), 6), round(max_x - (max_x - min_x), 6) + + rounded_coordinates = [] + if isinstance(tile, Polygon): + for coords in tile.exterior.coords: + rounded_coords = (round(coords[0], 4), round(coords[1], 4)) + rounded_coordinates.append(rounded_coords) + rounded_tile = Polygon(rounded_coordinates) + + tile_feature = { + 'type': 'Feature', + 'properties': { + 'sub_div_id': str(sub_div_id), + 'sub_div_center': center + }, + 'geometry': rounded_tile.__geo_interface__ + } + features.append(tile_feature) + sub_div_id += 1 + + feature_collection = { + 'type': 'FeatureCollection', + 'features': features, + 'tile_count': sub_div_id, # Add the last subdivision ID as number of tiles + } + + # Add lake name to database + cursor.execute(''' + INSERT INTO BodyOfWater(Name) VALUES + (?); + ''', (lake_name,)) + + write_json_to_file(lake_name, feature_collection) + + self.send_response(200) + self.send_header("Content-type", "application/json") + self.end_headers() + + self.wfile.write(json.dumps(feature_collection).encode('utf-8')) + + except Exception as e: + print(f"Error in adding new map: {e}") + + self.send_response(500) + self.send_header("Content-type", "application/json") + self.end_headers() + + +def create_grid(poly: Polygon, cell_width, cell_height): + # Retrieve bounds of the entire polygon + bounds = poly.bounds + + min_x, min_y, max_x, max_y = bounds + grid_lines = [] + + # Horizontal lines + y = min_y + while y <= max_y: + line = LineString([(min_x, y), (max_x, y)]) + grid_lines.append(line) + y += cell_height + + # Vertical lines + x = min_x + while x <= max_x: + line = LineString([(x, min_y), (x, max_y)]) + grid_lines.append(line) + x += cell_width + + return grid_lines + + +def combine_grid_with_poly(polygon, grid): + intersecting_tiles = [] + + for line in grid: + if line.intersects(polygon): + intersection = line.intersection(polygon) + # Check if intersection is a MultiLineString + if isinstance(intersection, MultiLineString): + # Extend the intersecting tiles with the polygonized results + intersecting_tiles.extend(list(polygonize(intersection))) + else: + intersecting_tiles.append(intersection) + + return intersecting_tiles + + +def write_json_to_file(lake_name: str, json_data: dict): + # Create and write divided map to new file + print("Writing to file...") + if not os.path.exists(LAKE_RELATIONS_PATH): + raise Exception("Directory from path does not exist") + + with open(LAKE_RELATIONS_PATH + '/' + lake_name + '_div.json', 'w') as f: + json.dump(json_data, f) + + # Update all_system_lakes + with open(LAKE_RELATIONS_PATH + 'all_lake_names.json', 'r') as file: + data = json.load(file) + + data.append(lake_name) + with open(LAKE_RELATIONS_PATH + 'all_lake_names.json', 'w') as file: + json.dump(data, file, indent=2) + + +def plot_map(divided_map): + tiles = [gpd.GeoDataFrame(geometry=[tile]) for tile in divided_map] + + print("Plotting... This may take some time...") + + fig, ax = plt.subplots() + ax.set_aspect(1.5) + + # Plot each tile + for tile in tiles: + random_color = "#{:06x}".format(random.randint(0, 0xFFFFFF)) + gpd.GeoSeries(tile.geometry).plot(ax=ax, facecolor=random_color, edgecolor='none') + + plt.show() diff --git a/server/map_handler/get_lake_relation.py b/server/map_handler/get_lake_relation.py new file mode 100644 index 0000000000000000000000000000000000000000..c6fb2f7f69cbf0f3c9d9e290e27c21ad1c666dd0 --- /dev/null +++ b/server/map_handler/get_lake_relation.py @@ -0,0 +1,25 @@ +from server.consts import LAKE_RELATIONS_PATH + + +# Writes contents of a lake json file to the response +def get_divided_map(self, file_name): + try: + # Extract contents from JSON file + with open(LAKE_RELATIONS_PATH + file_name + "_div.json", "r") as file: + data = file.read() + + self.send_response(200) + self.send_header("Content-type", "application/json") + self.end_headers() + + # Write contents of the JSON file to response + self.wfile.write(data.encode('utf-8')) + except FileNotFoundError: + self.send_response(404) + self.send_header("Content-type", "application/json") + self.end_headers() + except Exception as e: + self.send_response(500) + self.send_header("Content-type", "application/json") + self.end_headers() + diff --git a/server/map_handler/get_measurements.py b/server/map_handler/get_measurements.py index e3f02a6278d383dda372a5ae3850279299d53d40..152362efac0b5c41f143022104e2d7994399beb5 100644 --- a/server/map_handler/get_measurements.py +++ b/server/map_handler/get_measurements.py @@ -1,11 +1,8 @@ import json -from datetime import datetime -import random -from random import randint +from server.ModelFromNVE.icemodellingscripts.getIceThicknessLakes import get_raw_dates, ice_prognosis_raw_data -# get_markers requests all marker data or valid markers, converts the data to json, and writes -# the data to the response object -def get_all_markers(self, cursor, waterBodyName): + +def get_measurements(self, cursor, lake_name): try: sql_query = ''' SELECT m.MeasurementID, m.SensorID, m.TimeMeasured, m.CenterLat, m.CenterLon, @@ -18,30 +15,34 @@ def get_all_markers(self, cursor, waterBodyName): INNER JOIN Sensor s ON m.SensorID = s.SensorID INNER JOIN BodyOfWater b ON m.WaterBodyName = b.Name LEFT JOIN SubDivision d ON m.MeasurementID = d.MeasurementID - WHERE b.Name = 'Mjosa' + WHERE b.Name = ? ''' - cursor.execute(sql_query) + cursor.execute(sql_query, (lake_name,)) rows = cursor.fetchall() - # Container for all fetched measurement objects + # List of all fetched measurement objects measurement_data = {} # Iterate over all fetched rows for row in rows: measurement_id = row[0] + sub_div_id = row[8] + center_lat = row[12] + center_lng = row[13] # Create subdivision new object sub_division = { - 'SubdivID': row[8], + 'SubdivID': sub_div_id, 'GroupID': row[9], 'MinThickness': row[10], 'AvgThickness': row[11], - 'CenLatitude': row[12], - 'CenLongitude': row[13], + 'CenLatitude': center_lat, + 'CenLongitude': center_lng, 'Accuracy': row[14], - 'Color': calculateColor(row[11]) # NB color calculated based on average thickness, should be minimum + 'Color': calculateColor(row[11]), # NB color calculated based on average thickness, should be minimum + 'IceStats': get_raw_dates(ice_prognosis_raw_data(sub_div_id=sub_div_id, x=center_lat, y=center_lng)) } # Check if measurement ID already exists in measurement_data @@ -65,62 +66,24 @@ def get_all_markers(self, cursor, waterBodyName): 'Subdivisions': [sub_division], # Array of sub_division objects } - ########################### TEST DATA ########################################### - # Temporary test data - test_measurements = [] - subdiv_id = 17 - - for i in range(3, 10): - sub_divisions = [] - - for j in range(0, 30): - min_thickness = random.uniform(0, 10) - avg_thickness = random.uniform(0, 15) + min_thickness - - subdivision = { - 'SubdivID': subdiv_id, - 'GroupID': 1, - 'MinThickness': min_thickness, - 'AvgThickness': avg_thickness, - 'CenLatitude': 7.0, - 'CenLongitude': 8.0, - 'Accuracy': 1.0, - 'Color': calculateColor(avg_thickness) - } - - sub_divisions.append(subdivision) - subdiv_id += 1 - - measurement = { - 'MeasurementID': i, - 'TimeMeasured': str(datetime.now()), - 'CenterLat': 10.0, - 'CenterLon': 8.0, - 'Sensor': { - 'SensorID': 1, - 'SensorType': "test data", - 'Active': True - }, - 'Subdivisions': sub_divisions - } - - test_measurements.append(measurement) - ########################### TEST DATA ########################################### - # Convert dictionary values to list of measurements - data = list(measurement_data.values()) + test_measurements + data = list(measurement_data.values()) - if len(rows) == 0 or len(data) == 0: # Return 500 and empty list if no data is found - print(f"No data which meets the condition found") - marker_data = '[]' + if len(data) == 0: + marker_data = json.dumps(['no measurements']) else: # Convert list of dictionaries to JSON marker_data = json.dumps(data, indent=4) except Exception as e: - print(f"Error in querying database: {e}") + print(f"Error in getting measurements: {e}") marker_data = '[]' + # Set headers + self.send_response(500) + self.send_header("Content-type", "application/json") + self.end_headers() + # Set headers self.send_response(200) self.send_header("Content-type", "application/json") @@ -130,7 +93,7 @@ def get_all_markers(self, cursor, waterBodyName): self.wfile.write(marker_data.encode('utf-8')) -def calculateColor(thickness: float): # NB not final colors nor ranges +def calculateColor(thickness: float): # NB neither final colors nor ranges if 0 < thickness <= 4: return 0xFFff0000 # Red elif 4 < thickness <= 6: @@ -140,4 +103,4 @@ def calculateColor(thickness: float): # NB not final colors nor ranges elif thickness > 8: return 0xFF00d6ff # Blue else: - return 0xFF939393 # Gray + return 0xFF939393 # Grey diff --git a/server/map_handler/input_new_data.py b/server/map_handler/input_new_data.py index 516c4fb8c95f1fa3d6d31d662fabe34ef6a5df5a..57026232e8c3eb3705c0977135a4be6bceb907c3 100644 --- a/server/map_handler/input_new_data.py +++ b/server/map_handler/input_new_data.py @@ -2,6 +2,7 @@ import json from datetime import datetime from server.data_processing.process_lidar_data import calculate_area_data + # input_new_Lidar_data send new data gathered from the lidar and send it to the database (from the drone, most likely) def input_new_Lidar_data(self, cursor, sensorId, bodyOfWater): try: @@ -25,12 +26,11 @@ def input_new_Lidar_data(self, cursor, sensorId, bodyOfWater): # calculate the area of to be calculated based on the coordinates given to the calculation model areas_data = calculate_area_data((latitude, longitude)) - - if(areas_data): + if (areas_data): # calculate data for each zone within the area for area in areas_data: - if(len(area[2]) != 0): - average = sum(area[2])/len(area[2]) + if (len(area[2]) != 0): + average = sum(area[2]) / len(area[2]) minimum_thickness = min(area[2]) else: average = 0 @@ -42,7 +42,8 @@ def input_new_Lidar_data(self, cursor, sensorId, bodyOfWater): cursor.execute(''' INSERT INTO SubDivision(MeasurementID, SubDivisionID, GroupID, MinimumThickness, AverageThickness, CenterLatitude, CenterLongitude, Accuracy) VALUES (?,?,?,?,?,?,?,?); - ''',(measurement_id, area[0], area[1], float(minimum_thickness), float(average), float(latitude), float(longitude), float(1))) + ''', (measurement_id, area[0], area[1], float(minimum_thickness), float(average), float(latitude), + float(longitude), float(1))) total_measurement_average = total_measurement_average / len(areas_data) @@ -65,4 +66,4 @@ def input_new_Lidar_data(self, cursor, sensorId, bodyOfWater): except Exception as e: print("An error occurred", e) # rollback in case of error - cursor.connection.rollback() \ No newline at end of file + cursor.connection.rollback() diff --git a/server/map_handler/lake_relations/all_lake_names.json b/server/map_handler/lake_relations/all_lake_names.json index 33022b5cc38956cd75dd7b3e0de207660688ea3c..9252e9e7cdf076313ba8f54d6edfc9440266fe2c 100644 --- a/server/map_handler/lake_relations/all_lake_names.json +++ b/server/map_handler/lake_relations/all_lake_names.json @@ -1,10 +1,13 @@ [ - "Mjøsa", - "Bogstadsvannet", - "Einavatnet", - "Femsjøen", - "Femunden", - "Fjellsjøen", - "Gjende", - "Gjersjøen" -] + "Mj\u00c3\u00b8sa", + "Skumsj\u00c3\u00b8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "skumsj\u00f8en", + "mj\u00f8sa" +] \ No newline at end of file diff --git a/server/map_handler/lake_relations/mjosa_div.json b/server/map_handler/lake_relations/mjosa_div.json deleted file mode 100644 index 54f62a43b619ddd7fd8cc57be723446dfe1d9f72..0000000000000000000000000000000000000000 --- a/server/map_handler/lake_relations/mjosa_div.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [0.0345, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4304, 61.0788], [10.4304, 61.0789], [10.4304, 61.0791], [10.4305, 61.0793], [10.4305, 61.0794], [10.4305, 61.0794], [10.4305, 61.0795], [10.4305, 61.0795], [10.4305, 61.0796], [10.4306, 61.0796], [10.4306, 61.0797], [10.4307, 61.0798], [10.4309, 61.0798], [10.431, 61.0799], [10.4313, 61.0801], [10.4314, 61.0802], [10.4315, 61.0803], [10.4316, 61.0804], [10.4316, 61.0805], [10.4316, 61.0806], [10.4315, 61.0806], [10.4314, 61.0806], [10.4314, 61.0806], [10.4312, 61.0806], [10.4311, 61.0806], [10.431, 61.0806], [10.4309, 61.0806], [10.4309, 61.0807], [10.4309, 61.0808], [10.431, 61.0809], [10.431, 61.081], [10.4311, 61.081], [10.4312, 61.0811], [10.4313, 61.0811], [10.4314, 61.0811], [10.4314, 61.0812], [10.4314, 61.0812], [10.4313, 61.0813], [10.4313, 61.0814], [10.4312, 61.0814], [10.4312, 61.0814], [10.4312, 61.0814], [10.4312, 61.0815], [10.4313, 61.0815], [10.4313, 61.0816], [10.4313, 61.0817], [10.4312, 61.0817], [10.4312, 61.0818], [10.4312, 61.0818], [10.4312, 61.0819], [10.4313, 61.082], [10.4313, 61.082], [10.4313, 61.0821], [10.4314, 61.0821], [10.4315, 61.0822], [10.4315, 61.0822], [10.4315, 61.0823], [10.4315, 61.0824], [10.4315, 61.0824], [10.4314, 61.0824], [10.4314, 61.0825], [10.4314, 61.0825], [10.4314, 61.0827], [10.4314, 61.0828], [10.4315, 61.0828], [10.4315, 61.0829], [10.4315, 61.083], [10.4315, 61.083], [10.4315, 61.0831], [10.4316, 61.0831], [10.4316, 61.0831], [10.4317, 61.0831], [10.4317, 61.0831], [10.4317, 61.0832], [10.4318, 61.0832], [10.4318, 61.0833], [10.4318, 61.0833], [10.4318, 61.0834], [10.4317, 61.0834], [10.4318, 61.0834], [10.4318, 61.0835], [10.4318, 61.0835], [10.4318, 61.0836], [10.4318, 61.0837], [10.4319, 61.0838], [10.432, 61.0838], [10.432, 61.0839], [10.4321, 61.0839], [10.432, 61.084], [10.4321, 61.084], [10.4322, 61.0841], [10.4321, 61.0841], [10.4321, 61.0842], [10.4321, 61.0843], [10.432, 61.0844], [10.4319, 61.0844], [10.4319, 61.0845], [10.4319, 61.0846], [10.4319, 61.0846], [10.4319, 61.0847], [10.432, 61.0849], [10.432, 61.0851], [10.4321, 61.0852], [10.4321, 61.0852], [10.4322, 61.0853], [10.4322, 61.0854], [10.4321, 61.0856], [10.432, 61.0859], [10.432, 61.086], [10.432, 61.0861], [10.4319, 61.0862], [10.4318, 61.0862], [10.4318, 61.0862], [10.4316, 61.0864], [10.4315, 61.0864], [10.4315, 61.0865], [10.4315, 61.0866], [10.4315, 61.0867], [10.4314, 61.0869], [10.4314, 61.087], [10.4314, 61.0871], [10.4314, 61.0871], [10.4315, 61.0872], [10.4316, 61.0873], [10.4316, 61.0873], [10.4317, 61.0874], [10.4316, 61.0875], [10.4315, 61.0876], [10.4314, 61.0877], [10.4313, 61.0878], [10.4312, 61.088], [10.4312, 61.0881], [10.4312, 61.0882], [10.4312, 61.0887], [10.4313, 61.0888], [10.4314, 61.0889], [10.4314, 61.0891], [10.4314, 61.0892], [10.4315, 61.0892], [10.4315, 61.0893], [10.4317, 61.0893], [10.4318, 61.0893], [10.432, 61.0893], [10.4321, 61.0893], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0895], [10.4323, 61.0895], [10.4323, 61.0895], [10.4324, 61.0897], [10.4326, 61.0898], [10.4326, 61.0898], [10.4326, 61.0898], [10.4326, 61.0899], [10.4325, 61.09], [10.4326, 61.0901], [10.4327, 61.0902], [10.4327, 61.0902], [10.4327, 61.0903], [10.4327, 61.0903], [10.4328, 61.0904], [10.4328, 61.0905], [10.4328, 61.0905], [10.4328, 61.0906], [10.4328, 61.0906], [10.4328, 61.0908], [10.4328, 61.0908], [10.4328, 61.0909], [10.4329, 61.0909], [10.4329, 61.0909], [10.433, 61.0909], [10.4331, 61.0911], [10.4332, 61.0912], [10.4333, 61.0913], [10.4334, 61.0914], [10.4334, 61.0915], [10.4335, 61.0916], [10.4337, 61.0917], [10.4339, 61.0917], [10.4341, 61.0917], [10.4342, 61.0917], [10.4343, 61.0918], [10.4343, 61.0918], [10.4344, 61.0918], [10.4344, 61.0919], [10.4344, 61.0919], [10.4345, 61.0919], [10.4345, 61.0919], [10.4346, 61.0919], [10.4347, 61.0919], [10.4347, 61.0919], [10.4347, 61.0919], [10.4347, 61.092], [10.4346, 61.092], [10.4347, 61.092], [10.4349, 61.0921], [10.4349, 61.0921], [10.435, 61.0922], [10.435, 61.0922], [10.4351, 61.0923], [10.4352, 61.0924], [10.4353, 61.0925], [10.4353, 61.0925], [10.4354, 61.0926], [10.4354, 61.0927], [10.4354, 61.0928], [10.4354, 61.093], [10.4356, 61.0931], [10.4357, 61.0932], [10.4357, 61.0933], [10.4356, 61.0934], [10.4357, 61.0934], [10.4357, 61.0935], [10.4356, 61.0936], [10.4355, 61.0937], [10.4355, 61.0938], [10.4354, 61.0938], [10.4353, 61.0939], [10.4353, 61.094], [10.4354, 61.0942], [10.4354, 61.0945], [10.4355, 61.0949], [10.4356, 61.0953], [10.4358, 61.0958], [10.4361, 61.0961], [10.4362, 61.0963], [10.4364, 61.0964], [10.4364, 61.0964], [10.4364, 61.0965], [10.4366, 61.0966], [10.4367, 61.0966], [10.4367, 61.0967], [10.4369, 61.0968], [10.4369, 61.0969], [10.4649, 61.0969], [10.4649, 61.0969], [10.4649, 61.0967], [10.4648, 61.0966], [10.4648, 61.0964], [10.4647, 61.0964], [10.4647, 61.0963], [10.4645, 61.0963], [10.4646, 61.0962], [10.4643, 61.0961], [10.4639, 61.096], [10.4638, 61.096], [10.4638, 61.0959], [10.4637, 61.0958], [10.4637, 61.0957], [10.4636, 61.0956], [10.4636, 61.0955], [10.4635, 61.0953], [10.4635, 61.0951], [10.4635, 61.0949], [10.4634, 61.0947], [10.4634, 61.0944], [10.4634, 61.0942], [10.4634, 61.0941], [10.4633, 61.0939], [10.4633, 61.0937], [10.4632, 61.0936], [10.4632, 61.0935], [10.4632, 61.0935], [10.4633, 61.0934], [10.4631, 61.0934], [10.463, 61.0934], [10.4629, 61.0934], [10.4629, 61.0933], [10.4629, 61.0933], [10.463, 61.0933], [10.4631, 61.0932], [10.463, 61.0932], [10.4631, 61.0932], [10.4631, 61.0931], [10.4631, 61.0931], [10.4631, 61.0931], [10.4631, 61.093], [10.4631, 61.093], [10.4631, 61.093], [10.4631, 61.0929], [10.4632, 61.0928], [10.4631, 61.0928], [10.4631, 61.0927], [10.463, 61.0927], [10.463, 61.0926], [10.4629, 61.0926], [10.4629, 61.0926], [10.463, 61.0926], [10.463, 61.0925], [10.463, 61.0925], [10.4631, 61.0925], [10.4632, 61.0923], [10.4633, 61.0922], [10.4633, 61.0921], [10.4634, 61.092], [10.4633, 61.092], [10.4633, 61.0919], [10.4632, 61.0918], [10.4631, 61.0918], [10.463, 61.0917], [10.4629, 61.0917], [10.4628, 61.0917], [10.4627, 61.0916], [10.4626, 61.0915], [10.4625, 61.0915], [10.4624, 61.0915], [10.4623, 61.0914], [10.4623, 61.0914], [10.4625, 61.0914], [10.4625, 61.0913], [10.4625, 61.0913], [10.4624, 61.0913], [10.4624, 61.0912], [10.4625, 61.0912], [10.4625, 61.0912], [10.4625, 61.0911], [10.4624, 61.0911], [10.4623, 61.091], [10.4622, 61.0909], [10.4621, 61.0908], [10.462, 61.0907], [10.462, 61.0907], [10.462, 61.0906], [10.462, 61.0905], [10.462, 61.0903], [10.462, 61.0902], [10.4619, 61.0901], [10.462, 61.09], [10.4619, 61.0899], [10.4619, 61.0899], [10.4619, 61.0898], [10.462, 61.0898], [10.4619, 61.0897], [10.4618, 61.0896], [10.4618, 61.0896], [10.4617, 61.0896], [10.4617, 61.0895], [10.4617, 61.0895], [10.4617, 61.0895], [10.4616, 61.0894], [10.4615, 61.0894], [10.4615, 61.0894], [10.4615, 61.0893], [10.4615, 61.0893], [10.4615, 61.0893], [10.4615, 61.0892], [10.4614, 61.0892], [10.4614, 61.0892], [10.4615, 61.0892], [10.4614, 61.0891], [10.4614, 61.0891], [10.4615, 61.0891], [10.4615, 61.089], [10.4615, 61.089], [10.4615, 61.089], [10.4614, 61.0889], [10.4614, 61.0889], [10.4614, 61.0888], [10.4614, 61.0888], [10.4614, 61.0888], [10.4615, 61.0888], [10.4616, 61.0887], [10.4615, 61.0887], [10.4616, 61.0887], [10.4616, 61.0886], [10.4616, 61.0886], [10.4615, 61.0886], [10.4615, 61.0886], [10.4615, 61.0886], [10.4616, 61.0886], [10.4616, 61.0885], [10.4616, 61.0885], [10.4616, 61.0885], [10.4615, 61.0884], [10.4615, 61.0884], [10.4614, 61.0883], [10.4614, 61.0883], [10.4614, 61.0883], [10.4615, 61.0883], [10.4614, 61.0882], [10.4614, 61.0882], [10.4614, 61.0881], [10.4614, 61.0881], [10.4614, 61.0881], [10.4614, 61.088], [10.4614, 61.088], [10.4614, 61.088], [10.4615, 61.088], [10.4615, 61.0879], [10.4615, 61.0879], [10.4615, 61.0879], [10.4614, 61.0878], [10.4614, 61.0878], [10.4614, 61.0878], [10.4614, 61.0877], [10.4614, 61.0877], [10.4614, 61.0877], [10.4615, 61.0877], [10.4614, 61.0876], [10.4614, 61.0876], [10.4614, 61.0876], [10.4614, 61.0875], [10.4614, 61.0875], [10.4614, 61.0874], [10.4614, 61.0874], [10.4614, 61.0874], [10.4615, 61.0874], [10.4615, 61.0873], [10.4615, 61.0873], [10.4615, 61.0872], [10.4614, 61.0872], [10.4615, 61.0872], [10.4615, 61.0871], [10.4615, 61.0871], [10.4616, 61.0871], [10.4616, 61.087], [10.4616, 61.0869], [10.4615, 61.0869], [10.4615, 61.0868], [10.4614, 61.0868], [10.4614, 61.0867], [10.4613, 61.0867], [10.4613, 61.0867], [10.4614, 61.0867], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0865], [10.4614, 61.0865], [10.4613, 61.0865], [10.4613, 61.0864], [10.4613, 61.0864], [10.4615, 61.0863], [10.4615, 61.0862], [10.4614, 61.0861], [10.4615, 61.0861], [10.4616, 61.0861], [10.4617, 61.0859], [10.4617, 61.0859], [10.4618, 61.0858], [10.4618, 61.0857], [10.4619, 61.0855], [10.4619, 61.0854], [10.4617, 61.0852], [10.4613, 61.085], [10.4611, 61.0849], [10.461, 61.0847], [10.461, 61.0846], [10.4611, 61.0845], [10.4611, 61.0844], [10.4611, 61.0843], [10.461, 61.0841], [10.461, 61.0841], [10.4609, 61.084], [10.4609, 61.084], [10.4609, 61.084], [10.4609, 61.0839], [10.4609, 61.0839], [10.4609, 61.0839], [10.4609, 61.0838], [10.4608, 61.0838], [10.4608, 61.0838], [10.4609, 61.0838], [10.4609, 61.0837], [10.4609, 61.0836], [10.4609, 61.0835], [10.4609, 61.0834], [10.4608, 61.0834], [10.4608, 61.0834], [10.4608, 61.0833], [10.4606, 61.0832], [10.4606, 61.0831], [10.4605, 61.0831], [10.4604, 61.083], [10.4605, 61.083], [10.4605, 61.083], [10.4605, 61.083], [10.4605, 61.0829], [10.4603, 61.0829], [10.4603, 61.0828], [10.4603, 61.0827], [10.4604, 61.0826], [10.4605, 61.0826], [10.4605, 61.0826], [10.4605, 61.0825], [10.4605, 61.0824], [10.4603, 61.0824], [10.4603, 61.0823], [10.4603, 61.0822], [10.4602, 61.0822], [10.4601, 61.0822], [10.4601, 61.0822], [10.46, 61.0821], [10.4601, 61.0821], [10.46, 61.082], [10.4599, 61.082], [10.4599, 61.082], [10.46, 61.082], [10.46, 61.0819], [10.46, 61.0818], [10.4599, 61.0818], [10.4598, 61.0818], [10.4597, 61.0817], [10.4596, 61.0816], [10.4596, 61.0815], [10.4595, 61.0814], [10.4596, 61.0813], [10.4596, 61.0813], [10.4596, 61.0813], [10.4596, 61.0812], [10.4596, 61.0812], [10.4596, 61.0812], [10.4595, 61.0812], [10.4594, 61.0812], [10.4593, 61.0811], [10.4593, 61.0811], [10.4594, 61.0811], [10.4594, 61.081], [10.4594, 61.0809], [10.4593, 61.0808], [10.4593, 61.0808], [10.4592, 61.0807], [10.4592, 61.0806], [10.4591, 61.0806], [10.4591, 61.0806], [10.4592, 61.0806], [10.4592, 61.0806], [10.4592, 61.0805], [10.4592, 61.0805], [10.4592, 61.0804], [10.4591, 61.0804], [10.4591, 61.0803], [10.4591, 61.08], [10.459, 61.0798], [10.4589, 61.0797], [10.4589, 61.0795], [10.4589, 61.0794], [10.4589, 61.0792], [10.4589, 61.0791], [10.459, 61.0791], [10.459, 61.079], [10.4589, 61.0789], [10.4588, 61.0788], [10.4588, 61.0787], [10.4588, 61.0786], [10.4588, 61.0785], [10.4588, 61.0785], [10.4589, 61.0785], [10.4588, 61.0784], [10.4589, 61.0783], [10.4589, 61.0783], [10.4589, 61.0782], [10.4589, 61.0781], [10.4589, 61.0779], [10.4588, 61.0778], [10.4587, 61.0776], [10.4588, 61.0775], [10.4587, 61.0774], [10.4586, 61.0772], [10.4587, 61.0772], [10.4587, 61.0771], [10.4586, 61.077], [10.4586, 61.0769], [10.4586, 61.0769], [10.431, 61.0769], [10.4309, 61.077], [10.4309, 61.0771], [10.4308, 61.0772], [10.4308, 61.0773], [10.4308, 61.0774], [10.4308, 61.0774], [10.4309, 61.0775], [10.4309, 61.0776], [10.4309, 61.0776], [10.4308, 61.0777], [10.4307, 61.0778], [10.4306, 61.0779], [10.4306, 61.0781], [10.4305, 61.0783], [10.4304, 61.0785], [10.4304, 61.0787], [10.4304, 61.0788]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [0.0277, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4586, 61.0769], [10.4586, 61.0768], [10.4586, 61.0767], [10.4586, 61.0766], [10.4585, 61.0762], [10.4584, 61.0761], [10.4584, 61.076], [10.4584, 61.0758], [10.4584, 61.0756], [10.4584, 61.0754], [10.4583, 61.0753], [10.4583, 61.0751], [10.4582, 61.0747], [10.4581, 61.0746], [10.4579, 61.0745], [10.4579, 61.0744], [10.4578, 61.0742], [10.4576, 61.0743], [10.4575, 61.074], [10.4574, 61.0738], [10.4573, 61.0738], [10.4572, 61.0734], [10.4572, 61.0733], [10.457, 61.0732], [10.457, 61.073], [10.4571, 61.073], [10.4571, 61.0728], [10.457, 61.0726], [10.457, 61.0725], [10.4569, 61.0724], [10.4568, 61.0721], [10.4567, 61.072], [10.4567, 61.0719], [10.4567, 61.0718], [10.4566, 61.0715], [10.4566, 61.0713], [10.4566, 61.0711], [10.4565, 61.071], [10.4566, 61.0709], [10.4565, 61.0708], [10.4565, 61.0706], [10.4564, 61.0704], [10.4564, 61.0703], [10.4565, 61.0702], [10.4564, 61.0702], [10.4564, 61.0701], [10.4565, 61.0701], [10.4565, 61.07], [10.4564, 61.07], [10.4564, 61.0699], [10.4564, 61.0698], [10.4564, 61.0697], [10.4563, 61.0696], [10.4565, 61.0694], [10.4566, 61.0693], [10.4565, 61.0692], [10.4565, 61.0692], [10.4567, 61.0691], [10.4567, 61.0689], [10.4567, 61.0688], [10.4567, 61.0686], [10.4568, 61.0684], [10.4568, 61.0682], [10.4567, 61.068], [10.4567, 61.0679], [10.4567, 61.0677], [10.4565, 61.0677], [10.4565, 61.0677], [10.4565, 61.0676], [10.4566, 61.0676], [10.4567, 61.0674], [10.4568, 61.0672], [10.4568, 61.067], [10.4568, 61.0668], [10.4567, 61.0666], [10.4566, 61.0663], [10.4565, 61.0662], [10.4563, 61.066], [10.4561, 61.0656], [10.456, 61.0654], [10.4558, 61.0651], [10.4554, 61.0646], [10.4553, 61.0645], [10.4552, 61.0644], [10.4551, 61.0643], [10.4549, 61.0641], [10.4549, 61.064], [10.4551, 61.0637], [10.4552, 61.0634], [10.4552, 61.0631], [10.4552, 61.0629], [10.4552, 61.0628], [10.4552, 61.0627], [10.4551, 61.0625], [10.455, 61.0624], [10.4549, 61.0624], [10.4547, 61.0624], [10.4547, 61.0623], [10.4549, 61.0622], [10.455, 61.0621], [10.4549, 61.062], [10.4548, 61.0619], [10.455, 61.0616], [10.455, 61.0615], [10.455, 61.0614], [10.4556, 61.0611], [10.4559, 61.0608], [10.4563, 61.0604], [10.4567, 61.0602], [10.4569, 61.0598], [10.4573, 61.059], [10.4575, 61.0589], [10.4576, 61.0585], [10.4578, 61.0579], [10.4579, 61.0575], [10.458, 61.0574], [10.458, 61.0571], [10.4582, 61.0569], [10.4333, 61.0569], [10.4333, 61.0569], [10.4329, 61.0574], [10.4325, 61.0578], [10.4321, 61.0583], [10.432, 61.0585], [10.432, 61.0587], [10.432, 61.059], [10.432, 61.0592], [10.4319, 61.0593], [10.4319, 61.0594], [10.432, 61.0597], [10.432, 61.0598], [10.432, 61.0599], [10.432, 61.0599], [10.4321, 61.0602], [10.4321, 61.0603], [10.432, 61.0604], [10.4319, 61.0606], [10.4319, 61.0607], [10.4318, 61.0608], [10.4316, 61.061], [10.4316, 61.0611], [10.4315, 61.0612], [10.4314, 61.0613], [10.4314, 61.0614], [10.4313, 61.0615], [10.4313, 61.0616], [10.4313, 61.0618], [10.4313, 61.0619], [10.4313, 61.0619], [10.4312, 61.0621], [10.4312, 61.0622], [10.4312, 61.0624], [10.4312, 61.0625], [10.4313, 61.0627], [10.4313, 61.0628], [10.4313, 61.0629], [10.4313, 61.063], [10.4313, 61.0631], [10.4314, 61.0633], [10.4314, 61.0634], [10.4314, 61.0635], [10.4314, 61.0635], [10.4314, 61.0636], [10.4315, 61.0637], [10.4315, 61.0638], [10.4316, 61.0638], [10.4315, 61.0639], [10.4315, 61.064], [10.4315, 61.064], [10.4316, 61.0641], [10.4316, 61.0641], [10.4315, 61.0641], [10.4315, 61.0642], [10.4314, 61.0643], [10.4314, 61.0645], [10.4313, 61.0646], [10.4312, 61.0647], [10.4312, 61.0648], [10.4311, 61.0649], [10.4311, 61.065], [10.4311, 61.0651], [10.4311, 61.0652], [10.4311, 61.0652], [10.4311, 61.0653], [10.4311, 61.0654], [10.4311, 61.0655], [10.4311, 61.0656], [10.4311, 61.0657], [10.431, 61.0661], [10.431, 61.0662], [10.431, 61.0664], [10.431, 61.0667], [10.431, 61.067], [10.431, 61.0671], [10.4311, 61.0672], [10.4311, 61.0674], [10.4311, 61.0675], [10.4312, 61.0677], [10.4311, 61.0678], [10.4311, 61.0678], [10.4311, 61.0679], [10.4311, 61.0681], [10.4311, 61.0681], [10.4311, 61.0682], [10.4311, 61.0682], [10.4311, 61.0684], [10.4312, 61.0684], [10.4312, 61.0684], [10.4311, 61.0685], [10.4311, 61.0686], [10.431, 61.0687], [10.431, 61.0688], [10.431, 61.0689], [10.4311, 61.0692], [10.4311, 61.0694], [10.4311, 61.0695], [10.4312, 61.0697], [10.4313, 61.0699], [10.4313, 61.0699], [10.4314, 61.07], [10.4313, 61.0701], [10.4313, 61.0702], [10.4314, 61.0704], [10.4315, 61.0707], [10.4315, 61.0708], [10.4316, 61.0709], [10.4316, 61.0709], [10.4316, 61.0711], [10.4316, 61.0711], [10.4316, 61.0713], [10.4316, 61.0714], [10.4317, 61.0715], [10.4317, 61.0716], [10.4318, 61.0717], [10.4318, 61.0717], [10.4319, 61.0718], [10.432, 61.0718], [10.4322, 61.0719], [10.4323, 61.0719], [10.4324, 61.072], [10.4323, 61.0721], [10.4322, 61.0721], [10.4322, 61.0721], [10.4322, 61.0722], [10.4322, 61.0723], [10.4323, 61.0723], [10.4323, 61.0724], [10.4324, 61.0725], [10.4325, 61.0726], [10.4326, 61.0726], [10.4327, 61.0728], [10.4328, 61.0728], [10.4328, 61.0729], [10.4328, 61.0729], [10.433, 61.0729], [10.433, 61.0729], [10.4328, 61.0729], [10.4328, 61.073], [10.4328, 61.0731], [10.4328, 61.0732], [10.4327, 61.0733], [10.4325, 61.0734], [10.4323, 61.0735], [10.4322, 61.0736], [10.4321, 61.0738], [10.4319, 61.0738], [10.4319, 61.0739], [10.4318, 61.074], [10.4318, 61.0741], [10.4318, 61.0742], [10.4318, 61.0743], [10.4318, 61.0744], [10.4318, 61.0745], [10.4317, 61.0746], [10.4317, 61.0747], [10.4317, 61.0749], [10.4317, 61.075], [10.4318, 61.075], [10.4318, 61.075], [10.4318, 61.075], [10.4319, 61.075], [10.4319, 61.075], [10.4318, 61.075], [10.4317, 61.075], [10.4317, 61.0751], [10.4317, 61.0752], [10.4317, 61.0753], [10.4317, 61.0754], [10.4316, 61.0755], [10.4316, 61.0756], [10.4318, 61.0756], [10.4319, 61.0756], [10.432, 61.0756], [10.432, 61.0756], [10.432, 61.0757], [10.4319, 61.0757], [10.4318, 61.0756], [10.4317, 61.0756], [10.4317, 61.0756], [10.4316, 61.0756], [10.4316, 61.0756], [10.4316, 61.0757], [10.4315, 61.0757], [10.4315, 61.0758], [10.4316, 61.0758], [10.4317, 61.0758], [10.4318, 61.0758], [10.4318, 61.0758], [10.4319, 61.0757], [10.4319, 61.0757], [10.432, 61.0757], [10.4319, 61.0758], [10.4319, 61.0758], [10.4319, 61.0758], [10.4318, 61.0758], [10.4318, 61.0758], [10.4317, 61.0758], [10.4315, 61.0758], [10.4315, 61.0759], [10.4315, 61.0759], [10.4315, 61.0759], [10.4314, 61.076], [10.4313, 61.076], [10.4314, 61.0761], [10.4314, 61.0762], [10.4314, 61.0764], [10.4314, 61.0765], [10.4312, 61.0765], [10.4311, 61.0766], [10.4311, 61.0766], [10.431, 61.0767], [10.431, 61.0767], [10.431, 61.0769], [10.4586, 61.0769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [0.0371, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4582, 61.0569], [10.4582, 61.0568], [10.4583, 61.0566], [10.4584, 61.0563], [10.4584, 61.056], [10.4584, 61.0555], [10.4584, 61.0552], [10.4584, 61.0548], [10.4585, 61.0546], [10.4585, 61.0545], [10.4585, 61.0542], [10.4584, 61.0541], [10.4583, 61.0538], [10.4583, 61.0534], [10.4582, 61.0533], [10.458, 61.0532], [10.4579, 61.0531], [10.4576, 61.053], [10.4578, 61.0527], [10.458, 61.0526], [10.4583, 61.0524], [10.4586, 61.0521], [10.4588, 61.0518], [10.4589, 61.0517], [10.4589, 61.0516], [10.4588, 61.0514], [10.4586, 61.0511], [10.4587, 61.051], [10.4589, 61.0509], [10.4591, 61.0508], [10.4593, 61.0507], [10.4594, 61.0505], [10.4594, 61.0504], [10.4595, 61.0503], [10.4595, 61.0502], [10.4595, 61.05], [10.4593, 61.05], [10.4593, 61.05], [10.4594, 61.05], [10.4594, 61.05], [10.4595, 61.05], [10.4595, 61.0499], [10.4593, 61.0498], [10.4593, 61.0496], [10.4592, 61.0496], [10.4592, 61.0496], [10.4593, 61.0495], [10.4594, 61.0495], [10.4597, 61.0494], [10.46, 61.0493], [10.4606, 61.0489], [10.461, 61.0486], [10.4614, 61.0483], [10.4616, 61.048], [10.4617, 61.0476], [10.462, 61.047], [10.4623, 61.0468], [10.4624, 61.0466], [10.4626, 61.0465], [10.4628, 61.0464], [10.463, 61.0463], [10.4633, 61.0462], [10.4636, 61.0461], [10.4639, 61.046], [10.4646, 61.0456], [10.465, 61.0454], [10.4655, 61.0452], [10.466, 61.045], [10.4664, 61.0448], [10.4672, 61.0444], [10.4679, 61.0441], [10.4682, 61.044], [10.4686, 61.0439], [10.4689, 61.0438], [10.4691, 61.0437], [10.4696, 61.0435], [10.4699, 61.0433], [10.4702, 61.0431], [10.4702, 61.0431], [10.4703, 61.043], [10.4704, 61.0429], [10.4704, 61.0428], [10.4704, 61.0369], [10.4416, 61.0369], [10.4416, 61.0369], [10.4415, 61.0369], [10.4415, 61.0371], [10.4415, 61.0372], [10.4414, 61.0373], [10.4413, 61.0375], [10.4412, 61.0376], [10.4411, 61.0376], [10.4411, 61.0377], [10.441, 61.0377], [10.4409, 61.0378], [10.4408, 61.0379], [10.4406, 61.038], [10.4406, 61.0381], [10.4405, 61.0383], [10.4405, 61.0383], [10.4404, 61.0384], [10.4404, 61.0384], [10.4405, 61.0385], [10.4405, 61.0385], [10.4404, 61.0386], [10.4403, 61.0388], [10.4401, 61.0389], [10.4401, 61.0389], [10.4402, 61.039], [10.4401, 61.039], [10.4401, 61.0391], [10.44, 61.0391], [10.44, 61.0391], [10.44, 61.0392], [10.44, 61.0392], [10.4401, 61.0393], [10.4401, 61.0393], [10.4402, 61.0393], [10.4401, 61.0394], [10.4399, 61.0395], [10.4397, 61.0395], [10.4395, 61.0395], [10.4394, 61.0396], [10.4393, 61.0397], [10.4392, 61.0398], [10.4392, 61.0399], [10.4392, 61.0399], [10.4392, 61.04], [10.4391, 61.04], [10.439, 61.04], [10.4389, 61.04], [10.4386, 61.0402], [10.4384, 61.0403], [10.4381, 61.0405], [10.4381, 61.0406], [10.4381, 61.0406], [10.4381, 61.0406], [10.438, 61.0406], [10.438, 61.0406], [10.4379, 61.0407], [10.4378, 61.0408], [10.4377, 61.0408], [10.4376, 61.0409], [10.4376, 61.041], [10.4375, 61.041], [10.4375, 61.0411], [10.4375, 61.0412], [10.4374, 61.0412], [10.4373, 61.0414], [10.4371, 61.0416], [10.4366, 61.0418], [10.4362, 61.042], [10.4358, 61.0423], [10.4354, 61.0426], [10.4355, 61.0427], [10.4354, 61.0428], [10.4352, 61.0429], [10.4351, 61.0429], [10.435, 61.0431], [10.4349, 61.0432], [10.435, 61.0433], [10.4352, 61.0433], [10.4352, 61.0434], [10.4352, 61.0435], [10.4352, 61.0436], [10.4353, 61.0436], [10.4353, 61.0438], [10.4354, 61.0438], [10.4354, 61.0439], [10.4354, 61.044], [10.4353, 61.0443], [10.4352, 61.0445], [10.4354, 61.0446], [10.4356, 61.0446], [10.4358, 61.0445], [10.4359, 61.0444], [10.4362, 61.0443], [10.4364, 61.0442], [10.4365, 61.0441], [10.4366, 61.0441], [10.4367, 61.044], [10.4368, 61.044], [10.4368, 61.0441], [10.4369, 61.0441], [10.437, 61.0441], [10.437, 61.0442], [10.4371, 61.0442], [10.4371, 61.0442], [10.4371, 61.0442], [10.4371, 61.0443], [10.4371, 61.0443], [10.437, 61.0443], [10.4368, 61.0444], [10.4368, 61.0445], [10.4367, 61.0445], [10.4367, 61.0446], [10.4367, 61.0446], [10.4368, 61.0447], [10.4368, 61.0447], [10.4369, 61.0448], [10.437, 61.0449], [10.4371, 61.045], [10.4371, 61.045], [10.4371, 61.045], [10.4371, 61.0451], [10.4371, 61.0451], [10.4372, 61.0452], [10.4372, 61.0452], [10.4373, 61.0452], [10.4373, 61.0453], [10.4374, 61.0453], [10.4375, 61.0453], [10.4376, 61.0453], [10.4377, 61.0453], [10.4378, 61.0453], [10.438, 61.0453], [10.4382, 61.0453], [10.4383, 61.0453], [10.4384, 61.0453], [10.4385, 61.0453], [10.4385, 61.0453], [10.4386, 61.0453], [10.4387, 61.0453], [10.4388, 61.0454], [10.4388, 61.0455], [10.4389, 61.0455], [10.4389, 61.0456], [10.439, 61.0457], [10.439, 61.0457], [10.4391, 61.0457], [10.4391, 61.0458], [10.4391, 61.0458], [10.4391, 61.0458], [10.4391, 61.0459], [10.4391, 61.0459], [10.439, 61.0459], [10.439, 61.0459], [10.439, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.0459], [10.4389, 61.0459], [10.4389, 61.0459], [10.4389, 61.0459], [10.439, 61.0459], [10.439, 61.0458], [10.439, 61.0458], [10.439, 61.0458], [10.4389, 61.0457], [10.4389, 61.0457], [10.4388, 61.0456], [10.4388, 61.0455], [10.4387, 61.0455], [10.4386, 61.0454], [10.4386, 61.0454], [10.4385, 61.0453], [10.4385, 61.0453], [10.4384, 61.0453], [10.4383, 61.0453], [10.4382, 61.0453], [10.4379, 61.0454], [10.4377, 61.0454], [10.4375, 61.0454], [10.4375, 61.0454], [10.4374, 61.0455], [10.4374, 61.0455], [10.4374, 61.0455], [10.4373, 61.0455], [10.4373, 61.0456], [10.4373, 61.0456], [10.4374, 61.0456], [10.4374, 61.0457], [10.4375, 61.0457], [10.4375, 61.0457], [10.4376, 61.0457], [10.4377, 61.0458], [10.4378, 61.0458], [10.4378, 61.0458], [10.4379, 61.0458], [10.4379, 61.0458], [10.4379, 61.0458], [10.438, 61.0457], [10.438, 61.0457], [10.438, 61.0457], [10.4381, 61.0457], [10.4382, 61.0457], [10.4382, 61.0457], [10.4383, 61.0457], [10.4384, 61.0457], [10.4384, 61.0456], [10.4384, 61.0456], [10.4385, 61.0456], [10.4385, 61.0456], [10.4386, 61.0457], [10.4386, 61.0457], [10.4387, 61.0457], [10.4387, 61.0457], [10.4387, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4385, 61.0459], [10.4385, 61.0459], [10.4384, 61.0459], [10.4382, 61.0459], [10.438, 61.046], [10.4378, 61.0461], [10.4377, 61.0462], [10.4375, 61.0462], [10.4374, 61.0462], [10.4373, 61.0462], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4374, 61.0464], [10.4375, 61.0464], [10.4376, 61.0464], [10.4377, 61.0465], [10.4378, 61.0465], [10.4379, 61.0465], [10.438, 61.0465], [10.4381, 61.0465], [10.4382, 61.0466], [10.4381, 61.0466], [10.4382, 61.0467], [10.4382, 61.0467], [10.4382, 61.0467], [10.4381, 61.0467], [10.4381, 61.0468], [10.4381, 61.0468], [10.4381, 61.0469], [10.4382, 61.047], [10.4382, 61.047], [10.4382, 61.047], [10.4382, 61.047], [10.4381, 61.047], [10.4381, 61.047], [10.4381, 61.047], [10.438, 61.047], [10.4379, 61.047], [10.4378, 61.047], [10.4378, 61.047], [10.4378, 61.0471], [10.4377, 61.0472], [10.4376, 61.0472], [10.4375, 61.0473], [10.4375, 61.0473], [10.4376, 61.0474], [10.4376, 61.0474], [10.4375, 61.0474], [10.4375, 61.0474], [10.4374, 61.0474], [10.4373, 61.0474], [10.4373, 61.0474], [10.4373, 61.0475], [10.4374, 61.0475], [10.4375, 61.0475], [10.4375, 61.0475], [10.4374, 61.0476], [10.4374, 61.0476], [10.4374, 61.0476], [10.4373, 61.0476], [10.4373, 61.0476], [10.4374, 61.0476], [10.4375, 61.0477], [10.4375, 61.0477], [10.4375, 61.0477], [10.4374, 61.0477], [10.4374, 61.0478], [10.4375, 61.0478], [10.4376, 61.0478], [10.4376, 61.0479], [10.4376, 61.0479], [10.4376, 61.0479], [10.4378, 61.048], [10.4379, 61.048], [10.4379, 61.048], [10.4379, 61.048], [10.4378, 61.048], [10.4378, 61.0481], [10.4377, 61.0481], [10.4377, 61.0481], [10.4376, 61.0481], [10.4375, 61.0481], [10.4375, 61.0481], [10.4375, 61.0482], [10.4374, 61.0483], [10.4374, 61.0483], [10.4373, 61.0483], [10.4373, 61.0483], [10.4373, 61.0483], [10.4373, 61.0484], [10.4373, 61.0484], [10.4373, 61.0484], [10.4372, 61.0484], [10.4372, 61.0484], [10.4371, 61.0485], [10.437, 61.0486], [10.437, 61.0486], [10.437, 61.0486], [10.4369, 61.0487], [10.4369, 61.0487], [10.4368, 61.0489], [10.4368, 61.0491], [10.4367, 61.0492], [10.4367, 61.0493], [10.4367, 61.0493], [10.4367, 61.0493], [10.4367, 61.0494], [10.4367, 61.0495], [10.4368, 61.0495], [10.4369, 61.0496], [10.437, 61.0497], [10.4371, 61.0497], [10.4371, 61.0497], [10.4371, 61.0497], [10.4371, 61.0498], [10.437, 61.0499], [10.437, 61.05], [10.4369, 61.0501], [10.4369, 61.0502], [10.4368, 61.0502], [10.4367, 61.0502], [10.4367, 61.0502], [10.4366, 61.0502], [10.4366, 61.0502], [10.4366, 61.0502], [10.4365, 61.0502], [10.4364, 61.0502], [10.4364, 61.0502], [10.4363, 61.0502], [10.4363, 61.0502], [10.4362, 61.0503], [10.4362, 61.0504], [10.4361, 61.0504], [10.436, 61.0505], [10.4359, 61.0507], [10.4358, 61.0508], [10.4357, 61.0509], [10.4356, 61.0512], [10.4355, 61.0514], [10.4355, 61.0515], [10.4354, 61.0517], [10.4354, 61.0518], [10.4355, 61.0519], [10.4354, 61.052], [10.4355, 61.052], [10.4355, 61.052], [10.4355, 61.052], [10.4354, 61.052], [10.4354, 61.052], [10.4353, 61.0521], [10.4353, 61.0521], [10.4351, 61.0522], [10.4351, 61.0523], [10.4351, 61.0523], [10.4351, 61.0525], [10.4351, 61.0525], [10.4351, 61.0526], [10.435, 61.0526], [10.435, 61.0527], [10.435, 61.053], [10.435, 61.053], [10.4351, 61.053], [10.4351, 61.053], [10.435, 61.0531], [10.435, 61.0531], [10.435, 61.0532], [10.435, 61.0532], [10.4351, 61.0533], [10.4351, 61.0533], [10.435, 61.0534], [10.4351, 61.0534], [10.4351, 61.0534], [10.4352, 61.0535], [10.4352, 61.0535], [10.4351, 61.0535], [10.4351, 61.0535], [10.435, 61.0536], [10.435, 61.0537], [10.435, 61.0538], [10.4351, 61.0539], [10.4351, 61.0539], [10.4351, 61.0539], [10.4351, 61.054], [10.4351, 61.054], [10.4351, 61.0541], [10.435, 61.0541], [10.4349, 61.0542], [10.4349, 61.0544], [10.4349, 61.0544], [10.435, 61.0545], [10.435, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4352, 61.0545], [10.4353, 61.0545], [10.4353, 61.0545], [10.4354, 61.0546], [10.4354, 61.0546], [10.4355, 61.0546], [10.4355, 61.0546], [10.4355, 61.0547], [10.4355, 61.0547], [10.4355, 61.0548], [10.4356, 61.0548], [10.4356, 61.0548], [10.4356, 61.0549], [10.4356, 61.0549], [10.4355, 61.0549], [10.4355, 61.0549], [10.4355, 61.055], [10.4354, 61.055], [10.4354, 61.055], [10.4353, 61.055], [10.4352, 61.0551], [10.435, 61.0551], [10.4348, 61.0552], [10.4347, 61.0552], [10.4346, 61.0552], [10.4344, 61.0553], [10.4343, 61.0554], [10.4342, 61.0556], [10.4342, 61.0556], [10.4342, 61.0557], [10.434, 61.0558], [10.4339, 61.056], [10.4338, 61.0561], [10.4337, 61.0561], [10.4337, 61.0562], [10.4336, 61.0563], [10.4336, 61.0564], [10.4336, 61.0564], [10.4336, 61.0565], [10.4336, 61.0565], [10.4337, 61.0566], [10.4337, 61.0566], [10.4337, 61.0566], [10.4336, 61.0567], [10.4335, 61.0567], [10.4335, 61.0567], [10.4333, 61.0569], [10.4582, 61.0569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [0.0284, 0.0171]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4369, 61.0969], [10.437, 61.0969], [10.4373, 61.097], [10.4375, 61.0971], [10.4376, 61.0971], [10.4378, 61.0972], [10.4379, 61.0972], [10.4379, 61.0973], [10.4379, 61.0974], [10.438, 61.0975], [10.4382, 61.0976], [10.4383, 61.0977], [10.4384, 61.0977], [10.4384, 61.0978], [10.4385, 61.0978], [10.4387, 61.098], [10.4388, 61.0981], [10.4389, 61.0982], [10.4389, 61.0983], [10.4389, 61.0983], [10.439, 61.0985], [10.4391, 61.0986], [10.4392, 61.0987], [10.4394, 61.0989], [10.4394, 61.099], [10.4394, 61.0991], [10.4394, 61.0991], [10.4394, 61.0992], [10.4394, 61.0993], [10.4395, 61.0994], [10.4396, 61.0996], [10.4397, 61.0997], [10.4397, 61.0998], [10.4398, 61.0999], [10.4398, 61.0999], [10.4398, 61.1], [10.4398, 61.1], [10.4397, 61.1001], [10.4397, 61.1002], [10.4397, 61.1003], [10.4397, 61.1004], [10.4398, 61.1004], [10.4398, 61.1004], [10.4399, 61.1004], [10.44, 61.1004], [10.44, 61.1005], [10.4399, 61.1005], [10.4398, 61.1005], [10.4398, 61.1006], [10.4398, 61.1006], [10.44, 61.1007], [10.4399, 61.1008], [10.4399, 61.1011], [10.4398, 61.1013], [10.4398, 61.1015], [10.4398, 61.1017], [10.4399, 61.102], [10.4399, 61.1022], [10.4401, 61.1025], [10.4402, 61.1027], [10.4405, 61.103], [10.4406, 61.1032], [10.4407, 61.1033], [10.4408, 61.1033], [10.4408, 61.1033], [10.4409, 61.1033], [10.441, 61.1034], [10.4411, 61.1034], [10.4413, 61.1034], [10.4416, 61.1034], [10.4419, 61.1035], [10.4425, 61.1035], [10.4427, 61.1035], [10.4428, 61.1035], [10.443, 61.1035], [10.4432, 61.1034], [10.4433, 61.1034], [10.4434, 61.1034], [10.4434, 61.1034], [10.4435, 61.1033], [10.4435, 61.1033], [10.4435, 61.1032], [10.4434, 61.1031], [10.4433, 61.1029], [10.4434, 61.1029], [10.4434, 61.1029], [10.4435, 61.1031], [10.4437, 61.1031], [10.4438, 61.103], [10.4443, 61.103], [10.4445, 61.1029], [10.4446, 61.1029], [10.4447, 61.1029], [10.4448, 61.1029], [10.445, 61.1029], [10.4453, 61.1028], [10.4455, 61.1027], [10.4459, 61.1027], [10.4461, 61.1026], [10.4464, 61.1026], [10.4464, 61.1027], [10.4466, 61.1028], [10.4466, 61.1028], [10.4466, 61.1029], [10.4466, 61.1029], [10.4467, 61.103], [10.4467, 61.103], [10.4469, 61.1031], [10.447, 61.1031], [10.4471, 61.1033], [10.4472, 61.1034], [10.4472, 61.1034], [10.4473, 61.1036], [10.4475, 61.1036], [10.4476, 61.1037], [10.4478, 61.1037], [10.4481, 61.1038], [10.4484, 61.1039], [10.4486, 61.1039], [10.4487, 61.1039], [10.4486, 61.104], [10.4486, 61.104], [10.4486, 61.104], [10.4485, 61.104], [10.4484, 61.104], [10.4483, 61.104], [10.4481, 61.104], [10.4479, 61.104], [10.4478, 61.104], [10.4478, 61.104], [10.4477, 61.104], [10.4476, 61.104], [10.4472, 61.104], [10.4471, 61.104], [10.447, 61.104], [10.4469, 61.1041], [10.4467, 61.1042], [10.4466, 61.1043], [10.4465, 61.1043], [10.4464, 61.1043], [10.4464, 61.1043], [10.4465, 61.1043], [10.4465, 61.1043], [10.4465, 61.1044], [10.4465, 61.1044], [10.4464, 61.1045], [10.4464, 61.1046], [10.4464, 61.1046], [10.4464, 61.1046], [10.4464, 61.1047], [10.4464, 61.105], [10.4464, 61.1051], [10.4463, 61.1052], [10.4463, 61.1052], [10.4463, 61.1053], [10.4464, 61.1053], [10.4464, 61.1053], [10.4465, 61.1054], [10.4467, 61.1055], [10.4468, 61.1057], [10.4471, 61.1059], [10.4471, 61.1059], [10.4473, 61.106], [10.4473, 61.1061], [10.4475, 61.1062], [10.4476, 61.1062], [10.4478, 61.1062], [10.4479, 61.1062], [10.448, 61.1062], [10.4481, 61.1061], [10.4481, 61.1061], [10.4482, 61.106], [10.4482, 61.1059], [10.4483, 61.1057], [10.4483, 61.1056], [10.4484, 61.1055], [10.4484, 61.1054], [10.4484, 61.1053], [10.4484, 61.1053], [10.4484, 61.1053], [10.4485, 61.1053], [10.4485, 61.1053], [10.4485, 61.1055], [10.4485, 61.1056], [10.4485, 61.1056], [10.4484, 61.1057], [10.4483, 61.1061], [10.4482, 61.1062], [10.4481, 61.1063], [10.4479, 61.1064], [10.4478, 61.1064], [10.4476, 61.1064], [10.4475, 61.1064], [10.4474, 61.1065], [10.4474, 61.1065], [10.4473, 61.1066], [10.4471, 61.1067], [10.4468, 61.1068], [10.4467, 61.1069], [10.4467, 61.1069], [10.4466, 61.107], [10.4465, 61.107], [10.4464, 61.1071], [10.4463, 61.1071], [10.4462, 61.1072], [10.446, 61.1072], [10.4458, 61.1072], [10.4454, 61.1073], [10.4449, 61.1073], [10.4443, 61.1073], [10.444, 61.1073], [10.4438, 61.1072], [10.4436, 61.1073], [10.4435, 61.1073], [10.4434, 61.1074], [10.4432, 61.1075], [10.4432, 61.1075], [10.4431, 61.1076], [10.4429, 61.1077], [10.4429, 61.1081], [10.4428, 61.1083], [10.4428, 61.1084], [10.4428, 61.1085], [10.4429, 61.1086], [10.4429, 61.1086], [10.4429, 61.1087], [10.4429, 61.1087], [10.4428, 61.1088], [10.4428, 61.1088], [10.4428, 61.1088], [10.4427, 61.109], [10.4427, 61.1091], [10.4427, 61.1092], [10.4427, 61.1092], [10.4425, 61.1093], [10.4425, 61.1094], [10.4426, 61.1096], [10.4426, 61.1098], [10.4426, 61.1099], [10.4427, 61.1101], [10.4427, 61.1103], [10.4428, 61.1106], [10.4429, 61.1107], [10.443, 61.1109], [10.4431, 61.1111], [10.4432, 61.1113], [10.4434, 61.1116], [10.4436, 61.1119], [10.4447, 61.1133], [10.4448, 61.1134], [10.4449, 61.1135], [10.445, 61.1136], [10.4451, 61.1138], [10.4452, 61.1139], [10.4453, 61.1139], [10.4454, 61.1139], [10.4456, 61.1139], [10.4457, 61.1139], [10.4457, 61.1139], [10.4458, 61.1139], [10.4461, 61.1139], [10.4462, 61.1138], [10.4463, 61.1138], [10.4466, 61.1138], [10.4469, 61.1138], [10.4471, 61.1137], [10.4473, 61.1137], [10.4475, 61.1136], [10.4476, 61.1136], [10.4477, 61.1136], [10.4477, 61.1135], [10.4478, 61.1134], [10.4478, 61.1134], [10.4479, 61.1133], [10.448, 61.1133], [10.448, 61.1133], [10.4481, 61.1132], [10.4482, 61.1131], [10.4483, 61.1131], [10.4483, 61.1131], [10.4484, 61.113], [10.4484, 61.113], [10.4484, 61.113], [10.4484, 61.1129], [10.4484, 61.1129], [10.4484, 61.1129], [10.4486, 61.1128], [10.4486, 61.1128], [10.4486, 61.1127], [10.4487, 61.1127], [10.4487, 61.1127], [10.4489, 61.1127], [10.4491, 61.1126], [10.4492, 61.1126], [10.4493, 61.1126], [10.4494, 61.1126], [10.4494, 61.1125], [10.4495, 61.1125], [10.4496, 61.1124], [10.4498, 61.1124], [10.4499, 61.1123], [10.4501, 61.1123], [10.4503, 61.1123], [10.4505, 61.1122], [10.4506, 61.1123], [10.4507, 61.1122], [10.4509, 61.1122], [10.4511, 61.1122], [10.4512, 61.1121], [10.4513, 61.1121], [10.4515, 61.1121], [10.4516, 61.112], [10.4516, 61.112], [10.4518, 61.112], [10.4518, 61.1119], [10.4519, 61.1119], [10.4521, 61.1118], [10.4523, 61.1117], [10.4524, 61.1117], [10.4526, 61.1117], [10.4528, 61.1118], [10.4529, 61.1118], [10.453, 61.1118], [10.4531, 61.1118], [10.4533, 61.1118], [10.4534, 61.1118], [10.4535, 61.1118], [10.4535, 61.1118], [10.4536, 61.1118], [10.4537, 61.1118], [10.4538, 61.1119], [10.454, 61.1119], [10.4541, 61.1119], [10.4542, 61.1119], [10.4542, 61.1118], [10.4543, 61.1118], [10.4543, 61.1117], [10.4543, 61.1117], [10.4543, 61.1117], [10.4543, 61.1116], [10.4542, 61.1116], [10.4541, 61.1116], [10.454, 61.1115], [10.4539, 61.1115], [10.4537, 61.1115], [10.4537, 61.1115], [10.4536, 61.1116], [10.4535, 61.1116], [10.4535, 61.1117], [10.4533, 61.1117], [10.4533, 61.1118], [10.4531, 61.1118], [10.453, 61.1118], [10.4529, 61.1117], [10.4527, 61.1117], [10.4526, 61.1116], [10.4527, 61.1116], [10.4528, 61.1115], [10.453, 61.1114], [10.4531, 61.1114], [10.4532, 61.1113], [10.4534, 61.1112], [10.4535, 61.1112], [10.4536, 61.1112], [10.4537, 61.1112], [10.4538, 61.1112], [10.4539, 61.1112], [10.454, 61.1112], [10.4541, 61.1113], [10.4542, 61.1113], [10.4543, 61.1113], [10.4544, 61.1113], [10.4545, 61.1113], [10.4546, 61.1113], [10.4547, 61.1113], [10.4547, 61.1113], [10.4549, 61.1113], [10.455, 61.1113], [10.4552, 61.1113], [10.4554, 61.1112], [10.4555, 61.1112], [10.4555, 61.1112], [10.4555, 61.1112], [10.4556, 61.1112], [10.4557, 61.1111], [10.4558, 61.1111], [10.456, 61.111], [10.4561, 61.111], [10.4561, 61.1109], [10.4562, 61.1109], [10.4562, 61.1109], [10.4563, 61.1109], [10.4564, 61.1108], [10.4567, 61.1107], [10.4568, 61.1107], [10.4569, 61.1106], [10.457, 61.1106], [10.4571, 61.1105], [10.4571, 61.1105], [10.4572, 61.1105], [10.4573, 61.1105], [10.4574, 61.1106], [10.4575, 61.1106], [10.4576, 61.1106], [10.4578, 61.1106], [10.4579, 61.1106], [10.458, 61.1106], [10.4581, 61.1106], [10.4582, 61.1106], [10.4584, 61.1105], [10.4586, 61.1105], [10.4588, 61.1103], [10.4589, 61.1103], [10.4589, 61.1102], [10.459, 61.1102], [10.4591, 61.1101], [10.4591, 61.1101], [10.4592, 61.11], [10.4593, 61.11], [10.4594, 61.11], [10.4594, 61.1099], [10.4595, 61.1099], [10.4596, 61.1099], [10.4596, 61.1099], [10.4597, 61.1099], [10.4597, 61.1099], [10.4597, 61.1099], [10.4597, 61.1098], [10.4597, 61.1098], [10.4598, 61.1098], [10.4598, 61.1097], [10.4598, 61.1097], [10.4598, 61.1096], [10.4598, 61.1096], [10.4599, 61.1096], [10.4599, 61.1095], [10.4599, 61.1095], [10.4599, 61.1094], [10.4599, 61.1093], [10.4599, 61.1093], [10.4599, 61.1092], [10.4598, 61.1092], [10.4598, 61.1092], [10.4598, 61.1091], [10.4597, 61.109], [10.4597, 61.109], [10.4596, 61.1089], [10.4596, 61.1088], [10.4596, 61.1088], [10.4596, 61.1088], [10.4596, 61.1087], [10.4596, 61.1087], [10.4595, 61.1087], [10.4595, 61.1087], [10.4594, 61.1087], [10.4594, 61.1087], [10.4594, 61.1087], [10.4593, 61.1087], [10.4593, 61.1086], [10.4593, 61.1086], [10.4593, 61.1086], [10.4592, 61.1086], [10.4592, 61.1086], [10.4592, 61.1085], [10.4592, 61.1085], [10.4592, 61.1085], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1083], [10.4592, 61.1082], [10.4592, 61.1081], [10.4592, 61.108], [10.4592, 61.108], [10.4592, 61.1079], [10.4593, 61.1079], [10.4593, 61.1078], [10.4594, 61.1078], [10.4594, 61.1078], [10.4594, 61.1077], [10.4594, 61.1076], [10.4594, 61.1076], [10.4594, 61.1076], [10.4594, 61.1075], [10.4594, 61.1075], [10.4593, 61.1075], [10.4587, 61.1073], [10.4587, 61.1073], [10.4587, 61.1073], [10.4587, 61.1072], [10.4591, 61.1073], [10.4594, 61.1073], [10.4595, 61.1073], [10.4597, 61.1073], [10.4598, 61.1073], [10.4598, 61.1072], [10.4599, 61.1072], [10.4599, 61.1072], [10.46, 61.1071], [10.4601, 61.1071], [10.4602, 61.1071], [10.4602, 61.1071], [10.4602, 61.107], [10.4603, 61.107], [10.4603, 61.107], [10.4604, 61.107], [10.4605, 61.1071], [10.4606, 61.107], [10.4607, 61.107], [10.4608, 61.1069], [10.4609, 61.1069], [10.4609, 61.1068], [10.4609, 61.1067], [10.4609, 61.1067], [10.4609, 61.1066], [10.4608, 61.1066], [10.4607, 61.1065], [10.4606, 61.1064], [10.4605, 61.1064], [10.4605, 61.1064], [10.4605, 61.1063], [10.4604, 61.1062], [10.4605, 61.1061], [10.4605, 61.1061], [10.4605, 61.106], [10.4605, 61.106], [10.4605, 61.1059], [10.4606, 61.1059], [10.4606, 61.1058], [10.4607, 61.1058], [10.4607, 61.1057], [10.4607, 61.1057], [10.4607, 61.1056], [10.4608, 61.1056], [10.4609, 61.1055], [10.4609, 61.1055], [10.4609, 61.1054], [10.461, 61.1054], [10.461, 61.1054], [10.461, 61.1053], [10.4611, 61.1052], [10.4611, 61.1052], [10.4612, 61.1051], [10.4612, 61.1051], [10.4613, 61.105], [10.4614, 61.105], [10.4614, 61.105], [10.4614, 61.1049], [10.4615, 61.1049], [10.4615, 61.1048], [10.4615, 61.1047], [10.4615, 61.1047], [10.4615, 61.1047], [10.4615, 61.1046], [10.4616, 61.1045], [10.4616, 61.1045], [10.4617, 61.1044], [10.4618, 61.1044], [10.4619, 61.1043], [10.4619, 61.1043], [10.4619, 61.1042], [10.4618, 61.1042], [10.4618, 61.1041], [10.4617, 61.1041], [10.4617, 61.104], [10.4616, 61.1039], [10.4615, 61.1036], [10.4615, 61.1035], [10.4615, 61.1034], [10.4615, 61.1033], [10.4615, 61.1031], [10.4615, 61.103], [10.4615, 61.1029], [10.4615, 61.1026], [10.4615, 61.1025], [10.4615, 61.1024], [10.4615, 61.1022], [10.4615, 61.1021], [10.4615, 61.102], [10.4615, 61.102], [10.4618, 61.1019], [10.4621, 61.1019], [10.4623, 61.1019], [10.4624, 61.1019], [10.4625, 61.1018], [10.4625, 61.1018], [10.4622, 61.1017], [10.462, 61.1017], [10.4618, 61.1016], [10.4617, 61.1016], [10.4616, 61.1016], [10.4616, 61.1015], [10.4615, 61.1015], [10.4614, 61.1015], [10.4614, 61.1014], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1012], [10.4613, 61.1012], [10.4613, 61.1012], [10.4613, 61.1012], [10.4612, 61.1011], [10.4612, 61.1011], [10.4612, 61.101], [10.4612, 61.101], [10.4613, 61.101], [10.4613, 61.101], [10.4613, 61.101], [10.4614, 61.1011], [10.4615, 61.1011], [10.4616, 61.1011], [10.4616, 61.1011], [10.4617, 61.101], [10.4617, 61.101], [10.4617, 61.1009], [10.4617, 61.1009], [10.4617, 61.1008], [10.4616, 61.1008], [10.4615, 61.1008], [10.4614, 61.1007], [10.4613, 61.1008], [10.4613, 61.1008], [10.4613, 61.1007], [10.4613, 61.1006], [10.4614, 61.1006], [10.4615, 61.1005], [10.4616, 61.1005], [10.4617, 61.1005], [10.4616, 61.1004], [10.4617, 61.1004], [10.4619, 61.1003], [10.462, 61.1002], [10.4621, 61.1002], [10.4622, 61.1001], [10.4624, 61.1001], [10.4626, 61.1], [10.4627, 61.1], [10.4629, 61.0999], [10.4631, 61.0997], [10.4632, 61.0996], [10.4633, 61.0994], [10.4633, 61.0993], [10.4634, 61.0992], [10.4635, 61.0991], [10.4636, 61.099], [10.4637, 61.0989], [10.4639, 61.0988], [10.464, 61.0988], [10.4641, 61.0988], [10.4644, 61.0987], [10.4645, 61.0987], [10.4648, 61.0987], [10.4649, 61.0987], [10.465, 61.0986], [10.4651, 61.0986], [10.4652, 61.0985], [10.4652, 61.0985], [10.4653, 61.0983], [10.4654, 61.0982], [10.4654, 61.098], [10.4653, 61.0978], [10.4653, 61.0976], [10.4653, 61.0975], [10.4652, 61.0974], [10.4651, 61.0972], [10.465, 61.097], [10.4649, 61.0969], [10.4369, 61.0969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [0.0293, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0369], [10.4704, 61.0169], [10.4682, 61.0169], [10.468, 61.017], [10.4677, 61.0174], [10.4676, 61.0175], [10.4675, 61.0176], [10.4672, 61.0177], [10.467, 61.0177], [10.4665, 61.0179], [10.4663, 61.018], [10.4661, 61.0181], [10.4655, 61.0184], [10.4639, 61.0188], [10.4629, 61.0192], [10.4616, 61.0198], [10.4611, 61.0201], [10.4599, 61.0208], [10.4596, 61.0212], [10.4596, 61.0213], [10.4594, 61.0213], [10.4591, 61.0216], [10.4591, 61.0218], [10.4593, 61.0219], [10.4595, 61.0218], [10.4595, 61.022], [10.4601, 61.0222], [10.4604, 61.0222], [10.4604, 61.0224], [10.4598, 61.0227], [10.4592, 61.0228], [10.4591, 61.0228], [10.4584, 61.0229], [10.4581, 61.023], [10.4579, 61.0234], [10.4575, 61.0235], [10.4566, 61.0236], [10.4558, 61.0237], [10.4553, 61.0236], [10.455, 61.0236], [10.4541, 61.0239], [10.4538, 61.0242], [10.4539, 61.0245], [10.454, 61.0245], [10.454, 61.0246], [10.4536, 61.0248], [10.4534, 61.0248], [10.4532, 61.0248], [10.4531, 61.0249], [10.4529, 61.025], [10.4528, 61.0253], [10.4528, 61.0254], [10.453, 61.0255], [10.4529, 61.0255], [10.4528, 61.0257], [10.4528, 61.0258], [10.4527, 61.0258], [10.4526, 61.026], [10.4527, 61.026], [10.4528, 61.0261], [10.453, 61.0262], [10.4531, 61.0263], [10.4531, 61.0264], [10.4533, 61.0265], [10.4534, 61.0267], [10.4533, 61.0267], [10.4532, 61.0268], [10.453, 61.0268], [10.4528, 61.0268], [10.4524, 61.0267], [10.4524, 61.0268], [10.4524, 61.0268], [10.4525, 61.0269], [10.4525, 61.0269], [10.4525, 61.027], [10.4524, 61.027], [10.4524, 61.027], [10.4524, 61.027], [10.4523, 61.0271], [10.452, 61.0271], [10.452, 61.0271], [10.4519, 61.0272], [10.4517, 61.0272], [10.4516, 61.0272], [10.4515, 61.0272], [10.4514, 61.0272], [10.4513, 61.0272], [10.4512, 61.0273], [10.4513, 61.0273], [10.4512, 61.0274], [10.4511, 61.0274], [10.4511, 61.0274], [10.4509, 61.0274], [10.4508, 61.0275], [10.4507, 61.0276], [10.4506, 61.0276], [10.4506, 61.0276], [10.4506, 61.0277], [10.4505, 61.0276], [10.4505, 61.0276], [10.4506, 61.0275], [10.4507, 61.0275], [10.4507, 61.0274], [10.4508, 61.0274], [10.4508, 61.0274], [10.4508, 61.0273], [10.4507, 61.0273], [10.4507, 61.0273], [10.4507, 61.0273], [10.4505, 61.0274], [10.4505, 61.0274], [10.4504, 61.0275], [10.4503, 61.0275], [10.4503, 61.0275], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0277], [10.4504, 61.0277], [10.4504, 61.0277], [10.4504, 61.0277], [10.4503, 61.0277], [10.4502, 61.0277], [10.4502, 61.0276], [10.4502, 61.0275], [10.4502, 61.0275], [10.4501, 61.0275], [10.45, 61.0274], [10.4497, 61.0274], [10.4496, 61.0274], [10.4495, 61.0274], [10.4494, 61.0274], [10.4491, 61.0274], [10.4489, 61.0274], [10.4485, 61.0274], [10.4483, 61.0274], [10.4482, 61.0274], [10.4482, 61.0274], [10.4481, 61.0274], [10.4481, 61.0275], [10.448, 61.0277], [10.4478, 61.0278], [10.4477, 61.0279], [10.4477, 61.0279], [10.4476, 61.028], [10.4473, 61.0283], [10.4469, 61.0286], [10.4466, 61.0287], [10.4464, 61.0289], [10.4462, 61.029], [10.4461, 61.0291], [10.4461, 61.0291], [10.4461, 61.0292], [10.4459, 61.0293], [10.4458, 61.0294], [10.4458, 61.0294], [10.4457, 61.0294], [10.4456, 61.0294], [10.4455, 61.0294], [10.4455, 61.0295], [10.4454, 61.0296], [10.4454, 61.0297], [10.4454, 61.0297], [10.4454, 61.0297], [10.4454, 61.0297], [10.4453, 61.0297], [10.4453, 61.0297], [10.4452, 61.0297], [10.4451, 61.0297], [10.4449, 61.0299], [10.4449, 61.0299], [10.4449, 61.0299], [10.445, 61.03], [10.445, 61.03], [10.445, 61.03], [10.445, 61.03], [10.4451, 61.0299], [10.4452, 61.0299], [10.4453, 61.0298], [10.4453, 61.0298], [10.4453, 61.0299], [10.4452, 61.0299], [10.445, 61.03], [10.4449, 61.03], [10.4448, 61.0301], [10.4448, 61.0301], [10.4449, 61.0301], [10.4451, 61.0302], [10.4451, 61.0302], [10.4451, 61.0302], [10.4451, 61.0303], [10.445, 61.0304], [10.4449, 61.0304], [10.4448, 61.0305], [10.4447, 61.0305], [10.4446, 61.0305], [10.4445, 61.0305], [10.4444, 61.0305], [10.4443, 61.0305], [10.444, 61.0306], [10.4438, 61.0307], [10.4437, 61.0308], [10.4437, 61.0309], [10.4436, 61.0309], [10.4435, 61.031], [10.4436, 61.031], [10.4436, 61.0311], [10.4436, 61.0311], [10.4437, 61.0312], [10.4438, 61.0313], [10.4438, 61.0313], [10.4439, 61.0313], [10.4439, 61.0313], [10.4438, 61.0314], [10.4437, 61.0314], [10.4436, 61.0314], [10.4435, 61.0315], [10.4434, 61.0315], [10.4434, 61.0316], [10.4433, 61.0316], [10.4432, 61.0316], [10.4431, 61.0316], [10.443, 61.0317], [10.4429, 61.0318], [10.4427, 61.0321], [10.4426, 61.0324], [10.4424, 61.0327], [10.4423, 61.0328], [10.4423, 61.033], [10.4422, 61.0333], [10.4421, 61.0333], [10.4421, 61.0334], [10.442, 61.0336], [10.4419, 61.0337], [10.4419, 61.0338], [10.442, 61.0338], [10.442, 61.0338], [10.4419, 61.0339], [10.4419, 61.0339], [10.4418, 61.0341], [10.4417, 61.0342], [10.4417, 61.0343], [10.4416, 61.0344], [10.4416, 61.0345], [10.4417, 61.0346], [10.4418, 61.0346], [10.4419, 61.0347], [10.4419, 61.0347], [10.4419, 61.0347], [10.4419, 61.0347], [10.4418, 61.0347], [10.4417, 61.0347], [10.4416, 61.0347], [10.4414, 61.0347], [10.4414, 61.0347], [10.4414, 61.0348], [10.4414, 61.0349], [10.4414, 61.0349], [10.4414, 61.0349], [10.4414, 61.035], [10.4413, 61.035], [10.4413, 61.0351], [10.4414, 61.0351], [10.4415, 61.0351], [10.4416, 61.0351], [10.4416, 61.0351], [10.4417, 61.0351], [10.4417, 61.0351], [10.4418, 61.0351], [10.4418, 61.0351], [10.4418, 61.035], [10.4418, 61.035], [10.4417, 61.035], [10.4417, 61.035], [10.4417, 61.0349], [10.4416, 61.0349], [10.4417, 61.0349], [10.4418, 61.0349], [10.4418, 61.0349], [10.4419, 61.0349], [10.4419, 61.0349], [10.4419, 61.035], [10.4419, 61.035], [10.4419, 61.035], [10.4419, 61.0351], [10.4419, 61.0351], [10.4419, 61.0352], [10.4418, 61.0352], [10.4417, 61.0352], [10.4416, 61.0352], [10.4416, 61.0352], [10.4416, 61.0352], [10.4416, 61.0353], [10.4415, 61.0353], [10.4413, 61.0353], [10.4412, 61.0353], [10.4412, 61.0353], [10.4412, 61.0354], [10.4412, 61.0354], [10.4411, 61.0355], [10.4411, 61.0355], [10.4411, 61.0357], [10.4412, 61.0357], [10.4412, 61.0358], [10.4412, 61.0359], [10.4412, 61.036], [10.4412, 61.0361], [10.4412, 61.0362], [10.4414, 61.0363], [10.4414, 61.0364], [10.4414, 61.0364], [10.4415, 61.0364], [10.4416, 61.0364], [10.4417, 61.0365], [10.4417, 61.0364], [10.4418, 61.0364], [10.4418, 61.0363], [10.4418, 61.0363], [10.4418, 61.0363], [10.4417, 61.0363], [10.4418, 61.0363], [10.4419, 61.0363], [10.4419, 61.0363], [10.4419, 61.0364], [10.4419, 61.0364], [10.4419, 61.0364], [10.4418, 61.0365], [10.4417, 61.0365], [10.4416, 61.0365], [10.4416, 61.0367], [10.4416, 61.0367], [10.4415, 61.0367], [10.4416, 61.0368], [10.4416, 61.0368], [10.4416, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4416, 61.0368], [10.4416, 61.0369], [10.4704, 61.0369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [0.0022, 0.0014]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.4704, 61.0155], [10.4696, 61.0158], [10.4691, 61.0161], [10.4688, 61.0163], [10.4683, 61.0168], [10.4682, 61.0169], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [0.04, 0.0186]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.5104, 61.0169], [10.5104, 60.9983], [10.5102, 60.9983], [10.5101, 60.9984], [10.5098, 60.9984], [10.5096, 60.9984], [10.5092, 60.9985], [10.5091, 60.9985], [10.5086, 60.9986], [10.5081, 60.9987], [10.5077, 60.9988], [10.5072, 60.9989], [10.5069, 60.999], [10.5065, 60.999], [10.5064, 60.9991], [10.5063, 60.999], [10.5062, 60.999], [10.5061, 60.9991], [10.506, 60.9991], [10.5058, 60.9991], [10.5057, 60.9991], [10.5055, 60.9991], [10.5051, 60.9993], [10.505, 60.9993], [10.5049, 60.9994], [10.5047, 60.9996], [10.5047, 60.9998], [10.5044, 60.9999], [10.5042, 61.0], [10.5006, 61.0018], [10.5001, 61.0018], [10.4991, 61.0018], [10.499, 61.0018], [10.4988, 61.0018], [10.4987, 61.0018], [10.4986, 61.0018], [10.4985, 61.0018], [10.4982, 61.0018], [10.4973, 61.0022], [10.4962, 61.0027], [10.4954, 61.0029], [10.4948, 61.0031], [10.4937, 61.0034], [10.4915, 61.0043], [10.4902, 61.0051], [10.4897, 61.0055], [10.4895, 61.0057], [10.4891, 61.006], [10.4891, 61.0061], [10.4885, 61.0063], [10.4873, 61.0067], [10.4859, 61.0077], [10.4846, 61.0083], [10.4837, 61.0089], [10.4829, 61.0093], [10.4822, 61.0096], [10.4816, 61.0099], [10.4813, 61.0102], [10.4808, 61.0106], [10.4803, 61.0108], [10.48, 61.0109], [10.4795, 61.0112], [10.479, 61.0115], [10.4782, 61.0121], [10.4782, 61.0123], [10.4777, 61.0126], [10.4772, 61.0128], [10.4771, 61.0132], [10.4763, 61.0134], [10.475, 61.0135], [10.4744, 61.0137], [10.4741, 61.0139], [10.473, 61.0142], [10.472, 61.0145], [10.4712, 61.0149], [10.4708, 61.0153], [10.4704, 61.0155], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.4704, 61.0369], [10.4838, 61.0369], [10.4838, 61.0368], [10.4838, 61.0368], [10.4839, 61.0367], [10.4839, 61.0367], [10.4838, 61.0367], [10.4838, 61.0367], [10.4837, 61.0367], [10.4838, 61.0366], [10.4839, 61.0366], [10.484, 61.0366], [10.4841, 61.0366], [10.4843, 61.0366], [10.4844, 61.0366], [10.4849, 61.0365], [10.4852, 61.0364], [10.4856, 61.0362], [10.4861, 61.036], [10.4862, 61.0359], [10.4864, 61.0359], [10.4866, 61.0358], [10.4867, 61.0357], [10.4869, 61.0357], [10.4871, 61.0356], [10.4872, 61.0356], [10.4879, 61.0354], [10.488, 61.0353], [10.4882, 61.0353], [10.4884, 61.0352], [10.4887, 61.0352], [10.4891, 61.0351], [10.4895, 61.0349], [10.4898, 61.0348], [10.49, 61.0347], [10.4902, 61.0347], [10.4904, 61.0346], [10.4905, 61.0345], [10.4907, 61.0344], [10.4907, 61.0344], [10.4908, 61.0343], [10.4909, 61.0343], [10.4909, 61.0343], [10.4909, 61.0343], [10.491, 61.0342], [10.4911, 61.0342], [10.4913, 61.0342], [10.4914, 61.0342], [10.4914, 61.0342], [10.4915, 61.0342], [10.4916, 61.0341], [10.4917, 61.0341], [10.4918, 61.0341], [10.4918, 61.034], [10.4919, 61.034], [10.492, 61.034], [10.4921, 61.034], [10.4921, 61.0339], [10.4921, 61.0339], [10.4923, 61.0338], [10.4924, 61.0338], [10.4924, 61.0337], [10.4925, 61.0336], [10.4926, 61.0335], [10.4925, 61.0334], [10.4925, 61.0334], [10.4925, 61.0334], [10.4924, 61.0333], [10.4923, 61.0332], [10.4922, 61.0331], [10.4922, 61.033], [10.4921, 61.0329], [10.492, 61.0328], [10.492, 61.0328], [10.4919, 61.0327], [10.4919, 61.0327], [10.4918, 61.0326], [10.4917, 61.0326], [10.4916, 61.0325], [10.4916, 61.0325], [10.4916, 61.0325], [10.4913, 61.0325], [10.4913, 61.0325], [10.4912, 61.0324], [10.491, 61.0324], [10.4909, 61.0324], [10.4909, 61.0324], [10.4908, 61.0324], [10.4905, 61.0323], [10.4902, 61.0323], [10.4901, 61.0323], [10.4901, 61.0323], [10.4895, 61.0323], [10.489, 61.0323], [10.4888, 61.0323], [10.4887, 61.0323], [10.4886, 61.0322], [10.4886, 61.0322], [10.4886, 61.0321], [10.4885, 61.0321], [10.4884, 61.0321], [10.4883, 61.0321], [10.4883, 61.0321], [10.4883, 61.032], [10.4883, 61.0319], [10.4883, 61.0319], [10.4883, 61.0318], [10.4883, 61.0317], [10.4884, 61.0316], [10.4884, 61.0316], [10.4884, 61.0316], [10.4885, 61.0316], [10.4885, 61.0315], [10.4886, 61.0314], [10.4886, 61.0314], [10.4888, 61.0312], [10.489, 61.031], [10.4891, 61.0309], [10.4893, 61.0308], [10.4895, 61.0307], [10.4898, 61.0305], [10.4898, 61.0304], [10.4898, 61.0303], [10.4898, 61.0302], [10.4899, 61.0301], [10.4899, 61.0301], [10.4899, 61.0301], [10.4899, 61.03], [10.49, 61.0299], [10.4901, 61.0299], [10.4901, 61.0299], [10.4902, 61.0298], [10.4901, 61.0297], [10.4898, 61.0294], [10.4898, 61.0292], [10.4898, 61.029], [10.4898, 61.0288], [10.4897, 61.0286], [10.4897, 61.0285], [10.4896, 61.0283], [10.4896, 61.0281], [10.4896, 61.0279], [10.4897, 61.0278], [10.4896, 61.0276], [10.4897, 61.0275], [10.4898, 61.0274], [10.4897, 61.0274], [10.4897, 61.0272], [10.4897, 61.0271], [10.4897, 61.0269], [10.4897, 61.0268], [10.4897, 61.0266], [10.4897, 61.0264], [10.4897, 61.0262], [10.4898, 61.0259], [10.4898, 61.0257], [10.4898, 61.0255], [10.4897, 61.0253], [10.4895, 61.0251], [10.4893, 61.0249], [10.4891, 61.0248], [10.4885, 61.0245], [10.4882, 61.0244], [10.4879, 61.0243], [10.4877, 61.0242], [10.4874, 61.0242], [10.4873, 61.0242], [10.4873, 61.0242], [10.4873, 61.0241], [10.4873, 61.0241], [10.4874, 61.0241], [10.4874, 61.0241], [10.4875, 61.0241], [10.4876, 61.0241], [10.4876, 61.0241], [10.4878, 61.0241], [10.488, 61.0241], [10.4881, 61.024], [10.4881, 61.024], [10.4881, 61.024], [10.4881, 61.024], [10.4883, 61.0239], [10.4883, 61.0239], [10.4882, 61.0239], [10.4882, 61.0239], [10.4882, 61.0239], [10.4883, 61.0238], [10.4885, 61.0238], [10.4887, 61.0238], [10.489, 61.0238], [10.4891, 61.0237], [10.4892, 61.0237], [10.4895, 61.0237], [10.4897, 61.0237], [10.4899, 61.0237], [10.4903, 61.0237], [10.4906, 61.0237], [10.4909, 61.0237], [10.4913, 61.0237], [10.4918, 61.0237], [10.4923, 61.0237], [10.4925, 61.0237], [10.4928, 61.0237], [10.4932, 61.0236], [10.4935, 61.0236], [10.4937, 61.0235], [10.494, 61.0235], [10.4943, 61.0235], [10.4945, 61.0235], [10.4947, 61.0234], [10.495, 61.0234], [10.4953, 61.0234], [10.4953, 61.0234], [10.4955, 61.0234], [10.4956, 61.0233], [10.4959, 61.0233], [10.4962, 61.0233], [10.4966, 61.0232], [10.4971, 61.0232], [10.4973, 61.0231], [10.4976, 61.0231], [10.4978, 61.023], [10.498, 61.023], [10.4981, 61.0229], [10.4981, 61.0229], [10.4983, 61.0228], [10.4984, 61.0228], [10.4985, 61.0227], [10.4985, 61.0226], [10.4986, 61.0225], [10.4987, 61.0223], [10.4988, 61.0222], [10.4988, 61.0221], [10.4989, 61.0221], [10.499, 61.0221], [10.499, 61.0221], [10.4991, 61.0221], [10.499, 61.0221], [10.4992, 61.0219], [10.4993, 61.0218], [10.4994, 61.0217], [10.4995, 61.0217], [10.4995, 61.0216], [10.4995, 61.0216], [10.4995, 61.0215], [10.4995, 61.0215], [10.4996, 61.0215], [10.4996, 61.0214], [10.4996, 61.0214], [10.4996, 61.0214], [10.4995, 61.0213], [10.4995, 61.0213], [10.4996, 61.0213], [10.4996, 61.0212], [10.4995, 61.021], [10.4995, 61.021], [10.4995, 61.021], [10.4994, 61.0209], [10.4994, 61.0209], [10.4994, 61.0208], [10.4994, 61.0207], [10.4994, 61.0207], [10.4994, 61.0207], [10.4994, 61.0206], [10.4993, 61.0206], [10.4992, 61.0205], [10.4992, 61.0205], [10.4992, 61.0205], [10.4991, 61.0205], [10.4991, 61.0205], [10.4991, 61.0205], [10.499, 61.0205], [10.499, 61.0205], [10.499, 61.0204], [10.4991, 61.0204], [10.4991, 61.0204], [10.4991, 61.0204], [10.4992, 61.0204], [10.4993, 61.0204], [10.4994, 61.0203], [10.4994, 61.0203], [10.4995, 61.0203], [10.4996, 61.0203], [10.4996, 61.0203], [10.4997, 61.0203], [10.4998, 61.0202], [10.5, 61.0202], [10.5001, 61.0201], [10.5002, 61.0201], [10.5003, 61.0201], [10.5004, 61.02], [10.5004, 61.02], [10.5004, 61.0199], [10.5005, 61.0199], [10.5005, 61.0199], [10.5006, 61.0198], [10.5006, 61.0197], [10.5006, 61.0196], [10.5007, 61.0195], [10.5006, 61.0195], [10.5006, 61.0195], [10.5005, 61.0195], [10.5005, 61.0195], [10.5005, 61.0194], [10.5005, 61.0194], [10.5007, 61.0193], [10.5008, 61.0193], [10.5008, 61.0193], [10.5009, 61.0192], [10.5011, 61.0191], [10.5012, 61.0191], [10.5013, 61.0191], [10.5015, 61.0191], [10.5016, 61.019], [10.5018, 61.0189], [10.5019, 61.0189], [10.5021, 61.0188], [10.5023, 61.0188], [10.5025, 61.0188], [10.5026, 61.0188], [10.5029, 61.0187], [10.5032, 61.0187], [10.5037, 61.0187], [10.5039, 61.0187], [10.5042, 61.0187], [10.5044, 61.0187], [10.5046, 61.0187], [10.5048, 61.0187], [10.5052, 61.0187], [10.5054, 61.0187], [10.5056, 61.0187], [10.5058, 61.0187], [10.5059, 61.0186], [10.506, 61.0187], [10.5065, 61.0186], [10.5066, 61.0187], [10.5067, 61.0186], [10.5069, 61.0186], [10.507, 61.0186], [10.5073, 61.0186], [10.5074, 61.0184], [10.5075, 61.0183], [10.5076, 61.0182], [10.5078, 61.0181], [10.5082, 61.018], [10.5087, 61.0179], [10.5093, 61.0178], [10.5098, 61.0177], [10.5101, 61.0177], [10.5104, 61.0176], [10.5104, 61.0176], [10.5104, 61.0169], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "8", "sub_div_center": [0.0134, 0.006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0369], [10.4704, 61.0428], [10.4707, 61.0427], [10.471, 61.0426], [10.4714, 61.0425], [10.4719, 61.0423], [10.4721, 61.0422], [10.4723, 61.0422], [10.4728, 61.0421], [10.4739, 61.0418], [10.4741, 61.0417], [10.4744, 61.0416], [10.4747, 61.0416], [10.475, 61.0415], [10.4756, 61.0414], [10.4761, 61.0413], [10.4771, 61.0409], [10.4775, 61.0408], [10.4779, 61.0407], [10.4782, 61.0406], [10.4785, 61.0405], [10.4789, 61.0403], [10.4794, 61.0402], [10.4797, 61.04], [10.4799, 61.0399], [10.4801, 61.0398], [10.4804, 61.0397], [10.4808, 61.0396], [10.4812, 61.0395], [10.4814, 61.0394], [10.4816, 61.0393], [10.4817, 61.0391], [10.4816, 61.039], [10.4817, 61.0389], [10.4818, 61.0389], [10.482, 61.0388], [10.4821, 61.0387], [10.4822, 61.0385], [10.4823, 61.0384], [10.4824, 61.0383], [10.4823, 61.0383], [10.4823, 61.0382], [10.4824, 61.0382], [10.4824, 61.0381], [10.4824, 61.0381], [10.4826, 61.0379], [10.4827, 61.0379], [10.4829, 61.0377], [10.483, 61.0376], [10.4831, 61.0376], [10.4833, 61.0374], [10.4835, 61.0373], [10.4835, 61.0372], [10.4835, 61.0372], [10.4837, 61.0371], [10.4838, 61.0371], [10.4838, 61.037], [10.4838, 61.0369], [10.4704, 61.0369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "9", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5104, 61.0169], [10.5112, 61.0169], [10.5112, 61.0168], [10.5113, 61.0167], [10.5118, 61.0165], [10.512, 61.0164], [10.5123, 61.0163], [10.5126, 61.0163], [10.5131, 61.0162], [10.5134, 61.016], [10.5137, 61.0159], [10.5137, 61.0158], [10.5137, 61.0157], [10.5137, 61.0156], [10.5136, 61.0155], [10.5137, 61.0154], [10.5137, 61.0154], [10.5137, 61.0153], [10.5139, 61.0153], [10.5146, 61.0153], [10.5149, 61.0153], [10.5151, 61.0152], [10.5154, 61.0152], [10.5155, 61.0151], [10.5162, 61.0148], [10.5163, 61.0147], [10.5164, 61.0146], [10.5165, 61.0145], [10.5166, 61.0144], [10.5167, 61.0144], [10.5169, 61.0143], [10.517, 61.0143], [10.517, 61.0141], [10.5171, 61.014], [10.5171, 61.0139], [10.517, 61.0138], [10.517, 61.0136], [10.5169, 61.0134], [10.5167, 61.0132], [10.5166, 61.013], [10.5165, 61.013], [10.5164, 61.0128], [10.5163, 61.0128], [10.5163, 61.0127], [10.5163, 61.0126], [10.5162, 61.0125], [10.5162, 61.0124], [10.5162, 61.0124], [10.5162, 61.0121], [10.5161, 61.012], [10.5161, 61.012], [10.5161, 61.0119], [10.5161, 61.0118], [10.5162, 61.0116], [10.5163, 61.0116], [10.5163, 61.0115], [10.5163, 61.0114], [10.5163, 61.0113], [10.5164, 61.0111], [10.5165, 61.011], [10.5165, 61.0109], [10.5165, 61.0109], [10.5165, 61.0109], [10.5166, 61.0108], [10.5168, 61.0107], [10.5168, 61.0107], [10.5169, 61.0107], [10.5169, 61.0106], [10.5169, 61.0106], [10.517, 61.0106], [10.517, 61.0106], [10.5171, 61.0106], [10.5171, 61.0106], [10.5172, 61.0106], [10.5173, 61.0106], [10.5174, 61.0106], [10.5175, 61.0106], [10.5175, 61.0106], [10.5174, 61.0104], [10.5174, 61.0104], [10.5175, 61.0104], [10.5175, 61.0104], [10.5176, 61.0106], [10.5177, 61.0106], [10.5178, 61.0106], [10.5182, 61.0105], [10.5184, 61.0105], [10.5185, 61.0105], [10.5187, 61.0104], [10.5189, 61.0104], [10.519, 61.0104], [10.5192, 61.0104], [10.5198, 61.0103], [10.5205, 61.0103], [10.5212, 61.0103], [10.5217, 61.0102], [10.5222, 61.0101], [10.5229, 61.01], [10.5236, 61.0099], [10.5242, 61.0098], [10.5248, 61.0097], [10.5251, 61.0097], [10.5254, 61.0096], [10.5259, 61.0096], [10.5262, 61.0096], [10.5266, 61.0095], [10.5267, 61.0094], [10.5267, 61.0093], [10.5267, 61.0094], [10.5268, 61.0094], [10.5268, 61.0094], [10.5269, 61.0094], [10.5269, 61.0094], [10.5271, 61.0094], [10.5274, 61.0093], [10.5279, 61.0093], [10.5285, 61.0092], [10.529, 61.0091], [10.5295, 61.009], [10.5299, 61.0088], [10.53, 61.0088], [10.5302, 61.0088], [10.5311, 61.0087], [10.5315, 61.0087], [10.5319, 61.0087], [10.5325, 61.0087], [10.5331, 61.0087], [10.5338, 61.0087], [10.5341, 61.0087], [10.5345, 61.0086], [10.5352, 61.0085], [10.5355, 61.0084], [10.5358, 61.0084], [10.5361, 61.0083], [10.5364, 61.0083], [10.5367, 61.0083], [10.537, 61.0082], [10.5374, 61.0082], [10.5376, 61.0081], [10.5377, 61.0081], [10.5381, 61.0081], [10.5384, 61.0079], [10.5388, 61.0079], [10.5391, 61.0079], [10.5392, 61.0078], [10.5393, 61.0078], [10.5395, 61.0078], [10.5397, 61.0078], [10.54, 61.0078], [10.5402, 61.0078], [10.5405, 61.0079], [10.5407, 61.0079], [10.5409, 61.0079], [10.5412, 61.0079], [10.5414, 61.0078], [10.5416, 61.0078], [10.5419, 61.0077], [10.5422, 61.0075], [10.5424, 61.0073], [10.5426, 61.0072], [10.5428, 61.007], [10.5431, 61.0068], [10.5432, 61.0067], [10.5434, 61.0065], [10.5437, 61.0064], [10.5439, 61.0063], [10.544, 61.0062], [10.5442, 61.0062], [10.5444, 61.0061], [10.5449, 61.0061], [10.5454, 61.0061], [10.5458, 61.0061], [10.5461, 61.0061], [10.5464, 61.0061], [10.5466, 61.0061], [10.5467, 61.0061], [10.5467, 61.0061], [10.5468, 61.0062], [10.5469, 61.0062], [10.5471, 61.0062], [10.5472, 61.0061], [10.5474, 61.0062], [10.5475, 61.0062], [10.5477, 61.0062], [10.5479, 61.0062], [10.5481, 61.0062], [10.5486, 61.0063], [10.5489, 61.0063], [10.5491, 61.0063], [10.5493, 61.0063], [10.5496, 61.0063], [10.5496, 61.0064], [10.5497, 61.0064], [10.5499, 61.0064], [10.5499, 61.0065], [10.5499, 61.0065], [10.5498, 61.0065], [10.5497, 61.0065], [10.5497, 61.0066], [10.5495, 61.0066], [10.5492, 61.0067], [10.5486, 61.0068], [10.5482, 61.0068], [10.5478, 61.0069], [10.5477, 61.007], [10.5476, 61.0071], [10.5475, 61.0072], [10.5475, 61.0074], [10.5474, 61.0074], [10.5474, 61.0075], [10.5474, 61.0075], [10.5473, 61.0076], [10.5473, 61.0077], [10.5474, 61.0078], [10.5474, 61.0078], [10.5476, 61.0079], [10.5477, 61.008], [10.548, 61.0082], [10.5482, 61.0084], [10.5486, 61.0086], [10.5489, 61.0087], [10.5491, 61.0088], [10.5493, 61.0088], [10.5494, 61.0089], [10.5495, 61.009], [10.5495, 61.009], [10.5495, 61.0091], [10.5496, 61.0091], [10.5497, 61.009], [10.5497, 61.009], [10.5498, 61.009], [10.55, 61.009], [10.5503, 61.009], [10.5504, 61.009], [10.5504, 60.9969], [10.5143, 60.9969], [10.5143, 60.9969], [10.5141, 60.997], [10.5139, 60.9971], [10.5136, 60.9972], [10.5132, 60.9973], [10.5131, 60.9974], [10.5127, 60.9976], [10.5126, 60.9977], [10.5125, 60.9978], [10.5122, 60.9978], [10.512, 60.9979], [10.5113, 60.998], [10.5111, 60.998], [10.5109, 60.9981], [10.5105, 60.9982], [10.5104, 60.9983], [10.5104, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "10", "sub_div_center": [0.0008, 0.0007]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5104, 61.0169], [10.5104, 61.0176], [10.5106, 61.0175], [10.5108, 61.0174], [10.5109, 61.0173], [10.511, 61.0171], [10.5111, 61.0169], [10.5112, 61.0169], [10.5104, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "11", "sub_div_center": [0.0361, 0.0073]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5504, 60.9895], [10.55, 60.9896], [10.5499, 60.9896], [10.5495, 60.9898], [10.5493, 60.9898], [10.5489, 60.99], [10.5487, 60.99], [10.5485, 60.9901], [10.5479, 60.9902], [10.5473, 60.9904], [10.5471, 60.9904], [10.5468, 60.9905], [10.5461, 60.9906], [10.5458, 60.9906], [10.5454, 60.9907], [10.5452, 60.9907], [10.5447, 60.9908], [10.5446, 60.9908], [10.5442, 60.9908], [10.5442, 60.9908], [10.5435, 60.9909], [10.5431, 60.9909], [10.5425, 60.991], [10.5422, 60.9911], [10.5415, 60.9912], [10.5414, 60.9912], [10.541, 60.9912], [10.5406, 60.9912], [10.5403, 60.9912], [10.5396, 60.9912], [10.5392, 60.9912], [10.5385, 60.9912], [10.5378, 60.9912], [10.5373, 60.9912], [10.5368, 60.9912], [10.5365, 60.9912], [10.536, 60.9912], [10.5358, 60.9913], [10.5354, 60.9913], [10.5352, 60.9913], [10.5348, 60.9913], [10.5345, 60.9914], [10.5342, 60.9914], [10.5336, 60.9915], [10.5333, 60.9915], [10.5331, 60.9915], [10.5328, 60.9915], [10.5325, 60.9916], [10.532, 60.9916], [10.5314, 60.9918], [10.5312, 60.9918], [10.531, 60.9918], [10.5304, 60.9918], [10.5301, 60.9918], [10.5296, 60.9918], [10.5291, 60.9918], [10.5289, 60.9919], [10.5286, 60.992], [10.5282, 60.992], [10.528, 60.9921], [10.5277, 60.9922], [10.5274, 60.9923], [10.5271, 60.9924], [10.527, 60.9925], [10.527, 60.9925], [10.5269, 60.9925], [10.5266, 60.9926], [10.5265, 60.9926], [10.5262, 60.9926], [10.5258, 60.9926], [10.5256, 60.9926], [10.5255, 60.9927], [10.5253, 60.9928], [10.525, 60.9929], [10.5249, 60.993], [10.5248, 60.993], [10.5247, 60.9931], [10.5244, 60.9931], [10.5241, 60.9932], [10.524, 60.9933], [10.5238, 60.9933], [10.5235, 60.9933], [10.5233, 60.9933], [10.5224, 60.9933], [10.5221, 60.9934], [10.5219, 60.9935], [10.5215, 60.9936], [10.5213, 60.9937], [10.5212, 60.9937], [10.5211, 60.9938], [10.5207, 60.9942], [10.5206, 60.9943], [10.5203, 60.9944], [10.5201, 60.9946], [10.5197, 60.9947], [10.5194, 60.9948], [10.5192, 60.9949], [10.5189, 60.995], [10.5183, 60.9951], [10.5177, 60.9953], [10.5174, 60.9954], [10.5171, 60.9955], [10.5168, 60.9956], [10.5165, 60.9957], [10.516, 60.9959], [10.5156, 60.996], [10.5155, 60.996], [10.5153, 60.9962], [10.5148, 60.9964], [10.5147, 60.9965], [10.5146, 60.9965], [10.5144, 60.9968], [10.5143, 60.9969], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "12", "sub_div_center": [0.04, 0.0173]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5892, 60.9969], [10.5892, 60.9968], [10.5894, 60.9969], [10.5894, 60.9968], [10.5897, 60.9968], [10.5899, 60.9967], [10.5901, 60.9967], [10.5902, 60.9967], [10.5902, 60.9967], [10.5904, 60.9966], [10.5904, 60.9966], [10.5904, 60.9796], [10.5903, 60.9796], [10.5901, 60.9796], [10.5899, 60.9797], [10.5897, 60.9798], [10.5896, 60.9798], [10.5892, 60.98], [10.5891, 60.98], [10.589, 60.98], [10.5883, 60.98], [10.5879, 60.9801], [10.5878, 60.9801], [10.5876, 60.9801], [10.5876, 60.9801], [10.5876, 60.9802], [10.5876, 60.9804], [10.5875, 60.9805], [10.5875, 60.9805], [10.5875, 60.9806], [10.5877, 60.9806], [10.5877, 60.9807], [10.5876, 60.9807], [10.5876, 60.981], [10.5875, 60.9811], [10.5873, 60.9812], [10.5872, 60.9812], [10.5871, 60.9813], [10.5868, 60.9813], [10.5866, 60.9813], [10.5863, 60.9813], [10.5863, 60.9814], [10.5863, 60.9814], [10.5861, 60.9815], [10.5861, 60.9816], [10.5861, 60.9818], [10.586, 60.982], [10.586, 60.982], [10.5857, 60.982], [10.5857, 60.9821], [10.5856, 60.9821], [10.5856, 60.9823], [10.5856, 60.9823], [10.5855, 60.9823], [10.5854, 60.9823], [10.5855, 60.9824], [10.5855, 60.9825], [10.5855, 60.9826], [10.5854, 60.9826], [10.5854, 60.9826], [10.5853, 60.9826], [10.5852, 60.9827], [10.585, 60.9827], [10.5849, 60.9827], [10.5848, 60.9826], [10.5847, 60.9826], [10.5847, 60.9826], [10.5844, 60.9826], [10.5843, 60.9826], [10.5841, 60.9827], [10.5841, 60.9827], [10.584, 60.9828], [10.5839, 60.9827], [10.5838, 60.9827], [10.5835, 60.9827], [10.5834, 60.9826], [10.5834, 60.9826], [10.5832, 60.9826], [10.5831, 60.9827], [10.5831, 60.9827], [10.5831, 60.9829], [10.5831, 60.983], [10.5831, 60.9831], [10.5829, 60.9832], [10.5829, 60.9833], [10.5829, 60.9836], [10.5828, 60.9836], [10.5827, 60.9837], [10.5825, 60.9836], [10.5819, 60.9836], [10.5818, 60.9835], [10.5816, 60.9835], [10.5815, 60.9835], [10.5812, 60.9835], [10.581, 60.9835], [10.5806, 60.9835], [10.5804, 60.9835], [10.5803, 60.9835], [10.5802, 60.9835], [10.5801, 60.9835], [10.5801, 60.9834], [10.5797, 60.9833], [10.5796, 60.9832], [10.5794, 60.9832], [10.5792, 60.9833], [10.5791, 60.9833], [10.5789, 60.9833], [10.5782, 60.9833], [10.5781, 60.9833], [10.5777, 60.9831], [10.5776, 60.983], [10.5775, 60.9829], [10.5773, 60.9829], [10.5771, 60.9828], [10.5765, 60.9826], [10.5763, 60.9826], [10.5763, 60.9825], [10.5761, 60.9825], [10.5756, 60.9825], [10.5754, 60.9825], [10.5751, 60.9826], [10.5746, 60.9828], [10.5742, 60.9828], [10.5737, 60.9829], [10.5734, 60.9829], [10.5729, 60.9831], [10.5726, 60.9832], [10.5725, 60.9833], [10.5723, 60.9833], [10.5722, 60.9834], [10.5719, 60.9834], [10.5718, 60.9835], [10.5715, 60.9836], [10.5713, 60.9837], [10.571, 60.9839], [10.5709, 60.984], [10.5709, 60.984], [10.5708, 60.984], [10.5707, 60.984], [10.5705, 60.984], [10.57, 60.984], [10.5698, 60.984], [10.5693, 60.9841], [10.5691, 60.9841], [10.5689, 60.9842], [10.5686, 60.9843], [10.5686, 60.9843], [10.5684, 60.9844], [10.5683, 60.9845], [10.5682, 60.9845], [10.5682, 60.9848], [10.5681, 60.9849], [10.5678, 60.985], [10.5674, 60.9852], [10.5672, 60.9852], [10.5666, 60.9854], [10.566, 60.9856], [10.5659, 60.9856], [10.5658, 60.9857], [10.5656, 60.9857], [10.5655, 60.9857], [10.5654, 60.9857], [10.5653, 60.9857], [10.5651, 60.9857], [10.565, 60.9858], [10.5647, 60.9858], [10.5646, 60.9858], [10.5643, 60.9859], [10.5639, 60.9859], [10.5635, 60.986], [10.5633, 60.9861], [10.5628, 60.9862], [10.5622, 60.9864], [10.5622, 60.9864], [10.5622, 60.9865], [10.5621, 60.9865], [10.562, 60.9866], [10.5617, 60.9866], [10.5613, 60.9867], [10.5608, 60.9868], [10.5606, 60.9869], [10.5599, 60.9871], [10.5593, 60.9873], [10.5588, 60.9875], [10.5587, 60.9875], [10.5586, 60.9875], [10.5586, 60.9876], [10.5585, 60.9877], [10.5583, 60.9879], [10.5583, 60.9879], [10.5581, 60.9879], [10.5578, 60.988], [10.5575, 60.9881], [10.5574, 60.9881], [10.5573, 60.9882], [10.5572, 60.9882], [10.557, 60.9885], [10.5569, 60.9885], [10.5567, 60.9886], [10.5565, 60.9886], [10.5563, 60.9887], [10.5563, 60.9887], [10.5563, 60.9885], [10.5561, 60.9885], [10.5557, 60.9886], [10.5555, 60.9886], [10.5554, 60.9886], [10.5552, 60.9886], [10.5549, 60.9886], [10.5548, 60.9887], [10.5542, 60.9888], [10.5536, 60.989], [10.5533, 60.989], [10.553, 60.9891], [10.5527, 60.9891], [10.5525, 60.9892], [10.5523, 60.9892], [10.5521, 60.9892], [10.5514, 60.9894], [10.5513, 60.9894], [10.5511, 60.9895], [10.551, 60.9895], [10.5509, 60.9895], [10.5505, 60.9895], [10.5504, 60.9895], [10.5504, 60.9895], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "13", "sub_div_center": [0.0388, 0.0122]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5504, 61.009], [10.5507, 61.0091], [10.5508, 61.0091], [10.551, 61.0091], [10.5511, 61.009], [10.5512, 61.0089], [10.5514, 61.0088], [10.5515, 61.0087], [10.5515, 61.0087], [10.5515, 61.0086], [10.5514, 61.0085], [10.5513, 61.0085], [10.5513, 61.0084], [10.5513, 61.0083], [10.5513, 61.0083], [10.5514, 61.0082], [10.5515, 61.0082], [10.5519, 61.0081], [10.5523, 61.0081], [10.5525, 61.0081], [10.5528, 61.0082], [10.553, 61.0082], [10.5533, 61.0082], [10.5536, 61.0082], [10.5538, 61.0082], [10.5539, 61.0081], [10.554, 61.0081], [10.5541, 61.0081], [10.5541, 61.0081], [10.5542, 61.0081], [10.5543, 61.0081], [10.5545, 61.0081], [10.5544, 61.008], [10.5544, 61.008], [10.5545, 61.008], [10.5546, 61.0081], [10.5548, 61.0081], [10.5547, 61.0081], [10.5548, 61.008], [10.5548, 61.008], [10.5547, 61.008], [10.5548, 61.0079], [10.5548, 61.008], [10.5549, 61.008], [10.555, 61.008], [10.5551, 61.008], [10.5551, 61.008], [10.5552, 61.008], [10.5553, 61.008], [10.5553, 61.008], [10.5554, 61.008], [10.5555, 61.008], [10.5557, 61.0082], [10.5558, 61.0082], [10.5558, 61.0082], [10.5559, 61.0082], [10.556, 61.0082], [10.5561, 61.0082], [10.5565, 61.0082], [10.5569, 61.0081], [10.5571, 61.008], [10.5573, 61.008], [10.5574, 61.0079], [10.5576, 61.0078], [10.5577, 61.0078], [10.5578, 61.0077], [10.5578, 61.0077], [10.5578, 61.0077], [10.5578, 61.0076], [10.558, 61.0076], [10.5583, 61.0075], [10.5598, 61.0073], [10.5601, 61.0072], [10.5602, 61.0072], [10.5603, 61.0071], [10.5604, 61.0071], [10.5606, 61.0071], [10.5608, 61.007], [10.5609, 61.0069], [10.5613, 61.0067], [10.5614, 61.0066], [10.5614, 61.0066], [10.5614, 61.0066], [10.5613, 61.0066], [10.5613, 61.0065], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5613, 61.0065], [10.5614, 61.0065], [10.5614, 61.0065], [10.5616, 61.0064], [10.5617, 61.0064], [10.5617, 61.0064], [10.5617, 61.0063], [10.5618, 61.0063], [10.5618, 61.0063], [10.5619, 61.0063], [10.562, 61.0062], [10.5621, 61.0062], [10.5622, 61.006], [10.5623, 61.006], [10.5627, 61.0057], [10.5629, 61.0056], [10.5627, 61.0055], [10.5627, 61.0055], [10.5626, 61.0056], [10.5624, 61.0057], [10.5623, 61.0056], [10.5626, 61.0055], [10.5626, 61.0055], [10.5627, 61.0054], [10.5629, 61.0055], [10.5631, 61.0056], [10.5633, 61.0056], [10.5635, 61.0055], [10.5636, 61.0055], [10.5638, 61.0053], [10.5642, 61.0051], [10.5645, 61.005], [10.5648, 61.0049], [10.565, 61.0048], [10.5651, 61.0048], [10.5653, 61.0047], [10.5655, 61.0045], [10.5657, 61.0044], [10.5661, 61.0043], [10.5663, 61.0042], [10.5666, 61.0042], [10.5669, 61.0042], [10.5671, 61.0042], [10.5673, 61.0041], [10.5674, 61.0041], [10.5675, 61.004], [10.5676, 61.0039], [10.5678, 61.0039], [10.5681, 61.0039], [10.5683, 61.0038], [10.5684, 61.0038], [10.5686, 61.0038], [10.5687, 61.0037], [10.569, 61.0037], [10.5693, 61.0036], [10.5693, 61.0037], [10.5694, 61.0037], [10.5696, 61.0037], [10.5696, 61.0037], [10.5708, 61.0034], [10.5716, 61.0032], [10.5717, 61.0032], [10.5719, 61.0032], [10.572, 61.0031], [10.5721, 61.003], [10.5722, 61.003], [10.5724, 61.003], [10.5725, 61.0029], [10.5728, 61.0028], [10.5731, 61.0028], [10.5734, 61.0028], [10.5737, 61.0028], [10.5742, 61.0026], [10.5746, 61.0025], [10.5748, 61.0024], [10.575, 61.0024], [10.5753, 61.0023], [10.5756, 61.0023], [10.5763, 61.0021], [10.5768, 61.0019], [10.5769, 61.0019], [10.5775, 61.0017], [10.5776, 61.0016], [10.578, 61.0014], [10.5783, 61.0013], [10.5787, 61.0012], [10.5792, 61.0011], [10.5795, 61.0009], [10.5799, 61.0008], [10.5803, 61.0005], [10.5807, 61.0004], [10.5811, 61.0003], [10.5817, 61.0001], [10.5825, 60.9997], [10.5829, 60.9996], [10.583, 60.9996], [10.5836, 60.9995], [10.5842, 60.9994], [10.5848, 60.9992], [10.5851, 60.9991], [10.5854, 60.999], [10.5855, 60.9989], [10.5857, 60.9989], [10.5861, 60.9988], [10.5864, 60.9987], [10.5866, 60.9986], [10.5867, 60.9985], [10.5869, 60.9984], [10.5871, 60.9982], [10.5872, 60.9981], [10.5874, 60.998], [10.5875, 60.9979], [10.5878, 60.9977], [10.5879, 60.9976], [10.588, 60.9975], [10.5881, 60.9975], [10.5882, 60.9974], [10.5884, 60.9974], [10.5886, 60.9972], [10.5886, 60.9972], [10.5886, 60.9971], [10.5887, 60.997], [10.5889, 60.997], [10.589, 60.997], [10.5891, 60.997], [10.5892, 60.9969], [10.5893, 60.9969], [10.5892, 60.9969], [10.5892, 60.9969], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "14", "sub_div_center": [0.04, 0.0198]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5904, 60.9966], [10.5905, 60.9966], [10.5906, 60.9966], [10.5912, 60.9964], [10.5917, 60.9962], [10.592, 60.996], [10.5922, 60.996], [10.5925, 60.9958], [10.5933, 60.9955], [10.5937, 60.9954], [10.594, 60.9954], [10.5943, 60.9953], [10.5949, 60.9951], [10.5953, 60.9949], [10.5956, 60.9948], [10.5958, 60.9947], [10.596, 60.9946], [10.5964, 60.9945], [10.5967, 60.9944], [10.597, 60.9944], [10.5974, 60.9944], [10.5976, 60.9944], [10.5978, 60.9943], [10.5982, 60.9942], [10.5982, 60.9941], [10.598, 60.994], [10.598, 60.994], [10.598, 60.9939], [10.598, 60.9938], [10.5981, 60.9937], [10.5983, 60.9937], [10.5984, 60.9937], [10.5985, 60.9937], [10.5987, 60.9937], [10.5988, 60.9937], [10.5989, 60.9936], [10.5989, 60.9935], [10.5989, 60.9934], [10.5989, 60.9933], [10.5987, 60.9933], [10.5986, 60.9932], [10.5985, 60.9932], [10.5983, 60.9929], [10.5981, 60.9927], [10.598, 60.9926], [10.598, 60.9925], [10.598, 60.9924], [10.598, 60.9924], [10.5982, 60.9923], [10.5983, 60.9922], [10.5985, 60.9921], [10.5986, 60.9921], [10.599, 60.9921], [10.5994, 60.992], [10.5994, 60.992], [10.5996, 60.992], [10.5997, 60.9919], [10.6, 60.9918], [10.6001, 60.9917], [10.6002, 60.9915], [10.6003, 60.9914], [10.6004, 60.9913], [10.6005, 60.9912], [10.6006, 60.9911], [10.6005, 60.9911], [10.6006, 60.991], [10.6007, 60.991], [10.6007, 60.9909], [10.6008, 60.9908], [10.6008, 60.9907], [10.6008, 60.9906], [10.6007, 60.9904], [10.6006, 60.9903], [10.6004, 60.9902], [10.6006, 60.9902], [10.6009, 60.9902], [10.6012, 60.9901], [10.6013, 60.9899], [10.6013, 60.9898], [10.6014, 60.9898], [10.6018, 60.9896], [10.602, 60.9895], [10.6021, 60.9895], [10.6024, 60.9894], [10.6026, 60.9894], [10.6029, 60.9892], [10.6033, 60.9891], [10.6037, 60.9889], [10.6044, 60.9886], [10.6045, 60.9885], [10.6051, 60.9884], [10.6058, 60.9882], [10.6065, 60.988], [10.6068, 60.9879], [10.607, 60.9878], [10.6071, 60.9879], [10.6071, 60.9878], [10.6072, 60.9878], [10.6075, 60.9878], [10.6078, 60.9877], [10.608, 60.9876], [10.6081, 60.9875], [10.6081, 60.9875], [10.6082, 60.9874], [10.6085, 60.9874], [10.6085, 60.9874], [10.6086, 60.9874], [10.6088, 60.9873], [10.609, 60.9873], [10.6093, 60.9873], [10.6096, 60.9872], [10.6101, 60.9872], [10.6102, 60.9871], [10.6104, 60.9871], [10.6105, 60.9872], [10.6108, 60.9871], [10.611, 60.9872], [10.6113, 60.9871], [10.6116, 60.9872], [10.6119, 60.9871], [10.6125, 60.9871], [10.6131, 60.987], [10.6136, 60.9869], [10.614, 60.9868], [10.6144, 60.9867], [10.6149, 60.9866], [10.6152, 60.9865], [10.6158, 60.9863], [10.6159, 60.9862], [10.6159, 60.986], [10.616, 60.9857], [10.616, 60.9856], [10.6162, 60.9856], [10.6163, 60.9855], [10.6165, 60.9854], [10.6168, 60.9853], [10.6172, 60.9852], [10.6174, 60.9852], [10.6177, 60.9853], [10.618, 60.9855], [10.6182, 60.9856], [10.6184, 60.9856], [10.6188, 60.9858], [10.6192, 60.9859], [10.6194, 60.9859], [10.6201, 60.9859], [10.6207, 60.9858], [10.6212, 60.9857], [10.6219, 60.9857], [10.6225, 60.9856], [10.6227, 60.9856], [10.6229, 60.9856], [10.6231, 60.9855], [10.6243, 60.9853], [10.6247, 60.9852], [10.6251, 60.9851], [10.6252, 60.985], [10.6254, 60.9849], [10.6255, 60.9848], [10.6256, 60.9848], [10.6259, 60.9847], [10.6264, 60.9847], [10.6267, 60.9846], [10.6271, 60.9845], [10.6278, 60.9843], [10.6285, 60.9841], [10.6288, 60.9839], [10.6291, 60.9837], [10.6295, 60.9835], [10.6297, 60.9835], [10.6298, 60.9834], [10.6299, 60.9833], [10.6302, 60.9831], [10.6303, 60.9829], [10.6304, 60.9828], [10.6304, 60.9828], [10.6304, 60.9769], [10.5964, 60.9769], [10.5964, 60.9769], [10.5963, 60.9769], [10.5958, 60.9769], [10.5952, 60.9771], [10.5949, 60.9772], [10.5946, 60.9772], [10.594, 60.9774], [10.5934, 60.9775], [10.5932, 60.9775], [10.593, 60.9775], [10.5929, 60.9776], [10.5928, 60.9776], [10.5926, 60.9778], [10.5925, 60.9778], [10.5924, 60.9779], [10.5924, 60.9779], [10.5924, 60.978], [10.5925, 60.9781], [10.5926, 60.9781], [10.5926, 60.9782], [10.5926, 60.9783], [10.5926, 60.9784], [10.5925, 60.9785], [10.5923, 60.9787], [10.5919, 60.9789], [10.5916, 60.9791], [10.5914, 60.9792], [10.5912, 60.9793], [10.5909, 60.9794], [10.5908, 60.9795], [10.5905, 60.9796], [10.5904, 60.9796], [10.5904, 60.9966]]]}}, {"type": "Feature", "properties": {"sub_div_id": "15", "sub_div_center": [0.034, 0.0182]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6304, 60.9587], [10.6304, 60.9587], [10.63, 60.9589], [10.6298, 60.959], [10.6297, 60.9591], [10.6297, 60.9592], [10.6297, 60.9594], [10.6297, 60.9594], [10.6297, 60.9595], [10.6296, 60.9595], [10.6294, 60.9596], [10.6289, 60.9599], [10.6285, 60.9601], [10.628, 60.9604], [10.6279, 60.9605], [10.6277, 60.9606], [10.6275, 60.9607], [10.6273, 60.9609], [10.6273, 60.9611], [10.6272, 60.9615], [10.6272, 60.9615], [10.6271, 60.9615], [10.6269, 60.9615], [10.6268, 60.9615], [10.6267, 60.9615], [10.6266, 60.9614], [10.6266, 60.9613], [10.6266, 60.9613], [10.6265, 60.9613], [10.6264, 60.9613], [10.6262, 60.9612], [10.6261, 60.9612], [10.626, 60.9613], [10.6258, 60.9613], [10.6256, 60.9614], [10.6254, 60.9614], [10.6253, 60.9615], [10.6253, 60.9615], [10.6251, 60.9616], [10.625, 60.9616], [10.6247, 60.9617], [10.6245, 60.9618], [10.6244, 60.9618], [10.6243, 60.9618], [10.6243, 60.9619], [10.6242, 60.962], [10.624, 60.9622], [10.624, 60.9622], [10.624, 60.9623], [10.6241, 60.9623], [10.6241, 60.9624], [10.624, 60.9624], [10.6239, 60.9624], [10.6238, 60.9624], [10.6236, 60.9623], [10.6235, 60.9622], [10.6235, 60.9622], [10.6235, 60.9621], [10.6235, 60.9621], [10.6235, 60.962], [10.6236, 60.962], [10.6235, 60.9619], [10.6234, 60.9618], [10.6233, 60.9615], [10.6233, 60.9614], [10.6232, 60.9614], [10.6232, 60.9614], [10.6231, 60.9614], [10.6231, 60.9615], [10.6231, 60.9616], [10.6231, 60.9617], [10.6232, 60.9617], [10.6232, 60.9618], [10.6231, 60.9619], [10.6231, 60.9619], [10.6228, 60.9619], [10.6227, 60.9619], [10.6228, 60.9619], [10.6231, 60.9621], [10.6232, 60.9621], [10.6234, 60.9624], [10.6234, 60.9625], [10.6235, 60.9626], [10.6234, 60.9626], [10.623, 60.9626], [10.6229, 60.9627], [10.6229, 60.9627], [10.6227, 60.9628], [10.6224, 60.9631], [10.6223, 60.9632], [10.6222, 60.9633], [10.6221, 60.9633], [10.6219, 60.9634], [10.6218, 60.9634], [10.6217, 60.9634], [10.6216, 60.9634], [10.6216, 60.9635], [10.6216, 60.9636], [10.6216, 60.9636], [10.6212, 60.9636], [10.6212, 60.9637], [10.6211, 60.9638], [10.621, 60.9638], [10.6208, 60.9637], [10.6207, 60.9637], [10.6207, 60.9637], [10.6206, 60.9637], [10.6206, 60.9638], [10.6207, 60.9639], [10.6209, 60.964], [10.621, 60.964], [10.6211, 60.9641], [10.6211, 60.9642], [10.6211, 60.9642], [10.621, 60.9642], [10.621, 60.9643], [10.6209, 60.9643], [10.6209, 60.9642], [10.6207, 60.9642], [10.6207, 60.9643], [10.6206, 60.9643], [10.6205, 60.9644], [10.6205, 60.9646], [10.6204, 60.9646], [10.6197, 60.9648], [10.6195, 60.9648], [10.6191, 60.9648], [10.6191, 60.9648], [10.619, 60.9649], [10.619, 60.9649], [10.619, 60.965], [10.6191, 60.9652], [10.6191, 60.9654], [10.6191, 60.9655], [10.619, 60.9656], [10.6187, 60.9656], [10.6187, 60.9657], [10.6187, 60.9657], [10.6187, 60.9658], [10.6187, 60.9658], [10.6187, 60.9659], [10.6188, 60.966], [10.6189, 60.966], [10.6189, 60.966], [10.6189, 60.966], [10.6188, 60.966], [10.6187, 60.966], [10.6186, 60.966], [10.6185, 60.966], [10.6183, 60.9659], [10.618, 60.9659], [10.6178, 60.9659], [10.6174, 60.966], [10.6172, 60.9661], [10.6171, 60.9661], [10.617, 60.9662], [10.6169, 60.9662], [10.6168, 60.9663], [10.6168, 60.9664], [10.6168, 60.9665], [10.6167, 60.9666], [10.6166, 60.9666], [10.6165, 60.9666], [10.6164, 60.9666], [10.6164, 60.9665], [10.6164, 60.9664], [10.6163, 60.9664], [10.6162, 60.9664], [10.6162, 60.9665], [10.6162, 60.9666], [10.6162, 60.9666], [10.6159, 60.9666], [10.6156, 60.9667], [10.6154, 60.9668], [10.6152, 60.9668], [10.6151, 60.9668], [10.615, 60.9668], [10.6148, 60.9668], [10.6146, 60.9668], [10.6146, 60.967], [10.6146, 60.967], [10.6146, 60.9671], [10.6145, 60.9671], [10.6144, 60.9671], [10.6143, 60.9671], [10.6136, 60.9672], [10.6135, 60.9672], [10.6135, 60.9672], [10.6134, 60.9672], [10.6133, 60.9672], [10.6133, 60.9672], [10.6131, 60.9672], [10.6131, 60.9671], [10.6131, 60.967], [10.613, 60.967], [10.6129, 60.967], [10.6128, 60.967], [10.6128, 60.9672], [10.6128, 60.9672], [10.6122, 60.9672], [10.6121, 60.9673], [10.612, 60.9673], [10.6119, 60.9673], [10.6118, 60.9673], [10.6116, 60.9673], [10.6115, 60.9673], [10.6115, 60.9673], [10.6117, 60.9675], [10.6117, 60.9675], [10.6118, 60.9675], [10.6119, 60.9676], [10.6121, 60.9677], [10.612, 60.9677], [10.6119, 60.9677], [10.6117, 60.9677], [10.6116, 60.9677], [10.6116, 60.9677], [10.6115, 60.9678], [10.6116, 60.9679], [10.6116, 60.9679], [10.6115, 60.968], [10.6114, 60.9679], [10.6113, 60.9679], [10.6112, 60.9676], [10.6111, 60.9675], [10.611, 60.9675], [10.6109, 60.9675], [10.6109, 60.9675], [10.6109, 60.9676], [10.611, 60.9677], [10.6111, 60.9678], [10.6111, 60.9679], [10.6112, 60.968], [10.6112, 60.968], [10.6112, 60.9681], [10.6112, 60.9681], [10.6111, 60.9681], [10.6111, 60.9681], [10.6111, 60.968], [10.611, 60.968], [10.6109, 60.968], [10.6107, 60.9681], [10.6107, 60.9681], [10.6106, 60.9681], [10.6104, 60.968], [10.6103, 60.968], [10.6102, 60.968], [10.6102, 60.9681], [10.6101, 60.9681], [10.6099, 60.9681], [10.6099, 60.9681], [10.6098, 60.9682], [10.6099, 60.9682], [10.6099, 60.9682], [10.61, 60.9683], [10.6102, 60.9683], [10.6103, 60.9684], [10.6103, 60.9684], [10.6103, 60.9684], [10.6101, 60.9684], [10.61, 60.9684], [10.61, 60.9685], [10.6098, 60.9686], [10.6097, 60.9686], [10.6092, 60.9687], [10.609, 60.9687], [10.6089, 60.9687], [10.6088, 60.9687], [10.6087, 60.9686], [10.6086, 60.9686], [10.6085, 60.9686], [10.6084, 60.9686], [10.6084, 60.9687], [10.6084, 60.9687], [10.6086, 60.9687], [10.6086, 60.9688], [10.6086, 60.9688], [10.6086, 60.9688], [10.6084, 60.9688], [10.6083, 60.9688], [10.6083, 60.969], [10.6082, 60.969], [10.6081, 60.969], [10.6081, 60.969], [10.6081, 60.9691], [10.608, 60.9691], [10.608, 60.9692], [10.6081, 60.9693], [10.6081, 60.9693], [10.6081, 60.9694], [10.608, 60.9694], [10.6078, 60.9695], [10.6077, 60.9695], [10.6073, 60.9695], [10.6073, 60.9696], [10.6073, 60.9696], [10.6072, 60.9696], [10.607, 60.9697], [10.607, 60.9697], [10.6069, 60.9697], [10.6069, 60.9699], [10.6069, 60.9699], [10.6068, 60.97], [10.6068, 60.97], [10.6067, 60.97], [10.6066, 60.97], [10.6066, 60.97], [10.6064, 60.9701], [10.6061, 60.9701], [10.606, 60.9702], [10.606, 60.9703], [10.6059, 60.9704], [10.6059, 60.9705], [10.6058, 60.9706], [10.6057, 60.9707], [10.6056, 60.9709], [10.6055, 60.9711], [10.6053, 60.9713], [10.6052, 60.9714], [10.6049, 60.9715], [10.6044, 60.9717], [10.6041, 60.9717], [10.6039, 60.9717], [10.6037, 60.9718], [10.6034, 60.9718], [10.6033, 60.9719], [10.6032, 60.9719], [10.6031, 60.972], [10.6031, 60.972], [10.6031, 60.9721], [10.6029, 60.9721], [10.6029, 60.9722], [10.603, 60.9722], [10.603, 60.9723], [10.603, 60.9725], [10.603, 60.9726], [10.603, 60.9727], [10.6032, 60.9727], [10.6033, 60.9728], [10.6034, 60.9728], [10.6036, 60.9729], [10.6038, 60.9729], [10.604, 60.9729], [10.6041, 60.9729], [10.6044, 60.9729], [10.6046, 60.973], [10.6047, 60.973], [10.6048, 60.973], [10.6048, 60.973], [10.6047, 60.9731], [10.6047, 60.9731], [10.6044, 60.9731], [10.6042, 60.9731], [10.6041, 60.9732], [10.6037, 60.9733], [10.6034, 60.9733], [10.6034, 60.9734], [10.6034, 60.9734], [10.6034, 60.9734], [10.6034, 60.9736], [10.6034, 60.9737], [10.6031, 60.9737], [10.6027, 60.9738], [10.6023, 60.9738], [10.6022, 60.9739], [10.602, 60.974], [10.6018, 60.9741], [10.6017, 60.9742], [10.6015, 60.9743], [10.6015, 60.9745], [10.6014, 60.9746], [10.6014, 60.9747], [10.6015, 60.9747], [10.6016, 60.9748], [10.6017, 60.9748], [10.6017, 60.9748], [10.6017, 60.9748], [10.6014, 60.9748], [10.6013, 60.9748], [10.6012, 60.9748], [10.6008, 60.9751], [10.6007, 60.9751], [10.6004, 60.9752], [10.6001, 60.9752], [10.6, 60.9753], [10.5998, 60.9753], [10.5997, 60.9754], [10.5995, 60.9755], [10.5994, 60.9756], [10.5989, 60.9758], [10.5988, 60.9758], [10.5988, 60.9759], [10.5988, 60.9759], [10.5989, 60.9761], [10.5989, 60.9761], [10.5988, 60.9762], [10.5987, 60.9762], [10.5985, 60.9763], [10.5985, 60.9764], [10.5984, 60.9766], [10.5983, 60.9767], [10.5982, 60.9767], [10.598, 60.9767], [10.5979, 60.9767], [10.5977, 60.9766], [10.5975, 60.9766], [10.597, 60.9767], [10.5968, 60.9768], [10.5967, 60.9768], [10.5966, 60.9768], [10.5966, 60.9768], [10.5966, 60.9767], [10.5965, 60.9766], [10.5964, 60.9766], [10.5964, 60.9767], [10.5964, 60.9768], [10.5964, 60.9769], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "16", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.954], [10.6306, 60.9542], [10.6308, 60.9543], [10.6311, 60.9545], [10.6311, 60.9547], [10.6311, 60.9549], [10.6311, 60.9551], [10.6309, 60.9554], [10.6308, 60.9555], [10.6308, 60.9557], [10.6308, 60.9557], [10.6309, 60.9558], [10.6309, 60.956], [10.631, 60.9561], [10.631, 60.9561], [10.631, 60.9561], [10.6309, 60.9561], [10.6308, 60.956], [10.6308, 60.956], [10.6308, 60.956], [10.6308, 60.9561], [10.6308, 60.9567], [10.6309, 60.9568], [10.6309, 60.9569], [10.6668, 60.9569], [10.667, 60.9567], [10.6672, 60.9566], [10.6674, 60.9566], [10.6675, 60.9565], [10.6676, 60.9565], [10.6678, 60.9564], [10.6681, 60.9563], [10.6684, 60.9559], [10.6687, 60.9555], [10.669, 60.955], [10.6691, 60.9549], [10.6691, 60.9549], [10.669, 60.9548], [10.669, 60.9547], [10.6692, 60.9546], [10.6692, 60.9545], [10.6692, 60.9545], [10.6692, 60.9545], [10.6694, 60.9545], [10.6695, 60.9544], [10.6698, 60.9543], [10.67, 60.9542], [10.6702, 60.9541], [10.6704, 60.954], [10.6704, 60.9508], [10.6702, 60.9509], [10.6702, 60.9509], [10.6701, 60.9509], [10.6701, 60.9509], [10.67, 60.9509], [10.6698, 60.9509], [10.6697, 60.951], [10.6695, 60.951], [10.6693, 60.9509], [10.6692, 60.9508], [10.6691, 60.9508], [10.669, 60.9507], [10.6689, 60.9507], [10.6688, 60.9506], [10.6687, 60.9505], [10.6687, 60.9505], [10.6687, 60.9504], [10.6687, 60.9504], [10.6687, 60.9503], [10.6687, 60.9503], [10.6688, 60.9503], [10.6688, 60.9502], [10.6688, 60.9502], [10.6687, 60.9502], [10.6687, 60.9501], [10.6687, 60.9499], [10.6688, 60.9499], [10.6691, 60.9499], [10.6693, 60.9498], [10.6696, 60.9498], [10.6698, 60.9498], [10.6699, 60.9498], [10.6699, 60.9497], [10.6698, 60.9497], [10.6697, 60.9496], [10.6697, 60.9495], [10.6697, 60.9494], [10.6699, 60.9494], [10.67, 60.9494], [10.67, 60.9493], [10.67, 60.9493], [10.67, 60.9492], [10.67, 60.9491], [10.6699, 60.949], [10.6698, 60.9489], [10.6697, 60.9488], [10.6695, 60.9488], [10.6693, 60.9487], [10.6691, 60.9486], [10.6692, 60.9485], [10.6691, 60.9484], [10.669, 60.9484], [10.669, 60.9484], [10.669, 60.9483], [10.669, 60.9483], [10.6691, 60.9482], [10.669, 60.9482], [10.6687, 60.9481], [10.6686, 60.9481], [10.6687, 60.948], [10.6688, 60.948], [10.6688, 60.9479], [10.6687, 60.9479], [10.6688, 60.9478], [10.669, 60.9478], [10.6691, 60.9477], [10.6693, 60.9477], [10.6696, 60.9476], [10.6697, 60.9476], [10.6699, 60.9476], [10.6702, 60.9476], [10.6704, 60.9476], [10.6704, 60.9369], [10.6482, 60.9369], [10.6479, 60.9371], [10.6476, 60.9374], [10.6475, 60.9376], [10.6473, 60.9377], [10.647, 60.9379], [10.6467, 60.9382], [10.6464, 60.9383], [10.6461, 60.9386], [10.6458, 60.9389], [10.6456, 60.9391], [10.6454, 60.9394], [10.6451, 60.9397], [10.645, 60.9398], [10.6446, 60.9403], [10.6444, 60.9406], [10.6442, 60.9407], [10.644, 60.941], [10.644, 60.9411], [10.644, 60.9415], [10.6439, 60.9416], [10.6439, 60.9418], [10.6438, 60.9418], [10.6437, 60.9419], [10.6435, 60.942], [10.6432, 60.9423], [10.6429, 60.9426], [10.6428, 60.9429], [10.6426, 60.9432], [10.6425, 60.9434], [10.6422, 60.944], [10.6419, 60.945], [10.6419, 60.945], [10.6418, 60.945], [10.6418, 60.9453], [10.6417, 60.9456], [10.6416, 60.9457], [10.6416, 60.946], [10.6415, 60.9463], [10.6415, 60.9464], [10.6415, 60.947], [10.6416, 60.9474], [10.6416, 60.9475], [10.6416, 60.9476], [10.6417, 60.9477], [10.6418, 60.9477], [10.642, 60.9478], [10.6422, 60.9478], [10.6424, 60.9479], [10.6426, 60.9478], [10.6429, 60.9479], [10.643, 60.9479], [10.6431, 60.948], [10.6434, 60.948], [10.6437, 60.9481], [10.6438, 60.9481], [10.6439, 60.9482], [10.644, 60.9482], [10.644, 60.9483], [10.644, 60.9483], [10.6439, 60.9483], [10.6438, 60.9483], [10.6435, 60.9483], [10.6433, 60.9483], [10.643, 60.9483], [10.6427, 60.9483], [10.6426, 60.9483], [10.6425, 60.9485], [10.6425, 60.9485], [10.6422, 60.9486], [10.6421, 60.9487], [10.6421, 60.9488], [10.6421, 60.9489], [10.6421, 60.9491], [10.6421, 60.9491], [10.6421, 60.9492], [10.6424, 60.9494], [10.6425, 60.9495], [10.6424, 60.9495], [10.6424, 60.9496], [10.6423, 60.9496], [10.6422, 60.9495], [10.642, 60.9495], [10.6418, 60.9496], [10.6412, 60.9496], [10.6409, 60.9495], [10.6407, 60.9495], [10.6403, 60.9496], [10.64, 60.9496], [10.6398, 60.9497], [10.6397, 60.9497], [10.6395, 60.9498], [10.6391, 60.95], [10.6386, 60.9502], [10.6382, 60.9503], [10.638, 60.9504], [10.6375, 60.9506], [10.637, 60.9508], [10.6364, 60.9509], [10.6358, 60.9511], [10.6353, 60.9511], [10.6347, 60.9512], [10.6345, 60.9513], [10.6334, 60.9514], [10.6331, 60.9515], [10.6329, 60.9516], [10.6325, 60.9516], [10.6319, 60.9517], [10.6312, 60.9519], [10.6306, 60.952], [10.6304, 60.952], [10.6304, 60.954]]]}}, {"type": "Feature", "properties": {"sub_div_id": "17", "sub_div_center": [0.0029, 0.0029]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.952], [10.6299, 60.9522], [10.6295, 60.9523], [10.6293, 60.9524], [10.6288, 60.9525], [10.6285, 60.9527], [10.6284, 60.9528], [10.6284, 60.9528], [10.628, 60.9529], [10.6279, 60.953], [10.6278, 60.953], [10.6277, 60.9532], [10.6277, 60.9534], [10.6278, 60.9536], [10.6278, 60.9537], [10.6278, 60.9538], [10.6278, 60.9538], [10.6278, 60.9538], [10.6277, 60.9539], [10.6278, 60.9539], [10.6279, 60.954], [10.628, 60.954], [10.6281, 60.954], [10.6283, 60.9541], [10.6284, 60.954], [10.6286, 60.954], [10.6289, 60.9539], [10.6291, 60.9539], [10.6291, 60.9539], [10.6292, 60.9539], [10.6292, 60.9539], [10.6291, 60.9539], [10.6291, 60.954], [10.6283, 60.9542], [10.6282, 60.9543], [10.6281, 60.9544], [10.6281, 60.9545], [10.628, 60.9545], [10.6279, 60.9545], [10.6277, 60.9545], [10.6276, 60.9546], [10.6275, 60.9546], [10.6275, 60.9548], [10.6276, 60.9548], [10.6276, 60.9549], [10.6278, 60.9549], [10.6288, 60.9549], [10.629, 60.9549], [10.6297, 60.9549], [10.6304, 60.9549], [10.6304, 60.9542], [10.6304, 60.9542], [10.6303, 60.9541], [10.6301, 60.954], [10.63, 60.9539], [10.63, 60.9538], [10.63, 60.9538], [10.6301, 60.9538], [10.6302, 60.9538], [10.6303, 60.9539], [10.6304, 60.954], [10.6304, 60.952]]]}}, {"type": "Feature", "properties": {"sub_div_id": "18", "sub_div_center": [0.0003, 0.0007]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9549], [10.6305, 60.9549], [10.6307, 60.9549], [10.6307, 60.9549], [10.6307, 60.9548], [10.6307, 60.9545], [10.6306, 60.9544], [10.6306, 60.9543], [10.6304, 60.9542], [10.6304, 60.9549], [10.6304, 60.9549]]]}}, {"type": "Feature", "properties": {"sub_div_id": "19", "sub_div_center": [0.0364, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6519, 60.9769], [10.652, 60.9767], [10.652, 60.9764], [10.6521, 60.9762], [10.6521, 60.976], [10.6522, 60.9757], [10.6522, 60.9755], [10.6522, 60.9752], [10.6522, 60.975], [10.6522, 60.9749], [10.6522, 60.9748], [10.6523, 60.9748], [10.6524, 60.9747], [10.6524, 60.9745], [10.6526, 60.974], [10.6527, 60.9739], [10.6528, 60.9737], [10.653, 60.9735], [10.6532, 60.9733], [10.6535, 60.973], [10.6535, 60.9728], [10.6537, 60.9726], [10.6539, 60.9722], [10.6539, 60.9719], [10.6538, 60.9716], [10.6538, 60.9715], [10.6537, 60.9714], [10.6536, 60.9712], [10.6534, 60.971], [10.6532, 60.9708], [10.6529, 60.9706], [10.6528, 60.9704], [10.6529, 60.9702], [10.6528, 60.97], [10.6528, 60.97], [10.6528, 60.9698], [10.6529, 60.9698], [10.653, 60.9697], [10.653, 60.9696], [10.6531, 60.9694], [10.6533, 60.9693], [10.6534, 60.9692], [10.6535, 60.9691], [10.6536, 60.9691], [10.6537, 60.969], [10.6538, 60.9689], [10.654, 60.9689], [10.6541, 60.9689], [10.6541, 60.9689], [10.6542, 60.9688], [10.6543, 60.9688], [10.6544, 60.9688], [10.6545, 60.9686], [10.6546, 60.9685], [10.6547, 60.9684], [10.6548, 60.9683], [10.6548, 60.9681], [10.6547, 60.9681], [10.6548, 60.9681], [10.6548, 60.968], [10.6548, 60.968], [10.6548, 60.968], [10.655, 60.968], [10.655, 60.9679], [10.6553, 60.9679], [10.6556, 60.9677], [10.6558, 60.9676], [10.656, 60.9674], [10.6562, 60.9673], [10.6564, 60.9672], [10.6566, 60.967], [10.6568, 60.9669], [10.657, 60.9667], [10.6571, 60.9666], [10.6573, 60.9666], [10.6573, 60.9665], [10.6573, 60.9664], [10.6574, 60.9663], [10.6575, 60.9663], [10.6575, 60.9663], [10.6577, 60.9662], [10.6578, 60.9661], [10.6578, 60.9661], [10.658, 60.9659], [10.6581, 60.9659], [10.6581, 60.9658], [10.6582, 60.9657], [10.6582, 60.9657], [10.6583, 60.9656], [10.6581, 60.9655], [10.658, 60.9653], [10.6579, 60.9652], [10.6578, 60.965], [10.6583, 60.9648], [10.6585, 60.9647], [10.6589, 60.9646], [10.659, 60.9646], [10.659, 60.9645], [10.6592, 60.9644], [10.6594, 60.9644], [10.6596, 60.9643], [10.6599, 60.9642], [10.6602, 60.9641], [10.6605, 60.9641], [10.6608, 60.964], [10.6611, 60.9638], [10.6617, 60.9636], [10.6625, 60.9634], [10.6628, 60.9634], [10.663, 60.9633], [10.6631, 60.9632], [10.6631, 60.9632], [10.6632, 60.9632], [10.6634, 60.963], [10.6636, 60.9629], [10.6639, 60.9629], [10.664, 60.9628], [10.6641, 60.9627], [10.6643, 60.9623], [10.6643, 60.9621], [10.6643, 60.9619], [10.6642, 60.9618], [10.6642, 60.9616], [10.6642, 60.9615], [10.6641, 60.9614], [10.664, 60.9613], [10.6638, 60.9611], [10.6638, 60.9609], [10.6636, 60.9608], [10.6636, 60.9606], [10.6635, 60.9605], [10.6632, 60.9603], [10.663, 60.9601], [10.6626, 60.9599], [10.6625, 60.9598], [10.6624, 60.9598], [10.6625, 60.9597], [10.6627, 60.9595], [10.6629, 60.9593], [10.6633, 60.9592], [10.6635, 60.9591], [10.6638, 60.9589], [10.6642, 60.9584], [10.6644, 60.9583], [10.6648, 60.9581], [10.6649, 60.958], [10.6651, 60.958], [10.6655, 60.9577], [10.6656, 60.9576], [10.6657, 60.9575], [10.6657, 60.9574], [10.6656, 60.9573], [10.6657, 60.9573], [10.6659, 60.9574], [10.6661, 60.9573], [10.6662, 60.9572], [10.6664, 60.9571], [10.6668, 60.9569], [10.6668, 60.9569], [10.6309, 60.9569], [10.6309, 60.9569], [10.6309, 60.957], [10.6309, 60.9573], [10.6309, 60.9575], [10.6309, 60.9576], [10.631, 60.9579], [10.631, 60.9583], [10.6309, 60.9584], [10.6309, 60.9584], [10.6308, 60.9585], [10.6305, 60.9586], [10.6304, 60.9587], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "20", "sub_div_center": [0.0215, 0.0059]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6304, 60.9828], [10.6306, 60.9827], [10.6308, 60.9826], [10.631, 60.9824], [10.6314, 60.9821], [10.6315, 60.9819], [10.6317, 60.9817], [10.6326, 60.9813], [10.6329, 60.9812], [10.6333, 60.9812], [10.6334, 60.9811], [10.6339, 60.981], [10.6344, 60.981], [10.6346, 60.981], [10.635, 60.981], [10.6352, 60.9809], [10.6363, 60.9809], [10.6373, 60.9811], [10.6374, 60.9811], [10.6377, 60.9811], [10.6378, 60.9811], [10.6379, 60.9812], [10.6382, 60.9812], [10.6385, 60.9813], [10.6387, 60.9814], [10.6388, 60.9815], [10.639, 60.9816], [10.6392, 60.9819], [10.6393, 60.982], [10.6395, 60.9821], [10.6397, 60.9821], [10.6403, 60.9821], [10.6408, 60.9821], [10.6411, 60.982], [10.6414, 60.9819], [10.6415, 60.9818], [10.6416, 60.9818], [10.6416, 60.9818], [10.6417, 60.9817], [10.6417, 60.9817], [10.6418, 60.9817], [10.6418, 60.9817], [10.6419, 60.9817], [10.6419, 60.9817], [10.6419, 60.9817], [10.6419, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6424, 60.9815], [10.6424, 60.9815], [10.6424, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6426, 60.9815], [10.6426, 60.9815], [10.6426, 60.9815], [10.6427, 60.9815], [10.6428, 60.9816], [10.6429, 60.9816], [10.6429, 60.9816], [10.643, 60.9816], [10.6431, 60.9817], [10.6432, 60.9817], [10.6433, 60.9817], [10.6433, 60.9816], [10.6433, 60.9816], [10.6433, 60.9816], [10.6433, 60.9816], [10.6435, 60.9816], [10.6436, 60.9816], [10.6436, 60.9816], [10.6437, 60.9816], [10.6437, 60.9816], [10.6437, 60.9816], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6443, 60.9815], [10.6446, 60.9814], [10.6447, 60.9813], [10.6447, 60.9813], [10.6448, 60.9813], [10.6448, 60.9813], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9813], [10.645, 60.9813], [10.645, 60.9813], [10.645, 60.9813], [10.6451, 60.9813], [10.6451, 60.9813], [10.6451, 60.9812], [10.6452, 60.9812], [10.6452, 60.9812], [10.6452, 60.9812], [10.6453, 60.9812], [10.6454, 60.9812], [10.6455, 60.9812], [10.6456, 60.9811], [10.6456, 60.9811], [10.6456, 60.9811], [10.6457, 60.9811], [10.6458, 60.9811], [10.646, 60.9811], [10.6462, 60.9811], [10.6463, 60.9811], [10.6468, 60.9809], [10.6469, 60.9809], [10.6469, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.6471, 60.9809], [10.6471, 60.9809], [10.6471, 60.9809], [10.6472, 60.9809], [10.6476, 60.9808], [10.6477, 60.9808], [10.6477, 60.9807], [10.6478, 60.9807], [10.6478, 60.9807], [10.6479, 60.9807], [10.6479, 60.9807], [10.648, 60.9806], [10.648, 60.9806], [10.6481, 60.9806], [10.6481, 60.9806], [10.6483, 60.9805], [10.6486, 60.9804], [10.6487, 60.9804], [10.6487, 60.9804], [10.6487, 60.9803], [10.6487, 60.9803], [10.6488, 60.9803], [10.6487, 60.9803], [10.6487, 60.9802], [10.6486, 60.9802], [10.6486, 60.9802], [10.6486, 60.9802], [10.6485, 60.9802], [10.6485, 60.9802], [10.6486, 60.9801], [10.6487, 60.98], [10.649, 60.9799], [10.6495, 60.9798], [10.6495, 60.9797], [10.6495, 60.9796], [10.6496, 60.9796], [10.6496, 60.9795], [10.6496, 60.9794], [10.6497, 60.9794], [10.6496, 60.9794], [10.6497, 60.9794], [10.6497, 60.9793], [10.6497, 60.9793], [10.6498, 60.9793], [10.6499, 60.9793], [10.6499, 60.9792], [10.6499, 60.9792], [10.6499, 60.9791], [10.6499, 60.979], [10.6501, 60.979], [10.6502, 60.9788], [10.6505, 60.9787], [10.6507, 60.9785], [10.6511, 60.9781], [10.6516, 60.9775], [10.6517, 60.9772], [10.6519, 60.977], [10.6519, 60.9769], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "21", "sub_div_center": [0.0222, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9369], [10.6704, 60.9169], [10.6643, 60.9169], [10.6644, 60.9169], [10.6645, 60.917], [10.6646, 60.9171], [10.6647, 60.9171], [10.6647, 60.9172], [10.6647, 60.9172], [10.6649, 60.9173], [10.665, 60.9174], [10.6651, 60.9175], [10.6651, 60.9176], [10.6651, 60.9177], [10.6651, 60.9178], [10.6651, 60.9178], [10.6653, 60.918], [10.6656, 60.9181], [10.6656, 60.9181], [10.6656, 60.9181], [10.6655, 60.9182], [10.6653, 60.9183], [10.6652, 60.9184], [10.6652, 60.9184], [10.6651, 60.9184], [10.6649, 60.9184], [10.6647, 60.9184], [10.6646, 60.9183], [10.6643, 60.9183], [10.6642, 60.9184], [10.6639, 60.9184], [10.6636, 60.9185], [10.6633, 60.9185], [10.6632, 60.9185], [10.6631, 60.9186], [10.6629, 60.9187], [10.6627, 60.9189], [10.6619, 60.9196], [10.6615, 60.9199], [10.6614, 60.9201], [10.6611, 60.9202], [10.661, 60.9203], [10.6607, 60.9203], [10.6603, 60.9205], [10.6602, 60.9206], [10.6594, 60.9213], [10.6593, 60.9214], [10.6592, 60.9216], [10.6592, 60.9217], [10.6592, 60.9218], [10.6592, 60.9218], [10.6593, 60.9219], [10.6594, 60.922], [10.6596, 60.9221], [10.6597, 60.9221], [10.6599, 60.9222], [10.66, 60.9222], [10.66, 60.9222], [10.6603, 60.9224], [10.6604, 60.9225], [10.6605, 60.9227], [10.6606, 60.9227], [10.6606, 60.9228], [10.6605, 60.9229], [10.6604, 60.9229], [10.6602, 60.923], [10.6601, 60.923], [10.66, 60.9231], [10.6598, 60.9231], [10.6598, 60.9231], [10.6596, 60.923], [10.6595, 60.923], [10.6592, 60.923], [10.6591, 60.9231], [10.6589, 60.9232], [10.6588, 60.9232], [10.6585, 60.9234], [10.6584, 60.9235], [10.6583, 60.9236], [10.6583, 60.9237], [10.6583, 60.9237], [10.6584, 60.9237], [10.6584, 60.9238], [10.6586, 60.9238], [10.6587, 60.9238], [10.6589, 60.924], [10.6589, 60.9241], [10.6588, 60.9241], [10.6585, 60.9242], [10.6584, 60.9243], [10.6582, 60.9243], [10.658, 60.9244], [10.6578, 60.9244], [10.6578, 60.9245], [10.6575, 60.9246], [10.6573, 60.9247], [10.6569, 60.9249], [10.6568, 60.9249], [10.6566, 60.9251], [10.6565, 60.9254], [10.6563, 60.9257], [10.6561, 60.926], [10.6557, 60.9269], [10.6555, 60.9272], [10.6556, 60.9272], [10.6556, 60.9273], [10.6556, 60.9273], [10.6556, 60.9274], [10.6557, 60.9274], [10.6558, 60.9274], [10.6561, 60.9274], [10.6562, 60.9275], [10.6562, 60.9276], [10.6561, 60.9277], [10.656, 60.9278], [10.6559, 60.928], [10.6559, 60.9283], [10.6559, 60.9286], [10.6559, 60.9288], [10.6559, 60.9289], [10.656, 60.9289], [10.6561, 60.929], [10.6562, 60.929], [10.6563, 60.929], [10.6566, 60.929], [10.6573, 60.9289], [10.6578, 60.9289], [10.6582, 60.9289], [10.6582, 60.9289], [10.6582, 60.929], [10.6582, 60.929], [10.6581, 60.9291], [10.6581, 60.9291], [10.6578, 60.9291], [10.6575, 60.9292], [10.6571, 60.9292], [10.6568, 60.9292], [10.6565, 60.9293], [10.6558, 60.9295], [10.6557, 60.9295], [10.6556, 60.9295], [10.6555, 60.9296], [10.6554, 60.9297], [10.6552, 60.9299], [10.655, 60.9302], [10.6549, 60.9303], [10.6548, 60.9305], [10.6547, 60.9308], [10.6546, 60.9311], [10.6545, 60.9314], [10.6543, 60.9317], [10.654, 60.9324], [10.654, 60.9327], [10.6539, 60.9328], [10.6539, 60.9328], [10.6539, 60.933], [10.654, 60.933], [10.6541, 60.9331], [10.6543, 60.9332], [10.6543, 60.9333], [10.6543, 60.9334], [10.6542, 60.9335], [10.6541, 60.9336], [10.654, 60.9337], [10.6534, 60.934], [10.6529, 60.9342], [10.6523, 60.9344], [10.6519, 60.9345], [10.6516, 60.9347], [10.6511, 60.9349], [10.6507, 60.9352], [10.6498, 60.9357], [10.6494, 60.936], [10.649, 60.9363], [10.6483, 60.9368], [10.6482, 60.9369], [10.6704, 60.9369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "22", "sub_div_center": [0.008, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9169], [10.6704, 60.8969], [10.6644, 60.8969], [10.6644, 60.8969], [10.6643, 60.8969], [10.6642, 60.897], [10.664, 60.8971], [10.664, 60.8971], [10.6639, 60.8972], [10.6638, 60.8972], [10.6637, 60.8973], [10.6636, 60.8973], [10.6635, 60.8974], [10.6634, 60.8974], [10.6634, 60.8975], [10.6633, 60.8976], [10.6633, 60.8976], [10.6633, 60.8978], [10.6632, 60.8978], [10.6632, 60.8979], [10.6631, 60.8981], [10.6631, 60.8982], [10.6631, 60.8984], [10.6631, 60.8987], [10.6631, 60.8991], [10.6631, 60.8992], [10.6632, 60.8994], [10.6632, 60.8995], [10.6633, 60.8996], [10.6634, 60.8998], [10.6635, 60.8998], [10.6636, 60.8999], [10.6636, 60.9], [10.6636, 60.9001], [10.6637, 60.9002], [10.664, 60.9005], [10.6643, 60.9007], [10.6644, 60.9008], [10.6649, 60.901], [10.6653, 60.9012], [10.6653, 60.9012], [10.6653, 60.9013], [10.6654, 60.9014], [10.6655, 60.9015], [10.6658, 60.9016], [10.6658, 60.9017], [10.6659, 60.9018], [10.6658, 60.902], [10.6658, 60.9021], [10.6657, 60.9022], [10.6654, 60.9025], [10.6653, 60.9026], [10.6652, 60.9027], [10.6651, 60.9028], [10.6651, 60.9028], [10.6651, 60.9029], [10.6651, 60.9031], [10.6651, 60.9031], [10.6652, 60.9032], [10.6654, 60.9033], [10.6655, 60.9034], [10.6656, 60.9035], [10.6656, 60.9035], [10.6655, 60.9036], [10.6654, 60.9037], [10.6654, 60.9037], [10.6654, 60.9038], [10.6654, 60.9039], [10.6654, 60.9039], [10.6652, 60.904], [10.6651, 60.9041], [10.6649, 60.9041], [10.6648, 60.9042], [10.6647, 60.9045], [10.6646, 60.9046], [10.6646, 60.9048], [10.6648, 60.905], [10.6648, 60.9051], [10.6646, 60.9053], [10.6645, 60.9053], [10.6645, 60.9053], [10.6644, 60.9054], [10.6643, 60.9056], [10.6642, 60.9057], [10.6641, 60.9058], [10.664, 60.9058], [10.664, 60.9059], [10.6639, 60.906], [10.6639, 60.9062], [10.664, 60.9063], [10.6639, 60.9064], [10.664, 60.9065], [10.6639, 60.9065], [10.6638, 60.9066], [10.6636, 60.9068], [10.6636, 60.9068], [10.6636, 60.907], [10.6638, 60.9071], [10.6638, 60.9072], [10.6638, 60.9072], [10.6637, 60.9073], [10.6635, 60.9074], [10.6635, 60.9075], [10.6635, 60.9077], [10.6635, 60.9081], [10.6635, 60.9082], [10.6636, 60.9083], [10.6638, 60.9087], [10.6638, 60.9088], [10.6638, 60.9089], [10.664, 60.909], [10.6641, 60.9091], [10.6641, 60.9091], [10.6642, 60.9091], [10.6645, 60.9092], [10.6646, 60.9092], [10.6646, 60.9092], [10.6646, 60.9093], [10.6646, 60.9093], [10.6644, 60.9092], [10.6643, 60.9092], [10.6641, 60.9092], [10.6641, 60.9093], [10.6641, 60.9094], [10.6642, 60.9095], [10.6642, 60.9096], [10.6642, 60.9097], [10.664, 60.9098], [10.664, 60.91], [10.664, 60.91], [10.664, 60.9102], [10.664, 60.9103], [10.6639, 60.9103], [10.6639, 60.9104], [10.6639, 60.9105], [10.6638, 60.9105], [10.6638, 60.9106], [10.6639, 60.9107], [10.6639, 60.9108], [10.6638, 60.9109], [10.6637, 60.911], [10.6631, 60.9113], [10.6629, 60.9113], [10.6628, 60.9114], [10.6627, 60.9115], [10.6626, 60.9115], [10.6625, 60.9116], [10.6625, 60.9117], [10.6624, 60.9118], [10.6624, 60.9119], [10.6625, 60.912], [10.6625, 60.9121], [10.6626, 60.9122], [10.6628, 60.9123], [10.663, 60.9124], [10.6631, 60.9125], [10.6633, 60.9125], [10.6634, 60.9125], [10.6637, 60.9125], [10.6639, 60.9125], [10.664, 60.9126], [10.6639, 60.9126], [10.6637, 60.9126], [10.6636, 60.9126], [10.6635, 60.9127], [10.6634, 60.9127], [10.6635, 60.9127], [10.6635, 60.9127], [10.6636, 60.9127], [10.6643, 60.9126], [10.6646, 60.9126], [10.6647, 60.9125], [10.6648, 60.9125], [10.6648, 60.9124], [10.6648, 60.9123], [10.6648, 60.9123], [10.6649, 60.9123], [10.6649, 60.9123], [10.665, 60.9123], [10.665, 60.9124], [10.6649, 60.9125], [10.6649, 60.9125], [10.6647, 60.9126], [10.6645, 60.9126], [10.6639, 60.9127], [10.6639, 60.9128], [10.6639, 60.9128], [10.664, 60.9128], [10.6642, 60.9129], [10.6643, 60.9129], [10.6643, 60.913], [10.6643, 60.913], [10.6643, 60.9131], [10.664, 60.9132], [10.6639, 60.9133], [10.664, 60.9133], [10.664, 60.9133], [10.6641, 60.9133], [10.6643, 60.9133], [10.6644, 60.9132], [10.6645, 60.9132], [10.6646, 60.9133], [10.6646, 60.9133], [10.6646, 60.9134], [10.6644, 60.9138], [10.6644, 60.9142], [10.6643, 60.9145], [10.6642, 60.9146], [10.6642, 60.9149], [10.6641, 60.9151], [10.6639, 60.9152], [10.6639, 60.9153], [10.6637, 60.9154], [10.6637, 60.9154], [10.6636, 60.9156], [10.6635, 60.9157], [10.6633, 60.9158], [10.6631, 60.9159], [10.6631, 60.9162], [10.6632, 60.9163], [10.6633, 60.9164], [10.6633, 60.9165], [10.6634, 60.9165], [10.6637, 60.9166], [10.6641, 60.9167], [10.6643, 60.9168], [10.6643, 60.9169], [10.6704, 60.9169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "23", "sub_div_center": [0.006, 0.0047]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.6704, 60.8922], [10.6704, 60.8922], [10.6702, 60.8922], [10.6701, 60.8922], [10.6699, 60.8922], [10.6698, 60.8923], [10.6696, 60.8923], [10.6696, 60.8923], [10.6695, 60.8924], [10.6694, 60.8926], [10.6695, 60.8927], [10.6694, 60.8929], [10.6694, 60.8931], [10.6694, 60.8932], [10.6695, 60.8932], [10.6695, 60.8933], [10.6695, 60.8933], [10.6693, 60.8934], [10.6691, 60.8935], [10.6689, 60.8936], [10.6689, 60.8937], [10.6688, 60.8937], [10.6686, 60.8938], [10.6685, 60.8938], [10.6682, 60.8939], [10.668, 60.894], [10.6675, 60.8941], [10.6675, 60.8941], [10.6674, 60.8941], [10.6672, 60.8942], [10.6667, 60.8945], [10.6663, 60.8948], [10.6662, 60.8949], [10.6662, 60.895], [10.6661, 60.8953], [10.666, 60.8954], [10.666, 60.8954], [10.666, 60.8954], [10.6659, 60.8954], [10.6657, 60.8955], [10.6657, 60.8955], [10.6656, 60.8956], [10.6655, 60.8957], [10.6654, 60.8957], [10.6654, 60.8958], [10.6653, 60.896], [10.6652, 60.8961], [10.665, 60.8962], [10.665, 60.8962], [10.6649, 60.8963], [10.6648, 60.8963], [10.6647, 60.8965], [10.6646, 60.8966], [10.6645, 60.8966], [10.6645, 60.8967], [10.6645, 60.8968], [10.6645, 60.8968], [10.6644, 60.8969], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "24", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.7104, 60.8969], [10.7104, 60.8769], [10.695, 60.8769], [10.695, 60.8769], [10.6948, 60.8771], [10.6948, 60.8773], [10.6947, 60.8774], [10.6946, 60.8775], [10.6945, 60.8776], [10.6944, 60.8778], [10.6944, 60.8778], [10.6943, 60.8778], [10.6943, 60.8779], [10.6943, 60.8779], [10.6943, 60.8779], [10.6944, 60.878], [10.6944, 60.878], [10.6943, 60.8782], [10.6943, 60.8782], [10.6943, 60.8782], [10.6943, 60.8783], [10.6943, 60.8783], [10.6944, 60.8783], [10.6945, 60.8784], [10.6946, 60.8784], [10.6946, 60.8784], [10.6946, 60.8785], [10.6944, 60.8785], [10.6941, 60.8785], [10.6939, 60.8785], [10.6937, 60.8786], [10.6935, 60.8786], [10.6934, 60.8787], [10.6934, 60.8787], [10.6933, 60.8788], [10.6933, 60.8788], [10.6932, 60.8789], [10.6932, 60.8789], [10.693, 60.8789], [10.693, 60.8789], [10.6927, 60.8791], [10.6927, 60.8792], [10.6927, 60.8793], [10.6925, 60.8794], [10.6924, 60.8795], [10.6923, 60.8796], [10.6922, 60.8797], [10.6922, 60.8797], [10.6922, 60.8798], [10.6922, 60.8799], [10.6922, 60.88], [10.6921, 60.8802], [10.6921, 60.8803], [10.692, 60.8804], [10.692, 60.8806], [10.692, 60.8807], [10.692, 60.8808], [10.6918, 60.8809], [10.6917, 60.881], [10.6916, 60.8811], [10.6915, 60.8813], [10.6912, 60.8815], [10.691, 60.8817], [10.6908, 60.8818], [10.6906, 60.8819], [10.6905, 60.882], [10.6904, 60.882], [10.6903, 60.8821], [10.69, 60.8822], [10.69, 60.8822], [10.69, 60.8823], [10.6897, 60.8823], [10.6896, 60.8823], [10.6896, 60.8823], [10.6897, 60.8824], [10.6897, 60.8824], [10.6897, 60.8824], [10.6895, 60.8824], [10.6894, 60.8824], [10.6893, 60.8825], [10.6892, 60.8825], [10.6892, 60.8826], [10.6892, 60.8826], [10.6891, 60.8826], [10.6889, 60.8826], [10.6888, 60.8827], [10.6885, 60.8828], [10.6884, 60.8828], [10.6879, 60.883], [10.6877, 60.8831], [10.6876, 60.8831], [10.6874, 60.8832], [10.6871, 60.8833], [10.6869, 60.8834], [10.6866, 60.8835], [10.6864, 60.8836], [10.6863, 60.8836], [10.686, 60.8837], [10.686, 60.8837], [10.686, 60.8838], [10.686, 60.8838], [10.6862, 60.8839], [10.6866, 60.8839], [10.6866, 60.8839], [10.6865, 60.8839], [10.6864, 60.8839], [10.6861, 60.8839], [10.6858, 60.8839], [10.6857, 60.884], [10.6855, 60.884], [10.6854, 60.884], [10.6852, 60.8842], [10.6851, 60.8842], [10.6849, 60.8843], [10.6847, 60.8843], [10.6845, 60.8844], [10.6843, 60.8845], [10.6839, 60.8846], [10.6837, 60.8846], [10.6834, 60.8846], [10.6831, 60.8847], [10.6829, 60.8847], [10.6825, 60.8847], [10.6819, 60.8849], [10.6815, 60.885], [10.6814, 60.8851], [10.6813, 60.8851], [10.6813, 60.8852], [10.6813, 60.8856], [10.6813, 60.8857], [10.6814, 60.8857], [10.6816, 60.8858], [10.6817, 60.8859], [10.6817, 60.8859], [10.6817, 60.886], [10.6817, 60.8861], [10.6815, 60.8863], [10.6814, 60.8863], [10.681, 60.8866], [10.6809, 60.8866], [10.6808, 60.8866], [10.6806, 60.8866], [10.6804, 60.8867], [10.6799, 60.8867], [10.6794, 60.8868], [10.679, 60.8869], [10.6789, 60.8869], [10.6786, 60.8869], [10.6783, 60.887], [10.6779, 60.8871], [10.6778, 60.8871], [10.6777, 60.8871], [10.6774, 60.8871], [10.677, 60.8871], [10.6766, 60.8872], [10.6764, 60.8872], [10.6762, 60.8872], [10.6753, 60.8871], [10.6752, 60.8871], [10.6752, 60.8872], [10.6751, 60.8873], [10.6757, 60.8874], [10.6764, 60.8874], [10.6768, 60.8875], [10.6771, 60.8876], [10.6773, 60.8876], [10.6774, 60.8877], [10.6775, 60.8877], [10.6775, 60.8878], [10.6775, 60.8879], [10.6774, 60.888], [10.6774, 60.8882], [10.6774, 60.8883], [10.6773, 60.8883], [10.6772, 60.8884], [10.6769, 60.8884], [10.6766, 60.8884], [10.6765, 60.8884], [10.6763, 60.8885], [10.6763, 60.8885], [10.6763, 60.8886], [10.6765, 60.8888], [10.6766, 60.8888], [10.6768, 60.8888], [10.6769, 60.8887], [10.6771, 60.8886], [10.6771, 60.8886], [10.6772, 60.8886], [10.6773, 60.8886], [10.6772, 60.8887], [10.6769, 60.8889], [10.6769, 60.889], [10.6769, 60.889], [10.677, 60.8891], [10.6771, 60.8891], [10.6772, 60.8891], [10.6774, 60.8891], [10.6775, 60.889], [10.6776, 60.8889], [10.6776, 60.8889], [10.6776, 60.8888], [10.6777, 60.8886], [10.6777, 60.8886], [10.6777, 60.8886], [10.6778, 60.8886], [10.6779, 60.8886], [10.6778, 60.8887], [10.6778, 60.8889], [10.6778, 60.8889], [10.6779, 60.889], [10.6779, 60.889], [10.678, 60.889], [10.6779, 60.889], [10.6776, 60.8891], [10.6771, 60.8892], [10.6771, 60.8893], [10.6771, 60.8893], [10.6772, 60.8894], [10.6772, 60.8895], [10.6773, 60.8896], [10.6773, 60.8896], [10.6774, 60.8896], [10.6775, 60.8896], [10.6777, 60.8896], [10.6781, 60.8894], [10.6781, 60.8894], [10.6782, 60.8894], [10.6782, 60.8895], [10.6779, 60.8896], [10.6776, 60.8897], [10.6772, 60.8898], [10.6772, 60.8898], [10.6771, 60.8898], [10.6771, 60.8898], [10.6768, 60.8895], [10.6767, 60.8894], [10.6767, 60.8892], [10.6767, 60.8892], [10.6764, 60.8892], [10.6763, 60.8892], [10.6763, 60.8893], [10.6763, 60.8894], [10.6763, 60.8894], [10.6764, 60.8895], [10.6768, 60.8897], [10.6769, 60.8898], [10.6769, 60.8899], [10.6769, 60.8901], [10.6769, 60.8901], [10.677, 60.8901], [10.6771, 60.8902], [10.6774, 60.8902], [10.6774, 60.8903], [10.6774, 60.8903], [10.6774, 60.8903], [10.6774, 60.8903], [10.6773, 60.8903], [10.6771, 60.8903], [10.6767, 60.8903], [10.6765, 60.8903], [10.6764, 60.8903], [10.6762, 60.8903], [10.6761, 60.8904], [10.676, 60.8904], [10.6758, 60.8905], [10.6756, 60.8906], [10.6755, 60.8907], [10.6754, 60.8907], [10.6755, 60.8908], [10.6755, 60.8908], [10.6756, 60.8909], [10.6756, 60.8909], [10.6756, 60.891], [10.6757, 60.891], [10.6758, 60.891], [10.6757, 60.8911], [10.6757, 60.8911], [10.6756, 60.8911], [10.6754, 60.8911], [10.675, 60.8911], [10.6749, 60.8911], [10.6747, 60.8911], [10.6747, 60.8911], [10.6745, 60.891], [10.6744, 60.891], [10.6742, 60.891], [10.6741, 60.891], [10.6739, 60.891], [10.6736, 60.8911], [10.6734, 60.8912], [10.6734, 60.8912], [10.6732, 60.8914], [10.6732, 60.8915], [10.6731, 60.8915], [10.6731, 60.8916], [10.673, 60.8916], [10.6728, 60.8916], [10.6728, 60.8917], [10.6728, 60.8918], [10.6727, 60.8918], [10.6727, 60.8918], [10.6726, 60.8919], [10.6724, 60.8919], [10.6723, 60.8919], [10.6721, 60.892], [10.6718, 60.892], [10.6715, 60.892], [10.6713, 60.892], [10.6707, 60.8921], [10.6704, 60.8922], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "25", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.6704, 60.9169], [10.696, 60.9169], [10.696, 60.9168], [10.6962, 60.9168], [10.6963, 60.9167], [10.6964, 60.9167], [10.6965, 60.9166], [10.6966, 60.9166], [10.6967, 60.9165], [10.6968, 60.9165], [10.697, 60.9164], [10.6969, 60.9164], [10.697, 60.9163], [10.6971, 60.9163], [10.6971, 60.9163], [10.6973, 60.9162], [10.6976, 60.9162], [10.6978, 60.9162], [10.698, 60.9161], [10.6981, 60.9162], [10.6981, 60.9162], [10.6983, 60.9162], [10.6985, 60.9161], [10.6988, 60.916], [10.699, 60.916], [10.6992, 60.9159], [10.6995, 60.9158], [10.6995, 60.9159], [10.6996, 60.9159], [10.6997, 60.9158], [10.7, 60.9158], [10.6999, 60.9157], [10.6999, 60.9157], [10.7, 60.9157], [10.7, 60.9157], [10.7001, 60.9156], [10.7001, 60.9156], [10.7003, 60.9156], [10.7003, 60.9156], [10.7004, 60.9156], [10.7004, 60.9156], [10.7005, 60.9156], [10.7005, 60.9156], [10.7006, 60.9157], [10.7006, 60.9157], [10.7006, 60.9157], [10.7008, 60.9157], [10.7008, 60.9156], [10.7009, 60.9155], [10.7009, 60.9155], [10.7009, 60.9155], [10.7009, 60.9155], [10.701, 60.9155], [10.701, 60.9155], [10.7011, 60.9154], [10.7012, 60.9154], [10.7013, 60.9153], [10.7015, 60.9152], [10.7018, 60.9152], [10.702, 60.9151], [10.7021, 60.9151], [10.7023, 60.915], [10.7024, 60.915], [10.7025, 60.915], [10.7027, 60.915], [10.7027, 60.915], [10.7028, 60.915], [10.7029, 60.915], [10.7031, 60.9149], [10.7032, 60.9149], [10.7033, 60.9149], [10.7034, 60.915], [10.7035, 60.915], [10.7035, 60.9151], [10.7035, 60.9151], [10.7034, 60.9151], [10.7033, 60.9151], [10.7028, 60.9152], [10.7028, 60.9151], [10.7027, 60.9152], [10.7027, 60.9152], [10.7028, 60.9153], [10.7028, 60.9154], [10.7029, 60.9154], [10.7029, 60.9154], [10.703, 60.9154], [10.703, 60.9155], [10.7029, 60.9155], [10.703, 60.9156], [10.7032, 60.9157], [10.7033, 60.9157], [10.7034, 60.9157], [10.7035, 60.9157], [10.7035, 60.9157], [10.7037, 60.9157], [10.7039, 60.9156], [10.704, 60.9156], [10.7041, 60.9156], [10.7042, 60.9156], [10.7043, 60.9156], [10.7045, 60.9155], [10.7047, 60.9155], [10.7048, 60.9155], [10.7049, 60.9155], [10.7051, 60.9154], [10.7052, 60.9154], [10.7053, 60.9154], [10.7053, 60.9154], [10.7053, 60.9153], [10.7053, 60.9153], [10.7053, 60.9153], [10.7054, 60.9153], [10.7054, 60.9153], [10.7055, 60.9152], [10.7056, 60.9152], [10.7057, 60.9152], [10.7057, 60.9152], [10.7058, 60.9153], [10.7059, 60.9153], [10.706, 60.9153], [10.7062, 60.9154], [10.7063, 60.9154], [10.7063, 60.9154], [10.7064, 60.9154], [10.7064, 60.9154], [10.7065, 60.9154], [10.7066, 60.9154], [10.7068, 60.9154], [10.7069, 60.9155], [10.7071, 60.9155], [10.7072, 60.9155], [10.7073, 60.9155], [10.7073, 60.9155], [10.7074, 60.9156], [10.7074, 60.9156], [10.7074, 60.9155], [10.7075, 60.9155], [10.7075, 60.9155], [10.7076, 60.9155], [10.7078, 60.9154], [10.708, 60.9153], [10.7081, 60.9152], [10.7081, 60.9152], [10.7081, 60.9151], [10.708, 60.915], [10.708, 60.915], [10.708, 60.9149], [10.7079, 60.9149], [10.7079, 60.9149], [10.708, 60.9149], [10.7079, 60.9148], [10.7079, 60.9147], [10.7079, 60.9147], [10.7078, 60.9146], [10.7077, 60.9145], [10.7075, 60.9145], [10.7074, 60.9145], [10.7073, 60.9145], [10.7072, 60.9144], [10.7071, 60.9143], [10.7069, 60.9143], [10.7069, 60.9142], [10.7068, 60.9142], [10.7068, 60.9142], [10.7068, 60.9142], [10.7067, 60.9141], [10.707, 60.9137], [10.7071, 60.9135], [10.7071, 60.9135], [10.7072, 60.9134], [10.7072, 60.9134], [10.7072, 60.9133], [10.7072, 60.9132], [10.7073, 60.9132], [10.7073, 60.9131], [10.7073, 60.913], [10.7072, 60.9129], [10.7071, 60.9128], [10.7071, 60.9127], [10.707, 60.9127], [10.7068, 60.9126], [10.7066, 60.9126], [10.7065, 60.9126], [10.7063, 60.9127], [10.7062, 60.9127], [10.7062, 60.9127], [10.7062, 60.9127], [10.706, 60.9128], [10.7059, 60.9127], [10.7058, 60.9127], [10.706, 60.9126], [10.706, 60.9126], [10.7059, 60.9125], [10.7058, 60.9124], [10.7058, 60.9124], [10.7058, 60.9123], [10.7057, 60.9123], [10.7055, 60.9122], [10.7049, 60.9121], [10.7046, 60.912], [10.7045, 60.9119], [10.7043, 60.9119], [10.7042, 60.9118], [10.704, 60.9118], [10.7038, 60.9118], [10.7036, 60.9118], [10.7034, 60.9118], [10.7034, 60.9118], [10.7032, 60.9118], [10.703, 60.9118], [10.7027, 60.9118], [10.7027, 60.9118], [10.7026, 60.9118], [10.7025, 60.9118], [10.7024, 60.9117], [10.7023, 60.9117], [10.7022, 60.9118], [10.7022, 60.9117], [10.7021, 60.9117], [10.7021, 60.9117], [10.702, 60.9118], [10.702, 60.9118], [10.7019, 60.9118], [10.7018, 60.9119], [10.7018, 60.9119], [10.7018, 60.912], [10.7017, 60.912], [10.7017, 60.9121], [10.7016, 60.9121], [10.7016, 60.9121], [10.7015, 60.9122], [10.7015, 60.9122], [10.7014, 60.9122], [10.7014, 60.9123], [10.7014, 60.9123], [10.7013, 60.9124], [10.7013, 60.9124], [10.7013, 60.9125], [10.7013, 60.9125], [10.7013, 60.9125], [10.7012, 60.9125], [10.7012, 60.9126], [10.701, 60.9126], [10.7007, 60.9126], [10.7004, 60.9127], [10.7003, 60.9128], [10.7001, 60.9128], [10.7001, 60.9128], [10.7, 60.9128], [10.6999, 60.9128], [10.6997, 60.9127], [10.6996, 60.9127], [10.6995, 60.9127], [10.6995, 60.9127], [10.6993, 60.9127], [10.6992, 60.9127], [10.6989, 60.9126], [10.6986, 60.9127], [10.6985, 60.9127], [10.6983, 60.9127], [10.6982, 60.9127], [10.698, 60.9127], [10.6979, 60.9126], [10.6977, 60.9126], [10.6976, 60.9126], [10.6974, 60.9127], [10.6974, 60.9127], [10.6973, 60.9127], [10.6973, 60.9127], [10.6969, 60.9126], [10.6967, 60.9126], [10.6966, 60.9126], [10.6966, 60.9127], [10.6965, 60.9127], [10.6964, 60.9127], [10.6964, 60.9127], [10.6963, 60.9127], [10.6962, 60.9127], [10.6962, 60.9126], [10.6962, 60.9126], [10.6961, 60.9126], [10.6961, 60.9126], [10.6961, 60.9126], [10.696, 60.9126], [10.6959, 60.9126], [10.6959, 60.9126], [10.6958, 60.9126], [10.6958, 60.9126], [10.6958, 60.9126], [10.6957, 60.9126], [10.6957, 60.9126], [10.6957, 60.9125], [10.6957, 60.9125], [10.6957, 60.9125], [10.6957, 60.9125], [10.6956, 60.9124], [10.6955, 60.9124], [10.6955, 60.9124], [10.6955, 60.9124], [10.6954, 60.9124], [10.6954, 60.9124], [10.6954, 60.9125], [10.6954, 60.9126], [10.6953, 60.9126], [10.6952, 60.9126], [10.6951, 60.9126], [10.6949, 60.9125], [10.6949, 60.9125], [10.6948, 60.9125], [10.6948, 60.9125], [10.6948, 60.9125], [10.6947, 60.9125], [10.6946, 60.9125], [10.6946, 60.9125], [10.6945, 60.9125], [10.6945, 60.9125], [10.6943, 60.9124], [10.6943, 60.9124], [10.6942, 60.9124], [10.6942, 60.9124], [10.6942, 60.9124], [10.6941, 60.9124], [10.6942, 60.9123], [10.6941, 60.9123], [10.6941, 60.9123], [10.6941, 60.9123], [10.694, 60.9123], [10.694, 60.9122], [10.694, 60.9122], [10.694, 60.9122], [10.694, 60.9122], [10.6939, 60.9122], [10.6939, 60.9121], [10.6939, 60.9121], [10.6939, 60.9121], [10.6939, 60.9121], [10.6938, 60.9121], [10.6938, 60.912], [10.6937, 60.912], [10.6937, 60.9121], [10.6937, 60.9121], [10.6936, 60.9121], [10.6936, 60.912], [10.6936, 60.912], [10.6936, 60.912], [10.6935, 60.9119], [10.6935, 60.9119], [10.6935, 60.9119], [10.6934, 60.9118], [10.6934, 60.9118], [10.6934, 60.9118], [10.6934, 60.9118], [10.6933, 60.9117], [10.6933, 60.9117], [10.6933, 60.9117], [10.6933, 60.9117], [10.6934, 60.9117], [10.6934, 60.9117], [10.6934, 60.9116], [10.6934, 60.9116], [10.6933, 60.9116], [10.6933, 60.9116], [10.6931, 60.9115], [10.693, 60.9115], [10.693, 60.9115], [10.6929, 60.9115], [10.6929, 60.9115], [10.6927, 60.9115], [10.6927, 60.9115], [10.6927, 60.9114], [10.6926, 60.9114], [10.6926, 60.9114], [10.6926, 60.9114], [10.6925, 60.9113], [10.6925, 60.9113], [10.6924, 60.9114], [10.6924, 60.9114], [10.6924, 60.9114], [10.6924, 60.9114], [10.6923, 60.9114], [10.6923, 60.9114], [10.6921, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.6921, 60.9113], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.692, 60.9112], [10.692, 60.9112], [10.692, 60.9112], [10.6922, 60.9112], [10.6922, 60.9112], [10.6923, 60.9112], [10.6923, 60.9112], [10.6923, 60.9111], [10.6924, 60.9111], [10.6925, 60.9111], [10.6926, 60.911], [10.6926, 60.911], [10.6926, 60.9109], [10.6926, 60.9109], [10.6926, 60.9109], [10.6927, 60.9108], [10.6927, 60.9108], [10.6927, 60.9107], [10.6927, 60.9107], [10.6927, 60.9106], [10.6926, 60.9106], [10.6926, 60.9106], [10.6927, 60.9106], [10.6927, 60.9105], [10.6927, 60.9104], [10.6928, 60.9104], [10.6928, 60.9104], [10.6929, 60.9104], [10.6929, 60.9104], [10.6929, 60.9104], [10.693, 60.9104], [10.6932, 60.9103], [10.6932, 60.9103], [10.6933, 60.9103], [10.6934, 60.9103], [10.6934, 60.9102], [10.6935, 60.9102], [10.6934, 60.9102], [10.6934, 60.9101], [10.6936, 60.9101], [10.6937, 60.9101], [10.6938, 60.9101], [10.6938, 60.9102], [10.6938, 60.9102], [10.6939, 60.9102], [10.6941, 60.9102], [10.6941, 60.9101], [10.6942, 60.9101], [10.6942, 60.9101], [10.6943, 60.9101], [10.6944, 60.9101], [10.6945, 60.9101], [10.6945, 60.9101], [10.6947, 60.9102], [10.6949, 60.9102], [10.695, 60.9102], [10.6951, 60.9101], [10.6954, 60.9101], [10.6956, 60.91], [10.6957, 60.91], [10.6957, 60.9099], [10.6958, 60.9098], [10.6959, 60.9098], [10.6959, 60.9097], [10.696, 60.9095], [10.696, 60.9094], [10.696, 60.9094], [10.6961, 60.9093], [10.6962, 60.9091], [10.6963, 60.9091], [10.6964, 60.909], [10.6966, 60.9089], [10.6967, 60.9089], [10.6968, 60.9089], [10.6969, 60.9089], [10.6969, 60.9089], [10.6969, 60.9088], [10.697, 60.9088], [10.697, 60.9088], [10.697, 60.9088], [10.6971, 60.9087], [10.6972, 60.9086], [10.6973, 60.9086], [10.6973, 60.9086], [10.6974, 60.9086], [10.6974, 60.9086], [10.6975, 60.9086], [10.6975, 60.9086], [10.6976, 60.9086], [10.6977, 60.9087], [10.6978, 60.9087], [10.6979, 60.9087], [10.698, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6982, 60.9087], [10.6982, 60.9087], [10.6981, 60.9087], [10.6981, 60.9086], [10.6981, 60.9086], [10.6981, 60.9086], [10.6981, 60.9085], [10.6982, 60.9085], [10.6982, 60.9085], [10.6982, 60.9085], [10.6982, 60.9084], [10.6981, 60.9084], [10.6979, 60.9083], [10.6978, 60.9083], [10.6978, 60.9083], [10.6977, 60.9082], [10.6976, 60.9081], [10.6975, 60.9079], [10.6974, 60.9079], [10.6973, 60.9078], [10.6972, 60.9078], [10.697, 60.9078], [10.6969, 60.9078], [10.6968, 60.9079], [10.6967, 60.9079], [10.6966, 60.9079], [10.6966, 60.9079], [10.6965, 60.9079], [10.6965, 60.9079], [10.6964, 60.9079], [10.6963, 60.9079], [10.6961, 60.9079], [10.696, 60.9079], [10.696, 60.908], [10.6959, 60.908], [10.6958, 60.908], [10.6956, 60.908], [10.6954, 60.908], [10.6951, 60.9081], [10.6949, 60.9081], [10.6947, 60.9081], [10.6945, 60.9081], [10.6944, 60.9082], [10.6943, 60.9082], [10.6942, 60.9082], [10.6942, 60.9082], [10.6941, 60.9083], [10.694, 60.9083], [10.694, 60.9084], [10.6939, 60.9084], [10.6938, 60.9084], [10.6938, 60.9084], [10.6937, 60.9083], [10.6937, 60.9083], [10.6936, 60.9083], [10.6935, 60.9083], [10.6934, 60.9083], [10.6933, 60.9083], [10.6932, 60.9082], [10.6931, 60.9082], [10.693, 60.9082], [10.693, 60.9081], [10.6931, 60.9081], [10.6931, 60.908], [10.6931, 60.908], [10.693, 60.9079], [10.6928, 60.9079], [10.6927, 60.9078], [10.6926, 60.9078], [10.6926, 60.9078], [10.6926, 60.9077], [10.6926, 60.9077], [10.6926, 60.9077], [10.6925, 60.9077], [10.6925, 60.9077], [10.6924, 60.9077], [10.6924, 60.9077], [10.6924, 60.9076], [10.6923, 60.9076], [10.6924, 60.9076], [10.6923, 60.9075], [10.6923, 60.9075], [10.6924, 60.9075], [10.6924, 60.9075], [10.6924, 60.9074], [10.6925, 60.9074], [10.6925, 60.9074], [10.6926, 60.9073], [10.6927, 60.9073], [10.6929, 60.9073], [10.693, 60.9073], [10.6931, 60.9073], [10.6933, 60.9073], [10.6936, 60.9074], [10.6937, 60.9073], [10.6937, 60.9073], [10.6938, 60.9073], [10.6939, 60.9073], [10.6941, 60.9072], [10.6942, 60.9072], [10.6945, 60.9072], [10.6948, 60.9071], [10.6949, 60.9071], [10.695, 60.9071], [10.695, 60.9071], [10.6951, 60.9071], [10.6953, 60.907], [10.6953, 60.907], [10.6953, 60.907], [10.6954, 60.9069], [10.6954, 60.9068], [10.6954, 60.9067], [10.6954, 60.9067], [10.6955, 60.9066], [10.6954, 60.9066], [10.6954, 60.9065], [10.6955, 60.9065], [10.6956, 60.9064], [10.6956, 60.9063], [10.6956, 60.9062], [10.6957, 60.9061], [10.6957, 60.906], [10.6957, 60.906], [10.6957, 60.9059], [10.6958, 60.9059], [10.6958, 60.9058], [10.6958, 60.9058], [10.6959, 60.9057], [10.6959, 60.9057], [10.696, 60.9057], [10.6961, 60.9056], [10.6964, 60.9056], [10.6965, 60.9055], [10.6967, 60.9055], [10.6968, 60.9055], [10.6971, 60.9054], [10.6972, 60.9054], [10.6973, 60.9054], [10.6974, 60.9054], [10.6975, 60.9054], [10.6977, 60.9055], [10.6978, 60.9055], [10.698, 60.9056], [10.6981, 60.9056], [10.6983, 60.9057], [10.6984, 60.9057], [10.6985, 60.9057], [10.6985, 60.9058], [10.6987, 60.9058], [10.6988, 60.9059], [10.6988, 60.9059], [10.6988, 60.906], [10.6988, 60.906], [10.6988, 60.9061], [10.6989, 60.9061], [10.699, 60.9062], [10.699, 60.9062], [10.6991, 60.9062], [10.6992, 60.9063], [10.6993, 60.9064], [10.6993, 60.9064], [10.6994, 60.9064], [10.6995, 60.9065], [10.6996, 60.9066], [10.6996, 60.9066], [10.6997, 60.9067], [10.6998, 60.9067], [10.6998, 60.9068], [10.6999, 60.9068], [10.7, 60.9067], [10.7, 60.9067], [10.7001, 60.9067], [10.7002, 60.9066], [10.7002, 60.9066], [10.7001, 60.9065], [10.7001, 60.9065], [10.7002, 60.9065], [10.7003, 60.9064], [10.7003, 60.9064], [10.7003, 60.9064], [10.7004, 60.9064], [10.7004, 60.9064], [10.7006, 60.9062], [10.7007, 60.9063], [10.7009, 60.9062], [10.701, 60.9062], [10.7011, 60.9062], [10.7012, 60.9061], [10.7013, 60.906], [10.7013, 60.906], [10.7014, 60.9059], [10.7017, 60.9059], [10.7018, 60.9058], [10.7019, 60.9058], [10.7021, 60.9058], [10.7022, 60.9058], [10.7024, 60.9059], [10.7025, 60.9059], [10.7025, 60.9059], [10.7028, 60.906], [10.7029, 60.906], [10.7031, 60.9061], [10.7032, 60.9062], [10.7034, 60.9062], [10.7035, 60.9063], [10.7035, 60.9063], [10.7036, 60.9063], [10.7036, 60.9063], [10.7038, 60.9064], [10.7039, 60.9064], [10.704, 60.9064], [10.7041, 60.9064], [10.7043, 60.9064], [10.7044, 60.9064], [10.705, 60.9065], [10.7054, 60.9065], [10.7057, 60.9065], [10.7062, 60.9065], [10.7064, 60.9065], [10.7065, 60.9065], [10.7066, 60.9065], [10.7068, 60.9065], [10.7069, 60.9065], [10.7073, 60.9064], [10.7075, 60.9063], [10.7075, 60.9063], [10.7076, 60.9063], [10.7076, 60.9063], [10.7077, 60.9063], [10.7077, 60.9063], [10.7078, 60.9063], [10.7079, 60.9062], [10.708, 60.9062], [10.7081, 60.9062], [10.7081, 60.9062], [10.7082, 60.9062], [10.7082, 60.9062], [10.7084, 60.9062], [10.7085, 60.9061], [10.7086, 60.9061], [10.7087, 60.9061], [10.7088, 60.906], [10.7088, 60.906], [10.709, 60.906], [10.7091, 60.906], [10.7091, 60.906], [10.7091, 60.9059], [10.709, 60.9059], [10.7089, 60.9059], [10.7089, 60.9059], [10.7088, 60.9058], [10.7088, 60.9058], [10.7088, 60.9058], [10.7088, 60.9058], [10.7085, 60.9057], [10.7084, 60.9056], [10.7083, 60.9056], [10.7083, 60.9056], [10.7082, 60.9056], [10.7082, 60.9055], [10.7082, 60.9055], [10.7082, 60.9054], [10.7082, 60.9053], [10.7082, 60.9053], [10.7083, 60.9052], [10.7085, 60.9051], [10.7087, 60.9049], [10.7088, 60.9048], [10.7088, 60.9048], [10.7089, 60.9047], [10.709, 60.9047], [10.709, 60.9046], [10.7091, 60.9045], [10.7091, 60.9045], [10.7092, 60.9044], [10.7093, 60.9043], [10.7093, 60.9043], [10.7093, 60.9043], [10.7094, 60.9042], [10.7096, 60.9042], [10.7103, 60.9039], [10.7104, 60.9039], [10.7104, 60.8969], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "26", "sub_div_center": [0.0256, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9169], [10.6704, 60.9369], [10.6781, 60.9369], [10.6781, 60.9368], [10.6782, 60.9367], [10.6784, 60.9366], [10.6784, 60.9366], [10.6785, 60.9366], [10.6786, 60.9365], [10.6786, 60.9364], [10.6787, 60.9364], [10.6789, 60.9363], [10.679, 60.9362], [10.6788, 60.9362], [10.6788, 60.9361], [10.6789, 60.9361], [10.679, 60.936], [10.679, 60.936], [10.679, 60.936], [10.6792, 60.936], [10.6792, 60.936], [10.6793, 60.936], [10.6795, 60.9359], [10.6796, 60.9358], [10.6796, 60.9357], [10.6796, 60.9357], [10.6793, 60.9356], [10.6791, 60.9355], [10.679, 60.9355], [10.679, 60.9354], [10.679, 60.9354], [10.6789, 60.9353], [10.679, 60.9353], [10.679, 60.9353], [10.6791, 60.9352], [10.6792, 60.9352], [10.6792, 60.9352], [10.6792, 60.9351], [10.6792, 60.9351], [10.6792, 60.9351], [10.6792, 60.935], [10.6792, 60.9349], [10.6793, 60.9349], [10.6793, 60.9349], [10.6794, 60.9349], [10.6794, 60.9349], [10.6795, 60.9349], [10.6795, 60.9349], [10.6796, 60.9348], [10.6796, 60.9348], [10.6795, 60.9348], [10.6796, 60.9347], [10.6798, 60.9347], [10.6798, 60.9347], [10.6799, 60.9347], [10.68, 60.9347], [10.6801, 60.9347], [10.6803, 60.9347], [10.6804, 60.9346], [10.6806, 60.9345], [10.6806, 60.9345], [10.6809, 60.9345], [10.681, 60.9344], [10.681, 60.9344], [10.6811, 60.9343], [10.6812, 60.9342], [10.6812, 60.9342], [10.6813, 60.9341], [10.6812, 60.934], [10.6813, 60.9338], [10.6812, 60.9337], [10.6811, 60.9334], [10.6811, 60.9333], [10.6811, 60.9332], [10.6812, 60.933], [10.6811, 60.9329], [10.6812, 60.9329], [10.6812, 60.9328], [10.6812, 60.9327], [10.6812, 60.9326], [10.6811, 60.9325], [10.6811, 60.9325], [10.681, 60.9324], [10.681, 60.9324], [10.6809, 60.9322], [10.681, 60.932], [10.6811, 60.9318], [10.6811, 60.9318], [10.6812, 60.9316], [10.6815, 60.9314], [10.6818, 60.9312], [10.6822, 60.931], [10.6823, 60.9309], [10.6824, 60.9308], [10.6824, 60.9307], [10.6823, 60.9306], [10.6822, 60.9305], [10.6818, 60.9303], [10.6817, 60.9303], [10.6815, 60.9303], [10.6815, 60.9303], [10.6815, 60.9302], [10.6815, 60.9301], [10.6815, 60.9301], [10.6816, 60.9301], [10.6817, 60.93], [10.6818, 60.93], [10.6818, 60.93], [10.6819, 60.9299], [10.682, 60.9299], [10.6821, 60.9299], [10.6825, 60.9296], [10.6826, 60.9296], [10.683, 60.9293], [10.6833, 60.9292], [10.6835, 60.9291], [10.6836, 60.929], [10.6838, 60.9289], [10.684, 60.9287], [10.684, 60.9287], [10.6841, 60.9286], [10.6843, 60.9286], [10.6845, 60.9285], [10.6844, 60.9283], [10.6843, 60.9282], [10.6842, 60.9281], [10.6841, 60.928], [10.684, 60.9279], [10.6838, 60.9279], [10.6838, 60.9278], [10.6839, 60.9278], [10.6839, 60.9277], [10.6839, 60.9276], [10.6839, 60.9275], [10.6839, 60.9275], [10.6838, 60.9274], [10.6839, 60.9273], [10.6838, 60.9273], [10.6838, 60.9271], [10.6838, 60.9271], [10.6836, 60.9269], [10.6835, 60.9269], [10.6835, 60.9268], [10.6835, 60.9267], [10.6835, 60.9267], [10.6835, 60.9266], [10.6835, 60.9265], [10.6836, 60.9265], [10.6836, 60.9264], [10.6836, 60.9263], [10.6838, 60.9262], [10.6839, 60.9262], [10.6841, 60.9262], [10.6844, 60.9261], [10.6846, 60.9261], [10.6847, 60.9261], [10.6849, 60.9261], [10.6851, 60.926], [10.6853, 60.9259], [10.6853, 60.9257], [10.6854, 60.9257], [10.6854, 60.9257], [10.6855, 60.9256], [10.6854, 60.9255], [10.6853, 60.9254], [10.6853, 60.9254], [10.6852, 60.9253], [10.6852, 60.9252], [10.6852, 60.9251], [10.6852, 60.9251], [10.6853, 60.9251], [10.6853, 60.925], [10.6853, 60.925], [10.6853, 60.9249], [10.6853, 60.9249], [10.6853, 60.9248], [10.6853, 60.9248], [10.6853, 60.9248], [10.6852, 60.9247], [10.6852, 60.9247], [10.6851, 60.9247], [10.685, 60.9246], [10.685, 60.9246], [10.6852, 60.9246], [10.6854, 60.9246], [10.6855, 60.9246], [10.6856, 60.9245], [10.6857, 60.9245], [10.6858, 60.9245], [10.6858, 60.9244], [10.6856, 60.9244], [10.6856, 60.9244], [10.6856, 60.9244], [10.6858, 60.9244], [10.6858, 60.9244], [10.6859, 60.9244], [10.686, 60.9244], [10.686, 60.9243], [10.686, 60.9243], [10.6861, 60.9243], [10.6861, 60.9243], [10.6862, 60.9243], [10.6861, 60.9243], [10.6863, 60.9242], [10.6863, 60.9242], [10.6863, 60.9242], [10.6864, 60.9242], [10.6865, 60.9241], [10.6865, 60.9241], [10.6866, 60.9241], [10.6866, 60.9241], [10.6866, 60.924], [10.6866, 60.924], [10.6866, 60.924], [10.6866, 60.924], [10.6867, 60.924], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9238], [10.6867, 60.9238], [10.6867, 60.9238], [10.6868, 60.9238], [10.6868, 60.9238], [10.6868, 60.9237], [10.6869, 60.9237], [10.6869, 60.9236], [10.687, 60.9235], [10.6871, 60.9234], [10.6871, 60.9233], [10.6871, 60.9232], [10.6872, 60.9232], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.923], [10.6873, 60.923], [10.6873, 60.923], [10.6874, 60.9229], [10.6875, 60.9228], [10.6876, 60.9227], [10.6877, 60.9226], [10.6878, 60.9225], [10.6878, 60.9225], [10.6879, 60.9224], [10.6879, 60.9224], [10.6879, 60.9224], [10.688, 60.9223], [10.688, 60.9223], [10.6881, 60.9224], [10.6881, 60.9224], [10.6882, 60.9224], [10.6882, 60.9224], [10.6881, 60.9224], [10.6876, 60.9229], [10.6875, 60.923], [10.6875, 60.923], [10.6875, 60.9231], [10.6876, 60.9231], [10.6878, 60.9232], [10.6879, 60.9232], [10.6883, 60.9233], [10.6883, 60.9233], [10.6883, 60.9233], [10.6887, 60.9233], [10.6889, 60.9233], [10.6889, 60.9233], [10.6895, 60.9233], [10.6896, 60.9233], [10.6896, 60.9233], [10.6896, 60.9233], [10.6897, 60.9233], [10.6898, 60.9233], [10.6899, 60.9233], [10.6903, 60.9231], [10.6903, 60.9231], [10.6904, 60.9231], [10.6905, 60.9231], [10.6905, 60.9231], [10.6905, 60.923], [10.6905, 60.923], [10.6906, 60.923], [10.6906, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6908, 60.923], [10.6909, 60.9229], [10.6909, 60.9229], [10.6909, 60.9229], [10.691, 60.9229], [10.6907, 60.9228], [10.6907, 60.9228], [10.6909, 60.9228], [10.6909, 60.9228], [10.6909, 60.9228], [10.691, 60.9228], [10.6911, 60.9227], [10.6911, 60.9226], [10.6912, 60.9226], [10.6912, 60.9226], [10.6912, 60.9226], [10.6913, 60.9225], [10.6914, 60.9225], [10.6913, 60.9224], [10.6915, 60.9223], [10.6915, 60.9223], [10.6916, 60.9222], [10.6918, 60.9223], [10.6918, 60.9223], [10.6918, 60.9222], [10.6915, 60.9222], [10.6915, 60.922], [10.6915, 60.922], [10.6915, 60.9219], [10.6915, 60.9219], [10.6915, 60.9219], [10.6915, 60.9218], [10.6914, 60.9217], [10.6914, 60.9217], [10.6912, 60.9216], [10.6911, 60.9216], [10.6911, 60.9215], [10.691, 60.9214], [10.6908, 60.9214], [10.6907, 60.9213], [10.6907, 60.9213], [10.6906, 60.9212], [10.6905, 60.9212], [10.6904, 60.9212], [10.6903, 60.9212], [10.6901, 60.9212], [10.6901, 60.9212], [10.6899, 60.9213], [10.6898, 60.9213], [10.6897, 60.9213], [10.6896, 60.9214], [10.6895, 60.9214], [10.6895, 60.9214], [10.6894, 60.9215], [10.6894, 60.9215], [10.6894, 60.9215], [10.6892, 60.9216], [10.6891, 60.9217], [10.6891, 60.9217], [10.6891, 60.9218], [10.689, 60.9218], [10.6888, 60.9219], [10.6887, 60.9219], [10.6886, 60.9218], [10.6886, 60.9218], [10.6886, 60.9217], [10.6886, 60.9217], [10.6885, 60.9217], [10.6885, 60.9217], [10.6884, 60.9217], [10.6884, 60.9217], [10.6885, 60.9216], [10.6886, 60.9216], [10.6887, 60.9216], [10.6887, 60.9216], [10.6887, 60.9215], [10.6887, 60.9214], [10.6887, 60.9214], [10.6887, 60.9213], [10.6888, 60.9213], [10.6889, 60.9213], [10.6889, 60.9212], [10.689, 60.9212], [10.689, 60.9212], [10.689, 60.9212], [10.6889, 60.9211], [10.6889, 60.9211], [10.6889, 60.921], [10.6888, 60.921], [10.6887, 60.9209], [10.6886, 60.921], [10.6884, 60.921], [10.6881, 60.921], [10.6879, 60.9209], [10.6879, 60.9209], [10.6878, 60.9208], [10.6877, 60.9208], [10.6877, 60.9208], [10.6876, 60.9208], [10.6876, 60.9207], [10.6876, 60.9207], [10.6877, 60.9207], [10.6876, 60.9206], [10.6877, 60.9206], [10.6877, 60.9206], [10.6878, 60.9206], [10.6878, 60.9205], [10.6878, 60.9205], [10.6879, 60.9205], [10.688, 60.9205], [10.6881, 60.9205], [10.6881, 60.9205], [10.6883, 60.9204], [10.6884, 60.9204], [10.6885, 60.9205], [10.6885, 60.9204], [10.6886, 60.9204], [10.6886, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6888, 60.9204], [10.6889, 60.9204], [10.6889, 60.9204], [10.689, 60.9205], [10.689, 60.9205], [10.6891, 60.9206], [10.6891, 60.9206], [10.6892, 60.9207], [10.6892, 60.9207], [10.6892, 60.9208], [10.6892, 60.9208], [10.6893, 60.9208], [10.6893, 60.9208], [10.6894, 60.9208], [10.6895, 60.9208], [10.6896, 60.9208], [10.6897, 60.9208], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9206], [10.6898, 60.9206], [10.6897, 60.9205], [10.6897, 60.9205], [10.6897, 60.9204], [10.6897, 60.9204], [10.6898, 60.9204], [10.6898, 60.9203], [10.6899, 60.9203], [10.69, 60.9203], [10.69, 60.9203], [10.6901, 60.9202], [10.6901, 60.9201], [10.6901, 60.9201], [10.69, 60.92], [10.69, 60.92], [10.69, 60.92], [10.6899, 60.9199], [10.6898, 60.9199], [10.6898, 60.9199], [10.6897, 60.9198], [10.6897, 60.9198], [10.6897, 60.9198], [10.6897, 60.9198], [10.6898, 60.9197], [10.6898, 60.9197], [10.6897, 60.9197], [10.6897, 60.9196], [10.6898, 60.9196], [10.6898, 60.9196], [10.6898, 60.9196], [10.6898, 60.9195], [10.6899, 60.9195], [10.6899, 60.9195], [10.6899, 60.9195], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9193], [10.6899, 60.9193], [10.6899, 60.9192], [10.6899, 60.9192], [10.6898, 60.9192], [10.6898, 60.9192], [10.6897, 60.9192], [10.6897, 60.9192], [10.6897, 60.9191], [10.6897, 60.9191], [10.6896, 60.9191], [10.6896, 60.9191], [10.6897, 60.919], [10.6897, 60.919], [10.6898, 60.919], [10.6898, 60.919], [10.69, 60.919], [10.69, 60.9189], [10.6901, 60.9189], [10.6902, 60.9189], [10.6902, 60.9189], [10.6904, 60.9189], [10.6905, 60.9189], [10.6905, 60.9188], [10.6905, 60.9188], [10.6905, 60.9188], [10.6905, 60.9187], [10.6906, 60.9187], [10.6907, 60.9187], [10.6906, 60.9187], [10.6907, 60.9187], [10.6908, 60.9187], [10.6909, 60.9187], [10.6912, 60.9187], [10.6912, 60.9186], [10.6912, 60.9186], [10.6913, 60.9186], [10.6914, 60.9186], [10.6916, 60.9186], [10.6917, 60.9186], [10.6918, 60.9185], [10.6919, 60.9185], [10.692, 60.9184], [10.692, 60.9183], [10.6921, 60.9183], [10.6921, 60.9182], [10.6922, 60.9182], [10.6922, 60.9181], [10.6923, 60.9181], [10.6923, 60.9181], [10.6923, 60.918], [10.6923, 60.918], [10.6924, 60.918], [10.6924, 60.918], [10.6925, 60.918], [10.6926, 60.9179], [10.6927, 60.9178], [10.6928, 60.9178], [10.6929, 60.9178], [10.6929, 60.9177], [10.6929, 60.9177], [10.693, 60.9177], [10.693, 60.9177], [10.6931, 60.9177], [10.6931, 60.9176], [10.6932, 60.9176], [10.6933, 60.9176], [10.6934, 60.9175], [10.6935, 60.9175], [10.6935, 60.9174], [10.6936, 60.9173], [10.6937, 60.9173], [10.6937, 60.9173], [10.6938, 60.9172], [10.6939, 60.9172], [10.6941, 60.9172], [10.6941, 60.9172], [10.6943, 60.9172], [10.6943, 60.9172], [10.6944, 60.9171], [10.6944, 60.9171], [10.6945, 60.9172], [10.6945, 60.9171], [10.6946, 60.9171], [10.6947, 60.9171], [10.6948, 60.9171], [10.6949, 60.9171], [10.695, 60.9171], [10.6954, 60.917], [10.6954, 60.917], [10.6955, 60.917], [10.6956, 60.917], [10.6957, 60.917], [10.6958, 60.9169], [10.6959, 60.9169], [10.696, 60.9169], [10.6704, 60.9169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "27", "sub_div_center": [0.0152, 0.0113]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9369], [10.6704, 60.9476], [10.6705, 60.9476], [10.6706, 60.9477], [10.6707, 60.9477], [10.6708, 60.9477], [10.6709, 60.9477], [10.671, 60.9477], [10.6711, 60.9477], [10.6713, 60.9478], [10.6715, 60.9478], [10.6716, 60.9479], [10.6717, 60.9479], [10.6717, 60.9479], [10.6718, 60.9479], [10.6719, 60.9479], [10.672, 60.948], [10.6721, 60.948], [10.6722, 60.9481], [10.6723, 60.9481], [10.6725, 60.9481], [10.6727, 60.9482], [10.673, 60.9482], [10.6732, 60.9481], [10.6734, 60.9481], [10.6736, 60.9481], [10.6738, 60.9481], [10.6738, 60.948], [10.6739, 60.948], [10.674, 60.948], [10.6741, 60.948], [10.6746, 60.9479], [10.675, 60.9478], [10.6751, 60.9478], [10.6752, 60.9479], [10.6753, 60.9479], [10.6757, 60.9479], [10.676, 60.9478], [10.6762, 60.9478], [10.6763, 60.9478], [10.6765, 60.9477], [10.6766, 60.9476], [10.6766, 60.9475], [10.6765, 60.9473], [10.6765, 60.9472], [10.6765, 60.9472], [10.6765, 60.9471], [10.6765, 60.9471], [10.6766, 60.9472], [10.6769, 60.9471], [10.677, 60.9471], [10.6771, 60.9471], [10.6772, 60.9471], [10.6773, 60.947], [10.6775, 60.947], [10.6775, 60.947], [10.6775, 60.947], [10.6775, 60.9469], [10.6775, 60.9469], [10.6774, 60.9469], [10.6775, 60.9468], [10.6776, 60.9468], [10.6777, 60.9468], [10.6777, 60.9468], [10.6778, 60.9468], [10.6779, 60.9468], [10.6781, 60.9467], [10.6783, 60.9466], [10.6785, 60.9465], [10.6788, 60.9464], [10.6788, 60.9464], [10.6787, 60.9463], [10.6787, 60.9463], [10.6788, 60.9463], [10.6789, 60.9464], [10.679, 60.9464], [10.6792, 60.9464], [10.6793, 60.9463], [10.6797, 60.9462], [10.6799, 60.9462], [10.6802, 60.9461], [10.6805, 60.9461], [10.6808, 60.946], [10.681, 60.9459], [10.6812, 60.9458], [10.6814, 60.9457], [10.6815, 60.9456], [10.6817, 60.9456], [10.6819, 60.9455], [10.6821, 60.9455], [10.6822, 60.9455], [10.6825, 60.9455], [10.6826, 60.9455], [10.6826, 60.9455], [10.6827, 60.9454], [10.6827, 60.9454], [10.6827, 60.9453], [10.6826, 60.9453], [10.6825, 60.9452], [10.6824, 60.945], [10.6824, 60.9449], [10.6823, 60.9448], [10.6822, 60.9448], [10.6822, 60.9448], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9445], [10.6823, 60.9445], [10.6823, 60.9444], [10.6823, 60.9444], [10.6823, 60.9443], [10.6823, 60.9443], [10.6822, 60.9441], [10.6822, 60.9441], [10.6822, 60.944], [10.6821, 60.944], [10.6821, 60.944], [10.6819, 60.944], [10.6814, 60.944], [10.6811, 60.944], [10.6806, 60.944], [10.6804, 60.944], [10.6804, 60.944], [10.6804, 60.944], [10.6805, 60.944], [10.6807, 60.9439], [10.6806, 60.9439], [10.6804, 60.9439], [10.6804, 60.9439], [10.6806, 60.9438], [10.6804, 60.9438], [10.6803, 60.9438], [10.6803, 60.9438], [10.6803, 60.9437], [10.6804, 60.9435], [10.6804, 60.9435], [10.6804, 60.9434], [10.6806, 60.9435], [10.6806, 60.9434], [10.6806, 60.9433], [10.6808, 60.9432], [10.681, 60.9431], [10.6813, 60.943], [10.6815, 60.9429], [10.6816, 60.9429], [10.6818, 60.9428], [10.6819, 60.9427], [10.6821, 60.9427], [10.6821, 60.9426], [10.6822, 60.9426], [10.6824, 60.9424], [10.6824, 60.9423], [10.6825, 60.9422], [10.6825, 60.942], [10.6824, 60.9419], [10.6824, 60.9419], [10.6824, 60.9418], [10.6824, 60.9418], [10.6824, 60.9417], [10.6824, 60.9416], [10.6824, 60.9415], [10.6825, 60.9414], [10.6826, 60.9414], [10.6829, 60.9413], [10.6828, 60.9413], [10.683, 60.9412], [10.6832, 60.9412], [10.6832, 60.9411], [10.6833, 60.9411], [10.6832, 60.9411], [10.6833, 60.941], [10.6835, 60.9409], [10.6836, 60.9409], [10.6836, 60.9408], [10.6837, 60.9407], [10.6835, 60.9407], [10.6833, 60.9404], [10.6831, 60.9403], [10.683, 60.9403], [10.683, 60.9402], [10.683, 60.9402], [10.6831, 60.9401], [10.6832, 60.9401], [10.6833, 60.94], [10.6833, 60.94], [10.6834, 60.94], [10.6834, 60.94], [10.6834, 60.94], [10.6834, 60.9401], [10.6834, 60.9401], [10.6833, 60.9402], [10.6832, 60.9402], [10.6832, 60.9402], [10.6833, 60.9403], [10.6834, 60.9404], [10.6835, 60.9404], [10.6835, 60.9404], [10.6835, 60.9404], [10.6838, 60.9406], [10.6838, 60.9406], [10.6838, 60.9406], [10.6839, 60.9407], [10.6839, 60.9407], [10.6844, 60.9406], [10.6848, 60.9405], [10.6849, 60.9405], [10.685, 60.9405], [10.685, 60.9405], [10.685, 60.9405], [10.685, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6852, 60.9404], [10.6852, 60.9404], [10.6853, 60.9404], [10.6853, 60.9403], [10.6854, 60.9403], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9401], [10.6854, 60.9401], [10.6854, 60.9401], [10.6854, 60.94], [10.6853, 60.94], [10.6853, 60.94], [10.6853, 60.9399], [10.6853, 60.9399], [10.6853, 60.9399], [10.6854, 60.9399], [10.6855, 60.9399], [10.6855, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9398], [10.6856, 60.9398], [10.6856, 60.9397], [10.6855, 60.9397], [10.6855, 60.9397], [10.6854, 60.9396], [10.6854, 60.9395], [10.6853, 60.9394], [10.6852, 60.9394], [10.6851, 60.9393], [10.6849, 60.9393], [10.6846, 60.9393], [10.6843, 60.9392], [10.6837, 60.9391], [10.6835, 60.9391], [10.6834, 60.9391], [10.6832, 60.9391], [10.683, 60.9391], [10.6827, 60.9391], [10.6826, 60.9391], [10.6826, 60.9391], [10.6826, 60.9391], [10.6824, 60.9391], [10.6822, 60.9391], [10.6821, 60.9391], [10.6819, 60.9391], [10.6817, 60.9391], [10.6813, 60.9391], [10.6812, 60.9391], [10.6811, 60.939], [10.6809, 60.9389], [10.6807, 60.9389], [10.6805, 60.9389], [10.6801, 60.939], [10.6799, 60.9391], [10.6797, 60.9391], [10.6795, 60.9391], [10.6796, 60.939], [10.6793, 60.939], [10.6792, 60.939], [10.6793, 60.9389], [10.6793, 60.9389], [10.6792, 60.9388], [10.6793, 60.9387], [10.6795, 60.9387], [10.6796, 60.9387], [10.6796, 60.9386], [10.6797, 60.9386], [10.6797, 60.9386], [10.6798, 60.9386], [10.6798, 60.9386], [10.6799, 60.9385], [10.6799, 60.9385], [10.68, 60.9384], [10.68, 60.9383], [10.6801, 60.9383], [10.6801, 60.9383], [10.6802, 60.9382], [10.6803, 60.9383], [10.6803, 60.9382], [10.6804, 60.9382], [10.6804, 60.9382], [10.6805, 60.9382], [10.6805, 60.9382], [10.6806, 60.9382], [10.6806, 60.9382], [10.6807, 60.9382], [10.6807, 60.9382], [10.6807, 60.9382], [10.6807, 60.9381], [10.6806, 60.9381], [10.6805, 60.9381], [10.6805, 60.9381], [10.6805, 60.9381], [10.6806, 60.938], [10.6808, 60.938], [10.6809, 60.938], [10.6809, 60.938], [10.681, 60.938], [10.6811, 60.938], [10.6813, 60.938], [10.6814, 60.9379], [10.6814, 60.9379], [10.6814, 60.9378], [10.6814, 60.9377], [10.6814, 60.9377], [10.6813, 60.9376], [10.6813, 60.9375], [10.6813, 60.9375], [10.6811, 60.9374], [10.6809, 60.9374], [10.6808, 60.9374], [10.6807, 60.9374], [10.6806, 60.9374], [10.6804, 60.9374], [10.6804, 60.9373], [10.6802, 60.9372], [10.68, 60.9372], [10.6799, 60.9371], [10.6797, 60.9371], [10.6793, 60.937], [10.6792, 60.937], [10.679, 60.937], [10.6788, 60.937], [10.6787, 60.937], [10.6785, 60.937], [10.6785, 60.937], [10.6783, 60.9369], [10.6783, 60.9369], [10.6782, 60.9369], [10.6781, 60.9369], [10.6781, 60.9369], [10.6704, 60.9369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "28", "sub_div_center": [0.0072, 0.0049]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.954], [10.6705, 60.954], [10.6705, 60.954], [10.6707, 60.9539], [10.6708, 60.9539], [10.671, 60.9538], [10.6712, 60.9537], [10.6713, 60.9536], [10.6717, 60.9534], [10.6717, 60.9533], [10.6719, 60.9534], [10.6721, 60.9534], [10.6723, 60.9533], [10.6724, 60.9532], [10.6725, 60.9532], [10.6729, 60.9531], [10.6733, 60.9529], [10.6734, 60.9528], [10.6736, 60.9528], [10.6736, 60.9528], [10.6737, 60.9526], [10.6738, 60.9525], [10.6738, 60.9525], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6739, 60.9525], [10.6739, 60.9525], [10.674, 60.9525], [10.6741, 60.9525], [10.6742, 60.9525], [10.6743, 60.9525], [10.6747, 60.9524], [10.6749, 60.9524], [10.6751, 60.9523], [10.6755, 60.9521], [10.6756, 60.9521], [10.6757, 60.952], [10.6758, 60.9518], [10.6759, 60.9517], [10.676, 60.9515], [10.676, 60.9514], [10.6759, 60.9514], [10.6759, 60.9513], [10.6758, 60.9513], [10.6757, 60.9511], [10.6757, 60.951], [10.6757, 60.951], [10.6759, 60.9509], [10.6762, 60.951], [10.6763, 60.951], [10.6765, 60.9509], [10.6768, 60.9508], [10.677, 60.9507], [10.6772, 60.9506], [10.6774, 60.9504], [10.6776, 60.9503], [10.6776, 60.9503], [10.6777, 60.9501], [10.6777, 60.95], [10.6776, 60.9497], [10.6776, 60.9496], [10.6775, 60.9495], [10.6774, 60.9494], [10.6772, 60.9493], [10.6771, 60.9492], [10.6769, 60.9492], [10.6768, 60.9491], [10.6767, 60.9491], [10.6764, 60.9491], [10.6762, 60.9491], [10.6761, 60.9491], [10.676, 60.9492], [10.6759, 60.9492], [10.6757, 60.9492], [10.6756, 60.9492], [10.6754, 60.9493], [10.6753, 60.9493], [10.6751, 60.9495], [10.675, 60.9496], [10.675, 60.9498], [10.675, 60.9501], [10.675, 60.9502], [10.6748, 60.9502], [10.6746, 60.9503], [10.6742, 60.9504], [10.674, 60.9505], [10.6738, 60.9506], [10.6735, 60.9507], [10.6734, 60.9507], [10.6732, 60.9507], [10.6729, 60.9506], [10.6727, 60.9507], [10.6726, 60.9507], [10.6726, 60.9507], [10.6725, 60.9508], [10.6724, 60.9508], [10.6724, 60.9509], [10.6723, 60.9509], [10.6722, 60.9508], [10.672, 60.9508], [10.6718, 60.9508], [10.6714, 60.9509], [10.6711, 60.9509], [10.6709, 60.9508], [10.6708, 60.9508], [10.6706, 60.9508], [10.6704, 60.9508], [10.6704, 60.9508], [10.6704, 60.954]]]}}, {"type": "Feature", "properties": {"sub_div_id": "29", "sub_div_center": [0.0318, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8169], [10.7104, 60.7969], [10.7012, 60.7969], [10.7012, 60.7969], [10.7008, 60.7972], [10.7007, 60.7972], [10.7007, 60.7973], [10.7004, 60.7975], [10.7001, 60.7978], [10.7001, 60.7979], [10.7, 60.798], [10.6999, 60.798], [10.6998, 60.798], [10.6997, 60.798], [10.6995, 60.7981], [10.6989, 60.7982], [10.6984, 60.7983], [10.6983, 60.7983], [10.6982, 60.7983], [10.6982, 60.7983], [10.6981, 60.7983], [10.6981, 60.7983], [10.6984, 60.7982], [10.6987, 60.7981], [10.699, 60.7981], [10.6991, 60.798], [10.6991, 60.798], [10.6988, 60.7979], [10.6985, 60.7978], [10.6979, 60.7978], [10.6975, 60.7977], [10.6974, 60.7977], [10.697, 60.7977], [10.6969, 60.7977], [10.6968, 60.7977], [10.6967, 60.7978], [10.6967, 60.7978], [10.6967, 60.7979], [10.6969, 60.798], [10.6975, 60.7982], [10.6976, 60.7983], [10.6977, 60.7984], [10.6977, 60.7984], [10.6975, 60.7985], [10.6974, 60.7985], [10.6972, 60.7984], [10.6967, 60.7981], [10.6967, 60.7981], [10.6966, 60.7981], [10.6966, 60.7981], [10.6966, 60.7983], [10.6968, 60.7985], [10.697, 60.7985], [10.6972, 60.7986], [10.6974, 60.7988], [10.6974, 60.7988], [10.6974, 60.7988], [10.6972, 60.799], [10.6972, 60.799], [10.6969, 60.7993], [10.6967, 60.7994], [10.6963, 60.7996], [10.6959, 60.7997], [10.6954, 60.7999], [10.6951, 60.8002], [10.695, 60.8003], [10.6946, 60.8005], [10.6942, 60.8007], [10.6937, 60.801], [10.6935, 60.8011], [10.6933, 60.8011], [10.6933, 60.8012], [10.6929, 60.8012], [10.6928, 60.8012], [10.6927, 60.8012], [10.6925, 60.8014], [10.6924, 60.8014], [10.6922, 60.8014], [10.6921, 60.8014], [10.6919, 60.8015], [10.6918, 60.8015], [10.6916, 60.8015], [10.6915, 60.8016], [10.6915, 60.8016], [10.6914, 60.8016], [10.6912, 60.8016], [10.6911, 60.8016], [10.6903, 60.8017], [10.6902, 60.8017], [10.6902, 60.8017], [10.6898, 60.8018], [10.6893, 60.8019], [10.689, 60.802], [10.6884, 60.8022], [10.6883, 60.8022], [10.6878, 60.8025], [10.6874, 60.8027], [10.687, 60.803], [10.6869, 60.8031], [10.6868, 60.8033], [10.6866, 60.8036], [10.6865, 60.8038], [10.6863, 60.8042], [10.6863, 60.8044], [10.6865, 60.8046], [10.6865, 60.8048], [10.6865, 60.8049], [10.6865, 60.805], [10.6866, 60.8051], [10.6868, 60.8054], [10.6867, 60.8059], [10.6868, 60.806], [10.6869, 60.8062], [10.6869, 60.8064], [10.687, 60.8065], [10.6871, 60.8068], [10.6871, 60.807], [10.687, 60.8071], [10.6869, 60.8074], [10.6868, 60.8074], [10.6867, 60.8075], [10.6866, 60.8076], [10.6865, 60.8077], [10.6863, 60.8078], [10.6861, 60.8079], [10.6861, 60.8079], [10.6857, 60.8079], [10.6857, 60.8079], [10.6856, 60.808], [10.6856, 60.808], [10.6855, 60.8081], [10.6855, 60.8082], [10.6856, 60.8082], [10.6857, 60.8082], [10.6857, 60.8083], [10.6856, 60.8084], [10.6854, 60.8085], [10.685, 60.8088], [10.6846, 60.8091], [10.6843, 60.8092], [10.6838, 60.8095], [10.6833, 60.8097], [10.6828, 60.8099], [10.6826, 60.81], [10.6815, 60.8107], [10.6813, 60.8108], [10.681, 60.8111], [10.6808, 60.8113], [10.6805, 60.8116], [10.6804, 60.8117], [10.6803, 60.812], [10.6803, 60.8122], [10.6803, 60.8123], [10.6803, 60.8124], [10.6803, 60.8125], [10.6803, 60.8132], [10.6802, 60.8133], [10.68, 60.8136], [10.68, 60.8137], [10.68, 60.8138], [10.68, 60.8139], [10.6802, 60.814], [10.6802, 60.814], [10.6801, 60.8141], [10.68, 60.8141], [10.6799, 60.8142], [10.6798, 60.8143], [10.6797, 60.8144], [10.6795, 60.8145], [10.6793, 60.8147], [10.6788, 60.8149], [10.6788, 60.815], [10.6787, 60.8151], [10.6787, 60.8152], [10.6786, 60.8155], [10.6786, 60.8158], [10.6787, 60.8158], [10.6787, 60.8159], [10.6788, 60.8159], [10.6789, 60.8159], [10.679, 60.8159], [10.6791, 60.8159], [10.6792, 60.8159], [10.6792, 60.816], [10.6791, 60.816], [10.679, 60.8161], [10.6788, 60.8162], [10.6788, 60.8162], [10.6787, 60.8163], [10.6787, 60.8164], [10.6786, 60.8166], [10.6786, 60.8168], [10.6786, 60.8169], [10.7104, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "30", "sub_div_center": [0.0334, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6786, 60.8169], [10.6786, 60.8169], [10.6784, 60.817], [10.6783, 60.8171], [10.6783, 60.8172], [10.6783, 60.8172], [10.6784, 60.8173], [10.6785, 60.8174], [10.6786, 60.8174], [10.6788, 60.8175], [10.6788, 60.8175], [10.6788, 60.8175], [10.6787, 60.8176], [10.6786, 60.8177], [10.6785, 60.8177], [10.6785, 60.8178], [10.6786, 60.8179], [10.6786, 60.818], [10.6787, 60.8181], [10.6787, 60.8181], [10.6785, 60.8181], [10.6785, 60.8182], [10.6784, 60.8182], [10.6782, 60.8183], [10.6781, 60.8184], [10.678, 60.8184], [10.678, 60.8184], [10.678, 60.8185], [10.6781, 60.8185], [10.6783, 60.8185], [10.6784, 60.8185], [10.6785, 60.8185], [10.6785, 60.8185], [10.6785, 60.8185], [10.6783, 60.8186], [10.6781, 60.8186], [10.678, 60.8185], [10.6779, 60.8186], [10.6779, 60.8186], [10.678, 60.8186], [10.678, 60.8187], [10.678, 60.8187], [10.6779, 60.8187], [10.6779, 60.8188], [10.6779, 60.8189], [10.6778, 60.8189], [10.6775, 60.8189], [10.6774, 60.8189], [10.6774, 60.8189], [10.677, 60.8193], [10.677, 60.8198], [10.677, 60.8199], [10.6772, 60.8201], [10.6773, 60.8202], [10.6773, 60.8202], [10.6774, 60.8202], [10.6777, 60.8201], [10.6778, 60.8201], [10.6779, 60.8201], [10.6779, 60.8201], [10.6778, 60.8202], [10.6775, 60.8202], [10.6775, 60.8203], [10.6775, 60.8203], [10.6777, 60.8205], [10.6783, 60.8208], [10.6785, 60.821], [10.6789, 60.8213], [10.679, 60.8215], [10.679, 60.8215], [10.6789, 60.8216], [10.6789, 60.8216], [10.6788, 60.8216], [10.6787, 60.8216], [10.6787, 60.8216], [10.6787, 60.8217], [10.6788, 60.8218], [10.6788, 60.8218], [10.6789, 60.8219], [10.6791, 60.8219], [10.6793, 60.8219], [10.6793, 60.8219], [10.6793, 60.8219], [10.6794, 60.822], [10.6794, 60.822], [10.6795, 60.822], [10.6795, 60.822], [10.6794, 60.8221], [10.679, 60.8221], [10.6789, 60.8222], [10.6789, 60.8222], [10.6788, 60.8223], [10.6788, 60.8223], [10.6789, 60.8223], [10.6789, 60.8224], [10.6784, 60.8224], [10.6777, 60.8224], [10.6777, 60.8224], [10.6777, 60.8224], [10.6782, 60.8224], [10.6785, 60.8225], [10.6787, 60.8225], [10.6789, 60.8225], [10.679, 60.8225], [10.679, 60.8226], [10.6789, 60.8226], [10.6788, 60.8227], [10.6788, 60.8228], [10.6788, 60.8229], [10.6788, 60.823], [10.679, 60.8231], [10.679, 60.8231], [10.6789, 60.8231], [10.6787, 60.823], [10.6787, 60.823], [10.6786, 60.823], [10.6786, 60.823], [10.6786, 60.8231], [10.6786, 60.8231], [10.6787, 60.8232], [10.6788, 60.8233], [10.6789, 60.8234], [10.6789, 60.8235], [10.6788, 60.8236], [10.6785, 60.8237], [10.6784, 60.8238], [10.6784, 60.8238], [10.6784, 60.8241], [10.6786, 60.8242], [10.6785, 60.8243], [10.6786, 60.8244], [10.6786, 60.8244], [10.6787, 60.8245], [10.6787, 60.8245], [10.6786, 60.8246], [10.6786, 60.8247], [10.6786, 60.8248], [10.6786, 60.825], [10.6786, 60.825], [10.6784, 60.8252], [10.6783, 60.8254], [10.6783, 60.8255], [10.6782, 60.8256], [10.6782, 60.8256], [10.6781, 60.8257], [10.6781, 60.8258], [10.6781, 60.8258], [10.6781, 60.826], [10.6781, 60.826], [10.6781, 60.8262], [10.6781, 60.8264], [10.6781, 60.8264], [10.6781, 60.8265], [10.6781, 60.8266], [10.6784, 60.8268], [10.6785, 60.8269], [10.6787, 60.827], [10.6788, 60.827], [10.6789, 60.8271], [10.679, 60.8271], [10.679, 60.8272], [10.679, 60.8272], [10.6791, 60.8273], [10.6792, 60.8273], [10.6793, 60.8274], [10.6794, 60.8274], [10.6795, 60.8274], [10.6796, 60.8274], [10.6797, 60.8275], [10.6797, 60.8276], [10.6798, 60.8277], [10.6802, 60.8279], [10.6804, 60.828], [10.6805, 60.8281], [10.6805, 60.8282], [10.6805, 60.8283], [10.6805, 60.8284], [10.6807, 60.8285], [10.6808, 60.8285], [10.681, 60.8287], [10.6811, 60.8288], [10.6811, 60.8288], [10.6811, 60.8289], [10.6811, 60.8291], [10.6812, 60.8291], [10.6812, 60.8291], [10.6812, 60.8293], [10.6812, 60.8294], [10.6812, 60.8297], [10.6812, 60.8297], [10.6814, 60.83], [10.6814, 60.8301], [10.6816, 60.8302], [10.6817, 60.8304], [10.682, 60.8307], [10.6822, 60.8308], [10.6823, 60.8308], [10.6823, 60.831], [10.6824, 60.8311], [10.6825, 60.8312], [10.6825, 60.8313], [10.6828, 60.8316], [10.6829, 60.8317], [10.6829, 60.8318], [10.6831, 60.832], [10.6832, 60.8321], [10.6832, 60.8322], [10.6833, 60.8323], [10.6835, 60.8325], [10.6837, 60.8326], [10.6839, 60.8327], [10.684, 60.8328], [10.6842, 60.8328], [10.6842, 60.8328], [10.6843, 60.8329], [10.6843, 60.833], [10.6843, 60.833], [10.6844, 60.833], [10.6844, 60.8331], [10.6844, 60.8333], [10.6845, 60.8333], [10.6846, 60.8335], [10.6847, 60.8336], [10.6847, 60.8338], [10.6849, 60.8339], [10.6849, 60.834], [10.6849, 60.8341], [10.6848, 60.8343], [10.6848, 60.8344], [10.6849, 60.8346], [10.6849, 60.8347], [10.6848, 60.8348], [10.6848, 60.8349], [10.6849, 60.835], [10.685, 60.8352], [10.685, 60.8352], [10.685, 60.8354], [10.685, 60.8355], [10.6851, 60.8359], [10.6851, 60.8361], [10.6852, 60.8362], [10.6852, 60.8362], [10.6854, 60.8364], [10.6855, 60.8365], [10.6856, 60.8366], [10.6858, 60.8367], [10.6861, 60.8368], [10.6861, 60.8368], [10.6862, 60.8368], [10.6863, 60.8368], [10.6863, 60.8369], [10.7104, 60.8369], [10.7104, 60.8346], [10.7103, 60.8344], [10.7102, 60.8343], [10.7102, 60.8343], [10.7101, 60.8341], [10.7101, 60.834], [10.7101, 60.8339], [10.7102, 60.8338], [10.7102, 60.8337], [10.7102, 60.8337], [10.7102, 60.8335], [10.7102, 60.8334], [10.7102, 60.8334], [10.7102, 60.8332], [10.7102, 60.8331], [10.7101, 60.833], [10.71, 60.8329], [10.71, 60.8327], [10.71, 60.8326], [10.7099, 60.8324], [10.7097, 60.8321], [10.7096, 60.832], [10.7094, 60.8319], [10.7095, 60.8319], [10.7094, 60.8318], [10.7094, 60.8317], [10.7093, 60.8315], [10.7093, 60.8315], [10.7092, 60.8314], [10.7091, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.7091, 60.8314], [10.7091, 60.8313], [10.7091, 60.8313], [10.709, 60.8312], [10.709, 60.8312], [10.709, 60.8311], [10.7088, 60.8311], [10.7087, 60.8311], [10.7086, 60.8311], [10.7086, 60.8311], [10.7086, 60.8311], [10.7086, 60.831], [10.7087, 60.831], [10.7089, 60.831], [10.709, 60.831], [10.709, 60.831], [10.709, 60.831], [10.7091, 60.831], [10.7091, 60.831], [10.7092, 60.831], [10.7091, 60.8309], [10.7092, 60.8309], [10.7092, 60.8309], [10.7093, 60.8308], [10.7093, 60.8308], [10.7094, 60.8307], [10.7095, 60.8306], [10.7095, 60.8305], [10.7097, 60.8304], [10.7098, 60.8303], [10.7098, 60.8303], [10.7099, 60.8303], [10.7099, 60.8302], [10.71, 60.8302], [10.71, 60.8301], [10.7101, 60.8301], [10.7101, 60.8301], [10.71, 60.83], [10.7098, 60.83], [10.7096, 60.83], [10.7095, 60.83], [10.7094, 60.8299], [10.7094, 60.8299], [10.7093, 60.8299], [10.7094, 60.8298], [10.7093, 60.8298], [10.7094, 60.8297], [10.7095, 60.8297], [10.7095, 60.8297], [10.7096, 60.8297], [10.7097, 60.8297], [10.7097, 60.8297], [10.7098, 60.8297], [10.7098, 60.8297], [10.7098, 60.8296], [10.71, 60.8296], [10.71, 60.8296], [10.71, 60.8296], [10.7101, 60.8295], [10.71, 60.8295], [10.71, 60.8294], [10.7099, 60.8294], [10.7097, 60.8294], [10.7098, 60.8294], [10.7099, 60.8294], [10.7101, 60.8294], [10.7101, 60.8293], [10.7101, 60.8293], [10.7102, 60.8293], [10.7102, 60.8292], [10.7102, 60.8292], [10.71, 60.8292], [10.7101, 60.8291], [10.7103, 60.8292], [10.7103, 60.8291], [10.7102, 60.8291], [10.7102, 60.8291], [10.7102, 60.8291], [10.7103, 60.8291], [10.7103, 60.8291], [10.7104, 60.829], [10.7104, 60.829], [10.7104, 60.829], [10.7104, 60.829], [10.7103, 60.829], [10.7103, 60.8289], [10.7102, 60.8289], [10.7102, 60.8288], [10.7101, 60.8288], [10.7101, 60.8288], [10.7101, 60.8287], [10.7101, 60.8287], [10.7101, 60.8287], [10.71, 60.8287], [10.71, 60.8287], [10.71, 60.8286], [10.71, 60.8286], [10.7101, 60.8286], [10.7101, 60.8286], [10.7101, 60.8287], [10.7101, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7103, 60.8287], [10.7103, 60.8287], [10.7103, 60.8287], [10.7104, 60.8287], [10.7104, 60.8284], [10.7104, 60.8284], [10.7104, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8283], [10.7103, 60.8283], [10.7103, 60.8283], [10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8281], [10.7103, 60.8281], [10.7103, 60.8281], [10.7103, 60.828], [10.7103, 60.828], [10.7103, 60.8279], [10.7102, 60.8279], [10.7102, 60.8278], [10.7102, 60.8278], [10.7102, 60.8277], [10.7102, 60.8277], [10.7103, 60.8276], [10.7103, 60.8276], [10.7103, 60.8275], [10.7102, 60.8275], [10.7102, 60.8275], [10.7102, 60.8274], [10.7101, 60.8274], [10.71, 60.8274], [10.7098, 60.8274], [10.7098, 60.8273], [10.7098, 60.8272], [10.7098, 60.8272], [10.7097, 60.8271], [10.7097, 60.8271], [10.7097, 60.827], [10.7097, 60.8269], [10.7098, 60.8269], [10.7098, 60.8269], [10.7098, 60.8268], [10.7098, 60.8268], [10.7098, 60.8268], [10.7098, 60.8267], [10.7097, 60.8267], [10.7097, 60.8266], [10.7097, 60.8265], [10.7096, 60.8265], [10.7095, 60.8265], [10.7094, 60.8265], [10.7094, 60.8264], [10.7096, 60.8264], [10.7096, 60.8264], [10.7096, 60.8263], [10.7096, 60.8263], [10.7097, 60.8263], [10.7096, 60.8263], [10.7096, 60.8262], [10.7095, 60.8262], [10.7095, 60.8261], [10.7094, 60.826], [10.7094, 60.826], [10.7094, 60.826], [10.7093, 60.8259], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8257], [10.7092, 60.8257], [10.7091, 60.8257], [10.7091, 60.8256], [10.7092, 60.8256], [10.7092, 60.8256], [10.7091, 60.8255], [10.7091, 60.8254], [10.7091, 60.8254], [10.7091, 60.8253], [10.709, 60.8252], [10.709, 60.8252], [10.7089, 60.8251], [10.7089, 60.8251], [10.709, 60.825], [10.709, 60.825], [10.709, 60.8249], [10.709, 60.8248], [10.709, 60.8247], [10.709, 60.8247], [10.709, 60.8246], [10.7091, 60.8245], [10.7092, 60.8245], [10.7092, 60.8244], [10.7093, 60.8243], [10.7094, 60.8242], [10.7095, 60.8241], [10.7096, 60.824], [10.7097, 60.824], [10.7098, 60.8239], [10.7099, 60.8238], [10.7099, 60.8238], [10.7099, 60.8237], [10.71, 60.8236], [10.71, 60.8236], [10.71, 60.8235], [10.7101, 60.8235], [10.7102, 60.8234], [10.7103, 60.8233], [10.7104, 60.8232], [10.7104, 60.8232], [10.7104, 60.8169], [10.6786, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "31", "sub_div_center": [0.0255, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6863, 60.8369], [10.6863, 60.8369], [10.6863, 60.837], [10.6862, 60.837], [10.6862, 60.8371], [10.6863, 60.8372], [10.6863, 60.8373], [10.6863, 60.8374], [10.6863, 60.8376], [10.6862, 60.8377], [10.6861, 60.8379], [10.6861, 60.8379], [10.686, 60.8381], [10.6859, 60.8382], [10.6858, 60.8384], [10.6858, 60.8384], [10.6856, 60.8386], [10.6856, 60.8386], [10.6855, 60.8386], [10.6854, 60.8387], [10.6854, 60.8388], [10.6851, 60.8391], [10.685, 60.8392], [10.685, 60.8394], [10.685, 60.8396], [10.685, 60.8399], [10.685, 60.8401], [10.685, 60.8403], [10.6851, 60.8404], [10.6852, 60.8405], [10.6853, 60.8407], [10.6854, 60.8409], [10.6854, 60.8409], [10.6855, 60.8411], [10.6856, 60.8413], [10.6856, 60.8414], [10.6858, 60.8415], [10.6859, 60.8416], [10.686, 60.8418], [10.6863, 60.8419], [10.6865, 60.842], [10.6869, 60.8423], [10.6871, 60.8424], [10.6875, 60.8425], [10.688, 60.8427], [10.6883, 60.8428], [10.6888, 60.843], [10.6892, 60.8431], [10.6893, 60.8432], [10.6893, 60.8432], [10.6894, 60.8433], [10.6895, 60.8433], [10.6896, 60.8434], [10.6899, 60.8437], [10.6899, 60.8437], [10.69, 60.8439], [10.6902, 60.8441], [10.6903, 60.8442], [10.6905, 60.8444], [10.6905, 60.8445], [10.6907, 60.8447], [10.6908, 60.845], [10.691, 60.8452], [10.691, 60.8452], [10.691, 60.8453], [10.691, 60.8456], [10.6911, 60.8457], [10.6914, 60.8459], [10.6918, 60.8462], [10.6923, 60.8465], [10.6924, 60.8466], [10.6926, 60.8467], [10.6926, 60.8467], [10.6929, 60.8467], [10.693, 60.8468], [10.6931, 60.8468], [10.6931, 60.8469], [10.6932, 60.8469], [10.6933, 60.847], [10.6934, 60.847], [10.6935, 60.8471], [10.6936, 60.8472], [10.6936, 60.8473], [10.6936, 60.8473], [10.6942, 60.8475], [10.6943, 60.8475], [10.6946, 60.8476], [10.695, 60.8477], [10.6952, 60.8477], [10.6954, 60.8478], [10.6955, 60.8478], [10.6956, 60.8478], [10.6956, 60.8479], [10.6957, 60.848], [10.6958, 60.8481], [10.696, 60.8482], [10.6967, 60.8487], [10.6967, 60.8488], [10.6968, 60.8489], [10.6968, 60.849], [10.6969, 60.849], [10.6968, 60.8491], [10.6968, 60.8492], [10.6968, 60.8492], [10.697, 60.8495], [10.6971, 60.8496], [10.6972, 60.8497], [10.6972, 60.8497], [10.6971, 60.8498], [10.6971, 60.8498], [10.6971, 60.8499], [10.6972, 60.8499], [10.6972, 60.85], [10.6972, 60.85], [10.6971, 60.8501], [10.6971, 60.8503], [10.697, 60.8504], [10.697, 60.8505], [10.6971, 60.8509], [10.6972, 60.8512], [10.6973, 60.8515], [10.6974, 60.8516], [10.6974, 60.8517], [10.6973, 60.8518], [10.6973, 60.8519], [10.6973, 60.8519], [10.6972, 60.8521], [10.6972, 60.8522], [10.6972, 60.8525], [10.6972, 60.8526], [10.6972, 60.8527], [10.6973, 60.8528], [10.6973, 60.853], [10.6974, 60.8532], [10.6974, 60.8532], [10.6976, 60.8532], [10.6976, 60.8532], [10.6977, 60.8533], [10.6978, 60.8533], [10.6978, 60.8533], [10.6977, 60.8533], [10.6976, 60.8534], [10.6977, 60.8534], [10.6976, 60.8536], [10.6976, 60.8537], [10.6978, 60.8539], [10.698, 60.8542], [10.6981, 60.8543], [10.6983, 60.8545], [10.6984, 60.8546], [10.6986, 60.8547], [10.6987, 60.8549], [10.6988, 60.855], [10.699, 60.8553], [10.6992, 60.8555], [10.6993, 60.8556], [10.6994, 60.8556], [10.6995, 60.8556], [10.6996, 60.8557], [10.7, 60.8559], [10.7002, 60.856], [10.7003, 60.856], [10.7004, 60.8562], [10.7006, 60.8563], [10.7007, 60.8563], [10.7008, 60.8563], [10.7009, 60.8564], [10.701, 60.8565], [10.7011, 60.8566], [10.7013, 60.8567], [10.7016, 60.8568], [10.7016, 60.8569], [10.7104, 60.8569], [10.7104, 60.8369], [10.6863, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "32", "sub_div_center": [0.0154, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8769], [10.7104, 60.8569], [10.7016, 60.8569], [10.7018, 60.8569], [10.7019, 60.857], [10.7021, 60.8571], [10.7022, 60.8571], [10.7025, 60.8572], [10.7028, 60.8573], [10.7029, 60.8574], [10.7032, 60.8574], [10.7033, 60.8575], [10.7034, 60.8575], [10.7035, 60.8575], [10.7035, 60.8576], [10.7036, 60.8576], [10.7036, 60.8577], [10.7036, 60.8577], [10.7036, 60.8578], [10.7036, 60.8578], [10.7036, 60.8579], [10.7036, 60.8579], [10.7037, 60.8579], [10.7038, 60.8579], [10.7038, 60.858], [10.7038, 60.858], [10.7038, 60.858], [10.7037, 60.858], [10.7035, 60.8581], [10.7035, 60.8582], [10.7035, 60.8582], [10.7035, 60.8583], [10.7035, 60.8584], [10.7036, 60.8584], [10.7038, 60.8585], [10.7038, 60.8586], [10.7039, 60.8587], [10.7039, 60.8587], [10.7038, 60.8587], [10.7038, 60.8588], [10.7038, 60.8589], [10.7036, 60.859], [10.7035, 60.8591], [10.7035, 60.8592], [10.7035, 60.8593], [10.7034, 60.8595], [10.7033, 60.8597], [10.7033, 60.8597], [10.7033, 60.86], [10.7034, 60.8602], [10.7034, 60.8605], [10.7033, 60.8606], [10.7032, 60.8607], [10.703, 60.8609], [10.703, 60.8609], [10.7028, 60.861], [10.7026, 60.8611], [10.7024, 60.8612], [10.7021, 60.8613], [10.702, 60.8614], [10.7017, 60.8615], [10.7016, 60.8616], [10.7016, 60.8616], [10.7016, 60.8617], [10.7016, 60.8619], [10.7016, 60.862], [10.7014, 60.8623], [10.7013, 60.8626], [10.7013, 60.8628], [10.7012, 60.8631], [10.7012, 60.8636], [10.7013, 60.8637], [10.7015, 60.8637], [10.7014, 60.8637], [10.7013, 60.8637], [10.7012, 60.8637], [10.7012, 60.864], [10.7012, 60.8641], [10.7012, 60.8643], [10.7012, 60.8643], [10.7013, 60.8644], [10.7014, 60.8644], [10.7016, 60.8645], [10.7017, 60.8645], [10.7017, 60.8645], [10.7016, 60.8646], [10.7014, 60.8646], [10.7013, 60.8646], [10.701, 60.8647], [10.7007, 60.8648], [10.7003, 60.865], [10.7002, 60.865], [10.7002, 60.8651], [10.7001, 60.8652], [10.7001, 60.8654], [10.7001, 60.8656], [10.7001, 60.8656], [10.7002, 60.8657], [10.7004, 60.8658], [10.7004, 60.8659], [10.7004, 60.866], [10.7003, 60.8661], [10.7001, 60.8662], [10.7, 60.8662], [10.6999, 60.8663], [10.6998, 60.8664], [10.6997, 60.8664], [10.6995, 60.8664], [10.6994, 60.8664], [10.6993, 60.8664], [10.6992, 60.8665], [10.699, 60.8668], [10.6989, 60.867], [10.6987, 60.8672], [10.6987, 60.8672], [10.6988, 60.8673], [10.6987, 60.8674], [10.6987, 60.8675], [10.6987, 60.8675], [10.6986, 60.8676], [10.6985, 60.8677], [10.6983, 60.8679], [10.6982, 60.8679], [10.6982, 60.868], [10.6982, 60.8681], [10.6982, 60.8683], [10.6983, 60.8684], [10.6984, 60.8686], [10.6985, 60.8686], [10.6987, 60.8687], [10.6988, 60.8687], [10.6988, 60.8688], [10.6987, 60.8688], [10.6986, 60.8689], [10.6984, 60.8689], [10.6982, 60.869], [10.6981, 60.8691], [10.698, 60.8691], [10.698, 60.8692], [10.6979, 60.8693], [10.6979, 60.87], [10.698, 60.8701], [10.6982, 60.8704], [10.6982, 60.8705], [10.6983, 60.8707], [10.6983, 60.8708], [10.6983, 60.8708], [10.6984, 60.8708], [10.6985, 60.8709], [10.6988, 60.8709], [10.6989, 60.8709], [10.699, 60.871], [10.699, 60.8711], [10.6991, 60.8712], [10.6992, 60.8713], [10.6992, 60.8713], [10.6993, 60.8714], [10.6993, 60.8715], [10.6994, 60.8715], [10.6994, 60.8716], [10.6993, 60.8717], [10.6992, 60.8717], [10.6987, 60.8719], [10.6985, 60.8719], [10.6983, 60.872], [10.6982, 60.8721], [10.6981, 60.8722], [10.6981, 60.8722], [10.698, 60.8723], [10.6981, 60.8723], [10.698, 60.8723], [10.698, 60.8725], [10.6981, 60.8726], [10.6981, 60.8726], [10.6982, 60.8726], [10.6983, 60.8727], [10.6988, 60.8727], [10.6989, 60.8727], [10.699, 60.8728], [10.699, 60.8728], [10.699, 60.8728], [10.6989, 60.8728], [10.6986, 60.8728], [10.6984, 60.8728], [10.6983, 60.8728], [10.6978, 60.8729], [10.6975, 60.873], [10.6974, 60.873], [10.697, 60.8732], [10.6969, 60.8732], [10.6967, 60.8734], [10.6967, 60.8735], [10.6967, 60.8735], [10.6967, 60.8737], [10.6967, 60.8738], [10.6968, 60.8739], [10.6968, 60.874], [10.6968, 60.8741], [10.6967, 60.8743], [10.6967, 60.8746], [10.6968, 60.8747], [10.6968, 60.8748], [10.6968, 60.8748], [10.6968, 60.875], [10.6968, 60.875], [10.6967, 60.8751], [10.6966, 60.8752], [10.6966, 60.8752], [10.6963, 60.8753], [10.696, 60.8754], [10.6959, 60.8755], [10.6958, 60.8756], [10.6957, 60.8756], [10.6956, 60.8759], [10.6956, 60.8759], [10.6954, 60.876], [10.6954, 60.8761], [10.6954, 60.8762], [10.6952, 60.8763], [10.6951, 60.8764], [10.6951, 60.8765], [10.6951, 60.8766], [10.6951, 60.8767], [10.695, 60.8768], [10.695, 60.8769], [10.7104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "33", "sub_div_center": [0.0121, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.701, 60.7969], [10.7011, 60.7968], [10.7012, 60.7967], [10.7013, 60.7966], [10.7013, 60.7967], [10.7013, 60.7968], [10.7012, 60.7969], [10.7104, 60.7969], [10.7104, 60.7769], [10.7072, 60.7769], [10.7071, 60.7769], [10.7068, 60.777], [10.7066, 60.7771], [10.7062, 60.7771], [10.7061, 60.7772], [10.706, 60.7772], [10.7057, 60.7772], [10.7056, 60.7772], [10.7052, 60.7773], [10.7051, 60.7773], [10.7051, 60.7774], [10.7051, 60.7774], [10.7051, 60.7774], [10.7053, 60.7777], [10.7053, 60.7778], [10.7053, 60.7778], [10.7052, 60.7779], [10.7051, 60.778], [10.7049, 60.7782], [10.7049, 60.7782], [10.7049, 60.7784], [10.7048, 60.7789], [10.7048, 60.7791], [10.7047, 60.7794], [10.7044, 60.7797], [10.7044, 60.7797], [10.7043, 60.7798], [10.704, 60.7798], [10.704, 60.7799], [10.7039, 60.78], [10.7039, 60.7799], [10.7039, 60.7798], [10.7039, 60.7798], [10.7041, 60.7797], [10.7042, 60.7797], [10.7043, 60.7796], [10.7044, 60.7795], [10.7046, 60.7792], [10.7046, 60.779], [10.7047, 60.7786], [10.7047, 60.7783], [10.7046, 60.7781], [10.7046, 60.778], [10.7046, 60.778], [10.7043, 60.778], [10.7042, 60.7781], [10.7041, 60.7781], [10.7038, 60.7781], [10.7037, 60.7781], [10.7037, 60.7779], [10.7036, 60.7779], [10.7035, 60.778], [10.7032, 60.7781], [10.7026, 60.7783], [10.7023, 60.7784], [10.7022, 60.7785], [10.702, 60.7786], [10.7019, 60.7788], [10.7019, 60.7789], [10.7017, 60.7792], [10.7017, 60.7793], [10.7017, 60.7795], [10.7017, 60.7796], [10.7017, 60.7796], [10.7016, 60.7796], [10.7016, 60.7796], [10.7016, 60.7797], [10.7017, 60.7798], [10.7017, 60.7799], [10.7018, 60.78], [10.7019, 60.78], [10.702, 60.78], [10.7027, 60.78], [10.7028, 60.78], [10.7032, 60.7799], [10.7034, 60.7799], [10.7034, 60.78], [10.7032, 60.78], [10.7028, 60.78], [10.7025, 60.7801], [10.7018, 60.7801], [10.7016, 60.7801], [10.7016, 60.7801], [10.7016, 60.7802], [10.7015, 60.7802], [10.7015, 60.7803], [10.7015, 60.7805], [10.7016, 60.7807], [10.7017, 60.7809], [10.7017, 60.7813], [10.7019, 60.7817], [10.7021, 60.782], [10.7024, 60.7823], [10.7025, 60.7824], [10.7027, 60.7825], [10.7028, 60.7826], [10.7029, 60.7827], [10.7031, 60.7828], [10.7033, 60.7829], [10.7034, 60.783], [10.7038, 60.7831], [10.7042, 60.7833], [10.7044, 60.7834], [10.7045, 60.7834], [10.7046, 60.7835], [10.7049, 60.7835], [10.705, 60.7835], [10.7051, 60.7836], [10.7054, 60.7839], [10.7055, 60.784], [10.7058, 60.7843], [10.7059, 60.7844], [10.706, 60.7845], [10.7061, 60.7846], [10.7061, 60.7846], [10.706, 60.7847], [10.706, 60.7848], [10.7059, 60.7849], [10.7058, 60.785], [10.7056, 60.7852], [10.7054, 60.7853], [10.7053, 60.7854], [10.7052, 60.7856], [10.7052, 60.7856], [10.705, 60.7857], [10.7049, 60.7857], [10.7047, 60.786], [10.7044, 60.7863], [10.7041, 60.7866], [10.704, 60.7866], [10.7039, 60.7867], [10.7037, 60.787], [10.7035, 60.7873], [10.7034, 60.7875], [10.7033, 60.7876], [10.7033, 60.7877], [10.7031, 60.7878], [10.703, 60.788], [10.703, 60.788], [10.7028, 60.7881], [10.7025, 60.7883], [10.7024, 60.7884], [10.7023, 60.7888], [10.7021, 60.7891], [10.702, 60.7892], [10.7019, 60.7893], [10.7019, 60.7893], [10.7018, 60.7893], [10.7017, 60.7893], [10.7017, 60.7892], [10.7017, 60.7892], [10.7017, 60.7892], [10.7017, 60.7892], [10.7015, 60.7892], [10.7014, 60.7892], [10.7013, 60.7892], [10.7013, 60.7893], [10.7012, 60.7894], [10.7013, 60.7897], [10.7013, 60.7897], [10.7013, 60.7898], [10.7015, 60.7898], [10.7016, 60.7897], [10.7016, 60.7897], [10.7017, 60.7897], [10.7018, 60.7895], [10.7018, 60.7895], [10.7019, 60.7895], [10.7019, 60.7895], [10.702, 60.7896], [10.702, 60.7896], [10.7019, 60.7898], [10.7019, 60.7899], [10.7021, 60.79], [10.7022, 60.79], [10.7022, 60.7901], [10.7022, 60.7901], [10.7021, 60.7902], [10.702, 60.7902], [10.7017, 60.7901], [10.7015, 60.7901], [10.7011, 60.79], [10.7009, 60.79], [10.7004, 60.79], [10.7002, 60.79], [10.6996, 60.7899], [10.6994, 60.7899], [10.6993, 60.7899], [10.6988, 60.7901], [10.6985, 60.7903], [10.6984, 60.7904], [10.6983, 60.7904], [10.6984, 60.7905], [10.6984, 60.7906], [10.6985, 60.7907], [10.6986, 60.7907], [10.6987, 60.7908], [10.6989, 60.7908], [10.6991, 60.7908], [10.6994, 60.7909], [10.6995, 60.7909], [10.6998, 60.7909], [10.7, 60.7909], [10.7002, 60.7908], [10.7002, 60.7908], [10.7004, 60.7908], [10.7004, 60.7908], [10.7006, 60.7908], [10.7011, 60.7909], [10.7013, 60.7909], [10.7013, 60.7909], [10.7014, 60.7909], [10.7014, 60.7908], [10.7014, 60.7907], [10.7015, 60.7905], [10.7015, 60.7903], [10.7016, 60.7903], [10.7016, 60.7903], [10.7018, 60.7903], [10.7018, 60.7903], [10.7018, 60.7903], [10.7018, 60.7904], [10.7017, 60.7905], [10.7017, 60.7905], [10.7016, 60.7906], [10.7016, 60.7907], [10.7017, 60.7908], [10.7019, 60.7909], [10.7021, 60.7911], [10.7022, 60.7912], [10.7022, 60.7913], [10.7022, 60.7914], [10.7022, 60.7915], [10.7021, 60.7917], [10.7021, 60.7918], [10.7021, 60.792], [10.7021, 60.7921], [10.7023, 60.7923], [10.7024, 60.7923], [10.7024, 60.7924], [10.7024, 60.7925], [10.7023, 60.7925], [10.7022, 60.7926], [10.7021, 60.7927], [10.7018, 60.7927], [10.7018, 60.7927], [10.7017, 60.7928], [10.7016, 60.7928], [10.7016, 60.7929], [10.7016, 60.793], [10.7016, 60.793], [10.7017, 60.793], [10.7017, 60.793], [10.7018, 60.793], [10.7018, 60.7929], [10.702, 60.7929], [10.7021, 60.793], [10.7022, 60.7931], [10.7023, 60.7932], [10.7023, 60.7932], [10.7023, 60.7935], [10.7022, 60.7935], [10.7021, 60.7937], [10.7021, 60.7938], [10.7021, 60.794], [10.7021, 60.7941], [10.7022, 60.7942], [10.7022, 60.7943], [10.7022, 60.7945], [10.7022, 60.7946], [10.7021, 60.7946], [10.702, 60.7947], [10.7018, 60.7947], [10.7016, 60.7948], [10.7012, 60.7948], [10.7009, 60.7947], [10.7007, 60.7947], [10.7005, 60.7947], [10.7001, 60.7946], [10.6999, 60.7945], [10.6999, 60.7945], [10.6998, 60.7947], [10.6995, 60.795], [10.6998, 60.7951], [10.7005, 60.7953], [10.7012, 60.7954], [10.7014, 60.7954], [10.7017, 60.7954], [10.7018, 60.7955], [10.702, 60.7955], [10.7021, 60.7956], [10.7022, 60.7956], [10.7022, 60.7957], [10.7022, 60.7958], [10.7021, 60.7958], [10.702, 60.7958], [10.702, 60.7958], [10.7021, 60.7959], [10.7024, 60.7959], [10.7025, 60.796], [10.7024, 60.796], [10.7019, 60.7959], [10.7015, 60.7958], [10.7013, 60.7958], [10.7012, 60.7958], [10.7012, 60.7959], [10.7011, 60.7959], [10.7011, 60.796], [10.7011, 60.796], [10.7011, 60.7961], [10.7012, 60.7961], [10.7011, 60.7962], [10.701, 60.7962], [10.7009, 60.7962], [10.7008, 60.7962], [10.7007, 60.7963], [10.7006, 60.7964], [10.7005, 60.7964], [10.7001, 60.7967], [10.7, 60.7969], [10.701, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "34", "sub_div_center": [0.0018, 0.0009]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7, 60.7969], [10.6999, 60.797], [10.6995, 60.7973], [10.6993, 60.7975], [10.6992, 60.7975], [10.6992, 60.7976], [10.6993, 60.7976], [10.6997, 60.7977], [10.6999, 60.7978], [10.7, 60.7977], [10.7004, 60.7974], [10.7007, 60.7971], [10.701, 60.7969], [10.7, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "35", "sub_div_center": [0.0033, 0.0015]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7104, 60.7753], [10.7103, 60.7754], [10.7102, 60.7754], [10.71, 60.7756], [10.7099, 60.7757], [10.7098, 60.7757], [10.7097, 60.7758], [10.7095, 60.7759], [10.7094, 60.7759], [10.7093, 60.776], [10.7092, 60.776], [10.709, 60.776], [10.7089, 60.7761], [10.7087, 60.7761], [10.7085, 60.7762], [10.7084, 60.7762], [10.7082, 60.7763], [10.7081, 60.7764], [10.708, 60.7765], [10.7079, 60.7766], [10.7076, 60.7766], [10.7076, 60.7766], [10.7073, 60.7768], [10.7072, 60.7769], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "36", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7504, 60.7769], [10.7504, 60.7569], [10.7486, 60.7569], [10.7482, 60.7572], [10.7479, 60.7572], [10.7467, 60.7573], [10.7462, 60.7576], [10.7456, 60.758], [10.7448, 60.7582], [10.744, 60.7583], [10.7434, 60.7586], [10.7426, 60.7587], [10.7425, 60.7588], [10.7421, 60.7589], [10.74, 60.7597], [10.7391, 60.7605], [10.7384, 60.7611], [10.7378, 60.7616], [10.7368, 60.7621], [10.7352, 60.7628], [10.7345, 60.7633], [10.7333, 60.7638], [10.7318, 60.7641], [10.7313, 60.7643], [10.7309, 60.7643], [10.7308, 60.7643], [10.7306, 60.7642], [10.7303, 60.7642], [10.7301, 60.7642], [10.7298, 60.7643], [10.7297, 60.7644], [10.7297, 60.7644], [10.7297, 60.7645], [10.7295, 60.7644], [10.7294, 60.7644], [10.7292, 60.7645], [10.7291, 60.7647], [10.7293, 60.7648], [10.7294, 60.7648], [10.7296, 60.7648], [10.7296, 60.7648], [10.7295, 60.7649], [10.7293, 60.7649], [10.7292, 60.7648], [10.729, 60.7647], [10.7288, 60.7648], [10.7285, 60.7649], [10.7285, 60.7649], [10.7282, 60.765], [10.7278, 60.7651], [10.7262, 60.7656], [10.7249, 60.766], [10.7237, 60.7664], [10.7231, 60.7666], [10.7216, 60.7674], [10.721, 60.7676], [10.7203, 60.7681], [10.7199, 60.7685], [10.7197, 60.7691], [10.7195, 60.7694], [10.7193, 60.7695], [10.7191, 60.7697], [10.719, 60.7698], [10.7187, 60.7701], [10.7185, 60.7705], [10.7183, 60.7706], [10.7182, 60.7707], [10.7181, 60.7708], [10.7181, 60.7708], [10.718, 60.7709], [10.7179, 60.771], [10.7178, 60.7711], [10.7177, 60.7712], [10.7173, 60.7715], [10.7172, 60.7716], [10.7168, 60.7717], [10.7165, 60.7718], [10.7163, 60.7719], [10.7163, 60.7719], [10.7162, 60.7719], [10.7161, 60.772], [10.716, 60.772], [10.7159, 60.7721], [10.7159, 60.7722], [10.7159, 60.7722], [10.7158, 60.7723], [10.7157, 60.7723], [10.7154, 60.7723], [10.7153, 60.7723], [10.7152, 60.7723], [10.7152, 60.7724], [10.7151, 60.7724], [10.715, 60.7725], [10.7148, 60.7726], [10.7147, 60.7726], [10.7147, 60.7727], [10.7147, 60.7727], [10.7148, 60.7728], [10.7148, 60.7728], [10.7148, 60.7729], [10.7146, 60.773], [10.7146, 60.773], [10.7146, 60.773], [10.7147, 60.7729], [10.7147, 60.7729], [10.7147, 60.7728], [10.7146, 60.7728], [10.7146, 60.7728], [10.7145, 60.7728], [10.7143, 60.7729], [10.7141, 60.773], [10.7138, 60.7731], [10.7138, 60.7732], [10.7137, 60.7732], [10.7137, 60.7733], [10.7138, 60.7734], [10.7138, 60.7734], [10.7139, 60.7735], [10.7138, 60.7736], [10.7137, 60.7737], [10.7135, 60.7739], [10.7134, 60.7739], [10.7134, 60.7738], [10.7134, 60.7738], [10.7136, 60.7737], [10.7136, 60.7736], [10.7135, 60.7736], [10.7134, 60.7736], [10.7132, 60.7737], [10.7131, 60.7737], [10.713, 60.7738], [10.713, 60.7738], [10.713, 60.7738], [10.7132, 60.7739], [10.7132, 60.774], [10.7132, 60.774], [10.7131, 60.774], [10.7128, 60.7738], [10.7127, 60.7738], [10.7124, 60.7741], [10.7122, 60.7742], [10.7121, 60.7742], [10.7118, 60.7743], [10.7118, 60.7744], [10.7117, 60.7745], [10.7117, 60.7745], [10.7115, 60.7747], [10.7113, 60.7748], [10.7112, 60.7749], [10.711, 60.7749], [10.7109, 60.7751], [10.7106, 60.7752], [10.7104, 60.7753], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "37", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7104, 60.7969], [10.7441, 60.7969], [10.7441, 60.7968], [10.7443, 60.7967], [10.7444, 60.7967], [10.7446, 60.7966], [10.7447, 60.7965], [10.7448, 60.7964], [10.7449, 60.7963], [10.7453, 60.796], [10.7458, 60.7956], [10.7459, 60.7955], [10.746, 60.7955], [10.746, 60.7954], [10.7461, 60.7953], [10.7462, 60.7952], [10.7463, 60.7951], [10.7463, 60.7951], [10.7463, 60.795], [10.7462, 60.795], [10.7462, 60.7949], [10.7463, 60.7949], [10.7463, 60.7949], [10.7465, 60.7949], [10.7466, 60.7949], [10.7466, 60.7949], [10.7468, 60.7947], [10.7468, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7945], [10.7467, 60.7944], [10.7467, 60.7944], [10.7466, 60.7944], [10.7465, 60.7945], [10.7465, 60.7946], [10.7465, 60.7946], [10.7464, 60.7947], [10.7465, 60.7947], [10.7465, 60.7947], [10.7466, 60.7947], [10.7465, 60.7947], [10.7465, 60.7947], [10.7464, 60.7947], [10.7464, 60.7947], [10.7464, 60.7947], [10.7464, 60.7946], [10.7465, 60.7944], [10.7466, 60.7944], [10.7467, 60.7944], [10.7467, 60.7944], [10.7468, 60.7943], [10.7468, 60.7943], [10.7468, 60.7942], [10.7469, 60.7942], [10.7469, 60.7941], [10.747, 60.794], [10.747, 60.7938], [10.7469, 60.7936], [10.7469, 60.7935], [10.7469, 60.7934], [10.7469, 60.7933], [10.747, 60.7933], [10.747, 60.7932], [10.747, 60.7931], [10.747, 60.7931], [10.747, 60.793], [10.7471, 60.7929], [10.7471, 60.7929], [10.7471, 60.7929], [10.7471, 60.7928], [10.7472, 60.7927], [10.7473, 60.7925], [10.7473, 60.7925], [10.7474, 60.7924], [10.7474, 60.7924], [10.7475, 60.7923], [10.7475, 60.7923], [10.7474, 60.7922], [10.7476, 60.7921], [10.7476, 60.7921], [10.7477, 60.792], [10.7477, 60.792], [10.7477, 60.7919], [10.7477, 60.7919], [10.7477, 60.7919], [10.7477, 60.7918], [10.7478, 60.7918], [10.7478, 60.7918], [10.7479, 60.7918], [10.7478, 60.7917], [10.7478, 60.7917], [10.7474, 60.7918], [10.7474, 60.7917], [10.7474, 60.7917], [10.7475, 60.7916], [10.7478, 60.7916], [10.7478, 60.7916], [10.7478, 60.7916], [10.7478, 60.7915], [10.7479, 60.7915], [10.7479, 60.7915], [10.7485, 60.7915], [10.7485, 60.7915], [10.7485, 60.7915], [10.7486, 60.7915], [10.7486, 60.7915], [10.7486, 60.7915], [10.7486, 60.7914], [10.7486, 60.7914], [10.7485, 60.7914], [10.7485, 60.7914], [10.7485, 60.7914], [10.7486, 60.7913], [10.7486, 60.7913], [10.7486, 60.7913], [10.7486, 60.7913], [10.7485, 60.7913], [10.7484, 60.7913], [10.7484, 60.7912], [10.7484, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7911], [10.7483, 60.7911], [10.7483, 60.7911], [10.7483, 60.7911], [10.7485, 60.791], [10.7486, 60.7909], [10.7486, 60.7909], [10.7486, 60.7909], [10.7486, 60.791], [10.7486, 60.791], [10.7486, 60.791], [10.7486, 60.791], [10.7484, 60.7911], [10.7484, 60.7912], [10.7486, 60.7912], [10.7487, 60.7912], [10.7487, 60.7912], [10.7488, 60.7911], [10.7489, 60.7911], [10.7489, 60.791], [10.7489, 60.791], [10.749, 60.791], [10.749, 60.791], [10.7491, 60.791], [10.7491, 60.791], [10.7491, 60.791], [10.7492, 60.791], [10.7492, 60.7909], [10.7493, 60.7909], [10.7493, 60.7908], [10.7493, 60.7908], [10.7493, 60.7908], [10.7494, 60.7907], [10.7493, 60.7906], [10.7493, 60.7906], [10.7493, 60.7906], [10.7493, 60.7906], [10.7494, 60.7905], [10.7495, 60.7905], [10.7495, 60.7905], [10.7495, 60.7904], [10.7495, 60.7904], [10.7495, 60.7904], [10.7494, 60.7904], [10.7494, 60.7904], [10.7493, 60.7904], [10.7493, 60.7903], [10.7493, 60.7903], [10.7491, 60.7904], [10.7491, 60.7905], [10.7491, 60.7905], [10.749, 60.7905], [10.749, 60.7905], [10.749, 60.7905], [10.749, 60.7904], [10.749, 60.7904], [10.749, 60.7904], [10.749, 60.7903], [10.7491, 60.7903], [10.7491, 60.7903], [10.7492, 60.7902], [10.7492, 60.7902], [10.7493, 60.7902], [10.7494, 60.7902], [10.7494, 60.7902], [10.7495, 60.7902], [10.7495, 60.7902], [10.7495, 60.7902], [10.7496, 60.7901], [10.7496, 60.7901], [10.7496, 60.79], [10.7497, 60.79], [10.7497, 60.79], [10.7498, 60.79], [10.7498, 60.7899], [10.7498, 60.7898], [10.7498, 60.7898], [10.7497, 60.7898], [10.7497, 60.7897], [10.7497, 60.7897], [10.7497, 60.7897], [10.7497, 60.7897], [10.7498, 60.7897], [10.7499, 60.7897], [10.7499, 60.7897], [10.7499, 60.7897], [10.75, 60.7896], [10.7501, 60.7895], [10.7501, 60.7894], [10.7502, 60.7894], [10.7503, 60.7894], [10.7504, 60.7893], [10.7504, 60.7769], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "38", "sub_div_center": [0.0336, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7969], [10.7104, 60.8169], [10.7238, 60.8169], [10.7238, 60.8168], [10.7238, 60.8169], [10.7239, 60.8169], [10.724, 60.8168], [10.724, 60.8168], [10.7241, 60.8168], [10.7241, 60.8168], [10.7241, 60.8168], [10.7242, 60.8168], [10.7241, 60.8167], [10.7241, 60.8167], [10.7241, 60.8166], [10.7241, 60.8166], [10.7241, 60.8166], [10.724, 60.8165], [10.724, 60.8165], [10.7238, 60.8165], [10.7237, 60.8166], [10.7237, 60.8166], [10.7236, 60.8166], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8164], [10.7236, 60.8164], [10.7235, 60.8164], [10.7233, 60.8164], [10.7231, 60.8164], [10.723, 60.8163], [10.7229, 60.8163], [10.7228, 60.8163], [10.7228, 60.8162], [10.7228, 60.8162], [10.7229, 60.8162], [10.7229, 60.8161], [10.7229, 60.8161], [10.723, 60.8161], [10.723, 60.8161], [10.7231, 60.8161], [10.7231, 60.8161], [10.7232, 60.8162], [10.7234, 60.8162], [10.7235, 60.8163], [10.7237, 60.8163], [10.7239, 60.8164], [10.7241, 60.8164], [10.7241, 60.8164], [10.7242, 60.8164], [10.7242, 60.8164], [10.7242, 60.8164], [10.7243, 60.8164], [10.7243, 60.8164], [10.7244, 60.8164], [10.7245, 60.8163], [10.7245, 60.8162], [10.7246, 60.8162], [10.7246, 60.8161], [10.7246, 60.816], [10.7246, 60.816], [10.7246, 60.816], [10.7247, 60.816], [10.7247, 60.816], [10.7247, 60.8159], [10.7247, 60.8159], [10.7247, 60.8159], [10.7245, 60.8159], [10.7244, 60.8159], [10.7243, 60.8159], [10.7243, 60.8159], [10.7243, 60.8159], [10.7243, 60.8158], [10.7244, 60.8158], [10.7244, 60.8158], [10.7245, 60.8158], [10.7245, 60.8158], [10.7246, 60.8158], [10.7246, 60.8158], [10.7246, 60.8158], [10.7247, 60.8158], [10.7247, 60.8157], [10.7247, 60.8157], [10.7245, 60.8157], [10.7246, 60.8156], [10.7247, 60.8156], [10.7247, 60.8156], [10.7248, 60.8156], [10.7249, 60.8156], [10.7249, 60.8156], [10.7249, 60.8156], [10.725, 60.8156], [10.725, 60.8155], [10.7251, 60.8155], [10.7251, 60.8155], [10.7252, 60.8154], [10.7253, 60.8153], [10.7254, 60.8152], [10.7254, 60.8152], [10.7255, 60.8152], [10.7255, 60.8152], [10.7256, 60.8151], [10.7257, 60.815], [10.7258, 60.815], [10.7259, 60.8149], [10.7259, 60.8148], [10.726, 60.8147], [10.726, 60.8147], [10.7261, 60.8146], [10.7262, 60.8146], [10.7262, 60.8145], [10.7263, 60.8145], [10.7263, 60.8144], [10.7264, 60.8144], [10.7264, 60.8143], [10.7265, 60.8143], [10.7265, 60.8143], [10.7264, 60.8142], [10.7263, 60.8142], [10.7261, 60.8141], [10.7259, 60.814], [10.7258, 60.8139], [10.7258, 60.8139], [10.7258, 60.8138], [10.7259, 60.8137], [10.7261, 60.8135], [10.7262, 60.8135], [10.7262, 60.8136], [10.7262, 60.8136], [10.7262, 60.8137], [10.7262, 60.8138], [10.7261, 60.8138], [10.7261, 60.8139], [10.7266, 60.8141], [10.7267, 60.8141], [10.7268, 60.814], [10.7268, 60.814], [10.7269, 60.814], [10.7269, 60.8139], [10.7273, 60.8135], [10.7273, 60.8134], [10.7273, 60.8134], [10.7273, 60.8134], [10.7272, 60.8134], [10.727, 60.8133], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8133], [10.7266, 60.8133], [10.7267, 60.8132], [10.7268, 60.8132], [10.7269, 60.8132], [10.7269, 60.8132], [10.7273, 60.8132], [10.7274, 60.8133], [10.7275, 60.8133], [10.7275, 60.8132], [10.7276, 60.8132], [10.7276, 60.8131], [10.7276, 60.813], [10.7277, 60.813], [10.7277, 60.8129], [10.7277, 60.8129], [10.7277, 60.8128], [10.7278, 60.8127], [10.7278, 60.8127], [10.7278, 60.8126], [10.7278, 60.8125], [10.7278, 60.8125], [10.7277, 60.8125], [10.7276, 60.8124], [10.7275, 60.8124], [10.7275, 60.8123], [10.7275, 60.8123], [10.7275, 60.8122], [10.7276, 60.8122], [10.7277, 60.8121], [10.7278, 60.8121], [10.7279, 60.8121], [10.728, 60.8121], [10.728, 60.812], [10.728, 60.812], [10.728, 60.812], [10.7281, 60.8119], [10.7281, 60.8119], [10.7281, 60.8119], [10.7281, 60.8118], [10.7281, 60.8118], [10.728, 60.8117], [10.7279, 60.8117], [10.7278, 60.8117], [10.7277, 60.8117], [10.7276, 60.8117], [10.7276, 60.8117], [10.7275, 60.8118], [10.7275, 60.8118], [10.7274, 60.8118], [10.7274, 60.8117], [10.7274, 60.8117], [10.7275, 60.8117], [10.7276, 60.8116], [10.7277, 60.8116], [10.7277, 60.8116], [10.7278, 60.8115], [10.728, 60.8116], [10.7281, 60.8116], [10.7282, 60.8116], [10.7282, 60.8116], [10.7283, 60.8115], [10.7283, 60.8115], [10.7284, 60.8114], [10.7284, 60.8113], [10.7285, 60.8112], [10.7286, 60.8111], [10.7286, 60.8111], [10.7287, 60.811], [10.7287, 60.8109], [10.7288, 60.8108], [10.7286, 60.8108], [10.7287, 60.8108], [10.7288, 60.8108], [10.7288, 60.8108], [10.7289, 60.8107], [10.729, 60.8108], [10.7291, 60.8107], [10.7291, 60.8107], [10.7293, 60.8106], [10.7295, 60.8105], [10.7299, 60.8104], [10.7302, 60.8103], [10.7303, 60.8103], [10.7304, 60.8103], [10.7305, 60.8102], [10.7305, 60.8102], [10.7304, 60.8101], [10.7305, 60.8101], [10.7305, 60.81], [10.7306, 60.8099], [10.7307, 60.8099], [10.7308, 60.8098], [10.731, 60.8098], [10.7311, 60.8098], [10.7313, 60.8097], [10.7316, 60.8096], [10.732, 60.8093], [10.7322, 60.8092], [10.7326, 60.809], [10.7327, 60.8089], [10.7328, 60.8088], [10.7329, 60.8088], [10.733, 60.8088], [10.7331, 60.8087], [10.7333, 60.8086], [10.7333, 60.8087], [10.7334, 60.8087], [10.7334, 60.8087], [10.7335, 60.8087], [10.7336, 60.8087], [10.7337, 60.8087], [10.7338, 60.8086], [10.7339, 60.8086], [10.734, 60.8085], [10.7341, 60.8085], [10.7342, 60.8085], [10.7343, 60.8084], [10.7343, 60.8084], [10.7343, 60.8084], [10.7344, 60.8084], [10.7344, 60.8084], [10.7344, 60.8084], [10.7345, 60.8084], [10.7345, 60.8085], [10.7348, 60.8084], [10.7348, 60.8084], [10.7349, 60.8084], [10.735, 60.8084], [10.7351, 60.8083], [10.7352, 60.8083], [10.7352, 60.8082], [10.7353, 60.8082], [10.7354, 60.8081], [10.7355, 60.808], [10.7356, 60.808], [10.7357, 60.8079], [10.7357, 60.8079], [10.7357, 60.8078], [10.7357, 60.8078], [10.7357, 60.8078], [10.7357, 60.8077], [10.7357, 60.8077], [10.7358, 60.8076], [10.7358, 60.8076], [10.7359, 60.8075], [10.7359, 60.8074], [10.7359, 60.8073], [10.736, 60.8071], [10.7361, 60.807], [10.7361, 60.8069], [10.7361, 60.8068], [10.7361, 60.8067], [10.7361, 60.8066], [10.736, 60.8064], [10.736, 60.8063], [10.7359, 60.8062], [10.736, 60.8061], [10.7361, 60.8059], [10.7361, 60.8059], [10.7362, 60.8058], [10.7362, 60.8057], [10.7362, 60.8056], [10.7362, 60.8055], [10.7362, 60.8054], [10.7361, 60.8053], [10.736, 60.8052], [10.7359, 60.8051], [10.7359, 60.805], [10.7359, 60.8049], [10.7358, 60.8049], [10.7358, 60.8048], [10.7358, 60.8047], [10.7359, 60.8047], [10.7359, 60.8046], [10.7359, 60.8046], [10.7361, 60.8045], [10.7362, 60.8045], [10.7363, 60.8044], [10.7364, 60.8044], [10.7365, 60.8043], [10.7365, 60.8043], [10.7365, 60.8042], [10.7366, 60.8042], [10.7368, 60.8041], [10.7369, 60.8041], [10.737, 60.804], [10.7371, 60.8038], [10.7372, 60.8038], [10.7373, 60.8037], [10.7374, 60.8036], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8034], [10.7374, 60.8034], [10.7373, 60.8034], [10.7374, 60.8034], [10.7374, 60.8034], [10.7374, 60.8033], [10.7375, 60.8033], [10.7374, 60.8032], [10.7374, 60.8032], [10.7374, 60.8032], [10.7374, 60.8031], [10.7374, 60.8031], [10.7375, 60.8031], [10.7375, 60.8031], [10.7376, 60.803], [10.7376, 60.803], [10.7377, 60.8029], [10.7379, 60.8028], [10.7379, 60.8028], [10.738, 60.8027], [10.7381, 60.8026], [10.7382, 60.8026], [10.7382, 60.8025], [10.7383, 60.8024], [10.7383, 60.8023], [10.7383, 60.8023], [10.7383, 60.8022], [10.7383, 60.8022], [10.7383, 60.8021], [10.7384, 60.8021], [10.7385, 60.8019], [10.7386, 60.8018], [10.7386, 60.8018], [10.7387, 60.8017], [10.7387, 60.8017], [10.7388, 60.8016], [10.7388, 60.8015], [10.739, 60.8015], [10.739, 60.8014], [10.7391, 60.8012], [10.7392, 60.8012], [10.7393, 60.8012], [10.7394, 60.8011], [10.7395, 60.8011], [10.7396, 60.8011], [10.7397, 60.801], [10.7398, 60.801], [10.7398, 60.8009], [10.7399, 60.8009], [10.74, 60.8008], [10.7401, 60.8008], [10.7401, 60.8007], [10.7402, 60.8006], [10.7403, 60.8004], [10.7405, 60.8003], [10.7406, 60.8002], [10.7407, 60.8001], [10.7407, 60.8], [10.7407, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7407, 60.8], [10.7407, 60.8], [10.7408, 60.8], [10.7409, 60.7999], [10.7409, 60.7999], [10.741, 60.7997], [10.741, 60.7997], [10.741, 60.7997], [10.7411, 60.7997], [10.7411, 60.7997], [10.7412, 60.7996], [10.7414, 60.7995], [10.7415, 60.7994], [10.7415, 60.7994], [10.7416, 60.7994], [10.7416, 60.7993], [10.7418, 60.7991], [10.742, 60.7989], [10.7422, 60.7987], [10.7423, 60.7986], [10.7424, 60.7985], [10.7424, 60.7984], [10.7425, 60.7984], [10.7426, 60.7983], [10.7427, 60.7982], [10.7427, 60.7982], [10.7429, 60.798], [10.743, 60.798], [10.743, 60.7979], [10.743, 60.7977], [10.7431, 60.7976], [10.7433, 60.7974], [10.7434, 60.7973], [10.7437, 60.7971], [10.7441, 60.7969], [10.7104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "39", "sub_div_center": [0.0136, 0.0063]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8169], [10.7104, 60.8232], [10.7105, 60.8231], [10.7106, 60.823], [10.7107, 60.8228], [10.7108, 60.8226], [10.7109, 60.8224], [10.7109, 60.8224], [10.711, 60.8223], [10.711, 60.8223], [10.711, 60.8222], [10.711, 60.8221], [10.711, 60.8221], [10.7111, 60.8219], [10.7111, 60.8219], [10.7112, 60.8218], [10.7112, 60.8217], [10.7113, 60.8216], [10.7114, 60.8215], [10.7115, 60.8214], [10.7116, 60.8213], [10.7117, 60.8212], [10.7118, 60.8211], [10.7118, 60.8211], [10.7119, 60.8211], [10.7119, 60.821], [10.712, 60.8207], [10.7121, 60.8207], [10.7122, 60.8206], [10.7123, 60.8205], [10.7124, 60.8204], [10.7125, 60.8204], [10.7126, 60.8203], [10.7128, 60.8201], [10.713, 60.8199], [10.713, 60.8198], [10.7131, 60.8198], [10.7132, 60.8197], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8195], [10.7132, 60.8195], [10.7133, 60.8195], [10.7133, 60.8195], [10.7134, 60.8195], [10.7134, 60.8195], [10.7135, 60.8194], [10.7134, 60.8194], [10.7134, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7134, 60.8193], [10.7134, 60.8193], [10.7135, 60.8193], [10.7135, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8192], [10.7136, 60.8192], [10.7137, 60.8192], [10.7137, 60.8191], [10.7138, 60.8191], [10.7139, 60.819], [10.7139, 60.819], [10.714, 60.819], [10.714, 60.8189], [10.7141, 60.8189], [10.7141, 60.8189], [10.7142, 60.8188], [10.7144, 60.8187], [10.7145, 60.8186], [10.7146, 60.8184], [10.7147, 60.8184], [10.7147, 60.8183], [10.7148, 60.8183], [10.7148, 60.8183], [10.7149, 60.8183], [10.7149, 60.8182], [10.715, 60.8182], [10.7151, 60.8183], [10.7151, 60.8183], [10.7152, 60.8183], [10.7153, 60.8183], [10.7153, 60.8183], [10.7153, 60.8183], [10.7152, 60.8183], [10.7151, 60.8183], [10.7151, 60.8183], [10.715, 60.8184], [10.715, 60.8184], [10.7152, 60.8184], [10.7153, 60.8185], [10.7153, 60.8185], [10.7153, 60.8185], [10.7153, 60.8186], [10.7153, 60.8186], [10.7153, 60.8186], [10.7154, 60.8186], [10.7154, 60.8187], [10.7154, 60.8187], [10.7155, 60.8187], [10.7156, 60.8187], [10.7156, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7156, 60.8187], [10.7156, 60.8188], [10.7155, 60.8188], [10.7155, 60.8188], [10.7155, 60.8189], [10.7155, 60.819], [10.7156, 60.8191], [10.7156, 60.8192], [10.7156, 60.8194], [10.7157, 60.8195], [10.7156, 60.8195], [10.7156, 60.8195], [10.7156, 60.8195], [10.7156, 60.8196], [10.7157, 60.8197], [10.7157, 60.8198], [10.7158, 60.8198], [10.7158, 60.8198], [10.7158, 60.8199], [10.7159, 60.82], [10.7159, 60.82], [10.716, 60.82], [10.716, 60.8201], [10.716, 60.8201], [10.716, 60.8202], [10.7161, 60.8202], [10.7161, 60.8201], [10.7162, 60.8201], [10.7163, 60.8201], [10.7163, 60.8201], [10.7164, 60.8201], [10.7166, 60.82], [10.7167, 60.82], [10.7168, 60.8199], [10.7168, 60.8199], [10.7169, 60.8198], [10.7171, 60.8198], [10.7173, 60.8197], [10.7174, 60.8196], [10.7176, 60.8195], [10.7178, 60.8194], [10.7179, 60.8194], [10.718, 60.8193], [10.7181, 60.8192], [10.7183, 60.8191], [10.7184, 60.8191], [10.7185, 60.819], [10.7186, 60.819], [10.7187, 60.819], [10.7187, 60.8189], [10.7188, 60.8188], [10.7189, 60.8188], [10.7189, 60.8187], [10.7189, 60.8187], [10.7193, 60.8185], [10.7193, 60.8185], [10.7192, 60.8184], [10.7191, 60.8184], [10.7189, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7183, 60.8183], [10.7184, 60.8183], [10.7185, 60.8183], [10.7186, 60.8183], [10.7187, 60.8183], [10.7188, 60.8183], [10.7189, 60.8183], [10.7191, 60.8183], [10.7192, 60.8183], [10.7193, 60.8183], [10.7193, 60.8183], [10.7194, 60.8183], [10.7194, 60.8183], [10.7195, 60.8183], [10.7196, 60.8183], [10.7196, 60.8183], [10.7197, 60.8183], [10.7197, 60.8183], [10.7199, 60.8183], [10.72, 60.8183], [10.72, 60.8183], [10.7201, 60.8182], [10.7201, 60.8182], [10.7201, 60.8182], [10.7201, 60.8181], [10.7201, 60.8181], [10.7202, 60.8181], [10.7202, 60.8181], [10.7204, 60.818], [10.7204, 60.818], [10.7205, 60.818], [10.7206, 60.8179], [10.7207, 60.8179], [10.7208, 60.8179], [10.721, 60.818], [10.7211, 60.8179], [10.7212, 60.8179], [10.7212, 60.8179], [10.7213, 60.8179], [10.7214, 60.8179], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7213, 60.8177], [10.7213, 60.8177], [10.7214, 60.8177], [10.7215, 60.8176], [10.7216, 60.8176], [10.7216, 60.8176], [10.7216, 60.8176], [10.7215, 60.8177], [10.7214, 60.8177], [10.7214, 60.8178], [10.7215, 60.8178], [10.7215, 60.8178], [10.7215, 60.8178], [10.7216, 60.8178], [10.7217, 60.8178], [10.7217, 60.8178], [10.7218, 60.8177], [10.7218, 60.8178], [10.722, 60.8178], [10.7222, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7222, 60.8177], [10.7222, 60.8176], [10.7222, 60.8176], [10.7222, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7224, 60.8176], [10.7224, 60.8176], [10.7225, 60.8177], [10.7226, 60.8176], [10.7226, 60.8176], [10.7226, 60.8176], [10.7227, 60.8176], [10.7227, 60.8176], [10.7227, 60.8176], [10.7228, 60.8176], [10.7228, 60.8176], [10.7229, 60.8176], [10.7229, 60.8176], [10.7229, 60.8175], [10.7228, 60.8175], [10.7227, 60.8175], [10.7226, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8174], [10.7226, 60.8174], [10.7226, 60.8174], [10.7226, 60.8174], [10.7227, 60.8174], [10.7228, 60.8174], [10.7229, 60.8174], [10.7229, 60.8174], [10.723, 60.8174], [10.7231, 60.8173], [10.7231, 60.8173], [10.7233, 60.8172], [10.7233, 60.8173], [10.7234, 60.8173], [10.7234, 60.8173], [10.7234, 60.8173], [10.7235, 60.8173], [10.7235, 60.8172], [10.7235, 60.8172], [10.7235, 60.8172], [10.7234, 60.8172], [10.7235, 60.8171], [10.7235, 60.8171], [10.7236, 60.8171], [10.7236, 60.8171], [10.7237, 60.8171], [10.7237, 60.8171], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.8169], [10.7238, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7235, 60.8169], [10.7235, 60.8169], [10.7235, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7238, 60.8169], [10.7238, 60.8169], [10.7239, 60.8169], [10.7239, 60.8169], [10.724, 60.8169], [10.724, 60.8169], [10.7238, 60.8169], [10.7238, 60.8169], [10.7104, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "40", "sub_div_center": [0.0, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8283], [10.7104, 60.8283]]]}}, {"type": "Feature", "properties": {"sub_div_id": "41", "sub_div_center": [0.0002, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8287], [10.7105, 60.8287], [10.7105, 60.8287], [10.7105, 60.8287], [10.7105, 60.8286], [10.7105, 60.8286], [10.7104, 60.8286], [10.7104, 60.8286], [10.7105, 60.8286], [10.7105, 60.8286], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8284], [10.7105, 60.8284], [10.7106, 60.8284], [10.7106, 60.8284], [10.7106, 60.8284], [10.7105, 60.8283], [10.7105, 60.8283], [10.7105, 60.8284], [10.7104, 60.8284], [10.7104, 60.8287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "42", "sub_div_center": [0.0022, 0.0023]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7126, 60.8368], [10.7126, 60.8368], [10.7126, 60.8368], [10.7125, 60.8367], [10.7124, 60.8366], [10.7121, 60.8367], [10.7119, 60.8367], [10.7118, 60.8367], [10.7117, 60.8367], [10.7117, 60.8366], [10.7116, 60.8366], [10.7116, 60.8366], [10.7117, 60.8366], [10.7118, 60.8365], [10.7118, 60.8365], [10.7119, 60.8365], [10.712, 60.8365], [10.712, 60.8365], [10.7121, 60.8365], [10.7122, 60.8365], [10.7122, 60.8365], [10.7122, 60.8364], [10.7122, 60.8364], [10.7121, 60.8364], [10.712, 60.8364], [10.712, 60.8364], [10.712, 60.8364], [10.7121, 60.8364], [10.7122, 60.8363], [10.7122, 60.8363], [10.7122, 60.8363], [10.7121, 60.8361], [10.712, 60.836], [10.712, 60.836], [10.7119, 60.836], [10.7118, 60.836], [10.7118, 60.836], [10.7117, 60.836], [10.7117, 60.836], [10.7117, 60.8359], [10.7117, 60.8359], [10.7118, 60.8359], [10.7118, 60.8359], [10.7118, 60.8358], [10.7118, 60.8358], [10.7118, 60.8358], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8356], [10.7117, 60.8356], [10.7116, 60.8355], [10.7115, 60.8355], [10.7114, 60.8354], [10.7113, 60.8354], [10.7112, 60.8353], [10.7111, 60.8352], [10.7107, 60.8349], [10.7106, 60.8348], [10.7105, 60.8347], [10.7104, 60.8346], [10.7104, 60.8369], [10.7126, 60.8369], [10.7126, 60.8368]]]}}, {"type": "Feature", "properties": {"sub_div_id": "43", "sub_div_center": [0.025, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8369], [10.7104, 60.8569], [10.7351, 60.8569], [10.7351, 60.8568], [10.7351, 60.8568], [10.7351, 60.8566], [10.7351, 60.8565], [10.735, 60.8563], [10.735, 60.8562], [10.735, 60.8561], [10.7351, 60.8561], [10.7351, 60.856], [10.735, 60.8559], [10.7351, 60.8557], [10.735, 60.8556], [10.7349, 60.8555], [10.7349, 60.8554], [10.7349, 60.8553], [10.7348, 60.8551], [10.7348, 60.855], [10.7348, 60.8549], [10.7349, 60.8548], [10.7349, 60.8547], [10.7348, 60.8547], [10.7348, 60.8546], [10.7347, 60.8546], [10.7346, 60.8546], [10.7346, 60.8545], [10.7346, 60.8545], [10.7345, 60.8545], [10.7345, 60.8544], [10.7346, 60.8544], [10.7346, 60.8544], [10.7347, 60.8544], [10.7347, 60.8544], [10.7349, 60.8544], [10.7352, 60.8545], [10.7352, 60.8544], [10.7353, 60.8544], [10.7353, 60.8544], [10.7354, 60.8543], [10.7353, 60.8542], [10.7353, 60.8542], [10.7353, 60.8542], [10.7353, 60.8541], [10.7353, 60.8541], [10.7353, 60.854], [10.7353, 60.854], [10.7352, 60.8539], [10.7352, 60.8539], [10.7351, 60.8539], [10.7351, 60.8539], [10.7351, 60.8538], [10.7351, 60.8538], [10.7351, 60.8538], [10.7352, 60.8537], [10.7351, 60.8537], [10.735, 60.8537], [10.735, 60.8536], [10.735, 60.8535], [10.7351, 60.8535], [10.7351, 60.8534], [10.735, 60.8534], [10.7351, 60.8533], [10.7351, 60.8533], [10.7351, 60.8533], [10.735, 60.8533], [10.735, 60.8532], [10.735, 60.8531], [10.735, 60.853], [10.7351, 60.8529], [10.7351, 60.8528], [10.7351, 60.8528], [10.7351, 60.8527], [10.7352, 60.8526], [10.7352, 60.8526], [10.7351, 60.8526], [10.7351, 60.8525], [10.7351, 60.8525], [10.7351, 60.8524], [10.7351, 60.8524], [10.7351, 60.8524], [10.7351, 60.8523], [10.735, 60.8523], [10.7349, 60.8523], [10.7348, 60.8523], [10.7347, 60.8523], [10.7346, 60.8523], [10.7346, 60.8523], [10.7347, 60.8522], [10.7348, 60.8522], [10.7349, 60.8522], [10.7349, 60.8522], [10.7348, 60.8521], [10.7347, 60.8521], [10.7347, 60.8521], [10.7346, 60.8521], [10.7346, 60.8521], [10.7346, 60.8521], [10.7346, 60.852], [10.7346, 60.852], [10.7346, 60.852], [10.7345, 60.8519], [10.7345, 60.8519], [10.7344, 60.8519], [10.7344, 60.8519], [10.7342, 60.852], [10.7342, 60.8519], [10.7343, 60.8519], [10.7344, 60.8519], [10.7344, 60.8518], [10.7345, 60.8518], [10.7344, 60.8518], [10.7343, 60.8517], [10.7341, 60.8517], [10.7341, 60.8516], [10.734, 60.8516], [10.7339, 60.8515], [10.7338, 60.8516], [10.7337, 60.8515], [10.7338, 60.8515], [10.7337, 60.8515], [10.7336, 60.8514], [10.7334, 60.8514], [10.7332, 60.8513], [10.733, 60.8512], [10.733, 60.8512], [10.733, 60.8511], [10.7329, 60.8511], [10.7329, 60.8511], [10.7328, 60.8511], [10.7327, 60.851], [10.7325, 60.8509], [10.7325, 60.8509], [10.7324, 60.8508], [10.7324, 60.8508], [10.7323, 60.8507], [10.7321, 60.8506], [10.7318, 60.8505], [10.7318, 60.8505], [10.7317, 60.8504], [10.7316, 60.8504], [10.7315, 60.8503], [10.7314, 60.8503], [10.7313, 60.8503], [10.7313, 60.8503], [10.7311, 60.8502], [10.7309, 60.8501], [10.7307, 60.85], [10.7307, 60.8499], [10.7306, 60.8499], [10.7305, 60.8498], [10.7304, 60.8497], [10.7303, 60.8496], [10.7302, 60.8495], [10.73, 60.8494], [10.73, 60.8494], [10.73, 60.8493], [10.7299, 60.8492], [10.7299, 60.8492], [10.7299, 60.8491], [10.7298, 60.849], [10.7297, 60.8489], [10.7297, 60.8489], [10.7296, 60.8488], [10.7296, 60.8487], [10.7296, 60.8487], [10.7296, 60.8487], [10.7295, 60.8487], [10.7294, 60.8486], [10.7295, 60.8486], [10.7296, 60.8486], [10.7296, 60.8485], [10.7296, 60.8485], [10.7296, 60.8484], [10.7294, 60.848], [10.7293, 60.8479], [10.7292, 60.8479], [10.7292, 60.8479], [10.7291, 60.8479], [10.7291, 60.8478], [10.7291, 60.8478], [10.7291, 60.8478], [10.7292, 60.8477], [10.7291, 60.8477], [10.729, 60.8477], [10.7289, 60.8476], [10.7289, 60.8476], [10.7288, 60.8475], [10.7288, 60.8474], [10.7287, 60.8474], [10.7286, 60.8475], [10.7286, 60.8475], [10.7285, 60.8475], [10.7287, 60.8474], [10.7287, 60.8474], [10.7286, 60.8473], [10.7285, 60.8473], [10.7284, 60.8473], [10.7284, 60.8473], [10.7283, 60.8473], [10.7282, 60.8473], [10.7283, 60.8473], [10.7283, 60.8473], [10.7284, 60.8472], [10.7284, 60.8472], [10.7283, 60.8472], [10.7282, 60.8471], [10.7282, 60.8471], [10.7282, 60.847], [10.7282, 60.847], [10.728, 60.8469], [10.7279, 60.8468], [10.7277, 60.8467], [10.7274, 60.8464], [10.7272, 60.8463], [10.727, 60.8462], [10.7269, 60.8461], [10.7269, 60.846], [10.7268, 60.846], [10.7268, 60.846], [10.7267, 60.846], [10.7267, 60.846], [10.7266, 60.8459], [10.7265, 60.8459], [10.7264, 60.8458], [10.7264, 60.8458], [10.7263, 60.8458], [10.726, 60.846], [10.7259, 60.846], [10.7258, 60.8459], [10.7258, 60.8459], [10.7257, 60.8458], [10.7257, 60.8458], [10.7258, 60.8458], [10.7258, 60.8459], [10.7259, 60.8459], [10.726, 60.8459], [10.726, 60.8459], [10.7261, 60.8459], [10.7261, 60.8458], [10.7263, 60.8458], [10.7263, 60.8458], [10.7263, 60.8457], [10.7262, 60.8457], [10.7261, 60.8457], [10.726, 60.8456], [10.7259, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7256, 60.8457], [10.7256, 60.8457], [10.7256, 60.8456], [10.7256, 60.8456], [10.7256, 60.8456], [10.7257, 60.8455], [10.7257, 60.8455], [10.7256, 60.8455], [10.7254, 60.8455], [10.7253, 60.8454], [10.7253, 60.8453], [10.7252, 60.8451], [10.7253, 60.8451], [10.7253, 60.8451], [10.7252, 60.845], [10.7252, 60.845], [10.7252, 60.845], [10.7251, 60.8449], [10.725, 60.8448], [10.7247, 60.8447], [10.7244, 60.8446], [10.7242, 60.8445], [10.7239, 60.8443], [10.7236, 60.8443], [10.723, 60.8441], [10.723, 60.8441], [10.7229, 60.8441], [10.7224, 60.844], [10.7222, 60.8439], [10.7219, 60.8438], [10.7217, 60.8437], [10.7215, 60.8436], [10.721, 60.8434], [10.7209, 60.8433], [10.7207, 60.8432], [10.7206, 60.8431], [10.7203, 60.8428], [10.7199, 60.8425], [10.7195, 60.8423], [10.7192, 60.8422], [10.7188, 60.8421], [10.7186, 60.842], [10.7183, 60.8418], [10.7181, 60.8417], [10.718, 60.8416], [10.7178, 60.8415], [10.7175, 60.8413], [10.7172, 60.8411], [10.7168, 60.8408], [10.7165, 60.8406], [10.7163, 60.8404], [10.716, 60.8401], [10.7156, 60.8399], [10.7155, 60.8398], [10.7155, 60.8397], [10.7153, 60.8396], [10.7151, 60.8395], [10.715, 60.8395], [10.7148, 60.8395], [10.7147, 60.8395], [10.7147, 60.8394], [10.7147, 60.8394], [10.7148, 60.8393], [10.7147, 60.8391], [10.7146, 60.839], [10.7145, 60.8389], [10.7143, 60.8388], [10.7142, 60.8387], [10.7142, 60.8386], [10.7141, 60.8386], [10.7141, 60.8386], [10.714, 60.8385], [10.714, 60.8384], [10.7137, 60.8382], [10.7136, 60.838], [10.7135, 60.838], [10.7134, 60.838], [10.7134, 60.8379], [10.7133, 60.8378], [10.7133, 60.8378], [10.7132, 60.8377], [10.7131, 60.8376], [10.713, 60.8374], [10.713, 60.8374], [10.713, 60.8374], [10.7129, 60.8373], [10.7128, 60.8373], [10.7128, 60.8372], [10.7127, 60.8371], [10.7127, 60.8371], [10.7125, 60.8371], [10.7125, 60.837], [10.7124, 60.837], [10.7124, 60.837], [10.7124, 60.8369], [10.7124, 60.8369], [10.7125, 60.8369], [10.7126, 60.8369], [10.7126, 60.8369], [10.7104, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "44", "sub_div_center": [0.0359, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8569], [10.7104, 60.8769], [10.735, 60.8769], [10.735, 60.8768], [10.7351, 60.8767], [10.7352, 60.8767], [10.7354, 60.8767], [10.7355, 60.8767], [10.7355, 60.8767], [10.7356, 60.8767], [10.7356, 60.8766], [10.7356, 60.8766], [10.7356, 60.8766], [10.7356, 60.8765], [10.7356, 60.8765], [10.7357, 60.8764], [10.7358, 60.8763], [10.7359, 60.8763], [10.7362, 60.8761], [10.7362, 60.8761], [10.7363, 60.8761], [10.7362, 60.876], [10.7363, 60.876], [10.7364, 60.8761], [10.7365, 60.876], [10.7368, 60.8759], [10.7371, 60.8758], [10.7373, 60.8757], [10.7375, 60.8756], [10.7378, 60.8754], [10.738, 60.8753], [10.7386, 60.8751], [10.7388, 60.875], [10.739, 60.875], [10.7393, 60.875], [10.7394, 60.875], [10.7396, 60.8749], [10.7398, 60.8749], [10.7399, 60.8749], [10.74, 60.8749], [10.74, 60.8748], [10.7401, 60.8748], [10.7402, 60.8748], [10.7402, 60.8748], [10.7403, 60.8749], [10.7406, 60.8749], [10.7408, 60.8749], [10.741, 60.8749], [10.7412, 60.8749], [10.7413, 60.8749], [10.7414, 60.875], [10.7416, 60.875], [10.7417, 60.8751], [10.7419, 60.8751], [10.7419, 60.8752], [10.7419, 60.8752], [10.7421, 60.8753], [10.7421, 60.8753], [10.7422, 60.8753], [10.7422, 60.8753], [10.7423, 60.8754], [10.7424, 60.8754], [10.7427, 60.8754], [10.7427, 60.8755], [10.7428, 60.8754], [10.7429, 60.8754], [10.7431, 60.8754], [10.7432, 60.8753], [10.7434, 60.8753], [10.7437, 60.8752], [10.7438, 60.8752], [10.7439, 60.8751], [10.744, 60.875], [10.7441, 60.8749], [10.7442, 60.8749], [10.7443, 60.8748], [10.7445, 60.8747], [10.7446, 60.8747], [10.7447, 60.8746], [10.7447, 60.8745], [10.7448, 60.8745], [10.7449, 60.8744], [10.7449, 60.8744], [10.7451, 60.8743], [10.7452, 60.8742], [10.7453, 60.8742], [10.7454, 60.874], [10.7455, 60.8739], [10.7455, 60.8739], [10.7456, 60.8739], [10.7457, 60.8738], [10.7457, 60.8737], [10.7458, 60.8737], [10.7458, 60.8737], [10.7459, 60.8736], [10.7459, 60.8736], [10.746, 60.8736], [10.746, 60.8735], [10.746, 60.8735], [10.746, 60.8735], [10.7461, 60.8734], [10.7461, 60.8734], [10.7461, 60.8733], [10.7461, 60.8733], [10.7462, 60.8732], [10.7461, 60.8732], [10.7461, 60.8732], [10.7461, 60.8732], [10.7459, 60.8731], [10.7458, 60.8731], [10.7458, 60.8731], [10.7458, 60.873], [10.7458, 60.873], [10.7459, 60.873], [10.7459, 60.873], [10.7458, 60.8729], [10.7458, 60.8729], [10.7459, 60.8729], [10.7459, 60.8729], [10.746, 60.8729], [10.746, 60.8729], [10.7461, 60.8729], [10.7462, 60.8728], [10.7462, 60.8727], [10.7462, 60.8727], [10.7462, 60.8726], [10.7462, 60.8726], [10.7463, 60.8726], [10.7463, 60.8725], [10.7463, 60.8725], [10.7463, 60.8725], [10.7463, 60.8724], [10.7463, 60.8723], [10.7463, 60.8722], [10.7462, 60.8722], [10.7462, 60.8721], [10.7461, 60.8721], [10.7461, 60.8721], [10.7461, 60.872], [10.7462, 60.872], [10.7461, 60.8718], [10.7461, 60.8718], [10.746, 60.8717], [10.746, 60.8717], [10.7459, 60.8717], [10.7458, 60.8717], [10.7457, 60.8717], [10.7458, 60.8716], [10.7458, 60.8715], [10.7458, 60.8715], [10.7458, 60.8714], [10.7458, 60.8714], [10.7458, 60.8713], [10.7459, 60.8712], [10.746, 60.8712], [10.7459, 60.8711], [10.7459, 60.8711], [10.7459, 60.871], [10.7459, 60.871], [10.7459, 60.8709], [10.7458, 60.8707], [10.7458, 60.8706], [10.7459, 60.8706], [10.7459, 60.8706], [10.7459, 60.8705], [10.7459, 60.8704], [10.7459, 60.8703], [10.7459, 60.8703], [10.7458, 60.8702], [10.7458, 60.87], [10.7458, 60.8699], [10.7458, 60.8699], [10.7459, 60.8698], [10.7459, 60.8697], [10.746, 60.8696], [10.7458, 60.8695], [10.7457, 60.8694], [10.7456, 60.8693], [10.7456, 60.8691], [10.7456, 60.869], [10.7456, 60.869], [10.7456, 60.8689], [10.7455, 60.8688], [10.7454, 60.8687], [10.7454, 60.8687], [10.7454, 60.8686], [10.7455, 60.8685], [10.7454, 60.8684], [10.7454, 60.8683], [10.7452, 60.8681], [10.7452, 60.8681], [10.7451, 60.8681], [10.745, 60.8682], [10.745, 60.8681], [10.7451, 60.8681], [10.7451, 60.8681], [10.745, 60.8681], [10.7449, 60.868], [10.7448, 60.8679], [10.7447, 60.8679], [10.7446, 60.8678], [10.7446, 60.8678], [10.7447, 60.8677], [10.7447, 60.8677], [10.7447, 60.8676], [10.7447, 60.8676], [10.7447, 60.8676], [10.7447, 60.8675], [10.7446, 60.8675], [10.7446, 60.8675], [10.7445, 60.8675], [10.7446, 60.8674], [10.7446, 60.8674], [10.7446, 60.8674], [10.7445, 60.8673], [10.7444, 60.8672], [10.7443, 60.8671], [10.7442, 60.8671], [10.7442, 60.867], [10.7441, 60.8669], [10.7441, 60.8669], [10.7441, 60.8668], [10.744, 60.8667], [10.7439, 60.8667], [10.7438, 60.8666], [10.7438, 60.8666], [10.7439, 60.8665], [10.7438, 60.8664], [10.7438, 60.8664], [10.7438, 60.8663], [10.7438, 60.8662], [10.7437, 60.866], [10.7437, 60.8659], [10.7436, 60.8658], [10.7434, 60.8657], [10.7432, 60.8655], [10.743, 60.8655], [10.7428, 60.8654], [10.7427, 60.8654], [10.7426, 60.8654], [10.7424, 60.8654], [10.7424, 60.8655], [10.7423, 60.8654], [10.7422, 60.8654], [10.7421, 60.8654], [10.742, 60.8653], [10.742, 60.8653], [10.7419, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8652], [10.7418, 60.8652], [10.7419, 60.8652], [10.7418, 60.8651], [10.7418, 60.8651], [10.7417, 60.8651], [10.7417, 60.8651], [10.7414, 60.865], [10.7412, 60.8649], [10.7411, 60.8649], [10.741, 60.8648], [10.7409, 60.8648], [10.7407, 60.8647], [10.7405, 60.8647], [10.7404, 60.8646], [10.7402, 60.8645], [10.7401, 60.8643], [10.74, 60.8641], [10.7398, 60.864], [10.7397, 60.864], [10.7397, 60.8639], [10.7397, 60.8638], [10.7397, 60.8638], [10.7397, 60.8637], [10.7397, 60.8636], [10.7396, 60.8636], [10.7396, 60.8636], [10.7397, 60.8636], [10.7397, 60.8635], [10.7397, 60.8633], [10.7396, 60.8633], [10.7395, 60.8632], [10.7395, 60.8631], [10.7396, 60.863], [10.7395, 60.8629], [10.7395, 60.8628], [10.7394, 60.8627], [10.7393, 60.8626], [10.7392, 60.8626], [10.7392, 60.8625], [10.7392, 60.8625], [10.7392, 60.8625], [10.7391, 60.8624], [10.739, 60.8623], [10.739, 60.8622], [10.7389, 60.8622], [10.7388, 60.862], [10.7386, 60.8619], [10.7385, 60.8617], [10.7384, 60.8616], [10.7382, 60.8614], [10.7381, 60.8612], [10.738, 60.8611], [10.7378, 60.8608], [10.7378, 60.8607], [10.7377, 60.8607], [10.7376, 60.8607], [10.7375, 60.8607], [10.7375, 60.8606], [10.7375, 60.8606], [10.7373, 60.8606], [10.7371, 60.8606], [10.7371, 60.8605], [10.737, 60.8604], [10.7369, 60.8603], [10.7369, 60.8603], [10.7369, 60.8602], [10.7369, 60.8601], [10.7369, 60.8601], [10.7369, 60.86], [10.7368, 60.8599], [10.7367, 60.8598], [10.7367, 60.8598], [10.7366, 60.8596], [10.7365, 60.8596], [10.7364, 60.8595], [10.7364, 60.8594], [10.7365, 60.8594], [10.7365, 60.8593], [10.7365, 60.8592], [10.7365, 60.8591], [10.7364, 60.859], [10.7363, 60.8588], [10.7363, 60.8587], [10.7362, 60.8587], [10.7361, 60.8585], [10.736, 60.8585], [10.736, 60.8584], [10.7359, 60.8583], [10.7358, 60.8583], [10.7358, 60.8582], [10.7358, 60.8582], [10.7356, 60.858], [10.7355, 60.8579], [10.7353, 60.8579], [10.7353, 60.8578], [10.7353, 60.8577], [10.7352, 60.8577], [10.7351, 60.8576], [10.735, 60.8576], [10.7349, 60.8575], [10.735, 60.8575], [10.7351, 60.8575], [10.7352, 60.8575], [10.7351, 60.8574], [10.7351, 60.8573], [10.7351, 60.8571], [10.7351, 60.857], [10.7351, 60.8569], [10.7351, 60.8569], [10.7104, 60.8569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "45", "sub_div_center": [0.0308, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8769], [10.7104, 60.8969], [10.7268, 60.8969], [10.7268, 60.8968], [10.7267, 60.8968], [10.7267, 60.8968], [10.7266, 60.8967], [10.7265, 60.8967], [10.7265, 60.8966], [10.7265, 60.8966], [10.7265, 60.8965], [10.7265, 60.8965], [10.7265, 60.8965], [10.7265, 60.8964], [10.7265, 60.8964], [10.7265, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7263, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7265, 60.8963], [10.7265, 60.8963], [10.7265, 60.8963], [10.7265, 60.8962], [10.7265, 60.8962], [10.7265, 60.8961], [10.7265, 60.8961], [10.7264, 60.896], [10.7264, 60.8959], [10.7264, 60.8959], [10.7265, 60.8959], [10.7264, 60.8958], [10.7264, 60.8958], [10.7264, 60.8957], [10.7263, 60.8956], [10.7263, 60.8955], [10.7262, 60.8954], [10.7262, 60.8954], [10.7262, 60.8954], [10.7261, 60.8953], [10.7262, 60.8953], [10.7262, 60.8953], [10.7261, 60.8952], [10.7261, 60.8952], [10.7261, 60.8951], [10.726, 60.895], [10.7259, 60.895], [10.7258, 60.8949], [10.7258, 60.8949], [10.7257, 60.8949], [10.7256, 60.8949], [10.7255, 60.8949], [10.7255, 60.8949], [10.7254, 60.8949], [10.7253, 60.8949], [10.7252, 60.8949], [10.7252, 60.8949], [10.7252, 60.8949], [10.7251, 60.8949], [10.725, 60.8949], [10.725, 60.8949], [10.7249, 60.8949], [10.7249, 60.8949], [10.7248, 60.8949], [10.7248, 60.8949], [10.7248, 60.8948], [10.7248, 60.8948], [10.7247, 60.8948], [10.7247, 60.8948], [10.7247, 60.8947], [10.7247, 60.8947], [10.7247, 60.8947], [10.7247, 60.8947], [10.7248, 60.8947], [10.7248, 60.8947], [10.7249, 60.8947], [10.7249, 60.8947], [10.725, 60.8947], [10.7251, 60.8948], [10.7251, 60.8948], [10.7252, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7254, 60.8948], [10.7254, 60.8948], [10.7254, 60.8948], [10.7256, 60.8948], [10.7256, 60.8948], [10.7257, 60.8948], [10.7258, 60.8948], [10.7259, 60.8947], [10.726, 60.8947], [10.7261, 60.8947], [10.7262, 60.8946], [10.7263, 60.8946], [10.7264, 60.8945], [10.7265, 60.8945], [10.7265, 60.8944], [10.7266, 60.8944], [10.7267, 60.8943], [10.7268, 60.8942], [10.7268, 60.8942], [10.7269, 60.8942], [10.7268, 60.894], [10.7268, 60.8939], [10.7268, 60.8939], [10.7268, 60.8938], [10.7268, 60.8935], [10.7267, 60.8933], [10.7267, 60.8931], [10.7266, 60.893], [10.7266, 60.8929], [10.7265, 60.8929], [10.7265, 60.8929], [10.7265, 60.8928], [10.7265, 60.8927], [10.7265, 60.8927], [10.7265, 60.8927], [10.7266, 60.8926], [10.7266, 60.8925], [10.7267, 60.8924], [10.7267, 60.8924], [10.7267, 60.8923], [10.7268, 60.8922], [10.7269, 60.8922], [10.727, 60.8921], [10.7272, 60.892], [10.7273, 60.8919], [10.7274, 60.8918], [10.7276, 60.8917], [10.7278, 60.8917], [10.7279, 60.8916], [10.728, 60.8916], [10.7281, 60.8915], [10.7281, 60.8915], [10.7282, 60.8915], [10.7283, 60.8914], [10.7285, 60.8913], [10.7286, 60.8913], [10.7287, 60.8913], [10.7288, 60.8913], [10.7289, 60.8912], [10.729, 60.8911], [10.7291, 60.8911], [10.7292, 60.891], [10.7292, 60.8909], [10.7293, 60.8909], [10.7293, 60.8908], [10.7293, 60.8908], [10.7293, 60.8908], [10.7294, 60.8908], [10.7294, 60.8907], [10.7294, 60.8907], [10.7294, 60.8907], [10.7294, 60.8906], [10.7294, 60.8906], [10.7293, 60.8905], [10.7293, 60.8905], [10.7293, 60.8905], [10.7292, 60.8905], [10.7292, 60.8905], [10.7291, 60.8905], [10.7291, 60.8905], [10.7291, 60.8906], [10.7291, 60.8906], [10.7291, 60.8905], [10.7291, 60.8905], [10.7291, 60.8904], [10.7291, 60.8904], [10.7291, 60.8904], [10.7291, 60.8903], [10.7291, 60.8903], [10.7292, 60.8902], [10.7292, 60.8902], [10.7293, 60.8901], [10.7293, 60.89], [10.7294, 60.8899], [10.7293, 60.8899], [10.7293, 60.8899], [10.7293, 60.8899], [10.7293, 60.8898], [10.7294, 60.8898], [10.7296, 60.8897], [10.7296, 60.8897], [10.7297, 60.8897], [10.7297, 60.8897], [10.7297, 60.8897], [10.7298, 60.8897], [10.7298, 60.8896], [10.7298, 60.8895], [10.7298, 60.8895], [10.7298, 60.8894], [10.7298, 60.8894], [10.7298, 60.8894], [10.7298, 60.8893], [10.7298, 60.8893], [10.7298, 60.8892], [10.7299, 60.8892], [10.7299, 60.8892], [10.73, 60.8892], [10.73, 60.8891], [10.7301, 60.8891], [10.7301, 60.8891], [10.7301, 60.8891], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.73, 60.8889], [10.73, 60.8888], [10.73, 60.8888], [10.73, 60.8888], [10.7301, 60.8888], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7302, 60.8889], [10.7302, 60.8889], [10.7302, 60.8888], [10.7302, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8886], [10.7302, 60.8886], [10.7301, 60.8886], [10.7301, 60.8886], [10.7301, 60.8885], [10.7301, 60.8885], [10.7301, 60.8885], [10.7301, 60.8884], [10.7301, 60.8884], [10.7301, 60.8884], [10.7301, 60.8883], [10.7302, 60.8883], [10.7301, 60.8883], [10.7302, 60.8883], [10.7302, 60.8883], [10.7304, 60.8882], [10.7304, 60.8882], [10.7305, 60.8882], [10.7306, 60.8881], [10.7307, 60.8881], [10.7308, 60.888], [10.731, 60.888], [10.731, 60.888], [10.731, 60.8879], [10.7312, 60.8879], [10.7314, 60.8879], [10.7316, 60.8878], [10.7317, 60.8878], [10.7318, 60.8878], [10.7319, 60.8877], [10.732, 60.8876], [10.7321, 60.8876], [10.7321, 60.8876], [10.7322, 60.8875], [10.7323, 60.8875], [10.7323, 60.8875], [10.7324, 60.8875], [10.7325, 60.8874], [10.7325, 60.8874], [10.7326, 60.8874], [10.7327, 60.8873], [10.7328, 60.8873], [10.7329, 60.8873], [10.7329, 60.8872], [10.733, 60.8872], [10.733, 60.8872], [10.7332, 60.8871], [10.7333, 60.8871], [10.7334, 60.887], [10.7335, 60.887], [10.7336, 60.887], [10.7336, 60.8869], [10.7337, 60.8869], [10.7338, 60.8868], [10.7338, 60.8868], [10.7339, 60.8867], [10.7341, 60.8867], [10.7343, 60.8866], [10.7345, 60.8866], [10.7346, 60.8865], [10.7346, 60.8865], [10.7347, 60.8865], [10.7347, 60.8864], [10.7347, 60.8864], [10.7347, 60.8864], [10.7349, 60.8863], [10.735, 60.8863], [10.735, 60.8862], [10.735, 60.8861], [10.7351, 60.8861], [10.7351, 60.886], [10.7352, 60.8859], [10.7351, 60.8859], [10.7351, 60.8859], [10.7351, 60.8858], [10.7351, 60.8859], [10.7352, 60.8859], [10.7352, 60.8859], [10.7352, 60.8859], [10.7353, 60.8859], [10.7354, 60.8859], [10.7354, 60.8859], [10.7357, 60.8857], [10.7359, 60.8856], [10.7361, 60.8856], [10.7362, 60.8855], [10.7363, 60.8854], [10.7364, 60.8854], [10.7365, 60.8853], [10.7366, 60.8853], [10.7367, 60.8852], [10.737, 60.8852], [10.7373, 60.8852], [10.7375, 60.8852], [10.7376, 60.885], [10.7377, 60.885], [10.7378, 60.885], [10.738, 60.8849], [10.7381, 60.8849], [10.7382, 60.8849], [10.7383, 60.8848], [10.7385, 60.8847], [10.7386, 60.8846], [10.7388, 60.8846], [10.739, 60.8844], [10.7394, 60.8843], [10.7395, 60.8842], [10.7397, 60.8841], [10.7398, 60.884], [10.7399, 60.884], [10.7399, 60.884], [10.7401, 60.8838], [10.7402, 60.8836], [10.7404, 60.8836], [10.7405, 60.8835], [10.7405, 60.8835], [10.7405, 60.8835], [10.7404, 60.8835], [10.7403, 60.8835], [10.7402, 60.8835], [10.7402, 60.8834], [10.7403, 60.8834], [10.7404, 60.8834], [10.7405, 60.8834], [10.7405, 60.8834], [10.7405, 60.8834], [10.7404, 60.8834], [10.7404, 60.8833], [10.7405, 60.8833], [10.7406, 60.8833], [10.7407, 60.8832], [10.7409, 60.8831], [10.741, 60.883], [10.7411, 60.8829], [10.7412, 60.8828], [10.7412, 60.8827], [10.7412, 60.8827], [10.7412, 60.8825], [10.7411, 60.8824], [10.741, 60.8823], [10.7409, 60.8822], [10.7408, 60.8822], [10.7406, 60.8821], [10.7405, 60.8821], [10.7404, 60.8821], [10.7401, 60.8821], [10.7398, 60.8821], [10.7395, 60.8821], [10.7392, 60.8821], [10.739, 60.8822], [10.7388, 60.8823], [10.7387, 60.8823], [10.7384, 60.8824], [10.7383, 60.8824], [10.7382, 60.8824], [10.7381, 60.8823], [10.7379, 60.8823], [10.7377, 60.8824], [10.7372, 60.8824], [10.7368, 60.8824], [10.7363, 60.8825], [10.7359, 60.8825], [10.7357, 60.8825], [10.7355, 60.8825], [10.7353, 60.8825], [10.7352, 60.8824], [10.7347, 60.8823], [10.7342, 60.8822], [10.734, 60.8822], [10.7338, 60.8821], [10.7338, 60.8821], [10.7338, 60.882], [10.7338, 60.882], [10.7338, 60.8819], [10.7338, 60.8819], [10.7337, 60.8818], [10.7335, 60.8817], [10.7335, 60.8817], [10.7335, 60.8816], [10.7335, 60.8816], [10.7335, 60.8815], [10.7335, 60.8815], [10.7334, 60.8814], [10.7333, 60.8814], [10.7333, 60.8813], [10.7332, 60.8813], [10.7331, 60.8813], [10.7329, 60.8812], [10.7328, 60.8811], [10.7326, 60.881], [10.7326, 60.8809], [10.7327, 60.8809], [10.7328, 60.8809], [10.7328, 60.8808], [10.7328, 60.8808], [10.7329, 60.8808], [10.733, 60.8808], [10.7332, 60.8807], [10.7333, 60.8807], [10.7336, 60.8806], [10.7339, 60.8804], [10.734, 60.8803], [10.7343, 60.8801], [10.7343, 60.88], [10.7343, 60.88], [10.7343, 60.88], [10.7343, 60.88], [10.7344, 60.88], [10.7345, 60.8799], [10.7347, 60.8797], [10.7348, 60.8795], [10.7349, 60.8794], [10.735, 60.8793], [10.735, 60.8791], [10.7351, 60.879], [10.7351, 60.8788], [10.7351, 60.8786], [10.7352, 60.8785], [10.7352, 60.8783], [10.7353, 60.8783], [10.7353, 60.8782], [10.7353, 60.8782], [10.7353, 60.8782], [10.7352, 60.8782], [10.7352, 60.8781], [10.7353, 60.8781], [10.7353, 60.8781], [10.7352, 60.8781], [10.7352, 60.878], [10.7352, 60.878], [10.7351, 60.878], [10.7351, 60.878], [10.7351, 60.8779], [10.735, 60.8779], [10.735, 60.8778], [10.735, 60.8778], [10.735, 60.8777], [10.735, 60.8777], [10.7351, 60.8777], [10.7352, 60.8776], [10.7352, 60.8776], [10.7353, 60.8776], [10.7352, 60.8776], [10.7352, 60.8775], [10.7352, 60.8775], [10.7351, 60.8775], [10.7352, 60.8774], [10.7352, 60.8774], [10.7354, 60.8773], [10.7354, 60.8772], [10.7354, 60.8771], [10.7354, 60.877], [10.7353, 60.877], [10.7353, 60.877], [10.7351, 60.877], [10.735, 60.8769], [10.735, 60.8769], [10.7104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "46", "sub_div_center": [0.0169, 0.007]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8969], [10.7104, 60.9039], [10.7106, 60.9038], [10.7107, 60.9038], [10.7109, 60.9038], [10.7109, 60.9038], [10.7111, 60.9037], [10.7113, 60.9036], [10.7118, 60.9033], [10.7121, 60.9032], [10.7121, 60.9032], [10.7122, 60.9032], [10.7124, 60.9032], [10.7125, 60.9031], [10.7126, 60.9031], [10.7127, 60.903], [10.7128, 60.903], [10.7129, 60.9029], [10.7131, 60.9028], [10.7133, 60.9027], [10.7135, 60.9026], [10.7136, 60.9025], [10.7139, 60.9024], [10.7142, 60.9023], [10.7144, 60.9022], [10.7146, 60.9021], [10.7148, 60.902], [10.715, 60.9019], [10.7153, 60.9018], [10.7155, 60.9017], [10.7156, 60.9017], [10.7157, 60.9016], [10.7158, 60.9016], [10.716, 60.9015], [10.7162, 60.9015], [10.7164, 60.9015], [10.7168, 60.9014], [10.7169, 60.9014], [10.7171, 60.9014], [10.7171, 60.9014], [10.7176, 60.9013], [10.7178, 60.9013], [10.718, 60.9013], [10.7183, 60.9012], [10.7184, 60.9012], [10.7186, 60.9012], [10.7187, 60.9011], [10.7187, 60.9011], [10.7188, 60.9011], [10.7189, 60.9011], [10.719, 60.9011], [10.719, 60.9011], [10.719, 60.901], [10.719, 60.901], [10.719, 60.9009], [10.7191, 60.9009], [10.7191, 60.9008], [10.7192, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7193, 60.901], [10.7193, 60.901], [10.7194, 60.901], [10.7195, 60.901], [10.7196, 60.9009], [10.7197, 60.9009], [10.7198, 60.9009], [10.7198, 60.9009], [10.7199, 60.9008], [10.72, 60.9008], [10.72, 60.9008], [10.7201, 60.9007], [10.7202, 60.9006], [10.7203, 60.9006], [10.7204, 60.9006], [10.7205, 60.9005], [10.7206, 60.9004], [10.7208, 60.9004], [10.7208, 60.9004], [10.7209, 60.9003], [10.721, 60.9003], [10.721, 60.9002], [10.721, 60.9002], [10.7211, 60.9002], [10.7212, 60.9002], [10.7213, 60.9001], [10.7213, 60.9001], [10.7214, 60.9], [10.7214, 60.9], [10.7215, 60.9], [10.7215, 60.9], [10.7216, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8998], [10.7217, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8997], [10.7219, 60.8997], [10.722, 60.8997], [10.722, 60.8997], [10.7221, 60.8996], [10.7222, 60.8996], [10.7223, 60.8996], [10.7224, 60.8995], [10.7225, 60.8995], [10.7226, 60.8995], [10.7226, 60.8995], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7229, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7233, 60.8994], [10.7233, 60.8994], [10.7234, 60.8994], [10.7235, 60.8994], [10.7236, 60.8994], [10.7237, 60.8993], [10.7237, 60.8993], [10.7238, 60.8992], [10.7238, 60.8992], [10.7239, 60.8992], [10.724, 60.8991], [10.724, 60.899], [10.7241, 60.899], [10.7241, 60.899], [10.7241, 60.8989], [10.7241, 60.8989], [10.7241, 60.8989], [10.7242, 60.8988], [10.7242, 60.8988], [10.7241, 60.8987], [10.7241, 60.8987], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.7239, 60.8984], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7238, 60.8982], [10.7238, 60.8982], [10.7238, 60.8982], [10.7237, 60.8982], [10.7236, 60.8981], [10.7235, 60.8981], [10.7234, 60.8981], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7235, 60.8979], [10.7235, 60.8979], [10.7236, 60.8979], [10.7237, 60.8979], [10.7238, 60.8978], [10.7239, 60.8978], [10.7239, 60.8978], [10.724, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.724, 60.8978], [10.724, 60.8978], [10.7239, 60.8978], [10.7238, 60.8978], [10.7237, 60.8979], [10.7236, 60.8979], [10.7235, 60.8979], [10.7235, 60.898], [10.7235, 60.898], [10.7235, 60.8981], [10.7236, 60.8981], [10.7236, 60.8981], [10.7237, 60.8981], [10.7237, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7239, 60.8982], [10.724, 60.8982], [10.724, 60.8982], [10.7241, 60.8982], [10.7242, 60.8982], [10.7243, 60.8983], [10.7243, 60.8983], [10.7245, 60.8983], [10.7247, 60.8984], [10.7247, 60.8984], [10.7248, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.725, 60.8983], [10.7251, 60.8983], [10.7252, 60.8983], [10.7253, 60.8983], [10.7255, 60.8983], [10.7256, 60.8982], [10.7257, 60.8982], [10.7259, 60.8981], [10.7259, 60.8981], [10.726, 60.8981], [10.7261, 60.8981], [10.7262, 60.898], [10.7264, 60.8979], [10.7265, 60.8979], [10.7266, 60.8979], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7268, 60.8977], [10.7269, 60.8976], [10.727, 60.8975], [10.727, 60.8975], [10.7271, 60.8974], [10.7271, 60.8973], [10.7272, 60.8973], [10.7272, 60.8973], [10.7272, 60.8972], [10.7273, 60.8972], [10.7272, 60.8972], [10.7272, 60.8971], [10.7271, 60.8971], [10.7271, 60.8971], [10.727, 60.897], [10.7269, 60.897], [10.7268, 60.8969], [10.7268, 60.8969], [10.7104, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "47", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8969], [10.7104, 60.9039], [10.7106, 60.9038], [10.7107, 60.9038], [10.7109, 60.9038], [10.7109, 60.9038], [10.7111, 60.9037], [10.7113, 60.9036], [10.7118, 60.9033], [10.7121, 60.9032], [10.7121, 60.9032], [10.7122, 60.9032], [10.7124, 60.9032], [10.7125, 60.9031], [10.7126, 60.9031], [10.7127, 60.903], [10.7128, 60.903], [10.7129, 60.9029], [10.7131, 60.9028], [10.7133, 60.9027], [10.7135, 60.9026], [10.7136, 60.9025], [10.7139, 60.9024], [10.7142, 60.9023], [10.7144, 60.9022], [10.7146, 60.9021], [10.7148, 60.902], [10.715, 60.9019], [10.7153, 60.9018], [10.7155, 60.9017], [10.7156, 60.9017], [10.7157, 60.9016], [10.7158, 60.9016], [10.716, 60.9015], [10.7162, 60.9015], [10.7164, 60.9015], [10.7168, 60.9014], [10.7169, 60.9014], [10.7171, 60.9014], [10.7171, 60.9014], [10.7176, 60.9013], [10.7178, 60.9013], [10.718, 60.9013], [10.7183, 60.9012], [10.7184, 60.9012], [10.7186, 60.9012], [10.7187, 60.9011], [10.7187, 60.9011], [10.7188, 60.9011], [10.7189, 60.9011], [10.719, 60.9011], [10.719, 60.9011], [10.719, 60.901], [10.719, 60.901], [10.719, 60.9009], [10.7191, 60.9009], [10.7191, 60.9008], [10.7192, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7193, 60.901], [10.7193, 60.901], [10.7194, 60.901], [10.7195, 60.901], [10.7196, 60.9009], [10.7197, 60.9009], [10.7198, 60.9009], [10.7198, 60.9009], [10.7199, 60.9008], [10.72, 60.9008], [10.72, 60.9008], [10.7201, 60.9007], [10.7202, 60.9006], [10.7203, 60.9006], [10.7204, 60.9006], [10.7205, 60.9005], [10.7206, 60.9004], [10.7208, 60.9004], [10.7208, 60.9004], [10.7209, 60.9003], [10.721, 60.9003], [10.721, 60.9002], [10.721, 60.9002], [10.7211, 60.9002], [10.7212, 60.9002], [10.7213, 60.9001], [10.7213, 60.9001], [10.7214, 60.9], [10.7214, 60.9], [10.7215, 60.9], [10.7215, 60.9], [10.7216, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8998], [10.7217, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8997], [10.7219, 60.8997], [10.722, 60.8997], [10.722, 60.8997], [10.7221, 60.8996], [10.7222, 60.8996], [10.7223, 60.8996], [10.7224, 60.8995], [10.7225, 60.8995], [10.7226, 60.8995], [10.7226, 60.8995], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7229, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7233, 60.8994], [10.7233, 60.8994], [10.7234, 60.8994], [10.7235, 60.8994], [10.7236, 60.8994], [10.7237, 60.8993], [10.7237, 60.8993], [10.7238, 60.8992], [10.7238, 60.8992], [10.7239, 60.8992], [10.724, 60.8991], [10.724, 60.899], [10.7241, 60.899], [10.7241, 60.899], [10.7241, 60.8989], [10.7241, 60.8989], [10.7241, 60.8989], [10.7242, 60.8988], [10.7242, 60.8988], [10.7241, 60.8987], [10.7241, 60.8987], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.7239, 60.8984], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7238, 60.8982], [10.7238, 60.8982], [10.7238, 60.8982], [10.7237, 60.8982], [10.7236, 60.8981], [10.7235, 60.8981], [10.7234, 60.8981], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7235, 60.8979], [10.7235, 60.8979], [10.7236, 60.8979], [10.7237, 60.8979], [10.7238, 60.8978], [10.7239, 60.8978], [10.7239, 60.8978], [10.724, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.724, 60.8978], [10.724, 60.8978], [10.7239, 60.8978], [10.7238, 60.8978], [10.7237, 60.8979], [10.7236, 60.8979], [10.7235, 60.8979], [10.7235, 60.898], [10.7235, 60.898], [10.7235, 60.8981], [10.7236, 60.8981], [10.7236, 60.8981], [10.7237, 60.8981], [10.7237, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7239, 60.8982], [10.724, 60.8982], [10.724, 60.8982], [10.7241, 60.8982], [10.7242, 60.8982], [10.7243, 60.8983], [10.7243, 60.8983], [10.7245, 60.8983], [10.7247, 60.8984], [10.7247, 60.8984], [10.7248, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.725, 60.8983], [10.7251, 60.8983], [10.7252, 60.8983], [10.7253, 60.8983], [10.7255, 60.8983], [10.7256, 60.8982], [10.7257, 60.8982], [10.7259, 60.8981], [10.7259, 60.8981], [10.726, 60.8981], [10.7261, 60.8981], [10.7262, 60.898], [10.7264, 60.8979], [10.7265, 60.8979], [10.7266, 60.8979], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7268, 60.8977], [10.7269, 60.8976], [10.727, 60.8975], [10.727, 60.8975], [10.7271, 60.8974], [10.7271, 60.8973], [10.7272, 60.8973], [10.7272, 60.8973], [10.7272, 60.8972], [10.7273, 60.8972], [10.7272, 60.8972], [10.7272, 60.8971], [10.7271, 60.8971], [10.7271, 60.8971], [10.727, 60.897], [10.7269, 60.897], [10.7268, 60.8969], [10.7268, 60.8969], [10.7104, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "48", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7238, 60.8169], [10.7239, 60.8169], [10.7239, 60.8169], [10.7238, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "49", "sub_div_center": [0.0018, 0.0007]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7504, 60.7562], [10.75, 60.7562], [10.7499, 60.7563], [10.7491, 60.7565], [10.7486, 60.7569], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "50", "sub_div_center": [0.04, 0.0084]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7904, 60.7569], [10.7904, 60.7485], [10.7891, 60.7485], [10.7884, 60.7485], [10.7882, 60.7484], [10.788, 60.7484], [10.787, 60.7484], [10.7869, 60.7485], [10.7868, 60.7485], [10.7868, 60.7485], [10.7867, 60.7486], [10.7867, 60.7486], [10.7866, 60.7486], [10.7864, 60.7486], [10.7864, 60.7486], [10.7863, 60.7485], [10.7861, 60.7485], [10.786, 60.7485], [10.7858, 60.7485], [10.7857, 60.7485], [10.7857, 60.7485], [10.7856, 60.7486], [10.7854, 60.7486], [10.7851, 60.7487], [10.7848, 60.7487], [10.7837, 60.7488], [10.7834, 60.7489], [10.7831, 60.7489], [10.7829, 60.7489], [10.7828, 60.7489], [10.7827, 60.7489], [10.7826, 60.7489], [10.7825, 60.7489], [10.7819, 60.749], [10.7812, 60.7492], [10.7808, 60.7493], [10.7807, 60.7493], [10.7806, 60.7494], [10.7806, 60.7494], [10.7805, 60.7495], [10.7804, 60.7495], [10.7797, 60.7496], [10.7793, 60.7496], [10.779, 60.7497], [10.7784, 60.7498], [10.7777, 60.7498], [10.7769, 60.7498], [10.776, 60.75], [10.7759, 60.75], [10.7738, 60.7503], [10.7733, 60.7504], [10.7725, 60.7505], [10.7717, 60.7504], [10.7703, 60.7506], [10.7701, 60.7506], [10.7697, 60.7507], [10.7691, 60.7507], [10.7684, 60.7509], [10.7678, 60.7509], [10.7671, 60.7512], [10.7666, 60.7514], [10.7663, 60.7517], [10.7655, 60.7523], [10.7645, 60.7527], [10.764, 60.7529], [10.7624, 60.7532], [10.7623, 60.7532], [10.761, 60.7534], [10.7594, 60.7539], [10.7586, 60.7541], [10.7575, 60.7544], [10.7566, 60.7548], [10.7561, 60.7551], [10.7547, 60.7553], [10.7536, 60.7556], [10.752, 60.7561], [10.7514, 60.7562], [10.7506, 60.7561], [10.7504, 60.7562], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "51", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7504, 60.7769], [10.7904, 60.7769], [10.7904, 60.7569], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "52", "sub_div_center": [0.04, 0.0124]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7769], [10.7504, 60.7893], [10.7505, 60.7892], [10.7507, 60.7892], [10.7508, 60.7891], [10.7508, 60.789], [10.7509, 60.7889], [10.751, 60.7888], [10.7511, 60.7888], [10.7512, 60.7888], [10.7513, 60.7887], [10.7513, 60.7887], [10.7514, 60.7886], [10.7515, 60.7886], [10.7515, 60.7885], [10.7516, 60.7885], [10.7516, 60.7884], [10.7516, 60.7884], [10.7517, 60.7883], [10.7517, 60.7883], [10.7517, 60.7883], [10.7517, 60.7883], [10.7518, 60.7882], [10.7518, 60.7882], [10.7519, 60.7881], [10.7521, 60.788], [10.7522, 60.788], [10.7523, 60.7879], [10.7524, 60.7878], [10.7525, 60.7878], [10.7526, 60.7877], [10.7526, 60.7877], [10.7527, 60.7876], [10.753, 60.7875], [10.7531, 60.7874], [10.7533, 60.7873], [10.7536, 60.7872], [10.7536, 60.7871], [10.7535, 60.7871], [10.7536, 60.7871], [10.7536, 60.7871], [10.7537, 60.7871], [10.7538, 60.7871], [10.7538, 60.787], [10.7539, 60.787], [10.7539, 60.787], [10.7538, 60.787], [10.7539, 60.7869], [10.7539, 60.7869], [10.7541, 60.7868], [10.7541, 60.7868], [10.7542, 60.7868], [10.7543, 60.7867], [10.7543, 60.7866], [10.7545, 60.7865], [10.7546, 60.7865], [10.7546, 60.7864], [10.7546, 60.7864], [10.7547, 60.7864], [10.7547, 60.7864], [10.7548, 60.7863], [10.7549, 60.7862], [10.755, 60.7861], [10.755, 60.786], [10.7548, 60.786], [10.7547, 60.7859], [10.7547, 60.7859], [10.7546, 60.7858], [10.7547, 60.7857], [10.7548, 60.7857], [10.7548, 60.7857], [10.7548, 60.7857], [10.7547, 60.7858], [10.7548, 60.7859], [10.7549, 60.7859], [10.755, 60.7859], [10.755, 60.786], [10.7551, 60.7859], [10.7552, 60.7859], [10.7553, 60.7858], [10.7554, 60.7858], [10.7554, 60.7857], [10.7555, 60.7857], [10.7555, 60.7857], [10.7555, 60.7856], [10.7553, 60.7856], [10.7552, 60.7856], [10.7552, 60.7856], [10.7551, 60.7856], [10.7551, 60.7856], [10.755, 60.7856], [10.755, 60.7856], [10.7549, 60.7856], [10.7549, 60.7856], [10.7549, 60.7856], [10.7549, 60.7855], [10.755, 60.7855], [10.7551, 60.7855], [10.7551, 60.7855], [10.7553, 60.7855], [10.7554, 60.7855], [10.7555, 60.7856], [10.7556, 60.7856], [10.7557, 60.7856], [10.7558, 60.7856], [10.7559, 60.7856], [10.7561, 60.7856], [10.7562, 60.7855], [10.7563, 60.7855], [10.7563, 60.7854], [10.7563, 60.7854], [10.7564, 60.7853], [10.7564, 60.7853], [10.7565, 60.7853], [10.7565, 60.7852], [10.7566, 60.7852], [10.7567, 60.7851], [10.7568, 60.785], [10.7569, 60.7849], [10.757, 60.7849], [10.757, 60.7848], [10.7571, 60.7848], [10.7572, 60.7848], [10.7573, 60.7848], [10.7574, 60.7848], [10.7575, 60.7847], [10.7575, 60.7847], [10.7575, 60.7847], [10.7574, 60.7846], [10.7574, 60.7846], [10.7574, 60.7846], [10.7575, 60.7847], [10.7576, 60.7847], [10.7577, 60.7847], [10.7577, 60.7846], [10.7577, 60.7846], [10.7577, 60.7845], [10.7577, 60.7845], [10.7576, 60.7844], [10.7576, 60.7843], [10.7577, 60.7843], [10.7577, 60.7843], [10.7578, 60.7843], [10.7579, 60.7843], [10.7579, 60.7843], [10.7579, 60.7844], [10.758, 60.7845], [10.758, 60.7845], [10.758, 60.7846], [10.7582, 60.7845], [10.7584, 60.7845], [10.7586, 60.7843], [10.7586, 60.7843], [10.7586, 60.7843], [10.7586, 60.7842], [10.7586, 60.7842], [10.7587, 60.7842], [10.7588, 60.7842], [10.7589, 60.7842], [10.7589, 60.7842], [10.7591, 60.7842], [10.7591, 60.7842], [10.7591, 60.7841], [10.7592, 60.7841], [10.7594, 60.7841], [10.7598, 60.7839], [10.7603, 60.7838], [10.7605, 60.7836], [10.7608, 60.7836], [10.7613, 60.7835], [10.7614, 60.7834], [10.7614, 60.7834], [10.7614, 60.7833], [10.7613, 60.7832], [10.7613, 60.7832], [10.7613, 60.7832], [10.7614, 60.7832], [10.7614, 60.7832], [10.7615, 60.7833], [10.7616, 60.7834], [10.7617, 60.7834], [10.7618, 60.7834], [10.7619, 60.7834], [10.762, 60.7834], [10.7621, 60.7834], [10.7622, 60.7833], [10.7624, 60.7832], [10.7627, 60.7831], [10.7629, 60.783], [10.7631, 60.7828], [10.7632, 60.7827], [10.7634, 60.7826], [10.7636, 60.7825], [10.7638, 60.7824], [10.764, 60.7823], [10.7643, 60.7823], [10.7645, 60.7823], [10.7648, 60.7822], [10.7653, 60.7823], [10.7655, 60.7822], [10.7656, 60.7822], [10.7657, 60.7822], [10.7658, 60.7822], [10.7659, 60.7822], [10.7663, 60.7823], [10.7666, 60.7823], [10.7668, 60.7823], [10.7671, 60.7824], [10.7673, 60.7825], [10.7674, 60.7825], [10.7675, 60.7824], [10.7677, 60.7824], [10.7679, 60.7825], [10.768, 60.7825], [10.7681, 60.7826], [10.7682, 60.7827], [10.7683, 60.7828], [10.7684, 60.7828], [10.7684, 60.7828], [10.7685, 60.7829], [10.7686, 60.7829], [10.7687, 60.783], [10.7687, 60.7831], [10.7687, 60.7831], [10.7689, 60.7831], [10.7689, 60.7832], [10.7691, 60.7832], [10.7693, 60.7832], [10.7693, 60.7832], [10.7694, 60.7833], [10.7695, 60.7833], [10.7696, 60.7833], [10.7696, 60.7834], [10.7697, 60.7834], [10.7699, 60.7835], [10.7701, 60.7835], [10.7703, 60.7836], [10.7707, 60.7837], [10.7709, 60.7837], [10.7709, 60.7837], [10.7709, 60.7836], [10.771, 60.7836], [10.771, 60.7836], [10.771, 60.7836], [10.7711, 60.7835], [10.7711, 60.7835], [10.7712, 60.7836], [10.7712, 60.7836], [10.7713, 60.7837], [10.7715, 60.7837], [10.7718, 60.7837], [10.772, 60.7837], [10.7721, 60.7837], [10.7722, 60.7837], [10.7723, 60.7837], [10.7724, 60.7837], [10.7725, 60.7837], [10.7726, 60.7836], [10.7727, 60.7836], [10.7727, 60.7836], [10.7727, 60.7835], [10.7727, 60.7834], [10.7726, 60.7833], [10.7725, 60.7832], [10.7723, 60.7829], [10.7723, 60.7828], [10.7723, 60.7827], [10.7722, 60.7826], [10.7722, 60.7826], [10.7722, 60.7825], [10.7722, 60.7825], [10.7723, 60.7824], [10.7723, 60.7824], [10.7725, 60.7824], [10.7726, 60.7824], [10.7727, 60.7824], [10.7727, 60.7824], [10.7728, 60.7823], [10.7729, 60.7823], [10.7731, 60.7824], [10.7733, 60.7824], [10.7737, 60.7825], [10.7738, 60.7825], [10.774, 60.7826], [10.7741, 60.7826], [10.7741, 60.7825], [10.7741, 60.7825], [10.7742, 60.7825], [10.7742, 60.7826], [10.7743, 60.7826], [10.7744, 60.7826], [10.7745, 60.7826], [10.7745, 60.7826], [10.7745, 60.7826], [10.7745, 60.7825], [10.7745, 60.7825], [10.7745, 60.7827], [10.7747, 60.7827], [10.7749, 60.7827], [10.7751, 60.7828], [10.7752, 60.7828], [10.7752, 60.7828], [10.7753, 60.7828], [10.7754, 60.7828], [10.7755, 60.7828], [10.7756, 60.7828], [10.7757, 60.7828], [10.7757, 60.7828], [10.7758, 60.7828], [10.7758, 60.7828], [10.7759, 60.7828], [10.7758, 60.7829], [10.7758, 60.7829], [10.7759, 60.7829], [10.7759, 60.7829], [10.776, 60.7829], [10.7761, 60.7829], [10.7761, 60.7829], [10.7763, 60.7829], [10.7764, 60.7829], [10.7766, 60.7829], [10.7767, 60.7828], [10.7768, 60.7828], [10.7767, 60.7827], [10.7767, 60.7827], [10.7767, 60.7826], [10.7767, 60.7826], [10.7768, 60.7827], [10.7769, 60.7828], [10.777, 60.7828], [10.777, 60.7828], [10.7771, 60.7828], [10.7773, 60.7829], [10.7774, 60.7828], [10.7774, 60.7828], [10.7774, 60.7828], [10.7773, 60.7828], [10.7773, 60.7827], [10.7772, 60.7827], [10.7771, 60.7827], [10.7771, 60.7827], [10.777, 60.7827], [10.777, 60.7827], [10.7771, 60.7826], [10.7772, 60.7825], [10.7772, 60.7825], [10.7772, 60.7825], [10.7772, 60.7824], [10.7772, 60.7824], [10.7772, 60.7823], [10.7772, 60.7822], [10.7771, 60.7822], [10.7771, 60.7822], [10.7771, 60.7822], [10.7771, 60.7821], [10.7771, 60.782], [10.7771, 60.7819], [10.777, 60.7818], [10.7769, 60.7816], [10.7769, 60.7816], [10.7769, 60.7815], [10.777, 60.7815], [10.7772, 60.7815], [10.7773, 60.7814], [10.7773, 60.7814], [10.7772, 60.7814], [10.7774, 60.7814], [10.7776, 60.7813], [10.7778, 60.7813], [10.7781, 60.7812], [10.7784, 60.7812], [10.7783, 60.781], [10.7784, 60.781], [10.7784, 60.781], [10.7785, 60.7812], [10.7786, 60.7812], [10.7787, 60.7811], [10.7788, 60.7811], [10.7788, 60.7811], [10.7787, 60.7809], [10.7788, 60.7809], [10.7789, 60.7811], [10.7789, 60.7811], [10.779, 60.7811], [10.779, 60.781], [10.779, 60.781], [10.7791, 60.7811], [10.7791, 60.7811], [10.7791, 60.7811], [10.7792, 60.7811], [10.7794, 60.7811], [10.7795, 60.7811], [10.7796, 60.7811], [10.7797, 60.7811], [10.7797, 60.7811], [10.7798, 60.7811], [10.7799, 60.7811], [10.7798, 60.781], [10.78, 60.781], [10.78, 60.781], [10.7801, 60.781], [10.7801, 60.781], [10.7802, 60.781], [10.7802, 60.781], [10.7802, 60.781], [10.7803, 60.781], [10.7803, 60.781], [10.7803, 60.781], [10.7804, 60.7809], [10.7804, 60.7809], [10.7805, 60.7809], [10.7804, 60.781], [10.7804, 60.781], [10.7804, 60.781], [10.7805, 60.781], [10.7808, 60.7811], [10.781, 60.7811], [10.7811, 60.781], [10.7812, 60.781], [10.7813, 60.781], [10.7815, 60.781], [10.7818, 60.7809], [10.7819, 60.7809], [10.7821, 60.7807], [10.7822, 60.7807], [10.7822, 60.7807], [10.7823, 60.7806], [10.7824, 60.7806], [10.7825, 60.7806], [10.7826, 60.7806], [10.7826, 60.7806], [10.7826, 60.7807], [10.7827, 60.7807], [10.7828, 60.7807], [10.783, 60.7807], [10.7831, 60.7807], [10.7833, 60.7806], [10.7834, 60.7806], [10.7835, 60.7806], [10.7835, 60.7805], [10.7834, 60.7804], [10.7834, 60.7803], [10.7834, 60.7802], [10.7834, 60.78], [10.7835, 60.7799], [10.7836, 60.7799], [10.7836, 60.7799], [10.7836, 60.7798], [10.7834, 60.7797], [10.7834, 60.7797], [10.7835, 60.7797], [10.7837, 60.7798], [10.7837, 60.7798], [10.7838, 60.7798], [10.784, 60.7797], [10.7841, 60.7797], [10.7841, 60.7796], [10.7842, 60.7796], [10.7843, 60.7795], [10.7844, 60.7795], [10.7845, 60.7796], [10.7845, 60.7796], [10.7845, 60.7795], [10.7846, 60.7795], [10.7846, 60.7796], [10.7849, 60.7798], [10.7854, 60.7799], [10.7855, 60.78], [10.7857, 60.7801], [10.7859, 60.7801], [10.7861, 60.7801], [10.7862, 60.7801], [10.7864, 60.78], [10.7865, 60.7799], [10.7866, 60.7799], [10.7865, 60.7798], [10.7865, 60.7798], [10.7865, 60.7797], [10.7865, 60.7796], [10.7865, 60.7795], [10.7865, 60.7795], [10.7865, 60.7795], [10.7865, 60.7794], [10.7865, 60.7794], [10.7862, 60.7794], [10.7862, 60.7794], [10.7863, 60.7794], [10.7864, 60.7793], [10.7864, 60.7793], [10.7864, 60.7792], [10.7863, 60.7791], [10.7863, 60.779], [10.7863, 60.779], [10.7863, 60.7788], [10.7863, 60.7788], [10.7864, 60.7787], [10.7865, 60.7787], [10.7866, 60.7787], [10.7867, 60.7787], [10.7869, 60.7787], [10.7871, 60.7788], [10.7873, 60.7788], [10.7875, 60.7788], [10.7876, 60.7789], [10.7878, 60.7789], [10.788, 60.779], [10.7882, 60.779], [10.7883, 60.779], [10.7883, 60.7791], [10.7885, 60.7791], [10.7886, 60.7791], [10.7887, 60.7791], [10.7887, 60.7792], [10.7888, 60.7791], [10.7891, 60.7791], [10.7891, 60.7791], [10.7891, 60.779], [10.7891, 60.779], [10.7892, 60.7789], [10.7894, 60.7788], [10.7895, 60.7787], [10.7895, 60.7786], [10.7896, 60.7787], [10.7897, 60.7787], [10.7901, 60.7786], [10.7902, 60.7786], [10.7902, 60.7786], [10.7904, 60.7786], [10.7904, 60.7786], [10.7904, 60.7769], [10.7504, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "53", "sub_div_center": [0.04, 0.0168]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7401], [10.8304, 60.7402], [10.8303, 60.7404], [10.8302, 60.7406], [10.8302, 60.7407], [10.8303, 60.7408], [10.8302, 60.741], [10.8302, 60.7411], [10.8301, 60.7414], [10.83, 60.7415], [10.8299, 60.7418], [10.8297, 60.7419], [10.8297, 60.742], [10.8294, 60.7423], [10.8293, 60.7424], [10.8292, 60.7425], [10.8292, 60.7425], [10.8293, 60.7425], [10.8293, 60.7426], [10.8294, 60.7426], [10.8294, 60.7427], [10.8293, 60.7427], [10.8291, 60.7428], [10.8291, 60.7427], [10.8291, 60.7427], [10.829, 60.7427], [10.829, 60.7426], [10.8289, 60.7426], [10.8288, 60.7427], [10.8287, 60.7427], [10.8286, 60.7428], [10.8281, 60.7431], [10.8279, 60.7433], [10.8276, 60.7435], [10.8275, 60.7437], [10.8274, 60.7437], [10.8274, 60.7438], [10.8275, 60.7438], [10.8275, 60.7439], [10.8275, 60.744], [10.8275, 60.744], [10.8274, 60.7441], [10.8273, 60.7441], [10.8273, 60.7441], [10.8273, 60.744], [10.8273, 60.7439], [10.8273, 60.7439], [10.8272, 60.7438], [10.827, 60.7438], [10.827, 60.7438], [10.8269, 60.7439], [10.8269, 60.7439], [10.8269, 60.7439], [10.8271, 60.744], [10.8271, 60.744], [10.8271, 60.744], [10.8271, 60.7441], [10.8271, 60.7441], [10.827, 60.7441], [10.8269, 60.744], [10.8268, 60.744], [10.8267, 60.744], [10.8266, 60.744], [10.8265, 60.7441], [10.8264, 60.7442], [10.8262, 60.7444], [10.8259, 60.7445], [10.8257, 60.7447], [10.8257, 60.7448], [10.8256, 60.7448], [10.8252, 60.745], [10.8251, 60.7451], [10.825, 60.7451], [10.8248, 60.7451], [10.8246, 60.7451], [10.824, 60.7452], [10.8239, 60.7452], [10.8234, 60.7452], [10.8233, 60.7451], [10.8231, 60.7451], [10.8229, 60.745], [10.8227, 60.745], [10.8226, 60.745], [10.822, 60.745], [10.8218, 60.745], [10.8216, 60.745], [10.8214, 60.7451], [10.8212, 60.7451], [10.821, 60.7453], [10.8207, 60.7454], [10.8205, 60.7455], [10.8204, 60.7455], [10.8202, 60.7456], [10.8199, 60.7456], [10.8197, 60.7457], [10.8195, 60.7457], [10.8193, 60.7457], [10.8191, 60.7456], [10.8185, 60.7456], [10.8183, 60.7456], [10.8182, 60.7456], [10.8181, 60.7455], [10.8179, 60.7456], [10.8179, 60.7456], [10.8178, 60.7456], [10.8173, 60.7456], [10.8173, 60.7456], [10.8172, 60.7457], [10.8171, 60.7457], [10.8168, 60.7458], [10.8167, 60.7458], [10.8165, 60.7459], [10.8164, 60.746], [10.8163, 60.746], [10.816, 60.7461], [10.816, 60.7461], [10.816, 60.7462], [10.8161, 60.7462], [10.8161, 60.7463], [10.8161, 60.7463], [10.816, 60.7463], [10.8159, 60.7462], [10.8158, 60.7462], [10.8157, 60.7461], [10.8157, 60.7461], [10.8155, 60.7461], [10.8153, 60.7461], [10.815, 60.7461], [10.8149, 60.7461], [10.8149, 60.7461], [10.8148, 60.7461], [10.8147, 60.746], [10.8146, 60.746], [10.8145, 60.746], [10.8144, 60.7459], [10.8142, 60.7458], [10.8141, 60.7457], [10.8138, 60.7457], [10.8138, 60.7458], [10.8138, 60.7458], [10.8138, 60.7458], [10.8138, 60.7459], [10.8137, 60.746], [10.8136, 60.7461], [10.8135, 60.7462], [10.8134, 60.7463], [10.8131, 60.7464], [10.8129, 60.7464], [10.8127, 60.7463], [10.8127, 60.7463], [10.8125, 60.7462], [10.8125, 60.7462], [10.8124, 60.746], [10.8124, 60.746], [10.8122, 60.7458], [10.8121, 60.7458], [10.8121, 60.7458], [10.812, 60.7458], [10.8119, 60.7458], [10.8117, 60.7459], [10.8116, 60.746], [10.8114, 60.746], [10.8112, 60.7461], [10.8111, 60.7461], [10.8111, 60.7461], [10.8108, 60.7461], [10.8107, 60.7462], [10.8105, 60.7462], [10.8104, 60.7462], [10.8104, 60.7463], [10.8103, 60.7464], [10.8102, 60.7464], [10.8096, 60.7466], [10.8094, 60.7466], [10.809, 60.7467], [10.8089, 60.7467], [10.8084, 60.7468], [10.8083, 60.7468], [10.8083, 60.7469], [10.8083, 60.7469], [10.8085, 60.7471], [10.8087, 60.7472], [10.8087, 60.7472], [10.8086, 60.7473], [10.8086, 60.7473], [10.8083, 60.7472], [10.8083, 60.7472], [10.8082, 60.7473], [10.808, 60.7474], [10.8078, 60.7475], [10.8075, 60.7476], [10.8074, 60.7477], [10.8073, 60.7477], [10.8069, 60.7477], [10.8067, 60.7478], [10.8061, 60.7479], [10.8058, 60.7479], [10.8049, 60.7481], [10.8043, 60.7482], [10.8037, 60.7483], [10.803, 60.7484], [10.8029, 60.7484], [10.8028, 60.7485], [10.8027, 60.7485], [10.8023, 60.7485], [10.802, 60.7485], [10.8018, 60.7485], [10.8018, 60.7485], [10.8017, 60.7486], [10.8017, 60.7486], [10.8016, 60.7487], [10.8016, 60.7487], [10.8014, 60.7487], [10.8013, 60.7487], [10.8011, 60.7487], [10.8011, 60.7487], [10.801, 60.7487], [10.8009, 60.7487], [10.8006, 60.7486], [10.8006, 60.7486], [10.8004, 60.7486], [10.8003, 60.7486], [10.7991, 60.7488], [10.7988, 60.7489], [10.7983, 60.749], [10.7978, 60.749], [10.7971, 60.7491], [10.7964, 60.7491], [10.7963, 60.749], [10.796, 60.749], [10.7959, 60.7489], [10.7956, 60.7489], [10.7952, 60.7487], [10.7949, 60.7486], [10.7943, 60.7485], [10.7941, 60.7485], [10.7937, 60.7484], [10.7935, 60.7484], [10.7935, 60.7484], [10.7934, 60.7485], [10.7933, 60.7485], [10.7932, 60.7486], [10.7932, 60.7487], [10.7931, 60.7488], [10.7931, 60.7488], [10.793, 60.7488], [10.793, 60.7487], [10.793, 60.7486], [10.793, 60.7485], [10.7929, 60.7485], [10.7926, 60.7485], [10.7925, 60.7485], [10.7925, 60.7485], [10.7925, 60.7486], [10.7925, 60.7487], [10.7924, 60.7487], [10.7924, 60.7487], [10.7923, 60.7487], [10.7923, 60.7487], [10.7923, 60.7486], [10.7922, 60.7485], [10.7922, 60.7485], [10.7921, 60.7485], [10.7916, 60.7485], [10.7915, 60.7485], [10.7913, 60.7485], [10.7911, 60.7485], [10.7909, 60.7485], [10.7906, 60.7485], [10.7905, 60.7485], [10.7904, 60.7485], [10.7904, 60.7569], [10.8304, 60.7569], [10.8304, 60.7401], [10.8304, 60.7401]]]}}, {"type": "Feature", "properties": {"sub_div_id": "54", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7904, 60.7569], [10.7904, 60.7769], [10.7966, 60.7769], [10.7966, 60.7769], [10.7967, 60.7767], [10.7969, 60.7766], [10.7971, 60.7765], [10.7973, 60.7764], [10.7975, 60.7763], [10.7976, 60.7762], [10.7976, 60.7762], [10.7978, 60.7761], [10.7979, 60.776], [10.7979, 60.7759], [10.7979, 60.7758], [10.7981, 60.7756], [10.7983, 60.7755], [10.7985, 60.7754], [10.7987, 60.7752], [10.7989, 60.775], [10.7991, 60.7749], [10.7992, 60.7747], [10.7992, 60.7747], [10.7993, 60.7747], [10.7994, 60.7747], [10.7996, 60.7745], [10.7997, 60.7744], [10.7998, 60.7743], [10.8, 60.774], [10.8001, 60.7739], [10.8003, 60.7738], [10.8004, 60.7736], [10.8005, 60.7735], [10.8005, 60.7734], [10.8005, 60.7733], [10.8005, 60.7733], [10.8005, 60.7732], [10.8006, 60.7732], [10.8007, 60.7731], [10.8007, 60.773], [10.8008, 60.773], [10.8008, 60.773], [10.8008, 60.7729], [10.8008, 60.7729], [10.8009, 60.7728], [10.8009, 60.7728], [10.8009, 60.7728], [10.8008, 60.7727], [10.8007, 60.7727], [10.8006, 60.7727], [10.8006, 60.7727], [10.8006, 60.7727], [10.8007, 60.7726], [10.8008, 60.7726], [10.8007, 60.7726], [10.8007, 60.7726], [10.8006, 60.7726], [10.8006, 60.7726], [10.8005, 60.7726], [10.8004, 60.7726], [10.8004, 60.7726], [10.8004, 60.7726], [10.8005, 60.7726], [10.8005, 60.7726], [10.8006, 60.7725], [10.8007, 60.7725], [10.8007, 60.7725], [10.8008, 60.7725], [10.8009, 60.7726], [10.8009, 60.7726], [10.801, 60.7726], [10.8011, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7727], [10.8013, 60.7727], [10.8013, 60.7727], [10.8014, 60.7727], [10.8016, 60.7727], [10.8017, 60.7727], [10.8017, 60.7727], [10.8017, 60.7726], [10.8017, 60.7725], [10.8017, 60.7724], [10.8017, 60.7723], [10.8017, 60.7723], [10.8017, 60.7723], [10.8018, 60.7723], [10.8018, 60.7723], [10.8018, 60.7724], [10.8018, 60.7724], [10.8018, 60.7725], [10.8018, 60.7726], [10.8019, 60.7727], [10.8019, 60.7727], [10.802, 60.7727], [10.802, 60.7727], [10.802, 60.7728], [10.8022, 60.7727], [10.8022, 60.7727], [10.8022, 60.7727], [10.8024, 60.7727], [10.8025, 60.7726], [10.8025, 60.7726], [10.8025, 60.7725], [10.8025, 60.7724], [10.8024, 60.7723], [10.8024, 60.7723], [10.8024, 60.7723], [10.8023, 60.7723], [10.802, 60.7723], [10.802, 60.7723], [10.8021, 60.7722], [10.8022, 60.7722], [10.8024, 60.7722], [10.8025, 60.7722], [10.8026, 60.7723], [10.8026, 60.7723], [10.8026, 60.7723], [10.8026, 60.7724], [10.8027, 60.7725], [10.8027, 60.7725], [10.8028, 60.7726], [10.8029, 60.7726], [10.803, 60.7726], [10.8031, 60.7726], [10.8032, 60.7725], [10.8033, 60.7725], [10.8033, 60.7725], [10.8034, 60.7725], [10.8036, 60.7725], [10.8039, 60.7725], [10.804, 60.7725], [10.8041, 60.7724], [10.8043, 60.7725], [10.8044, 60.7725], [10.8046, 60.7725], [10.8047, 60.7725], [10.8049, 60.7725], [10.8049, 60.7725], [10.805, 60.7725], [10.8051, 60.7725], [10.8052, 60.7725], [10.8054, 60.7724], [10.8055, 60.7724], [10.8057, 60.7723], [10.8058, 60.7723], [10.8059, 60.7723], [10.8059, 60.7722], [10.806, 60.7721], [10.8061, 60.7721], [10.8061, 60.7721], [10.8062, 60.7721], [10.8064, 60.7721], [10.8065, 60.772], [10.8066, 60.772], [10.8067, 60.7719], [10.8067, 60.7719], [10.8067, 60.7719], [10.8068, 60.7718], [10.8069, 60.7718], [10.807, 60.7717], [10.8071, 60.7718], [10.8072, 60.7718], [10.8075, 60.7719], [10.8078, 60.772], [10.8079, 60.772], [10.8081, 60.772], [10.8083, 60.772], [10.8086, 60.772], [10.8087, 60.7721], [10.8088, 60.7721], [10.8091, 60.7721], [10.8094, 60.7721], [10.8095, 60.7721], [10.8097, 60.7722], [10.8099, 60.7723], [10.81, 60.7723], [10.8101, 60.7723], [10.8102, 60.7724], [10.8103, 60.7724], [10.8105, 60.7724], [10.8107, 60.7725], [10.8109, 60.7725], [10.8111, 60.7725], [10.8113, 60.7724], [10.8114, 60.7724], [10.8115, 60.7724], [10.8116, 60.7724], [10.8117, 60.7724], [10.8118, 60.7724], [10.8121, 60.7723], [10.8121, 60.7723], [10.8122, 60.7723], [10.8123, 60.7722], [10.8123, 60.7722], [10.8124, 60.7722], [10.8126, 60.7722], [10.8126, 60.7722], [10.8127, 60.7722], [10.8127, 60.7722], [10.8127, 60.7721], [10.8127, 60.7721], [10.8127, 60.7721], [10.8127, 60.7721], [10.8128, 60.772], [10.8129, 60.7721], [10.8129, 60.7721], [10.8129, 60.7721], [10.813, 60.7721], [10.8131, 60.7721], [10.8132, 60.7721], [10.8132, 60.7721], [10.8133, 60.772], [10.8133, 60.772], [10.8135, 60.7719], [10.8136, 60.7719], [10.8137, 60.7719], [10.8139, 60.7719], [10.8141, 60.7719], [10.8143, 60.7719], [10.8144, 60.772], [10.8145, 60.772], [10.8146, 60.772], [10.8147, 60.772], [10.8148, 60.772], [10.8149, 60.772], [10.8151, 60.772], [10.8152, 60.772], [10.8153, 60.772], [10.8155, 60.772], [10.8156, 60.772], [10.8158, 60.772], [10.8162, 60.772], [10.8164, 60.772], [10.8166, 60.772], [10.8167, 60.7719], [10.8169, 60.7719], [10.8171, 60.7719], [10.8173, 60.7719], [10.8174, 60.7719], [10.8174, 60.7718], [10.8174, 60.7718], [10.8175, 60.7718], [10.8176, 60.7718], [10.8176, 60.7718], [10.8177, 60.7718], [10.8177, 60.7717], [10.8177, 60.7717], [10.8178, 60.7717], [10.8178, 60.7717], [10.818, 60.7718], [10.8181, 60.7718], [10.8184, 60.7718], [10.8186, 60.7718], [10.8187, 60.7718], [10.819, 60.7718], [10.8191, 60.7718], [10.8192, 60.7718], [10.8194, 60.7718], [10.8196, 60.7718], [10.8196, 60.7718], [10.8197, 60.7718], [10.8197, 60.7718], [10.8197, 60.7718], [10.8198, 60.7718], [10.82, 60.7717], [10.8199, 60.7716], [10.8198, 60.7715], [10.8199, 60.7715], [10.82, 60.7716], [10.82, 60.7716], [10.8202, 60.7716], [10.8202, 60.7717], [10.8203, 60.7717], [10.8203, 60.7717], [10.8203, 60.7716], [10.8203, 60.7715], [10.8203, 60.7714], [10.8203, 60.7714], [10.8201, 60.7714], [10.8199, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8199, 60.7714], [10.82, 60.7714], [10.82, 60.7714], [10.8203, 60.7713], [10.8204, 60.7713], [10.8204, 60.7714], [10.8205, 60.7714], [10.8205, 60.7714], [10.8205, 60.7715], [10.8206, 60.7715], [10.8206, 60.7715], [10.8207, 60.7714], [10.8208, 60.7715], [10.8209, 60.7714], [10.821, 60.7714], [10.8213, 60.7715], [10.8214, 60.7715], [10.8215, 60.7715], [10.8216, 60.7715], [10.8217, 60.7715], [10.8219, 60.7715], [10.8222, 60.7715], [10.8224, 60.7715], [10.8227, 60.7715], [10.8228, 60.7715], [10.8229, 60.7715], [10.823, 60.7715], [10.8232, 60.7715], [10.8235, 60.7716], [10.8237, 60.7716], [10.8241, 60.7716], [10.8243, 60.7716], [10.8246, 60.7716], [10.8246, 60.7716], [10.8247, 60.7716], [10.8247, 60.7716], [10.8247, 60.7716], [10.8248, 60.7715], [10.8248, 60.7715], [10.8248, 60.7715], [10.8249, 60.7715], [10.8249, 60.7715], [10.8249, 60.7715], [10.8249, 60.7716], [10.8249, 60.7716], [10.825, 60.7716], [10.8252, 60.7717], [10.8253, 60.7717], [10.8254, 60.7717], [10.8257, 60.7717], [10.8262, 60.7716], [10.8265, 60.7715], [10.8266, 60.7714], [10.8268, 60.7714], [10.827, 60.7714], [10.8272, 60.7714], [10.8273, 60.7714], [10.8276, 60.7713], [10.8277, 60.7713], [10.8279, 60.7713], [10.828, 60.7714], [10.8283, 60.7714], [10.8284, 60.7714], [10.8285, 60.7714], [10.8287, 60.7714], [10.8289, 60.7714], [10.8292, 60.7713], [10.8294, 60.7713], [10.8296, 60.7713], [10.8298, 60.7713], [10.8301, 60.7713], [10.8304, 60.7712], [10.8304, 60.7569], [10.7904, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "55", "sub_div_center": [0.0062, 0.0018]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7904, 60.7769], [10.7904, 60.7786], [10.7905, 60.7786], [10.7907, 60.7786], [10.7908, 60.7786], [10.7909, 60.7786], [10.791, 60.7786], [10.7911, 60.7786], [10.7911, 60.7785], [10.7911, 60.7785], [10.791, 60.7784], [10.791, 60.7783], [10.791, 60.7782], [10.791, 60.7782], [10.7911, 60.7782], [10.7911, 60.7782], [10.7912, 60.7782], [10.7913, 60.7782], [10.7913, 60.7782], [10.7912, 60.7782], [10.7911, 60.7782], [10.7911, 60.7783], [10.7911, 60.7783], [10.7911, 60.7783], [10.7911, 60.7783], [10.7912, 60.7786], [10.7914, 60.7786], [10.7915, 60.7786], [10.7916, 60.7787], [10.7918, 60.7786], [10.7921, 60.7786], [10.7923, 60.7786], [10.7927, 60.7785], [10.793, 60.7785], [10.7933, 60.7784], [10.7936, 60.7783], [10.7938, 60.7782], [10.7939, 60.7781], [10.7941, 60.7781], [10.7942, 60.7781], [10.7942, 60.778], [10.7943, 60.778], [10.7944, 60.778], [10.7945, 60.778], [10.7947, 60.7779], [10.7949, 60.7778], [10.7951, 60.7777], [10.7953, 60.7777], [10.7954, 60.7776], [10.7957, 60.7775], [10.7957, 60.7774], [10.7958, 60.7774], [10.796, 60.7773], [10.7962, 60.7772], [10.7963, 60.7771], [10.7964, 60.777], [10.7965, 60.7769], [10.7966, 60.7769], [10.7904, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "56", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7569], [10.8704, 60.7569], [10.8704, 60.7369], [10.8341, 60.7369], [10.8341, 60.7371], [10.8341, 60.7372], [10.834, 60.7372], [10.8339, 60.7372], [10.8338, 60.7373], [10.8337, 60.7374], [10.8335, 60.7377], [10.8334, 60.738], [10.8333, 60.7382], [10.8333, 60.7387], [10.8333, 60.7388], [10.8331, 60.739], [10.8329, 60.7392], [10.8329, 60.7392], [10.8329, 60.7394], [10.8328, 60.7395], [10.8325, 60.7401], [10.8325, 60.7401], [10.8325, 60.7402], [10.8324, 60.7402], [10.8322, 60.7402], [10.8321, 60.7402], [10.8318, 60.7401], [10.8316, 60.74], [10.8315, 60.7399], [10.8315, 60.7399], [10.8312, 60.7398], [10.831, 60.7398], [10.831, 60.7398], [10.831, 60.7397], [10.8309, 60.7397], [10.8309, 60.7397], [10.8308, 60.7398], [10.8307, 60.7398], [10.8307, 60.74], [10.8307, 60.74], [10.8306, 60.7399], [10.8306, 60.7399], [10.8305, 60.7399], [10.8305, 60.7399], [10.8305, 60.74], [10.8305, 60.7401], [10.8305, 60.7401], [10.8304, 60.7401], [10.8304, 60.7401], [10.8304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "57", "sub_div_center": [0.04, 0.0144]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7569], [10.8304, 60.7712], [10.8305, 60.7712], [10.8308, 60.7712], [10.8312, 60.7711], [10.8314, 60.771], [10.8316, 60.771], [10.8316, 60.771], [10.8316, 60.771], [10.8317, 60.771], [10.8319, 60.771], [10.832, 60.7709], [10.8325, 60.7708], [10.833, 60.7707], [10.8336, 60.7706], [10.834, 60.7704], [10.8343, 60.7703], [10.8345, 60.7703], [10.8348, 60.7702], [10.835, 60.7701], [10.8351, 60.7701], [10.8351, 60.77], [10.8351, 60.77], [10.8352, 60.77], [10.8353, 60.77], [10.8355, 60.77], [10.8357, 60.7699], [10.836, 60.7698], [10.8361, 60.7698], [10.8363, 60.7697], [10.8364, 60.7697], [10.8364, 60.7697], [10.8365, 60.7697], [10.8366, 60.7697], [10.8366, 60.7696], [10.8367, 60.7696], [10.8369, 60.7696], [10.837, 60.7695], [10.8373, 60.7695], [10.8374, 60.7695], [10.8375, 60.7694], [10.8375, 60.7694], [10.8377, 60.7694], [10.8378, 60.7694], [10.8379, 60.7694], [10.838, 60.7694], [10.838, 60.7693], [10.838, 60.7693], [10.8381, 60.7693], [10.8381, 60.7694], [10.8381, 60.7694], [10.8382, 60.7694], [10.8383, 60.7694], [10.8383, 60.7693], [10.8383, 60.7693], [10.8384, 60.7693], [10.8384, 60.7693], [10.8385, 60.7693], [10.8386, 60.7693], [10.8388, 60.7693], [10.839, 60.7693], [10.8391, 60.7692], [10.8392, 60.7692], [10.8395, 60.7692], [10.8397, 60.7691], [10.8398, 60.7691], [10.8398, 60.769], [10.8398, 60.769], [10.8399, 60.769], [10.84, 60.7691], [10.84, 60.7691], [10.8403, 60.7691], [10.8404, 60.7691], [10.8407, 60.7691], [10.8407, 60.7691], [10.8408, 60.7691], [10.8409, 60.7691], [10.841, 60.7691], [10.8412, 60.7691], [10.8412, 60.769], [10.8412, 60.769], [10.8412, 60.769], [10.8411, 60.7689], [10.841, 60.7689], [10.8409, 60.7689], [10.8408, 60.7689], [10.8407, 60.769], [10.8407, 60.769], [10.8407, 60.7689], [10.8408, 60.7689], [10.8409, 60.7688], [10.841, 60.7688], [10.841, 60.7688], [10.8411, 60.7689], [10.8412, 60.7689], [10.8413, 60.7689], [10.8413, 60.7689], [10.8413, 60.769], [10.8413, 60.769], [10.8413, 60.7691], [10.8413, 60.7691], [10.8415, 60.7691], [10.8418, 60.7691], [10.8418, 60.7691], [10.8417, 60.769], [10.8417, 60.769], [10.8418, 60.769], [10.8419, 60.769], [10.842, 60.769], [10.8421, 60.769], [10.8422, 60.769], [10.8422, 60.769], [10.8422, 60.769], [10.8423, 60.7691], [10.8424, 60.7692], [10.8425, 60.7692], [10.8426, 60.7693], [10.8426, 60.7693], [10.8427, 60.7693], [10.8429, 60.7694], [10.8432, 60.7694], [10.8434, 60.7694], [10.8436, 60.7694], [10.8438, 60.7694], [10.844, 60.7693], [10.8442, 60.7692], [10.8444, 60.7692], [10.8444, 60.7692], [10.8445, 60.7692], [10.8445, 60.7692], [10.8445, 60.7692], [10.8446, 60.7692], [10.8448, 60.7691], [10.8449, 60.769], [10.845, 60.7689], [10.8452, 60.7688], [10.8453, 60.7688], [10.8455, 60.7688], [10.8456, 60.7687], [10.8457, 60.7687], [10.8457, 60.7687], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7685], [10.8457, 60.7685], [10.8458, 60.7685], [10.8459, 60.7685], [10.8459, 60.7685], [10.8459, 60.7686], [10.846, 60.7686], [10.846, 60.7686], [10.846, 60.7687], [10.8461, 60.7687], [10.846, 60.7684], [10.8461, 60.7684], [10.8461, 60.7687], [10.8462, 60.7687], [10.8464, 60.7687], [10.8465, 60.7687], [10.8468, 60.7687], [10.847, 60.7687], [10.8472, 60.7687], [10.8474, 60.7686], [10.8475, 60.7686], [10.8476, 60.7686], [10.8478, 60.7686], [10.8479, 60.7686], [10.848, 60.7686], [10.848, 60.7686], [10.848, 60.7685], [10.848, 60.7685], [10.8481, 60.7685], [10.8481, 60.7685], [10.8482, 60.7685], [10.8482, 60.7684], [10.8483, 60.7684], [10.8483, 60.7685], [10.8483, 60.7685], [10.8485, 60.7686], [10.8487, 60.7686], [10.8489, 60.7686], [10.8491, 60.7686], [10.8493, 60.7686], [10.8494, 60.7686], [10.8496, 60.7686], [10.8498, 60.7686], [10.8499, 60.7687], [10.8502, 60.7687], [10.8504, 60.7687], [10.8506, 60.7687], [10.851, 60.7688], [10.8513, 60.7688], [10.8515, 60.7689], [10.8518, 60.7689], [10.852, 60.7689], [10.8521, 60.7689], [10.8522, 60.7689], [10.8522, 60.7689], [10.8522, 60.7689], [10.8523, 60.769], [10.8524, 60.7689], [10.8525, 60.7689], [10.8526, 60.7689], [10.8526, 60.769], [10.8527, 60.769], [10.8528, 60.769], [10.8529, 60.7691], [10.853, 60.7691], [10.8532, 60.769], [10.8532, 60.769], [10.8532, 60.769], [10.8533, 60.7689], [10.8534, 60.7689], [10.8535, 60.769], [10.8537, 60.769], [10.8538, 60.769], [10.854, 60.7691], [10.8541, 60.7691], [10.8544, 60.7691], [10.8546, 60.7691], [10.8548, 60.7691], [10.855, 60.7691], [10.8552, 60.7691], [10.8554, 60.7692], [10.8557, 60.7691], [10.856, 60.7691], [10.8562, 60.7691], [10.8567, 60.7691], [10.8573, 60.769], [10.8574, 60.769], [10.8575, 60.769], [10.8575, 60.769], [10.8576, 60.7689], [10.8576, 60.7689], [10.8576, 60.7689], [10.8576, 60.7688], [10.8576, 60.7688], [10.8577, 60.7687], [10.8577, 60.7687], [10.8577, 60.7688], [10.8577, 60.7688], [10.8577, 60.7688], [10.8577, 60.7689], [10.8578, 60.7689], [10.8579, 60.769], [10.8583, 60.769], [10.8583, 60.769], [10.8583, 60.7689], [10.8583, 60.7688], [10.8583, 60.7688], [10.8581, 60.7688], [10.858, 60.7688], [10.858, 60.7687], [10.8581, 60.7687], [10.8582, 60.7687], [10.8583, 60.7687], [10.8584, 60.7688], [10.8584, 60.7689], [10.8586, 60.7689], [10.8588, 60.769], [10.8589, 60.769], [10.8591, 60.769], [10.8592, 60.769], [10.8594, 60.7689], [10.8595, 60.7689], [10.8598, 60.7689], [10.86, 60.7689], [10.8602, 60.7688], [10.8605, 60.7688], [10.8606, 60.7688], [10.8609, 60.7687], [10.8612, 60.7686], [10.8614, 60.7686], [10.8616, 60.7685], [10.862, 60.7685], [10.8622, 60.7686], [10.8624, 60.7686], [10.8627, 60.7686], [10.8629, 60.7687], [10.8631, 60.7688], [10.8633, 60.7688], [10.8636, 60.7688], [10.8636, 60.7688], [10.8637, 60.7689], [10.8637, 60.7689], [10.8638, 60.769], [10.8638, 60.769], [10.8639, 60.769], [10.8639, 60.769], [10.864, 60.769], [10.864, 60.769], [10.864, 60.769], [10.8639, 60.7691], [10.8639, 60.7691], [10.8642, 60.7691], [10.8643, 60.7692], [10.8644, 60.7692], [10.8645, 60.7691], [10.8646, 60.7692], [10.8646, 60.7692], [10.8645, 60.7692], [10.8646, 60.7692], [10.8648, 60.7693], [10.8648, 60.7693], [10.8648, 60.7693], [10.8648, 60.7693], [10.865, 60.7693], [10.8651, 60.7693], [10.8652, 60.7693], [10.8653, 60.7693], [10.8654, 60.7693], [10.8655, 60.7693], [10.8656, 60.7693], [10.8657, 60.7693], [10.8658, 60.7694], [10.8659, 60.7694], [10.8661, 60.7694], [10.8665, 60.7695], [10.8667, 60.7695], [10.8668, 60.7693], [10.8669, 60.7692], [10.867, 60.7693], [10.867, 60.7693], [10.867, 60.7695], [10.867, 60.7695], [10.8672, 60.7696], [10.8674, 60.7696], [10.8676, 60.7696], [10.8677, 60.7696], [10.8678, 60.7696], [10.8682, 60.7696], [10.8687, 60.7696], [10.869, 60.7696], [10.8694, 60.7695], [10.8695, 60.7695], [10.8697, 60.7695], [10.8699, 60.7695], [10.8701, 60.7695], [10.8702, 60.7695], [10.8702, 60.7695], [10.8704, 60.7694], [10.8704, 60.7569], [10.8304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "58", "sub_div_center": [0.0363, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7369], [10.8704, 60.7172], [10.8702, 60.7171], [10.87, 60.7171], [10.8699, 60.7171], [10.8698, 60.7171], [10.8696, 60.717], [10.8694, 60.7169], [10.8693, 60.7169], [10.8693, 60.7169], [10.8607, 60.7169], [10.8607, 60.7169], [10.8607, 60.7169], [10.8607, 60.717], [10.8607, 60.717], [10.8607, 60.7171], [10.8607, 60.7171], [10.8605, 60.7171], [10.8604, 60.7171], [10.8602, 60.7172], [10.86, 60.7173], [10.8599, 60.7173], [10.8598, 60.7173], [10.8598, 60.7173], [10.8597, 60.7173], [10.8595, 60.7174], [10.8594, 60.7174], [10.8593, 60.7176], [10.8593, 60.7176], [10.8591, 60.7178], [10.8591, 60.7178], [10.8591, 60.7179], [10.8592, 60.7179], [10.8593, 60.718], [10.8594, 60.718], [10.8594, 60.7181], [10.8597, 60.7182], [10.8603, 60.7184], [10.8605, 60.7183], [10.8606, 60.7183], [10.8605, 60.7184], [10.8604, 60.7185], [10.8602, 60.7184], [10.8597, 60.7183], [10.8594, 60.7182], [10.8593, 60.7181], [10.8592, 60.7181], [10.859, 60.7182], [10.8589, 60.7183], [10.8586, 60.7185], [10.8585, 60.7185], [10.8591, 60.7187], [10.859, 60.7187], [10.8588, 60.7187], [10.8585, 60.7186], [10.8585, 60.7186], [10.8584, 60.7186], [10.8581, 60.7188], [10.858, 60.7189], [10.8579, 60.7189], [10.8579, 60.7189], [10.8577, 60.7189], [10.8577, 60.7189], [10.8577, 60.7189], [10.8576, 60.7189], [10.8574, 60.7191], [10.8571, 60.7193], [10.8571, 60.7193], [10.8571, 60.7193], [10.8574, 60.7194], [10.858, 60.7196], [10.8582, 60.7196], [10.8583, 60.7196], [10.8584, 60.7196], [10.8585, 60.7196], [10.8587, 60.7195], [10.859, 60.7193], [10.8594, 60.7189], [10.8595, 60.7188], [10.8596, 60.7189], [10.8588, 60.7195], [10.8585, 60.7197], [10.8585, 60.7197], [10.8584, 60.7197], [10.8584, 60.7197], [10.8583, 60.7197], [10.8581, 60.7197], [10.8579, 60.7196], [10.8577, 60.7196], [10.8571, 60.7194], [10.8565, 60.7192], [10.8558, 60.719], [10.8557, 60.7189], [10.8554, 60.7188], [10.8553, 60.7188], [10.8552, 60.7187], [10.8552, 60.7187], [10.8551, 60.7188], [10.8551, 60.7188], [10.8551, 60.7189], [10.855, 60.719], [10.855, 60.7192], [10.8551, 60.7192], [10.8551, 60.7193], [10.8552, 60.7193], [10.8552, 60.7193], [10.8551, 60.7194], [10.8551, 60.7195], [10.8551, 60.7198], [10.8551, 60.7199], [10.8551, 60.7199], [10.8553, 60.72], [10.8553, 60.72], [10.8553, 60.72], [10.8552, 60.72], [10.8551, 60.72], [10.855, 60.72], [10.855, 60.72], [10.8549, 60.7201], [10.8549, 60.7202], [10.8549, 60.7203], [10.8549, 60.7203], [10.8552, 60.7203], [10.8553, 60.7204], [10.8555, 60.7204], [10.8555, 60.7203], [10.8555, 60.7203], [10.8556, 60.7203], [10.8556, 60.7203], [10.8556, 60.7204], [10.8556, 60.7204], [10.8555, 60.7205], [10.8554, 60.7205], [10.8554, 60.7205], [10.8553, 60.7204], [10.8549, 60.7204], [10.8548, 60.7204], [10.8547, 60.7204], [10.8546, 60.7204], [10.8544, 60.7205], [10.8544, 60.7206], [10.8541, 60.7206], [10.8538, 60.7207], [10.8537, 60.7208], [10.8533, 60.7208], [10.8532, 60.7209], [10.853, 60.7209], [10.853, 60.7209], [10.8529, 60.721], [10.8529, 60.721], [10.8529, 60.7212], [10.8527, 60.7213], [10.8527, 60.7213], [10.8527, 60.7214], [10.8526, 60.7215], [10.8525, 60.7216], [10.8525, 60.7218], [10.8525, 60.7218], [10.8527, 60.7219], [10.8528, 60.722], [10.8529, 60.722], [10.853, 60.7221], [10.853, 60.7221], [10.8526, 60.7219], [10.8523, 60.7218], [10.8519, 60.7216], [10.8519, 60.7216], [10.8518, 60.7216], [10.8518, 60.7217], [10.8519, 60.7217], [10.852, 60.7218], [10.8522, 60.7219], [10.8523, 60.7219], [10.8523, 60.7219], [10.8522, 60.722], [10.8522, 60.722], [10.8522, 60.722], [10.8524, 60.7221], [10.8525, 60.7221], [10.8525, 60.7221], [10.8526, 60.7221], [10.8527, 60.7221], [10.8528, 60.7222], [10.8532, 60.7224], [10.8534, 60.7225], [10.8534, 60.7226], [10.8534, 60.7227], [10.8532, 60.7228], [10.8529, 60.723], [10.8528, 60.723], [10.8528, 60.723], [10.8527, 60.723], [10.8526, 60.723], [10.8524, 60.7229], [10.8524, 60.7229], [10.8525, 60.7228], [10.8527, 60.7229], [10.8528, 60.7229], [10.8532, 60.7226], [10.8532, 60.7226], [10.8532, 60.7225], [10.853, 60.7225], [10.8528, 60.7223], [10.8527, 60.7223], [10.8525, 60.7224], [10.8522, 60.7226], [10.8521, 60.7227], [10.852, 60.7226], [10.852, 60.7226], [10.852, 60.7226], [10.8521, 60.7225], [10.8523, 60.7223], [10.8524, 60.7223], [10.8523, 60.7222], [10.8521, 60.7222], [10.8519, 60.7222], [10.8518, 60.7223], [10.8518, 60.7223], [10.8515, 60.7226], [10.8515, 60.7226], [10.8515, 60.7226], [10.8516, 60.7226], [10.8518, 60.7228], [10.852, 60.7228], [10.8521, 60.7229], [10.8522, 60.723], [10.8523, 60.723], [10.8525, 60.7231], [10.8525, 60.7231], [10.8525, 60.7232], [10.8525, 60.7232], [10.8524, 60.7232], [10.8522, 60.7232], [10.852, 60.7231], [10.8515, 60.7229], [10.8513, 60.7228], [10.8512, 60.7228], [10.8509, 60.7228], [10.8508, 60.7229], [10.8506, 60.7229], [10.8503, 60.723], [10.8501, 60.7231], [10.8501, 60.7232], [10.85, 60.7233], [10.85, 60.7233], [10.8501, 60.7234], [10.8502, 60.7234], [10.8503, 60.7235], [10.8503, 60.7236], [10.8503, 60.7237], [10.8503, 60.7237], [10.8501, 60.7237], [10.85, 60.7237], [10.8498, 60.7235], [10.8491, 60.7235], [10.8491, 60.7234], [10.849, 60.7234], [10.849, 60.7234], [10.8486, 60.7234], [10.8484, 60.7234], [10.8483, 60.7234], [10.848, 60.7234], [10.8479, 60.7234], [10.8478, 60.7234], [10.8475, 60.7235], [10.8474, 60.7235], [10.8468, 60.7239], [10.8467, 60.724], [10.8466, 60.724], [10.8464, 60.724], [10.8462, 60.7239], [10.8461, 60.7239], [10.846, 60.724], [10.8459, 60.724], [10.8456, 60.7242], [10.8453, 60.7245], [10.8453, 60.7246], [10.845, 60.7246], [10.8449, 60.7246], [10.8448, 60.7246], [10.8447, 60.7248], [10.8446, 60.7249], [10.8445, 60.7251], [10.8445, 60.7252], [10.8445, 60.7255], [10.8444, 60.7258], [10.8445, 60.7259], [10.8445, 60.726], [10.8445, 60.7261], [10.8446, 60.7262], [10.8446, 60.7262], [10.8446, 60.7263], [10.8447, 60.7265], [10.8447, 60.7266], [10.8448, 60.7266], [10.8448, 60.7266], [10.8449, 60.7267], [10.8451, 60.7267], [10.8453, 60.7268], [10.8455, 60.7268], [10.8455, 60.7269], [10.8453, 60.727], [10.8452, 60.727], [10.8452, 60.727], [10.8451, 60.727], [10.8452, 60.7269], [10.8452, 60.7268], [10.8452, 60.7268], [10.8451, 60.7268], [10.8451, 60.7267], [10.8448, 60.7267], [10.8448, 60.7268], [10.8447, 60.7268], [10.8446, 60.7269], [10.8445, 60.7269], [10.8445, 60.7269], [10.8446, 60.727], [10.8449, 60.7271], [10.8449, 60.7271], [10.8448, 60.7272], [10.8447, 60.7271], [10.8446, 60.7271], [10.8445, 60.7271], [10.8444, 60.7271], [10.8444, 60.7271], [10.8442, 60.7272], [10.8439, 60.7273], [10.8434, 60.7276], [10.8433, 60.7276], [10.8433, 60.7276], [10.8431, 60.7277], [10.8429, 60.7277], [10.8428, 60.7277], [10.8427, 60.7277], [10.842, 60.7277], [10.8417, 60.7278], [10.8416, 60.7278], [10.8414, 60.7278], [10.8414, 60.7278], [10.8413, 60.7279], [10.8412, 60.7279], [10.8411, 60.7279], [10.841, 60.728], [10.841, 60.728], [10.841, 60.728], [10.8411, 60.7281], [10.8411, 60.7282], [10.841, 60.7283], [10.841, 60.7284], [10.841, 60.7287], [10.841, 60.7289], [10.841, 60.729], [10.841, 60.7291], [10.841, 60.7291], [10.8411, 60.7291], [10.8414, 60.7292], [10.8415, 60.7292], [10.8414, 60.7292], [10.8412, 60.7292], [10.8411, 60.7292], [10.841, 60.7291], [10.8409, 60.7292], [10.8408, 60.7292], [10.8407, 60.7293], [10.8406, 60.7293], [10.8405, 60.7293], [10.8405, 60.7293], [10.8405, 60.7293], [10.8406, 60.7294], [10.8405, 60.7295], [10.8404, 60.7297], [10.8403, 60.7297], [10.8401, 60.7297], [10.8396, 60.7296], [10.8394, 60.7296], [10.8393, 60.7296], [10.8393, 60.7296], [10.8393, 60.7297], [10.8392, 60.7299], [10.8392, 60.73], [10.8392, 60.73], [10.8394, 60.7301], [10.8397, 60.7301], [10.8397, 60.7302], [10.8397, 60.7302], [10.8396, 60.7302], [10.8395, 60.7302], [10.8394, 60.7301], [10.8393, 60.7301], [10.8392, 60.7301], [10.8392, 60.7301], [10.8391, 60.7301], [10.8389, 60.7304], [10.8387, 60.7306], [10.8387, 60.7307], [10.8386, 60.7308], [10.8386, 60.7309], [10.8385, 60.731], [10.8384, 60.7311], [10.8382, 60.7314], [10.8381, 60.7315], [10.8379, 60.7318], [10.8378, 60.7319], [10.8377, 60.7321], [10.8374, 60.7326], [10.8372, 60.7329], [10.8372, 60.7329], [10.8372, 60.7329], [10.8371, 60.7331], [10.8371, 60.7332], [10.8373, 60.7332], [10.8373, 60.7332], [10.837, 60.7332], [10.8369, 60.7333], [10.8369, 60.7334], [10.8369, 60.7334], [10.837, 60.7334], [10.837, 60.7334], [10.8369, 60.7334], [10.8368, 60.7335], [10.8367, 60.7336], [10.8367, 60.7336], [10.8367, 60.7337], [10.8367, 60.7337], [10.8366, 60.7337], [10.8366, 60.7338], [10.8367, 60.7338], [10.8367, 60.7338], [10.8366, 60.7338], [10.8366, 60.7339], [10.8366, 60.7339], [10.8365, 60.7339], [10.8364, 60.734], [10.8364, 60.7341], [10.8366, 60.7341], [10.8366, 60.7341], [10.8367, 60.7342], [10.8367, 60.7344], [10.8367, 60.7345], [10.8366, 60.7346], [10.8366, 60.7347], [10.8365, 60.7346], [10.8366, 60.7344], [10.8366, 60.7344], [10.8365, 60.7344], [10.8364, 60.7345], [10.8363, 60.7345], [10.8363, 60.7345], [10.8361, 60.7346], [10.8361, 60.7346], [10.8361, 60.7347], [10.8362, 60.7347], [10.8362, 60.7347], [10.8363, 60.7347], [10.8363, 60.7347], [10.8359, 60.7346], [10.8359, 60.7347], [10.8357, 60.7348], [10.8356, 60.7351], [10.8355, 60.7352], [10.8352, 60.7356], [10.835, 60.7357], [10.8347, 60.736], [10.8347, 60.7361], [10.8345, 60.7362], [10.8344, 60.7363], [10.8344, 60.7364], [10.8343, 60.7365], [10.8343, 60.7365], [10.8341, 60.7365], [10.8341, 60.7365], [10.8342, 60.7366], [10.8343, 60.7366], [10.8342, 60.7367], [10.8342, 60.7367], [10.8341, 60.7367], [10.8341, 60.7368], [10.8341, 60.7369], [10.8704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "59", "sub_div_center": [0.0086, 0.0024]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8693, 60.7169], [10.8691, 60.7167], [10.8687, 60.7164], [10.8685, 60.7163], [10.8684, 60.7161], [10.8684, 60.716], [10.8684, 60.7159], [10.8684, 60.7157], [10.8684, 60.7157], [10.8683, 60.7156], [10.8683, 60.7156], [10.8683, 60.7155], [10.8682, 60.7154], [10.8682, 60.7153], [10.8682, 60.7153], [10.868, 60.7151], [10.8676, 60.7149], [10.8674, 60.7148], [10.8673, 60.7148], [10.8672, 60.7147], [10.867, 60.7148], [10.8669, 60.7147], [10.8668, 60.7147], [10.8668, 60.7146], [10.8668, 60.7146], [10.8667, 60.7145], [10.8666, 60.7145], [10.8663, 60.7145], [10.8661, 60.7145], [10.8658, 60.7145], [10.8658, 60.7145], [10.8656, 60.7145], [10.8655, 60.7146], [10.8654, 60.7147], [10.8653, 60.7148], [10.8651, 60.7149], [10.865, 60.7149], [10.8649, 60.715], [10.8649, 60.7151], [10.8649, 60.7151], [10.865, 60.7151], [10.865, 60.7151], [10.8649, 60.7152], [10.8649, 60.7153], [10.8648, 60.7153], [10.8648, 60.7153], [10.8647, 60.7154], [10.8646, 60.7155], [10.8645, 60.7156], [10.8644, 60.716], [10.8643, 60.7162], [10.8643, 60.7163], [10.8643, 60.7163], [10.8642, 60.7164], [10.8642, 60.7164], [10.8642, 60.7164], [10.864, 60.7164], [10.8639, 60.7163], [10.8638, 60.7163], [10.8638, 60.7163], [10.8636, 60.7163], [10.8635, 60.7163], [10.8634, 60.7164], [10.8632, 60.7164], [10.8632, 60.7164], [10.8632, 60.7162], [10.8633, 60.716], [10.8633, 60.7157], [10.8632, 60.7156], [10.8631, 60.7155], [10.863, 60.7155], [10.8628, 60.7154], [10.8626, 60.7154], [10.8625, 60.7154], [10.8623, 60.7155], [10.8623, 60.7155], [10.8622, 60.7156], [10.8622, 60.7156], [10.8621, 60.7156], [10.862, 60.7156], [10.862, 60.7156], [10.862, 60.7157], [10.8619, 60.7158], [10.8618, 60.7159], [10.8617, 60.7159], [10.8617, 60.716], [10.8617, 60.7161], [10.8616, 60.7161], [10.8614, 60.7163], [10.8613, 60.7163], [10.8613, 60.7164], [10.8613, 60.7165], [10.8612, 60.7165], [10.8611, 60.7166], [10.8609, 60.7167], [10.8608, 60.7168], [10.8607, 60.7169], [10.8693, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "60", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8731, 60.7169], [10.873, 60.7169], [10.8727, 60.7169], [10.8726, 60.717], [10.8725, 60.717], [10.8726, 60.7171], [10.8725, 60.7171], [10.8725, 60.7171], [10.8725, 60.7171], [10.8724, 60.717], [10.8723, 60.717], [10.8722, 60.7171], [10.8717, 60.7171], [10.8715, 60.7171], [10.8711, 60.7172], [10.871, 60.7172], [10.8707, 60.7172], [10.8704, 60.7172], [10.8704, 60.7172], [10.8704, 60.7369], [10.9104, 60.7369], [10.9104, 60.7169], [10.8734, 60.7169], [10.8731, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "61", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7369], [10.8704, 60.7569], [10.9104, 60.7569], [10.9104, 60.7369], [10.8704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "62", "sub_div_center": [0.04, 0.0126]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7569], [10.8704, 60.7694], [10.8704, 60.7694], [10.8705, 60.7694], [10.8707, 60.7694], [10.8708, 60.7694], [10.8712, 60.7694], [10.8713, 60.7693], [10.8714, 60.7693], [10.8715, 60.7693], [10.8715, 60.7693], [10.8715, 60.7693], [10.8715, 60.7692], [10.8716, 60.7692], [10.8716, 60.7692], [10.8717, 60.7692], [10.8717, 60.7692], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.769], [10.8718, 60.769], [10.8714, 60.769], [10.8714, 60.769], [10.8713, 60.769], [10.8713, 60.769], [10.8713, 60.769], [10.8715, 60.769], [10.8717, 60.769], [10.8719, 60.7689], [10.8719, 60.769], [10.872, 60.7689], [10.8721, 60.7689], [10.8721, 60.7689], [10.8723, 60.7688], [10.8723, 60.7688], [10.8724, 60.7687], [10.8726, 60.7687], [10.8727, 60.7686], [10.8728, 60.7685], [10.8729, 60.7685], [10.873, 60.7684], [10.8731, 60.7684], [10.8732, 60.7684], [10.8738, 60.7682], [10.8738, 60.7682], [10.8739, 60.7681], [10.8739, 60.7681], [10.874, 60.7681], [10.8741, 60.7682], [10.8742, 60.7682], [10.8744, 60.7682], [10.8746, 60.7682], [10.8747, 60.7683], [10.8748, 60.7683], [10.8749, 60.7683], [10.875, 60.7684], [10.8751, 60.7684], [10.8752, 60.7685], [10.8752, 60.7685], [10.8753, 60.7685], [10.8753, 60.7686], [10.8754, 60.7687], [10.8754, 60.7687], [10.8755, 60.7688], [10.8756, 60.7689], [10.8756, 60.769], [10.8757, 60.769], [10.8758, 60.769], [10.876, 60.7692], [10.8761, 60.7693], [10.8761, 60.7693], [10.8761, 60.7693], [10.8762, 60.7693], [10.8763, 60.7694], [10.8763, 60.7693], [10.8764, 60.7693], [10.8764, 60.7693], [10.8764, 60.7693], [10.8764, 60.7692], [10.8765, 60.7692], [10.8765, 60.7691], [10.8765, 60.7691], [10.8765, 60.7691], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7693], [10.8766, 60.7693], [10.8766, 60.7692], [10.8768, 60.7692], [10.8768, 60.7692], [10.8769, 60.7692], [10.877, 60.7692], [10.8769, 60.7691], [10.8769, 60.7691], [10.877, 60.7691], [10.877, 60.7691], [10.8771, 60.7691], [10.8772, 60.769], [10.8773, 60.769], [10.8775, 60.7689], [10.8776, 60.7689], [10.8777, 60.7688], [10.878, 60.7687], [10.8781, 60.7686], [10.8781, 60.7685], [10.8781, 60.7685], [10.8781, 60.7685], [10.8781, 60.7684], [10.8782, 60.7684], [10.8782, 60.7684], [10.8782, 60.7684], [10.8784, 60.7683], [10.8785, 60.7682], [10.8786, 60.7681], [10.8787, 60.768], [10.8788, 60.7679], [10.8789, 60.7679], [10.879, 60.7678], [10.8791, 60.7677], [10.8792, 60.7677], [10.8793, 60.7676], [10.8794, 60.7676], [10.8795, 60.7675], [10.8797, 60.7675], [10.8798, 60.7675], [10.8799, 60.7675], [10.8799, 60.7675], [10.88, 60.7675], [10.8801, 60.7675], [10.8802, 60.7675], [10.8803, 60.7674], [10.8803, 60.7674], [10.8804, 60.7673], [10.8806, 60.7673], [10.8807, 60.7673], [10.8808, 60.7672], [10.8808, 60.7672], [10.881, 60.7672], [10.881, 60.7672], [10.8811, 60.7672], [10.8812, 60.7671], [10.8815, 60.767], [10.8817, 60.767], [10.8818, 60.767], [10.8818, 60.767], [10.8819, 60.7669], [10.882, 60.7669], [10.882, 60.7669], [10.8822, 60.7668], [10.8824, 60.7668], [10.8825, 60.7667], [10.8826, 60.7667], [10.8826, 60.7667], [10.8826, 60.7666], [10.8826, 60.7666], [10.8826, 60.7666], [10.8826, 60.7666], [10.8827, 60.7667], [10.8828, 60.7666], [10.8828, 60.7666], [10.8828, 60.7666], [10.8831, 60.7665], [10.8832, 60.7665], [10.8834, 60.7664], [10.8835, 60.7664], [10.8837, 60.7663], [10.8838, 60.7663], [10.8839, 60.7663], [10.8841, 60.7662], [10.8842, 60.7662], [10.8842, 60.7662], [10.8843, 60.7662], [10.8845, 60.7662], [10.8846, 60.7662], [10.8847, 60.7662], [10.8847, 60.7662], [10.8847, 60.7661], [10.8848, 60.7661], [10.8849, 60.7661], [10.885, 60.7661], [10.885, 60.766], [10.885, 60.766], [10.8851, 60.766], [10.8852, 60.766], [10.8853, 60.766], [10.8853, 60.7659], [10.8853, 60.7659], [10.8854, 60.7659], [10.8855, 60.7659], [10.8856, 60.7659], [10.8857, 60.7659], [10.8859, 60.7659], [10.8861, 60.7659], [10.8862, 60.7659], [10.8863, 60.7658], [10.8865, 60.7658], [10.8865, 60.7657], [10.8865, 60.7657], [10.8866, 60.7657], [10.8866, 60.7657], [10.8869, 60.7657], [10.8871, 60.7657], [10.8872, 60.7657], [10.8873, 60.7657], [10.8874, 60.7657], [10.8876, 60.7656], [10.8877, 60.7656], [10.8879, 60.7655], [10.888, 60.7655], [10.8881, 60.7654], [10.8881, 60.7654], [10.8882, 60.7654], [10.8882, 60.7654], [10.8884, 60.7654], [10.8884, 60.7654], [10.8885, 60.7654], [10.8886, 60.7654], [10.8888, 60.7653], [10.889, 60.7653], [10.889, 60.7653], [10.889, 60.7653], [10.8891, 60.7653], [10.8891, 60.7653], [10.8891, 60.7653], [10.8891, 60.7652], [10.8893, 60.7652], [10.8893, 60.7652], [10.8893, 60.7651], [10.8895, 60.7651], [10.8896, 60.765], [10.8898, 60.765], [10.89, 60.7649], [10.8902, 60.7649], [10.8905, 60.7648], [10.8906, 60.7648], [10.8908, 60.7649], [10.8909, 60.7649], [10.891, 60.7649], [10.891, 60.7649], [10.891, 60.765], [10.891, 60.765], [10.8911, 60.765], [10.8911, 60.765], [10.8912, 60.765], [10.8912, 60.765], [10.8914, 60.765], [10.8914, 60.7649], [10.8914, 60.7649], [10.8915, 60.7648], [10.8915, 60.7648], [10.8916, 60.7648], [10.8916, 60.7648], [10.8917, 60.7648], [10.8917, 60.7649], [10.8918, 60.7648], [10.892, 60.7648], [10.892, 60.7648], [10.8921, 60.7647], [10.8922, 60.7647], [10.8922, 60.7647], [10.8922, 60.7646], [10.8924, 60.7646], [10.8924, 60.7645], [10.8925, 60.7645], [10.8929, 60.7643], [10.8931, 60.7643], [10.8932, 60.7642], [10.8933, 60.7641], [10.8934, 60.7641], [10.8934, 60.764], [10.8937, 60.7639], [10.8939, 60.7638], [10.8939, 60.7637], [10.8941, 60.7636], [10.8943, 60.7635], [10.8944, 60.7635], [10.8944, 60.7636], [10.8945, 60.7636], [10.8946, 60.7635], [10.8947, 60.7635], [10.8948, 60.7635], [10.8948, 60.7634], [10.8948, 60.7634], [10.8949, 60.7633], [10.8948, 60.7633], [10.8948, 60.7632], [10.8948, 60.7632], [10.8948, 60.7631], [10.8948, 60.763], [10.8948, 60.763], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7628], [10.895, 60.7628], [10.8951, 60.7628], [10.8952, 60.7629], [10.8954, 60.7628], [10.8956, 60.7628], [10.8958, 60.7627], [10.8959, 60.7627], [10.8959, 60.7626], [10.896, 60.7626], [10.896, 60.7626], [10.8962, 60.7626], [10.8962, 60.7625], [10.8964, 60.7625], [10.8964, 60.7624], [10.8966, 60.7624], [10.8967, 60.7623], [10.8968, 60.7623], [10.8969, 60.7623], [10.897, 60.7622], [10.8971, 60.7623], [10.8971, 60.7622], [10.8973, 60.7622], [10.8974, 60.7622], [10.8975, 60.7622], [10.8976, 60.7621], [10.8977, 60.7622], [10.8979, 60.7621], [10.8982, 60.7621], [10.8983, 60.7621], [10.8984, 60.762], [10.8985, 60.762], [10.8987, 60.762], [10.8988, 60.762], [10.899, 60.762], [10.8991, 60.762], [10.8992, 60.762], [10.8994, 60.762], [10.8996, 60.762], [10.8999, 60.7619], [10.9001, 60.7619], [10.9006, 60.7618], [10.9011, 60.7617], [10.9011, 60.7617], [10.9011, 60.7616], [10.9014, 60.7616], [10.9016, 60.7615], [10.902, 60.7614], [10.9022, 60.7613], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7611], [10.9024, 60.7611], [10.9024, 60.7609], [10.9024, 60.7608], [10.9024, 60.7607], [10.9024, 60.7607], [10.9024, 60.7606], [10.9024, 60.7605], [10.9026, 60.7605], [10.9026, 60.7605], [10.9027, 60.7605], [10.9027, 60.7605], [10.9028, 60.7605], [10.9028, 60.7605], [10.9029, 60.7605], [10.9029, 60.7605], [10.903, 60.7605], [10.903, 60.7606], [10.9029, 60.7606], [10.9029, 60.7606], [10.9029, 60.7606], [10.9028, 60.7606], [10.9027, 60.7606], [10.9027, 60.7606], [10.9027, 60.7606], [10.9026, 60.7607], [10.9026, 60.7607], [10.9026, 60.7607], [10.9026, 60.7608], [10.9027, 60.7608], [10.9027, 60.7609], [10.9029, 60.7609], [10.903, 60.7609], [10.9032, 60.7609], [10.9033, 60.7609], [10.9034, 60.7609], [10.9036, 60.7608], [10.904, 60.7607], [10.9042, 60.7606], [10.9042, 60.7606], [10.9043, 60.7606], [10.9044, 60.7606], [10.9044, 60.7606], [10.9045, 60.7605], [10.9046, 60.7605], [10.9047, 60.7605], [10.9046, 60.7604], [10.9047, 60.7604], [10.9048, 60.7603], [10.9049, 60.7603], [10.905, 60.7603], [10.9051, 60.7602], [10.9053, 60.7602], [10.9053, 60.7601], [10.9055, 60.76], [10.9057, 60.7599], [10.9058, 60.7599], [10.9061, 60.7598], [10.9062, 60.7598], [10.9063, 60.7598], [10.9064, 60.7598], [10.9064, 60.7597], [10.9065, 60.7597], [10.9066, 60.7596], [10.9066, 60.7596], [10.9069, 60.7595], [10.9069, 60.7595], [10.9071, 60.7594], [10.9073, 60.7594], [10.9075, 60.7594], [10.9076, 60.7594], [10.9077, 60.7594], [10.9077, 60.7594], [10.9078, 60.7595], [10.9079, 60.7595], [10.908, 60.7596], [10.9082, 60.7596], [10.9082, 60.7596], [10.9085, 60.7596], [10.9087, 60.7595], [10.9089, 60.7595], [10.9091, 60.7595], [10.9095, 60.7594], [10.9098, 60.7594], [10.91, 60.7593], [10.9102, 60.7593], [10.9104, 60.7593], [10.9104, 60.7593], [10.9104, 60.7569], [10.8704, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "63", "sub_div_center": [0.04, 0.0163]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.8931], [10.8705, 60.8931], [10.8705, 60.8931], [10.8706, 60.8931], [10.8706, 60.8931], [10.8706, 60.893], [10.8707, 60.893], [10.8708, 60.8929], [10.8709, 60.8929], [10.8711, 60.8929], [10.8714, 60.8929], [10.8716, 60.8929], [10.8718, 60.8929], [10.872, 60.8929], [10.8722, 60.8929], [10.8725, 60.893], [10.8727, 60.8929], [10.8727, 60.8929], [10.8729, 60.8927], [10.873, 60.8926], [10.873, 60.8925], [10.8731, 60.8924], [10.8732, 60.8924], [10.8735, 60.8923], [10.8739, 60.8923], [10.874, 60.8923], [10.8742, 60.8923], [10.8742, 60.8923], [10.8743, 60.8923], [10.8744, 60.8923], [10.8746, 60.8924], [10.8747, 60.8925], [10.8748, 60.8925], [10.8749, 60.8925], [10.875, 60.8926], [10.8752, 60.8925], [10.8754, 60.8925], [10.8757, 60.8924], [10.876, 60.8924], [10.8761, 60.8923], [10.8762, 60.8923], [10.8767, 60.8922], [10.8771, 60.8921], [10.8776, 60.892], [10.8781, 60.8919], [10.8787, 60.8917], [10.8791, 60.8916], [10.8795, 60.8915], [10.8796, 60.8914], [10.8798, 60.8914], [10.8798, 60.8913], [10.8799, 60.8911], [10.8801, 60.891], [10.8802, 60.891], [10.8804, 60.8909], [10.8806, 60.8908], [10.8807, 60.8908], [10.8808, 60.8908], [10.8809, 60.8909], [10.8811, 60.891], [10.8811, 60.891], [10.8812, 60.891], [10.8823, 60.8906], [10.8827, 60.8904], [10.883, 60.8903], [10.8831, 60.8902], [10.8832, 60.8902], [10.8834, 60.8901], [10.8837, 60.89], [10.8838, 60.8899], [10.884, 60.8898], [10.8842, 60.8897], [10.8843, 60.8896], [10.8844, 60.8896], [10.8846, 60.8895], [10.8847, 60.8895], [10.8848, 60.8895], [10.885, 60.8894], [10.8851, 60.8893], [10.8852, 60.8893], [10.8853, 60.8892], [10.8853, 60.8892], [10.8854, 60.8891], [10.8854, 60.8891], [10.8854, 60.889], [10.8855, 60.8889], [10.8856, 60.8888], [10.8857, 60.8887], [10.8858, 60.8885], [10.8859, 60.8885], [10.8859, 60.8884], [10.8859, 60.8883], [10.886, 60.8883], [10.8862, 60.8881], [10.8862, 60.8881], [10.8862, 60.888], [10.8862, 60.888], [10.8862, 60.8879], [10.8862, 60.8878], [10.8861, 60.8878], [10.886, 60.8876], [10.8859, 60.8875], [10.8859, 60.8875], [10.8858, 60.8874], [10.8857, 60.8873], [10.8855, 60.8872], [10.8855, 60.8871], [10.8854, 60.8871], [10.8853, 60.8871], [10.8851, 60.887], [10.885, 60.887], [10.8849, 60.887], [10.8849, 60.8869], [10.8848, 60.8869], [10.8848, 60.8868], [10.8849, 60.8867], [10.8849, 60.8867], [10.8851, 60.8866], [10.8852, 60.8865], [10.8853, 60.8865], [10.8854, 60.8865], [10.8856, 60.8865], [10.8857, 60.8866], [10.8858, 60.8866], [10.8859, 60.8866], [10.8861, 60.8867], [10.8863, 60.8868], [10.8865, 60.8868], [10.8866, 60.8868], [10.8867, 60.8867], [10.8867, 60.8866], [10.8867, 60.8866], [10.8867, 60.8865], [10.8868, 60.8864], [10.8868, 60.8862], [10.8869, 60.8862], [10.887, 60.8862], [10.8871, 60.8862], [10.8872, 60.8862], [10.8873, 60.8862], [10.8874, 60.8863], [10.8875, 60.8863], [10.8877, 60.8864], [10.8879, 60.8865], [10.8882, 60.8865], [10.8883, 60.8866], [10.8885, 60.8866], [10.8886, 60.8866], [10.8888, 60.8866], [10.8889, 60.8866], [10.889, 60.8866], [10.889, 60.8866], [10.8891, 60.8865], [10.8892, 60.8865], [10.8892, 60.8864], [10.8893, 60.8863], [10.8892, 60.8863], [10.8892, 60.8863], [10.8892, 60.8862], [10.8891, 60.8861], [10.8889, 60.8861], [10.8888, 60.886], [10.8887, 60.886], [10.8886, 60.8859], [10.8886, 60.8858], [10.8885, 60.8858], [10.8885, 60.8856], [10.8885, 60.8855], [10.8885, 60.8853], [10.8885, 60.8852], [10.8886, 60.8851], [10.8886, 60.885], [10.8887, 60.885], [10.8889, 60.8849], [10.889, 60.8849], [10.889, 60.8848], [10.8891, 60.8848], [10.8893, 60.8847], [10.8895, 60.8847], [10.8896, 60.8846], [10.8897, 60.8846], [10.8898, 60.8845], [10.8899, 60.8845], [10.8901, 60.8844], [10.8902, 60.8844], [10.8904, 60.8844], [10.8905, 60.8844], [10.8906, 60.8843], [10.8909, 60.8843], [10.8911, 60.8843], [10.8914, 60.8843], [10.8917, 60.8844], [10.8919, 60.8843], [10.892, 60.8843], [10.892, 60.8843], [10.8921, 60.8843], [10.8921, 60.8843], [10.8922, 60.8843], [10.8923, 60.8843], [10.8924, 60.8843], [10.8925, 60.8842], [10.8926, 60.8842], [10.8926, 60.8841], [10.8927, 60.8841], [10.893, 60.8841], [10.8931, 60.884], [10.8933, 60.884], [10.8934, 60.884], [10.8935, 60.884], [10.8938, 60.8839], [10.8941, 60.8839], [10.8944, 60.8838], [10.8946, 60.8838], [10.8948, 60.8838], [10.895, 60.8837], [10.8952, 60.8837], [10.8953, 60.8837], [10.8957, 60.8837], [10.8958, 60.8837], [10.8959, 60.8837], [10.896, 60.8837], [10.8963, 60.8837], [10.8964, 60.8837], [10.8967, 60.8837], [10.8968, 60.8837], [10.8969, 60.8837], [10.8971, 60.8837], [10.8973, 60.8837], [10.8974, 60.8836], [10.8975, 60.8836], [10.8975, 60.8835], [10.8975, 60.8835], [10.8975, 60.8835], [10.8973, 60.8834], [10.8973, 60.8833], [10.8972, 60.8833], [10.8971, 60.8832], [10.8971, 60.8832], [10.897, 60.8831], [10.8968, 60.8831], [10.8968, 60.883], [10.8967, 60.883], [10.8966, 60.8829], [10.8966, 60.8829], [10.8966, 60.8828], [10.8966, 60.8828], [10.8967, 60.8827], [10.8969, 60.8827], [10.8971, 60.8826], [10.8972, 60.8826], [10.8973, 60.8826], [10.8974, 60.8826], [10.8975, 60.8826], [10.8976, 60.8827], [10.8978, 60.8828], [10.8979, 60.883], [10.8981, 60.8831], [10.8982, 60.8832], [10.8983, 60.8832], [10.8984, 60.8832], [10.8985, 60.8833], [10.8986, 60.8833], [10.8987, 60.8832], [10.899, 60.8832], [10.8993, 60.8831], [10.8994, 60.8831], [10.8996, 60.8831], [10.8997, 60.8831], [10.8999, 60.883], [10.9, 60.883], [10.9001, 60.883], [10.9001, 60.8829], [10.9, 60.8828], [10.8999, 60.8828], [10.8999, 60.8827], [10.8999, 60.8827], [10.8999, 60.8827], [10.9, 60.8827], [10.9001, 60.8828], [10.9002, 60.8828], [10.9003, 60.8829], [10.9004, 60.8829], [10.9005, 60.8829], [10.9005, 60.8829], [10.9005, 60.8829], [10.9007, 60.8828], [10.9008, 60.8828], [10.9009, 60.8828], [10.9011, 60.8827], [10.9013, 60.8826], [10.9015, 60.8826], [10.9017, 60.8826], [10.9019, 60.8826], [10.902, 60.8825], [10.902, 60.8825], [10.9019, 60.8824], [10.9019, 60.8823], [10.9019, 60.8823], [10.902, 60.8824], [10.9021, 60.8825], [10.9021, 60.8825], [10.9022, 60.8826], [10.9023, 60.8826], [10.9024, 60.8827], [10.9025, 60.8827], [10.9026, 60.8827], [10.9027, 60.8827], [10.9027, 60.8826], [10.9028, 60.8826], [10.9028, 60.8827], [10.9029, 60.8827], [10.903, 60.8827], [10.903, 60.8827], [10.9031, 60.8827], [10.9031, 60.8826], [10.9031, 60.8826], [10.9031, 60.8826], [10.9031, 60.8825], [10.9031, 60.8825], [10.9032, 60.8825], [10.9032, 60.8825], [10.9032, 60.8826], [10.9033, 60.8826], [10.9034, 60.8826], [10.9035, 60.8826], [10.9035, 60.8826], [10.9036, 60.8826], [10.9036, 60.8826], [10.9037, 60.8826], [10.9037, 60.8825], [10.9037, 60.8825], [10.9038, 60.8825], [10.9038, 60.8825], [10.9038, 60.8826], [10.9038, 60.8826], [10.904, 60.8826], [10.904, 60.8826], [10.904, 60.8826], [10.9041, 60.8826], [10.9041, 60.8826], [10.9042, 60.8825], [10.9044, 60.8825], [10.9048, 60.8825], [10.9051, 60.8824], [10.9054, 60.8824], [10.9056, 60.8823], [10.9058, 60.8823], [10.906, 60.8823], [10.9063, 60.8823], [10.9066, 60.8823], [10.907, 60.8824], [10.9073, 60.8824], [10.9075, 60.8825], [10.9077, 60.8825], [10.908, 60.8825], [10.9081, 60.8825], [10.9083, 60.8825], [10.9085, 60.8825], [10.9086, 60.8825], [10.9087, 60.8825], [10.9089, 60.8825], [10.909, 60.8825], [10.9091, 60.8824], [10.9092, 60.8824], [10.9093, 60.8824], [10.9093, 60.8824], [10.9093, 60.8824], [10.9095, 60.8824], [10.9095, 60.8824], [10.9097, 60.8824], [10.9097, 60.8823], [10.9097, 60.8823], [10.9097, 60.8823], [10.9098, 60.8824], [10.9099, 60.8824], [10.9099, 60.8824], [10.91, 60.8824], [10.9101, 60.8824], [10.91, 60.8823], [10.91, 60.8823], [10.91, 60.8823], [10.9101, 60.8823], [10.9101, 60.8823], [10.9102, 60.8823], [10.9104, 60.8823], [10.9104, 60.8823], [10.9104, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8979, 60.8771], [10.8979, 60.8771], [10.8979, 60.8771], [10.8979, 60.8772], [10.8979, 60.8772], [10.898, 60.8772], [10.898, 60.8772], [10.898, 60.8772], [10.8979, 60.8773], [10.8978, 60.8773], [10.8977, 60.8774], [10.8975, 60.8775], [10.8974, 60.8776], [10.8974, 60.8776], [10.8973, 60.8777], [10.8974, 60.8777], [10.8974, 60.8778], [10.8975, 60.8778], [10.8976, 60.8778], [10.8977, 60.8778], [10.8978, 60.8779], [10.898, 60.8779], [10.898, 60.8779], [10.898, 60.8779], [10.8978, 60.8779], [10.8977, 60.8779], [10.8977, 60.8779], [10.8977, 60.8779], [10.8976, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8975, 60.8781], [10.8976, 60.8781], [10.8976, 60.8781], [10.8976, 60.8781], [10.8974, 60.8781], [10.8973, 60.8781], [10.8972, 60.878], [10.8972, 60.8781], [10.8971, 60.8781], [10.897, 60.8781], [10.8969, 60.8781], [10.8969, 60.8782], [10.8969, 60.8783], [10.8968, 60.8783], [10.8968, 60.8783], [10.8968, 60.8783], [10.8968, 60.8784], [10.8968, 60.8785], [10.8968, 60.8785], [10.8968, 60.8786], [10.8968, 60.8786], [10.8968, 60.8786], [10.8968, 60.8787], [10.8968, 60.8787], [10.8969, 60.8787], [10.8969, 60.8787], [10.8968, 60.8787], [10.8968, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.8972, 60.8788], [10.8971, 60.8789], [10.8971, 60.8789], [10.897, 60.8789], [10.8968, 60.8789], [10.8968, 60.8789], [10.8967, 60.8789], [10.8967, 60.8789], [10.8966, 60.8788], [10.8965, 60.8789], [10.8964, 60.879], [10.8962, 60.879], [10.8962, 60.879], [10.8961, 60.879], [10.8961, 60.879], [10.8961, 60.8791], [10.8959, 60.8791], [10.8959, 60.8791], [10.8957, 60.879], [10.8957, 60.879], [10.8956, 60.8791], [10.8955, 60.8791], [10.8954, 60.8792], [10.8953, 60.8792], [10.8952, 60.8792], [10.8952, 60.8792], [10.8951, 60.8794], [10.8951, 60.8794], [10.8951, 60.8795], [10.8951, 60.8795], [10.8951, 60.8796], [10.8951, 60.8796], [10.895, 60.8796], [10.895, 60.8796], [10.8951, 60.8797], [10.8951, 60.8797], [10.8951, 60.8797], [10.8951, 60.8799], [10.895, 60.8799], [10.895, 60.8801], [10.8951, 60.8803], [10.8952, 60.8803], [10.8952, 60.8804], [10.8952, 60.8804], [10.8953, 60.8805], [10.8954, 60.8806], [10.8953, 60.8807], [10.8953, 60.8808], [10.8954, 60.8808], [10.8954, 60.8809], [10.8957, 60.8812], [10.8957, 60.8812], [10.8955, 60.8813], [10.8954, 60.8814], [10.8957, 60.8816], [10.8957, 60.8817], [10.8955, 60.8818], [10.8954, 60.8818], [10.8952, 60.8816], [10.8951, 60.8816], [10.895, 60.8815], [10.8949, 60.8814], [10.8948, 60.8813], [10.8948, 60.8813], [10.8947, 60.8812], [10.8947, 60.8812], [10.8946, 60.8812], [10.8945, 60.8812], [10.8944, 60.8812], [10.8943, 60.8812], [10.8943, 60.8812], [10.894, 60.8812], [10.8939, 60.8812], [10.8938, 60.8812], [10.8939, 60.8812], [10.8941, 60.8811], [10.8941, 60.8811], [10.8941, 60.8811], [10.8941, 60.8811], [10.894, 60.8811], [10.8938, 60.881], [10.8935, 60.881], [10.8931, 60.8809], [10.8929, 60.8809], [10.8928, 60.8808], [10.8926, 60.8808], [10.8925, 60.8808], [10.8922, 60.8809], [10.8918, 60.8809], [10.8916, 60.8809], [10.8914, 60.881], [10.8914, 60.881], [10.8913, 60.881], [10.8912, 60.881], [10.8911, 60.881], [10.8909, 60.881], [10.8909, 60.8811], [10.891, 60.8812], [10.8909, 60.8812], [10.891, 60.8813], [10.8909, 60.8813], [10.8909, 60.8812], [10.8909, 60.8812], [10.8907, 60.8811], [10.8907, 60.881], [10.8904, 60.8811], [10.8903, 60.8811], [10.8902, 60.8811], [10.89, 60.8811], [10.8898, 60.8811], [10.8897, 60.881], [10.8896, 60.8809], [10.8895, 60.8808], [10.8895, 60.8807], [10.8894, 60.8806], [10.8894, 60.8806], [10.8893, 60.8806], [10.8893, 60.8806], [10.8893, 60.8806], [10.8892, 60.8806], [10.8892, 60.8806], [10.8889, 60.8806], [10.8888, 60.8806], [10.8886, 60.8806], [10.8885, 60.8806], [10.8884, 60.8806], [10.8882, 60.8806], [10.888, 60.8806], [10.8878, 60.8805], [10.8875, 60.8805], [10.8873, 60.8804], [10.8871, 60.8804], [10.8868, 60.8803], [10.8867, 60.8803], [10.8865, 60.8803], [10.8864, 60.8803], [10.8863, 60.8803], [10.886, 60.8804], [10.8857, 60.8805], [10.8856, 60.8805], [10.8855, 60.8805], [10.8854, 60.8806], [10.8853, 60.8806], [10.885, 60.8807], [10.8849, 60.8807], [10.8848, 60.8807], [10.8847, 60.8807], [10.8846, 60.8808], [10.8845, 60.8808], [10.8843, 60.8809], [10.8842, 60.881], [10.8841, 60.8811], [10.8841, 60.8813], [10.884, 60.8814], [10.8839, 60.8814], [10.8838, 60.8815], [10.8837, 60.8815], [10.8836, 60.8815], [10.8835, 60.8815], [10.8834, 60.8815], [10.8832, 60.8815], [10.8831, 60.8815], [10.8829, 60.8815], [10.8828, 60.8815], [10.8827, 60.8816], [10.8826, 60.8816], [10.8825, 60.8817], [10.8825, 60.8817], [10.8824, 60.8817], [10.8823, 60.8818], [10.8823, 60.8818], [10.8822, 60.8818], [10.8821, 60.8818], [10.8821, 60.8819], [10.882, 60.8819], [10.8819, 60.8819], [10.8818, 60.882], [10.8818, 60.882], [10.8817, 60.8821], [10.8816, 60.8821], [10.8816, 60.8821], [10.8815, 60.8822], [10.8813, 60.8822], [10.8812, 60.8823], [10.881, 60.8823], [10.8809, 60.8824], [10.8808, 60.8824], [10.8807, 60.8825], [10.8804, 60.8825], [10.8802, 60.8826], [10.88, 60.8826], [10.8799, 60.8827], [10.8796, 60.8828], [10.8794, 60.8828], [10.8793, 60.8829], [10.8793, 60.883], [10.8793, 60.8831], [10.8793, 60.8832], [10.8792, 60.8833], [10.879, 60.8834], [10.8789, 60.8834], [10.8786, 60.8835], [10.8784, 60.8836], [10.8782, 60.8836], [10.878, 60.8836], [10.8779, 60.8836], [10.8778, 60.8837], [10.8778, 60.8838], [10.8777, 60.8838], [10.8777, 60.8839], [10.8777, 60.884], [10.8777, 60.8841], [10.8777, 60.8842], [10.8777, 60.8844], [10.8777, 60.8846], [10.8777, 60.8846], [10.8777, 60.8847], [10.8777, 60.8848], [10.8777, 60.8849], [10.8777, 60.885], [10.8776, 60.8851], [10.8775, 60.8852], [10.8773, 60.8851], [10.8771, 60.8851], [10.877, 60.8851], [10.8769, 60.885], [10.8766, 60.8849], [10.8763, 60.8849], [10.8761, 60.8849], [10.8758, 60.8849], [10.8756, 60.885], [10.8754, 60.8849], [10.8753, 60.8849], [10.8752, 60.8848], [10.8751, 60.8848], [10.8749, 60.8849], [10.8748, 60.8849], [10.8748, 60.885], [10.8746, 60.8851], [10.8746, 60.8852], [10.8746, 60.8852], [10.8747, 60.8853], [10.8746, 60.8854], [10.8746, 60.8856], [10.8746, 60.8857], [10.8745, 60.8858], [10.8743, 60.8858], [10.8741, 60.8859], [10.8739, 60.886], [10.8738, 60.8861], [10.8738, 60.8862], [10.8737, 60.8863], [10.8737, 60.8865], [10.8736, 60.8866], [10.8735, 60.8866], [10.8733, 60.8867], [10.8731, 60.8868], [10.873, 60.8868], [10.8728, 60.8868], [10.8726, 60.8868], [10.8724, 60.8869], [10.8723, 60.8869], [10.8721, 60.8869], [10.8719, 60.887], [10.8717, 60.887], [10.8715, 60.8871], [10.8712, 60.8871], [10.8709, 60.8872], [10.8707, 60.8873], [10.8704, 60.8873], [10.8704, 60.8873], [10.8704, 60.8931]]]}}, {"type": "Feature", "properties": {"sub_div_id": "64", "sub_div_center": [0.0052, 0.006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.8873], [10.8702, 60.8874], [10.8701, 60.8874], [10.8699, 60.8875], [10.8697, 60.8875], [10.8694, 60.8875], [10.8693, 60.8875], [10.8691, 60.8876], [10.869, 60.8876], [10.869, 60.8876], [10.869, 60.8876], [10.8689, 60.8877], [10.8687, 60.8877], [10.8687, 60.8876], [10.8686, 60.8876], [10.8685, 60.8876], [10.8684, 60.8877], [10.8682, 60.8877], [10.868, 60.8878], [10.8678, 60.8879], [10.8676, 60.8879], [10.8673, 60.888], [10.8671, 60.8881], [10.8667, 60.8881], [10.8664, 60.8881], [10.8662, 60.8881], [10.8659, 60.8881], [10.8658, 60.8881], [10.8657, 60.8881], [10.8656, 60.8881], [10.8654, 60.8881], [10.8653, 60.8881], [10.8653, 60.8882], [10.8652, 60.8882], [10.8652, 60.8883], [10.8652, 60.8883], [10.8652, 60.8884], [10.8652, 60.8884], [10.8653, 60.8885], [10.8654, 60.8885], [10.8656, 60.8886], [10.8656, 60.8887], [10.8657, 60.8887], [10.8657, 60.8887], [10.8658, 60.8888], [10.866, 60.8889], [10.8661, 60.889], [10.8663, 60.889], [10.8665, 60.889], [10.8664, 60.889], [10.8662, 60.8891], [10.8663, 60.8891], [10.8663, 60.8891], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8666, 60.8891], [10.8665, 60.8891], [10.8665, 60.8891], [10.8665, 60.8891], [10.8666, 60.8892], [10.8667, 60.8891], [10.8668, 60.8891], [10.8669, 60.8891], [10.867, 60.8891], [10.867, 60.8891], [10.8671, 60.8891], [10.8673, 60.8891], [10.8673, 60.8891], [10.8674, 60.8891], [10.8675, 60.8891], [10.8677, 60.8891], [10.8677, 60.8891], [10.8678, 60.8892], [10.8678, 60.8892], [10.8678, 60.8893], [10.8678, 60.8893], [10.8678, 60.8894], [10.8679, 60.8895], [10.8679, 60.8895], [10.8678, 60.8896], [10.8678, 60.8897], [10.8677, 60.8898], [10.8677, 60.8899], [10.8677, 60.8899], [10.8676, 60.89], [10.8675, 60.89], [10.8674, 60.8901], [10.8674, 60.8902], [10.8673, 60.8902], [10.8673, 60.8903], [10.8673, 60.8903], [10.8674, 60.8904], [10.8675, 60.8905], [10.8677, 60.8906], [10.8678, 60.8906], [10.8679, 60.8907], [10.868, 60.8907], [10.8681, 60.8907], [10.8683, 60.8907], [10.8684, 60.8907], [10.8686, 60.8908], [10.8686, 60.8908], [10.8687, 60.8907], [10.8688, 60.8907], [10.8689, 60.8908], [10.8691, 60.8908], [10.8691, 60.8909], [10.8692, 60.891], [10.8692, 60.891], [10.8693, 60.8911], [10.8693, 60.8911], [10.8692, 60.8911], [10.8691, 60.8912], [10.8691, 60.8912], [10.8691, 60.8913], [10.8691, 60.8913], [10.8691, 60.8914], [10.8691, 60.8915], [10.869, 60.8916], [10.8689, 60.8916], [10.8688, 60.8917], [10.8687, 60.8918], [10.8686, 60.8919], [10.8686, 60.892], [10.8686, 60.8921], [10.8686, 60.8922], [10.8686, 60.8923], [10.8686, 60.8925], [10.8686, 60.8925], [10.8686, 60.8926], [10.8685, 60.8927], [10.8685, 60.8928], [10.8686, 60.8928], [10.8686, 60.8929], [10.8686, 60.893], [10.8686, 60.893], [10.8686, 60.893], [10.8686, 60.8931], [10.8685, 60.8932], [10.8684, 60.8932], [10.8684, 60.8933], [10.8685, 60.8933], [10.8684, 60.8933], [10.8685, 60.8933], [10.8688, 60.8933], [10.8692, 60.8933], [10.87, 60.8933], [10.8702, 60.8932], [10.8702, 60.8932], [10.8703, 60.8932], [10.8704, 60.8931], [10.8704, 60.8931], [10.8704, 60.8873]]]}}, {"type": "Feature", "properties": {"sub_div_id": "65", "sub_div_center": [0.037, 0.0141]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9104, 60.7028], [10.9104, 60.7028], [10.9101, 60.7029], [10.9093, 60.7031], [10.9091, 60.7031], [10.909, 60.7032], [10.9085, 60.7033], [10.9083, 60.7034], [10.9082, 60.7034], [10.9082, 60.7035], [10.9081, 60.7035], [10.908, 60.7036], [10.9076, 60.7036], [10.9073, 60.7037], [10.9072, 60.7037], [10.9062, 60.7042], [10.9057, 60.7044], [10.9055, 60.7045], [10.9049, 60.7047], [10.9045, 60.7048], [10.9036, 60.705], [10.9033, 60.7051], [10.9031, 60.7052], [10.9027, 60.7053], [10.9024, 60.7055], [10.9018, 60.7057], [10.9016, 60.7058], [10.9016, 60.7059], [10.9015, 60.7059], [10.9014, 60.7058], [10.9014, 60.7058], [10.9013, 60.7058], [10.9012, 60.7059], [10.9011, 60.7059], [10.9011, 60.706], [10.9012, 60.706], [10.9014, 60.7061], [10.9015, 60.7061], [10.9015, 60.7061], [10.9015, 60.7062], [10.9014, 60.7061], [10.9011, 60.706], [10.9011, 60.706], [10.901, 60.706], [10.901, 60.706], [10.901, 60.7061], [10.901, 60.7061], [10.9009, 60.7061], [10.9009, 60.7062], [10.9008, 60.7062], [10.9007, 60.7062], [10.9006, 60.7062], [10.9005, 60.7063], [10.9002, 60.7063], [10.9, 60.7064], [10.8997, 60.7065], [10.8995, 60.7066], [10.8993, 60.7066], [10.8992, 60.7067], [10.8987, 60.707], [10.8986, 60.707], [10.8983, 60.7073], [10.8982, 60.7073], [10.8976, 60.7075], [10.8975, 60.7076], [10.8973, 60.7077], [10.8972, 60.7078], [10.8969, 60.7079], [10.8967, 60.708], [10.8965, 60.7081], [10.8963, 60.7082], [10.8962, 60.7082], [10.8962, 60.7083], [10.8962, 60.7083], [10.896, 60.7083], [10.896, 60.7084], [10.896, 60.7084], [10.8959, 60.7084], [10.8958, 60.7084], [10.8957, 60.7084], [10.8956, 60.7084], [10.8955, 60.7085], [10.8953, 60.7086], [10.8949, 60.7088], [10.8947, 60.7089], [10.8945, 60.709], [10.8944, 60.709], [10.8942, 60.709], [10.8941, 60.709], [10.8938, 60.7091], [10.8936, 60.7092], [10.8934, 60.7093], [10.8933, 60.7094], [10.8932, 60.7094], [10.8931, 60.7095], [10.8929, 60.7096], [10.8928, 60.7097], [10.8925, 60.7098], [10.8918, 60.7102], [10.8918, 60.7102], [10.8918, 60.7103], [10.8916, 60.7104], [10.8915, 60.7105], [10.8912, 60.7106], [10.891, 60.7106], [10.8907, 60.7107], [10.8907, 60.7108], [10.8907, 60.7108], [10.8905, 60.7109], [10.89, 60.7112], [10.8899, 60.7112], [10.8897, 60.7113], [10.8891, 60.7116], [10.8888, 60.7117], [10.8885, 60.7118], [10.8884, 60.7119], [10.8883, 60.7119], [10.8883, 60.7119], [10.8883, 60.712], [10.8883, 60.7121], [10.8883, 60.7121], [10.8883, 60.7121], [10.8882, 60.7121], [10.8881, 60.712], [10.8881, 60.7119], [10.888, 60.7119], [10.8878, 60.7119], [10.8879, 60.712], [10.8879, 60.7121], [10.888, 60.7122], [10.8879, 60.7122], [10.8879, 60.7122], [10.8878, 60.7122], [10.8878, 60.7121], [10.8877, 60.712], [10.8877, 60.712], [10.8876, 60.712], [10.8875, 60.712], [10.8871, 60.712], [10.887, 60.7121], [10.887, 60.7121], [10.8868, 60.7121], [10.8867, 60.7121], [10.8868, 60.7123], [10.8867, 60.7123], [10.8867, 60.7123], [10.8866, 60.7123], [10.8866, 60.7123], [10.8865, 60.7122], [10.8865, 60.7122], [10.8859, 60.7123], [10.8859, 60.7123], [10.8856, 60.7123], [10.8854, 60.7124], [10.8851, 60.7125], [10.8848, 60.7126], [10.8847, 60.7127], [10.8845, 60.7128], [10.8844, 60.7128], [10.8843, 60.7129], [10.8841, 60.7131], [10.8839, 60.7131], [10.8837, 60.7132], [10.8833, 60.7134], [10.8829, 60.7137], [10.8824, 60.7139], [10.8822, 60.714], [10.8819, 60.7142], [10.8815, 60.7144], [10.8812, 60.7146], [10.8811, 60.7146], [10.8807, 60.7148], [10.8804, 60.715], [10.8798, 60.7152], [10.8797, 60.7152], [10.8785, 60.7156], [10.878, 60.7159], [10.8779, 60.7159], [10.8776, 60.716], [10.8775, 60.7161], [10.8772, 60.7162], [10.877, 60.7163], [10.8767, 60.7164], [10.8764, 60.7165], [10.8762, 60.7166], [10.876, 60.7166], [10.8759, 60.7167], [10.8759, 60.7167], [10.8758, 60.7168], [10.8758, 60.7169], [10.8757, 60.7168], [10.8757, 60.7166], [10.8757, 60.7166], [10.8757, 60.7166], [10.8756, 60.7166], [10.8753, 60.7166], [10.8752, 60.7166], [10.875, 60.7166], [10.8749, 60.7167], [10.8749, 60.7167], [10.8749, 60.7168], [10.8748, 60.7168], [10.8741, 60.7168], [10.8738, 60.7168], [10.8738, 60.7168], [10.8734, 60.7169], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "66", "sub_div_center": [0.0148, 0.0077]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8692], [10.9104, 60.8692], [10.9102, 60.8693], [10.91, 60.8693], [10.9099, 60.8694], [10.9097, 60.8694], [10.9096, 60.8694], [10.9095, 60.8695], [10.9093, 60.8696], [10.9092, 60.8696], [10.9091, 60.8696], [10.9091, 60.8697], [10.9091, 60.8697], [10.9091, 60.8697], [10.9088, 60.8699], [10.9088, 60.8699], [10.9088, 60.8699], [10.9087, 60.87], [10.9087, 60.87], [10.9087, 60.87], [10.9085, 60.8701], [10.9084, 60.8701], [10.9083, 60.8701], [10.9083, 60.8701], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9084, 60.8702], [10.9083, 60.8702], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.908, 60.8703], [10.9078, 60.8704], [10.9077, 60.8704], [10.9075, 60.8705], [10.9075, 60.8705], [10.9074, 60.8705], [10.9074, 60.8705], [10.9073, 60.8706], [10.9071, 60.8707], [10.907, 60.8707], [10.907, 60.8707], [10.907, 60.8707], [10.907, 60.8708], [10.907, 60.8708], [10.9069, 60.8708], [10.9069, 60.8708], [10.9069, 60.8709], [10.9069, 60.8709], [10.9069, 60.8709], [10.9068, 60.8709], [10.9068, 60.8709], [10.9067, 60.8709], [10.9066, 60.8709], [10.9064, 60.8709], [10.9061, 60.8709], [10.9059, 60.8709], [10.9058, 60.8709], [10.9057, 60.8709], [10.9056, 60.8709], [10.9054, 60.8709], [10.9052, 60.8709], [10.9049, 60.8709], [10.9048, 60.871], [10.9048, 60.871], [10.9047, 60.871], [10.9047, 60.871], [10.9047, 60.8711], [10.9047, 60.8711], [10.9048, 60.8712], [10.9047, 60.8713], [10.9046, 60.8712], [10.9045, 60.8711], [10.9044, 60.871], [10.9042, 60.8711], [10.9041, 60.8711], [10.9041, 60.8711], [10.9037, 60.8712], [10.9035, 60.8712], [10.9034, 60.8712], [10.9031, 60.8713], [10.903, 60.8713], [10.903, 60.8713], [10.9029, 60.8713], [10.9026, 60.8713], [10.9024, 60.8714], [10.9024, 60.8714], [10.9021, 60.8714], [10.9021, 60.8714], [10.902, 60.8714], [10.9019, 60.8715], [10.9016, 60.8715], [10.901, 60.8715], [10.9009, 60.8714], [10.9008, 60.8714], [10.9008, 60.8714], [10.9007, 60.8714], [10.9007, 60.8714], [10.9006, 60.8714], [10.9004, 60.8714], [10.9003, 60.8714], [10.9002, 60.8714], [10.9002, 60.8714], [10.9001, 60.8714], [10.9001, 60.8714], [10.9001, 60.8714], [10.9, 60.8714], [10.9, 60.8715], [10.9, 60.8714], [10.8999, 60.8714], [10.8999, 60.8714], [10.8999, 60.8714], [10.8997, 60.8715], [10.8996, 60.8715], [10.8994, 60.8717], [10.8992, 60.8717], [10.8992, 60.8718], [10.8992, 60.8718], [10.8991, 60.8719], [10.899, 60.8719], [10.8988, 60.872], [10.8987, 60.872], [10.8986, 60.8721], [10.8986, 60.8721], [10.8985, 60.8722], [10.8984, 60.8722], [10.8983, 60.8723], [10.8982, 60.8723], [10.898, 60.8725], [10.8979, 60.8726], [10.8978, 60.8726], [10.8978, 60.8727], [10.8978, 60.8727], [10.8978, 60.8727], [10.8978, 60.8728], [10.8978, 60.8729], [10.8978, 60.8729], [10.8978, 60.8729], [10.8978, 60.8729], [10.8977, 60.8729], [10.8977, 60.8729], [10.8977, 60.8729], [10.8976, 60.8729], [10.8976, 60.8729], [10.8975, 60.873], [10.8975, 60.873], [10.8976, 60.873], [10.8976, 60.873], [10.8977, 60.873], [10.8977, 60.873], [10.8977, 60.873], [10.8978, 60.873], [10.8979, 60.873], [10.898, 60.873], [10.898, 60.873], [10.898, 60.8731], [10.898, 60.8732], [10.898, 60.8732], [10.8979, 60.8733], [10.8978, 60.8733], [10.8977, 60.8734], [10.8977, 60.8734], [10.8976, 60.8734], [10.8976, 60.8735], [10.8974, 60.8735], [10.8973, 60.8736], [10.8972, 60.8736], [10.897, 60.8737], [10.8969, 60.8738], [10.8968, 60.8738], [10.8968, 60.8739], [10.8967, 60.874], [10.8967, 60.8741], [10.8968, 60.8742], [10.8968, 60.8742], [10.8968, 60.8743], [10.897, 60.8744], [10.8971, 60.8744], [10.8972, 60.8745], [10.8973, 60.8745], [10.8973, 60.8746], [10.897, 60.8745], [10.8969, 60.8745], [10.8969, 60.8745], [10.8967, 60.8745], [10.8966, 60.8745], [10.8966, 60.8746], [10.8965, 60.8746], [10.8965, 60.8746], [10.8964, 60.8747], [10.8963, 60.8747], [10.8963, 60.8747], [10.8962, 60.8747], [10.8961, 60.8747], [10.896, 60.8747], [10.896, 60.8748], [10.8959, 60.8748], [10.8959, 60.8749], [10.896, 60.875], [10.8961, 60.875], [10.8961, 60.8751], [10.8961, 60.8751], [10.8962, 60.8752], [10.8962, 60.8753], [10.8962, 60.8754], [10.8962, 60.8754], [10.8963, 60.8754], [10.8963, 60.8754], [10.8962, 60.8755], [10.8961, 60.8755], [10.8959, 60.8756], [10.8958, 60.8756], [10.8957, 60.8756], [10.8957, 60.8757], [10.8957, 60.8757], [10.8956, 60.8758], [10.8956, 60.8758], [10.8956, 60.8759], [10.8957, 60.876], [10.8957, 60.8761], [10.8958, 60.8761], [10.8959, 60.8762], [10.8959, 60.8762], [10.8958, 60.8763], [10.8959, 60.8763], [10.8959, 60.8762], [10.8959, 60.8763], [10.896, 60.8763], [10.896, 60.8763], [10.8961, 60.8764], [10.8962, 60.8764], [10.8963, 60.8765], [10.8963, 60.8765], [10.8963, 60.8765], [10.8964, 60.8765], [10.8965, 60.8765], [10.8965, 60.8765], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8967, 60.8764], [10.8967, 60.8764], [10.8967, 60.8764], [10.8968, 60.8764], [10.8968, 60.8764], [10.8967, 60.8763], [10.8968, 60.8763], [10.8969, 60.8762], [10.8969, 60.8762], [10.8969, 60.8762], [10.8969, 60.8762], [10.8968, 60.8761], [10.8967, 60.8761], [10.8967, 60.8761], [10.8967, 60.876], [10.8966, 60.8761], [10.8964, 60.8761], [10.8962, 60.876], [10.896, 60.876], [10.896, 60.8759], [10.8959, 60.8759], [10.8959, 60.8759], [10.8958, 60.8758], [10.8958, 60.8758], [10.8959, 60.8757], [10.896, 60.8757], [10.896, 60.8757], [10.896, 60.8756], [10.8961, 60.8756], [10.8962, 60.8756], [10.8963, 60.8756], [10.8964, 60.8756], [10.8965, 60.8756], [10.8966, 60.8756], [10.8966, 60.8756], [10.8967, 60.8756], [10.8969, 60.8756], [10.897, 60.8757], [10.8971, 60.8757], [10.8972, 60.8757], [10.8972, 60.8757], [10.8973, 60.8757], [10.8973, 60.8757], [10.8973, 60.8756], [10.8973, 60.8756], [10.8973, 60.8756], [10.8973, 60.8756], [10.8974, 60.8757], [10.8974, 60.8757], [10.8974, 60.8758], [10.8974, 60.8758], [10.8975, 60.8759], [10.8975, 60.8762], [10.8975, 60.8762], [10.8975, 60.8762], [10.8975, 60.8763], [10.8975, 60.8763], [10.8975, 60.8764], [10.8975, 60.8765], [10.8975, 60.8765], [10.8975, 60.8766], [10.8975, 60.8766], [10.8976, 60.8767], [10.8977, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "67", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9504, 60.7169], [10.9504, 60.6969], [10.9269, 60.6969], [10.9267, 60.6969], [10.9262, 60.6971], [10.9262, 60.6972], [10.926, 60.6972], [10.9258, 60.6972], [10.9256, 60.6972], [10.9254, 60.6973], [10.9253, 60.6973], [10.9251, 60.6973], [10.9251, 60.6973], [10.9249, 60.6973], [10.9249, 60.6974], [10.9249, 60.6974], [10.925, 60.6976], [10.925, 60.6976], [10.925, 60.6976], [10.9249, 60.6976], [10.9247, 60.6974], [10.9246, 60.6974], [10.9246, 60.6974], [10.9245, 60.6975], [10.9246, 60.6975], [10.9247, 60.6976], [10.9247, 60.6977], [10.9247, 60.6977], [10.9247, 60.6977], [10.9246, 60.6977], [10.9243, 60.6975], [10.9242, 60.6975], [10.924, 60.6975], [10.9239, 60.6975], [10.9235, 60.6976], [10.9232, 60.6978], [10.9232, 60.6978], [10.9234, 60.6979], [10.9234, 60.6979], [10.9231, 60.6978], [10.923, 60.6978], [10.9229, 60.6978], [10.9228, 60.6979], [10.9227, 60.6979], [10.9227, 60.6979], [10.9228, 60.698], [10.9229, 60.6981], [10.9228, 60.6981], [10.9227, 60.6981], [10.9226, 60.698], [10.9225, 60.698], [10.9224, 60.6981], [10.9223, 60.6982], [10.9221, 60.6982], [10.922, 60.6982], [10.9219, 60.6982], [10.9219, 60.6983], [10.9218, 60.6983], [10.9218, 60.6984], [10.9217, 60.6984], [10.9216, 60.6985], [10.9214, 60.6985], [10.9212, 60.6986], [10.9208, 60.6988], [10.9206, 60.6989], [10.9204, 60.6989], [10.9204, 60.699], [10.9205, 60.699], [10.9205, 60.6991], [10.9204, 60.6991], [10.9204, 60.6991], [10.9203, 60.699], [10.9202, 60.699], [10.9201, 60.699], [10.9199, 60.6991], [10.9198, 60.6992], [10.9194, 60.6992], [10.9192, 60.6993], [10.9189, 60.6995], [10.9186, 60.6996], [10.9184, 60.6997], [10.9182, 60.6998], [10.9182, 60.6998], [10.9182, 60.7], [10.9181, 60.7], [10.9181, 60.7001], [10.918, 60.7001], [10.918, 60.7001], [10.9178, 60.7001], [10.9177, 60.7001], [10.9177, 60.7001], [10.9176, 60.7], [10.9176, 60.7], [10.9172, 60.7002], [10.9169, 60.7003], [10.9164, 60.7005], [10.916, 60.7007], [10.9158, 60.7008], [10.9156, 60.7009], [10.9153, 60.7011], [10.9149, 60.7013], [10.9144, 60.7015], [10.9141, 60.7017], [10.914, 60.7018], [10.9139, 60.7019], [10.9138, 60.702], [10.9136, 60.7023], [10.9136, 60.7023], [10.9135, 60.7023], [10.9134, 60.7024], [10.9129, 60.7024], [10.9129, 60.7025], [10.9126, 60.7025], [10.9126, 60.7026], [10.9124, 60.7026], [10.9124, 60.7025], [10.9122, 60.7025], [10.9119, 60.7026], [10.9117, 60.7026], [10.9116, 60.7026], [10.9114, 60.7026], [10.9114, 60.7026], [10.9113, 60.7026], [10.911, 60.7028], [10.911, 60.7028], [10.9109, 60.7028], [10.9108, 60.7027], [10.9106, 60.7028], [10.9105, 60.7028], [10.9104, 60.7028], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "68", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9104, 60.7369], [10.9504, 60.7369], [10.9504, 60.7169], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "69", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7369], [10.9104, 60.7569], [10.9504, 60.7569], [10.9504, 60.7369], [10.9104, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "70", "sub_div_center": [0.04, 0.0091]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7569], [10.9104, 60.7593], [10.9106, 60.7593], [10.9109, 60.7592], [10.9111, 60.7592], [10.9113, 60.7591], [10.9114, 60.7591], [10.9117, 60.759], [10.9118, 60.759], [10.9119, 60.759], [10.9121, 60.7591], [10.9122, 60.7591], [10.9124, 60.7591], [10.9126, 60.759], [10.9129, 60.7589], [10.9131, 60.7589], [10.9134, 60.7588], [10.9137, 60.7587], [10.9139, 60.7587], [10.914, 60.7588], [10.9141, 60.7587], [10.9142, 60.7587], [10.9143, 60.7588], [10.9145, 60.7588], [10.9146, 60.7588], [10.9148, 60.7588], [10.9151, 60.7589], [10.9152, 60.7589], [10.9154, 60.7589], [10.9155, 60.7589], [10.9156, 60.759], [10.9156, 60.759], [10.9157, 60.759], [10.9157, 60.759], [10.9158, 60.759], [10.9159, 60.759], [10.916, 60.759], [10.9162, 60.7589], [10.9164, 60.7589], [10.9165, 60.7589], [10.9167, 60.7589], [10.9167, 60.7589], [10.9168, 60.7588], [10.9168, 60.7588], [10.9169, 60.7588], [10.9169, 60.7588], [10.9168, 60.7588], [10.9169, 60.7588], [10.917, 60.7587], [10.9171, 60.7587], [10.9171, 60.7587], [10.9171, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.9171, 60.7588], [10.9172, 60.7588], [10.9173, 60.7588], [10.9173, 60.7588], [10.9174, 60.7587], [10.9175, 60.7588], [10.9178, 60.7588], [10.9179, 60.7588], [10.918, 60.7588], [10.9181, 60.7588], [10.9182, 60.7588], [10.9183, 60.7588], [10.9185, 60.7589], [10.9185, 60.7589], [10.9186, 60.7589], [10.9186, 60.7589], [10.9188, 60.759], [10.9188, 60.759], [10.9189, 60.759], [10.919, 60.759], [10.9191, 60.7589], [10.9191, 60.7589], [10.9191, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9191, 60.759], [10.9192, 60.7591], [10.9192, 60.7591], [10.9193, 60.7591], [10.9193, 60.7591], [10.9195, 60.759], [10.9197, 60.759], [10.9197, 60.759], [10.9198, 60.759], [10.9198, 60.7591], [10.9198, 60.7591], [10.9197, 60.7591], [10.9196, 60.7591], [10.9194, 60.7591], [10.9194, 60.7592], [10.9193, 60.7592], [10.9192, 60.7592], [10.9192, 60.7593], [10.9193, 60.7593], [10.9194, 60.7593], [10.9194, 60.7593], [10.9194, 60.7593], [10.9195, 60.7593], [10.9196, 60.7593], [10.9196, 60.7592], [10.9197, 60.7592], [10.9197, 60.7592], [10.9197, 60.7593], [10.9197, 60.7593], [10.9198, 60.7593], [10.9198, 60.7593], [10.9198, 60.7593], [10.9199, 60.7593], [10.92, 60.7593], [10.9203, 60.7593], [10.9204, 60.7593], [10.9208, 60.7594], [10.9208, 60.7594], [10.9209, 60.7594], [10.9212, 60.7595], [10.9214, 60.7595], [10.9214, 60.7596], [10.9216, 60.7596], [10.9218, 60.7596], [10.9219, 60.7596], [10.922, 60.7596], [10.9221, 60.7596], [10.9222, 60.7596], [10.9222, 60.7596], [10.9223, 60.7596], [10.9225, 60.7596], [10.9227, 60.7596], [10.9228, 60.7596], [10.9229, 60.7596], [10.923, 60.7596], [10.9231, 60.7597], [10.9233, 60.7597], [10.9235, 60.7598], [10.9237, 60.7598], [10.9238, 60.7598], [10.9241, 60.7598], [10.9241, 60.7598], [10.9242, 60.7598], [10.9243, 60.7598], [10.9244, 60.7598], [10.9244, 60.7598], [10.9244, 60.7597], [10.9245, 60.7596], [10.9245, 60.7596], [10.9245, 60.7596], [10.9245, 60.7597], [10.9245, 60.7598], [10.9245, 60.7598], [10.9245, 60.7599], [10.9245, 60.7599], [10.9246, 60.7599], [10.9247, 60.7599], [10.9247, 60.7598], [10.9247, 60.7598], [10.9248, 60.7598], [10.9249, 60.7598], [10.9249, 60.7598], [10.9251, 60.7598], [10.9252, 60.7597], [10.9254, 60.7597], [10.9255, 60.7598], [10.9259, 60.7598], [10.926, 60.7598], [10.9265, 60.7597], [10.9266, 60.7597], [10.9268, 60.7597], [10.9271, 60.7597], [10.9276, 60.7596], [10.928, 60.7597], [10.9282, 60.7597], [10.9283, 60.7597], [10.9285, 60.7597], [10.9292, 60.7598], [10.9295, 60.7598], [10.9297, 60.7598], [10.9299, 60.7598], [10.9303, 60.7599], [10.9304, 60.7599], [10.9305, 60.7599], [10.9306, 60.7599], [10.9306, 60.7599], [10.9307, 60.76], [10.9308, 60.76], [10.9308, 60.76], [10.931, 60.76], [10.9311, 60.76], [10.9312, 60.76], [10.9312, 60.76], [10.9314, 60.76], [10.9315, 60.76], [10.9316, 60.7601], [10.9318, 60.7601], [10.9324, 60.7602], [10.9326, 60.7602], [10.9329, 60.7603], [10.9332, 60.7603], [10.9337, 60.7605], [10.9339, 60.7605], [10.934, 60.7606], [10.9341, 60.7607], [10.9342, 60.7608], [10.9343, 60.7608], [10.9345, 60.7609], [10.9347, 60.761], [10.9351, 60.761], [10.9352, 60.7611], [10.9354, 60.7611], [10.9355, 60.7611], [10.9356, 60.7611], [10.9356, 60.7612], [10.9357, 60.7612], [10.9359, 60.7613], [10.9361, 60.7614], [10.9363, 60.7614], [10.9369, 60.7616], [10.9371, 60.7616], [10.9372, 60.7616], [10.9373, 60.7617], [10.9375, 60.7617], [10.9377, 60.7617], [10.9378, 60.7617], [10.9379, 60.7617], [10.9381, 60.7617], [10.9382, 60.7617], [10.9383, 60.7617], [10.9384, 60.7617], [10.9385, 60.7617], [10.9386, 60.7617], [10.9386, 60.7616], [10.9386, 60.7616], [10.9387, 60.7616], [10.9388, 60.7616], [10.939, 60.7616], [10.939, 60.7616], [10.9391, 60.7616], [10.9391, 60.7616], [10.9392, 60.7616], [10.9392, 60.7616], [10.9395, 60.7617], [10.9395, 60.7617], [10.9395, 60.7617], [10.9396, 60.7618], [10.9396, 60.7619], [10.9396, 60.7619], [10.9397, 60.7619], [10.9398, 60.7619], [10.9399, 60.7619], [10.94, 60.762], [10.9401, 60.762], [10.9403, 60.762], [10.9406, 60.762], [10.9408, 60.762], [10.9408, 60.762], [10.9409, 60.762], [10.9409, 60.762], [10.9409, 60.762], [10.9409, 60.7619], [10.9411, 60.7618], [10.9411, 60.7617], [10.9413, 60.7615], [10.9414, 60.7615], [10.9415, 60.7613], [10.9416, 60.7612], [10.9415, 60.7612], [10.9416, 60.7611], [10.9416, 60.7611], [10.9416, 60.7611], [10.9417, 60.7611], [10.9417, 60.7611], [10.9419, 60.7609], [10.9421, 60.7606], [10.9424, 60.7602], [10.9429, 60.7595], [10.9432, 60.759], [10.9433, 60.7589], [10.9434, 60.7588], [10.9433, 60.7588], [10.9434, 60.7588], [10.9434, 60.7587], [10.9435, 60.7585], [10.9435, 60.7585], [10.9436, 60.7584], [10.9436, 60.7584], [10.9437, 60.7584], [10.9438, 60.7584], [10.9439, 60.7584], [10.944, 60.7584], [10.944, 60.7584], [10.944, 60.7585], [10.944, 60.7585], [10.9439, 60.7586], [10.9439, 60.7586], [10.9438, 60.7587], [10.9436, 60.759], [10.9433, 60.7594], [10.9429, 60.7599], [10.942, 60.7612], [10.9419, 60.7614], [10.9418, 60.7614], [10.9418, 60.7614], [10.9418, 60.7615], [10.9417, 60.7615], [10.9416, 60.7617], [10.9421, 60.7617], [10.9422, 60.7617], [10.9422, 60.7616], [10.9422, 60.7616], [10.9425, 60.7616], [10.9425, 60.7617], [10.9425, 60.7618], [10.9426, 60.7618], [10.9428, 60.7618], [10.9429, 60.7619], [10.943, 60.7619], [10.9431, 60.7619], [10.9432, 60.7619], [10.9434, 60.762], [10.9435, 60.762], [10.9436, 60.762], [10.9436, 60.762], [10.9437, 60.762], [10.9437, 60.7621], [10.9438, 60.7622], [10.9439, 60.7623], [10.9439, 60.7624], [10.9439, 60.7625], [10.9439, 60.7626], [10.9439, 60.7627], [10.9439, 60.7628], [10.9439, 60.763], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7632], [10.9439, 60.7632], [10.9439, 60.7634], [10.9439, 60.7634], [10.9439, 60.7634], [10.944, 60.7634], [10.944, 60.7635], [10.9441, 60.7635], [10.9441, 60.7636], [10.9442, 60.7637], [10.9443, 60.7636], [10.9444, 60.7636], [10.9444, 60.7636], [10.9445, 60.7637], [10.9442, 60.7638], [10.9443, 60.7639], [10.9444, 60.764], [10.9445, 60.7641], [10.9446, 60.7641], [10.9447, 60.7641], [10.9448, 60.7641], [10.9449, 60.7641], [10.9449, 60.7642], [10.9449, 60.7642], [10.9449, 60.7643], [10.9449, 60.7643], [10.9449, 60.7643], [10.945, 60.7644], [10.9452, 60.7646], [10.9454, 60.7647], [10.9454, 60.7647], [10.9455, 60.7647], [10.9456, 60.7647], [10.9456, 60.7647], [10.9458, 60.7648], [10.9458, 60.7648], [10.9458, 60.7649], [10.9459, 60.7649], [10.9459, 60.7649], [10.9459, 60.7649], [10.946, 60.7649], [10.9461, 60.7649], [10.9462, 60.7649], [10.9462, 60.765], [10.9464, 60.765], [10.9465, 60.765], [10.9466, 60.7649], [10.9467, 60.7649], [10.9467, 60.7649], [10.9466, 60.765], [10.9466, 60.7651], [10.9466, 60.7651], [10.9467, 60.7651], [10.9468, 60.7651], [10.9469, 60.7652], [10.947, 60.7652], [10.9471, 60.7653], [10.9473, 60.7653], [10.9473, 60.7653], [10.9474, 60.7654], [10.9475, 60.7654], [10.9476, 60.7654], [10.9477, 60.7655], [10.9477, 60.7655], [10.9478, 60.7655], [10.948, 60.7656], [10.9482, 60.7656], [10.9484, 60.7656], [10.9486, 60.7656], [10.9486, 60.7657], [10.9487, 60.7657], [10.9488, 60.7657], [10.9489, 60.7657], [10.9489, 60.7657], [10.949, 60.7657], [10.949, 60.7657], [10.949, 60.7658], [10.9492, 60.7658], [10.9495, 60.7658], [10.9496, 60.7659], [10.9497, 60.7659], [10.9498, 60.7658], [10.9499, 60.7658], [10.9499, 60.7658], [10.95, 60.7658], [10.95, 60.7658], [10.95, 60.7658], [10.95, 60.7659], [10.9502, 60.7659], [10.9503, 60.7659], [10.9504, 60.7659], [10.9504, 60.7569], [10.9104, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "71", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8479], [10.9105, 60.8479], [10.9105, 60.8479], [10.9106, 60.848], [10.9105, 60.8481], [10.9106, 60.8481], [10.9107, 60.8481], [10.9108, 60.8481], [10.911, 60.8482], [10.9112, 60.8483], [10.9113, 60.8484], [10.9113, 60.8485], [10.9113, 60.8485], [10.9114, 60.8485], [10.9115, 60.8485], [10.9116, 60.8486], [10.9118, 60.8487], [10.912, 60.8487], [10.9121, 60.8488], [10.9122, 60.8488], [10.9123, 60.8489], [10.9125, 60.849], [10.9125, 60.849], [10.9126, 60.8491], [10.9125, 60.8491], [10.9124, 60.8491], [10.9124, 60.8492], [10.9125, 60.8492], [10.9125, 60.8493], [10.9126, 60.8494], [10.9128, 60.8495], [10.9129, 60.8496], [10.9129, 60.8497], [10.9129, 60.8498], [10.9129, 60.8499], [10.913, 60.85], [10.913, 60.85], [10.913, 60.85], [10.9131, 60.8502], [10.9132, 60.8503], [10.9133, 60.8504], [10.9133, 60.8505], [10.9133, 60.8505], [10.9133, 60.8506], [10.9134, 60.8508], [10.9134, 60.851], [10.9135, 60.8511], [10.9136, 60.8513], [10.9137, 60.8515], [10.9138, 60.8517], [10.9139, 60.8518], [10.9139, 60.8519], [10.9138, 60.852], [10.9137, 60.852], [10.9137, 60.8521], [10.9138, 60.8522], [10.9138, 60.8524], [10.9138, 60.8524], [10.9138, 60.8525], [10.9137, 60.8526], [10.9137, 60.8527], [10.9135, 60.8528], [10.9135, 60.8529], [10.9134, 60.853], [10.9134, 60.853], [10.9134, 60.8531], [10.9133, 60.8532], [10.9133, 60.8532], [10.9133, 60.8533], [10.9133, 60.8534], [10.9133, 60.8535], [10.9133, 60.8536], [10.9132, 60.8537], [10.9131, 60.8537], [10.913, 60.8537], [10.913, 60.8537], [10.9131, 60.8537], [10.9132, 60.8537], [10.9132, 60.8538], [10.9133, 60.8538], [10.9133, 60.8539], [10.9132, 60.8539], [10.9132, 60.854], [10.9129, 60.8542], [10.9129, 60.8544], [10.9129, 60.8546], [10.9129, 60.8546], [10.9129, 60.8547], [10.913, 60.8549], [10.913, 60.855], [10.9132, 60.8552], [10.9134, 60.8554], [10.9134, 60.8555], [10.9134, 60.8555], [10.9134, 60.8557], [10.9134, 60.8558], [10.9134, 60.8558], [10.9134, 60.8559], [10.9134, 60.8559], [10.9134, 60.856], [10.9133, 60.8561], [10.9133, 60.8562], [10.9132, 60.8563], [10.9132, 60.8564], [10.9131, 60.8565], [10.9131, 60.8566], [10.9131, 60.8566], [10.9132, 60.8568], [10.9132, 60.8569], [10.9456, 60.8569], [10.9456, 60.8569], [10.9455, 60.8568], [10.9455, 60.8568], [10.9455, 60.8567], [10.9455, 60.8566], [10.9455, 60.8566], [10.9454, 60.8565], [10.9455, 60.8564], [10.9455, 60.8564], [10.9454, 60.8563], [10.9455, 60.8563], [10.9455, 60.8563], [10.9455, 60.8562], [10.9456, 60.8562], [10.9456, 60.8561], [10.9457, 60.8561], [10.9459, 60.856], [10.946, 60.856], [10.9461, 60.8559], [10.9462, 60.8559], [10.9462, 60.8559], [10.9463, 60.8559], [10.9463, 60.8559], [10.9463, 60.8559], [10.9465, 60.8558], [10.9466, 60.8558], [10.9467, 60.8557], [10.9469, 60.8557], [10.9469, 60.8557], [10.9469, 60.8557], [10.9471, 60.8556], [10.9471, 60.8556], [10.9473, 60.8556], [10.9473, 60.8556], [10.9474, 60.8556], [10.9475, 60.8556], [10.9477, 60.8556], [10.9479, 60.8555], [10.9482, 60.8555], [10.9483, 60.8555], [10.9484, 60.8554], [10.9485, 60.8554], [10.9486, 60.8554], [10.9488, 60.8553], [10.9489, 60.8552], [10.9491, 60.8551], [10.9493, 60.855], [10.9494, 60.8549], [10.9495, 60.8548], [10.9495, 60.8548], [10.9495, 60.8548], [10.9495, 60.8547], [10.9495, 60.8547], [10.9495, 60.8545], [10.9494, 60.8544], [10.9494, 60.8544], [10.9494, 60.8544], [10.9495, 60.8543], [10.9495, 60.8543], [10.9494, 60.8542], [10.9494, 60.8542], [10.9492, 60.8541], [10.9492, 60.854], [10.9491, 60.8539], [10.9491, 60.8539], [10.949, 60.8538], [10.9491, 60.8537], [10.9492, 60.8536], [10.9493, 60.8535], [10.9492, 60.8535], [10.9492, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8533], [10.9491, 60.8533], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9492, 60.8534], [10.9492, 60.8534], [10.9493, 60.8535], [10.9493, 60.8535], [10.9493, 60.8534], [10.9494, 60.8534], [10.9495, 60.8534], [10.9495, 60.8533], [10.9495, 60.8533], [10.9496, 60.8533], [10.9496, 60.8533], [10.9495, 60.8533], [10.9495, 60.8532], [10.9495, 60.8532], [10.9494, 60.8532], [10.9494, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9494, 60.8532], [10.9494, 60.8532], [10.9495, 60.8532], [10.9495, 60.8532], [10.9495, 60.8532], [10.9496, 60.8532], [10.9496, 60.8532], [10.9496, 60.8532], [10.9496, 60.8531], [10.9496, 60.8531], [10.9496, 60.853], [10.9497, 60.853], [10.9496, 60.8529], [10.9497, 60.8529], [10.9497, 60.8529], [10.9498, 60.8529], [10.9498, 60.8528], [10.9499, 60.8528], [10.95, 60.8528], [10.9501, 60.8528], [10.9501, 60.8527], [10.9502, 60.8528], [10.9503, 60.8528], [10.9504, 60.8527], [10.9504, 60.8527], [10.9504, 60.8369], [10.9158, 60.8369], [10.9158, 60.8369], [10.9157, 60.837], [10.9159, 60.837], [10.9159, 60.837], [10.9159, 60.837], [10.9157, 60.837], [10.9155, 60.837], [10.9155, 60.8371], [10.9154, 60.8372], [10.9153, 60.8373], [10.9153, 60.8374], [10.9151, 60.8376], [10.9149, 60.8378], [10.9143, 60.8384], [10.9143, 60.8385], [10.9142, 60.8385], [10.9142, 60.8385], [10.9142, 60.8386], [10.9141, 60.8386], [10.914, 60.8386], [10.9136, 60.8387], [10.9132, 60.8387], [10.9128, 60.8388], [10.9125, 60.8388], [10.9123, 60.839], [10.9122, 60.8391], [10.912, 60.8393], [10.9117, 60.8394], [10.9115, 60.8395], [10.9114, 60.8396], [10.9113, 60.8396], [10.9113, 60.8397], [10.9113, 60.8398], [10.9114, 60.8399], [10.9115, 60.84], [10.9115, 60.8401], [10.9115, 60.8402], [10.9114, 60.8403], [10.9114, 60.8404], [10.9114, 60.8404], [10.9115, 60.8405], [10.9116, 60.8406], [10.9117, 60.8407], [10.9117, 60.8408], [10.9117, 60.8409], [10.9118, 60.8409], [10.9118, 60.8411], [10.9118, 60.8412], [10.9118, 60.8413], [10.9119, 60.8414], [10.9119, 60.8414], [10.9119, 60.8415], [10.9119, 60.8417], [10.912, 60.8418], [10.912, 60.8419], [10.912, 60.8421], [10.9121, 60.8422], [10.912, 60.8422], [10.912, 60.8423], [10.9119, 60.8425], [10.9118, 60.8425], [10.9117, 60.8427], [10.9115, 60.8431], [10.9112, 60.8434], [10.9111, 60.8435], [10.911, 60.8437], [10.9109, 60.8437], [10.9108, 60.8438], [10.9107, 60.8439], [10.9106, 60.8441], [10.9104, 60.8443], [10.9104, 60.8479]]]}}, {"type": "Feature", "properties": {"sub_div_id": "72", "sub_div_center": [0.0011, 0.0036]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8443], [10.9104, 60.8443], [10.9103, 60.8444], [10.9102, 60.8445], [10.9102, 60.8446], [10.9101, 60.8448], [10.91, 60.8448], [10.9101, 60.8449], [10.91, 60.845], [10.91, 60.8451], [10.9098, 60.8452], [10.9098, 60.8453], [10.9098, 60.8454], [10.9097, 60.8455], [10.9097, 60.8456], [10.9096, 60.8458], [10.9096, 60.846], [10.9096, 60.8461], [10.9095, 60.8461], [10.9095, 60.8462], [10.9095, 60.8462], [10.9096, 60.8462], [10.9097, 60.8462], [10.9098, 60.8462], [10.9099, 60.8462], [10.91, 60.8462], [10.91, 60.8462], [10.9099, 60.8462], [10.9098, 60.8462], [10.9097, 60.8462], [10.9095, 60.8462], [10.9095, 60.8463], [10.9095, 60.8463], [10.9095, 60.8463], [10.9096, 60.8464], [10.9099, 60.8464], [10.91, 60.8463], [10.91, 60.8463], [10.9101, 60.8463], [10.9101, 60.8463], [10.9101, 60.8463], [10.9101, 60.8464], [10.91, 60.8464], [10.9099, 60.8464], [10.9098, 60.8464], [10.9097, 60.8465], [10.9096, 60.8465], [10.9095, 60.8465], [10.9094, 60.8467], [10.9094, 60.8469], [10.9094, 60.8469], [10.9093, 60.847], [10.9094, 60.847], [10.9095, 60.8471], [10.9095, 60.8472], [10.9095, 60.8472], [10.9093, 60.8472], [10.9093, 60.8473], [10.9094, 60.8473], [10.9095, 60.8473], [10.9096, 60.8473], [10.9098, 60.8474], [10.9098, 60.8474], [10.9098, 60.8474], [10.9097, 60.8475], [10.9096, 60.8477], [10.9097, 60.8477], [10.9098, 60.8477], [10.9099, 60.8477], [10.91, 60.8477], [10.9101, 60.8477], [10.9103, 60.8478], [10.9104, 60.8479], [10.9104, 60.8443]]]}}, {"type": "Feature", "properties": {"sub_div_id": "73", "sub_div_center": [0.0354, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9256, 60.8769], [10.9264, 60.8766], [10.9266, 60.8766], [10.9269, 60.8765], [10.927, 60.8765], [10.9271, 60.8765], [10.9272, 60.8765], [10.9272, 60.8765], [10.9272, 60.8766], [10.927, 60.8766], [10.9266, 60.8767], [10.9259, 60.8769], [10.928, 60.8769], [10.9276, 60.8764], [10.9274, 60.8762], [10.9275, 60.8762], [10.9275, 60.8762], [10.9279, 60.8761], [10.9279, 60.8762], [10.9276, 60.8762], [10.9275, 60.8762], [10.9281, 60.8769], [10.9287, 60.8769], [10.929, 60.8768], [10.9295, 60.8766], [10.9299, 60.8765], [10.93, 60.8764], [10.93, 60.8764], [10.93, 60.8764], [10.93, 60.8763], [10.93, 60.8763], [10.93, 60.8763], [10.93, 60.8763], [10.9301, 60.8763], [10.9302, 60.8763], [10.9303, 60.8763], [10.9303, 60.8763], [10.9305, 60.8763], [10.9309, 60.8762], [10.9313, 60.8761], [10.9314, 60.876], [10.9315, 60.876], [10.9316, 60.876], [10.9317, 60.876], [10.9319, 60.876], [10.9321, 60.876], [10.9322, 60.8761], [10.9323, 60.8762], [10.9323, 60.8762], [10.9323, 60.8763], [10.9323, 60.8764], [10.9324, 60.8765], [10.9324, 60.8765], [10.9325, 60.8766], [10.9327, 60.8766], [10.9327, 60.8766], [10.9328, 60.8767], [10.933, 60.8767], [10.933, 60.8767], [10.9331, 60.8767], [10.9332, 60.8766], [10.9333, 60.8766], [10.9334, 60.8766], [10.9335, 60.8765], [10.9336, 60.8764], [10.9336, 60.8763], [10.9336, 60.8762], [10.9335, 60.8762], [10.9333, 60.8761], [10.9331, 60.876], [10.933, 60.876], [10.933, 60.876], [10.9328, 60.8761], [10.9328, 60.8761], [10.9328, 60.8761], [10.9328, 60.8762], [10.9327, 60.8762], [10.9326, 60.8762], [10.9326, 60.8762], [10.9326, 60.8762], [10.9325, 60.8762], [10.9324, 60.8761], [10.9323, 60.876], [10.9322, 60.8758], [10.9322, 60.8758], [10.9323, 60.8757], [10.9325, 60.8757], [10.9326, 60.8757], [10.9328, 60.8757], [10.933, 60.8757], [10.9332, 60.8758], [10.9334, 60.8758], [10.9335, 60.8758], [10.9337, 60.8758], [10.934, 60.8757], [10.9342, 60.8756], [10.9344, 60.8755], [10.9346, 60.8755], [10.9349, 60.8755], [10.9352, 60.8755], [10.9354, 60.8755], [10.9356, 60.8755], [10.9357, 60.8755], [10.9359, 60.8754], [10.936, 60.8754], [10.9363, 60.8753], [10.9366, 60.8751], [10.9368, 60.8751], [10.937, 60.875], [10.937, 60.8749], [10.937, 60.8749], [10.937, 60.8749], [10.937, 60.8748], [10.9369, 60.8747], [10.9369, 60.8747], [10.9369, 60.8747], [10.9369, 60.8746], [10.937, 60.8746], [10.937, 60.8746], [10.937, 60.8747], [10.937, 60.8747], [10.937, 60.8747], [10.9371, 60.8748], [10.9371, 60.8749], [10.9372, 60.8749], [10.9372, 60.875], [10.9373, 60.875], [10.9374, 60.875], [10.9374, 60.875], [10.9375, 60.875], [10.9376, 60.875], [10.9377, 60.875], [10.9378, 60.875], [10.9379, 60.875], [10.938, 60.875], [10.9381, 60.875], [10.9382, 60.875], [10.9383, 60.875], [10.9385, 60.8749], [10.9387, 60.8749], [10.9389, 60.8749], [10.939, 60.8749], [10.9391, 60.8749], [10.9392, 60.8748], [10.9393, 60.8748], [10.9394, 60.8747], [10.9395, 60.8747], [10.9396, 60.8746], [10.9397, 60.8746], [10.9399, 60.8745], [10.94, 60.8743], [10.9402, 60.8741], [10.9404, 60.8739], [10.9404, 60.8738], [10.9405, 60.8737], [10.9405, 60.8735], [10.9406, 60.8734], [10.9408, 60.8733], [10.941, 60.8732], [10.9413, 60.8731], [10.9415, 60.873], [10.9419, 60.8729], [10.9422, 60.8729], [10.9426, 60.8729], [10.9429, 60.8728], [10.9431, 60.8728], [10.9432, 60.8728], [10.9432, 60.8727], [10.9436, 60.8727], [10.9437, 60.8726], [10.9438, 60.8726], [10.9439, 60.8725], [10.9439, 60.8724], [10.9439, 60.8723], [10.9439, 60.8723], [10.9438, 60.8722], [10.9438, 60.8722], [10.9437, 60.8721], [10.9437, 60.8721], [10.9436, 60.8721], [10.9433, 60.8721], [10.9433, 60.8721], [10.9433, 60.8721], [10.944, 60.8721], [10.944, 60.8721], [10.9441, 60.872], [10.9441, 60.872], [10.9442, 60.8719], [10.9443, 60.8719], [10.9443, 60.8719], [10.9444, 60.8719], [10.9445, 60.8719], [10.9445, 60.8719], [10.9447, 60.8718], [10.9448, 60.8717], [10.9448, 60.8716], [10.9449, 60.8716], [10.945, 60.8715], [10.9451, 60.8714], [10.9451, 60.8713], [10.9451, 60.8712], [10.9451, 60.8712], [10.9449, 60.8712], [10.9448, 60.8712], [10.9447, 60.8711], [10.9446, 60.8711], [10.9446, 60.871], [10.9445, 60.871], [10.9445, 60.8709], [10.9444, 60.8709], [10.9444, 60.8709], [10.9444, 60.8708], [10.9444, 60.8707], [10.9444, 60.8706], [10.9444, 60.8705], [10.9445, 60.8703], [10.9446, 60.8703], [10.9447, 60.8702], [10.9448, 60.8701], [10.9449, 60.8701], [10.9449, 60.8701], [10.9449, 60.87], [10.945, 60.8699], [10.9449, 60.8698], [10.9449, 60.8698], [10.9449, 60.8698], [10.9449, 60.8696], [10.9448, 60.8694], [10.9448, 60.8692], [10.9448, 60.8691], [10.9448, 60.869], [10.9448, 60.8689], [10.9447, 60.8687], [10.9447, 60.8687], [10.9446, 60.8687], [10.9446, 60.8687], [10.9446, 60.8687], [10.9446, 60.8686], [10.9446, 60.8686], [10.9446, 60.8686], [10.9447, 60.8686], [10.9446, 60.8686], [10.9446, 60.8685], [10.9446, 60.8684], [10.9446, 60.8684], [10.9446, 60.8683], [10.9445, 60.8683], [10.9444, 60.8683], [10.9443, 60.8684], [10.9442, 60.8684], [10.9442, 60.8683], [10.9443, 60.8683], [10.9443, 60.8683], [10.9444, 60.8683], [10.9445, 60.8683], [10.9445, 60.8682], [10.9445, 60.8681], [10.9442, 60.8681], [10.9442, 60.8682], [10.9442, 60.8682], [10.9441, 60.8682], [10.9442, 60.8681], [10.9442, 60.8681], [10.9442, 60.8681], [10.9444, 60.8681], [10.9445, 60.868], [10.9444, 60.868], [10.9445, 60.868], [10.9444, 60.8678], [10.9444, 60.8677], [10.9444, 60.8677], [10.9443, 60.8676], [10.9443, 60.8676], [10.9443, 60.8676], [10.9442, 60.8676], [10.9442, 60.8675], [10.9442, 60.8675], [10.9441, 60.8675], [10.9441, 60.8675], [10.944, 60.8675], [10.9442, 60.8675], [10.9441, 60.8674], [10.944, 60.8673], [10.9439, 60.8673], [10.9438, 60.8673], [10.9438, 60.8673], [10.9434, 60.8675], [10.9433, 60.8675], [10.9435, 60.8674], [10.9437, 60.8673], [10.9437, 60.8673], [10.9437, 60.8672], [10.9435, 60.8672], [10.9434, 60.8671], [10.9432, 60.867], [10.9431, 60.8669], [10.943, 60.8668], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8665], [10.9428, 60.8664], [10.9428, 60.8664], [10.9428, 60.8663], [10.9428, 60.8663], [10.9428, 60.8663], [10.9427, 60.8663], [10.9427, 60.8662], [10.9426, 60.8662], [10.9425, 60.8662], [10.9424, 60.8662], [10.9424, 60.8662], [10.9425, 60.8662], [10.9425, 60.8662], [10.9427, 60.8662], [10.9428, 60.8662], [10.9428, 60.8662], [10.9429, 60.8661], [10.943, 60.8659], [10.9431, 60.8657], [10.9432, 60.8656], [10.9431, 60.8656], [10.9431, 60.8656], [10.9431, 60.8656], [10.9431, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8654], [10.9432, 60.8654], [10.9432, 60.8654], [10.9432, 60.8653], [10.9432, 60.8653], [10.9432, 60.8653], [10.9432, 60.8652], [10.9432, 60.8652], [10.9431, 60.8652], [10.9431, 60.8652], [10.943, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.8651], [10.9429, 60.8651], [10.943, 60.8651], [10.943, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.865], [10.9431, 60.865], [10.9432, 60.865], [10.9432, 60.865], [10.9432, 60.865], [10.9431, 60.865], [10.9431, 60.865], [10.9431, 60.865], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8648], [10.9433, 60.8647], [10.9434, 60.8647], [10.9434, 60.8647], [10.9435, 60.8647], [10.9435, 60.8647], [10.9434, 60.8646], [10.9435, 60.8646], [10.9434, 60.8646], [10.9434, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8645], [10.9437, 60.8646], [10.9437, 60.8645], [10.9438, 60.8645], [10.9438, 60.8645], [10.9438, 60.8645], [10.9438, 60.8644], [10.9438, 60.8644], [10.9438, 60.8644], [10.9439, 60.8643], [10.9439, 60.8643], [10.9438, 60.8643], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.864], [10.9438, 60.8639], [10.9438, 60.8638], [10.9438, 60.8638], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8636], [10.9437, 60.8635], [10.9437, 60.8634], [10.9437, 60.8633], [10.9436, 60.8633], [10.9436, 60.8633], [10.9435, 60.8633], [10.9435, 60.8632], [10.9435, 60.8632], [10.9434, 60.8632], [10.9434, 60.8632], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9435, 60.8631], [10.9435, 60.8631], [10.9435, 60.8632], [10.9435, 60.8632], [10.9435, 60.8632], [10.9436, 60.8632], [10.9436, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8631], [10.9438, 60.8631], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.8629], [10.9437, 60.8628], [10.9437, 60.8628], [10.9436, 60.8627], [10.9436, 60.8626], [10.9436, 60.8626], [10.9436, 60.8626], [10.9437, 60.8626], [10.9437, 60.8625], [10.9437, 60.8624], [10.9437, 60.8623], [10.9437, 60.8622], [10.9437, 60.8621], [10.9437, 60.862], [10.9437, 60.862], [10.9436, 60.862], [10.9436, 60.8619], [10.9436, 60.8619], [10.9436, 60.8619], [10.9435, 60.8618], [10.9435, 60.8617], [10.9434, 60.8616], [10.9434, 60.8616], [10.9434, 60.8616], [10.9433, 60.8616], [10.9433, 60.8615], [10.9433, 60.8615], [10.9432, 60.8615], [10.9432, 60.8614], [10.9432, 60.8614], [10.9432, 60.8614], [10.9432, 60.8613], [10.9432, 60.8613], [10.9432, 60.8612], [10.9432, 60.8612], [10.9433, 60.8611], [10.9433, 60.8611], [10.9433, 60.8611], [10.9434, 60.8611], [10.9434, 60.8611], [10.9434, 60.8611], [10.9435, 60.8611], [10.9434, 60.861], [10.9435, 60.861], [10.9435, 60.861], [10.9436, 60.861], [10.9436, 60.8609], [10.9436, 60.8609], [10.9437, 60.8609], [10.9437, 60.8609], [10.9437, 60.8608], [10.9436, 60.8608], [10.9436, 60.8608], [10.9435, 60.8608], [10.9434, 60.8608], [10.9436, 60.8608], [10.9438, 60.8607], [10.9438, 60.8607], [10.9438, 60.8607], [10.9438, 60.8606], [10.9437, 60.8606], [10.9437, 60.8606], [10.9437, 60.8605], [10.9437, 60.8604], [10.9437, 60.8604], [10.9437, 60.8603], [10.9436, 60.8602], [10.9436, 60.8601], [10.9435, 60.86], [10.9435, 60.86], [10.9434, 60.8599], [10.9434, 60.8598], [10.9434, 60.8597], [10.9434, 60.8596], [10.9434, 60.8595], [10.9434, 60.8595], [10.9434, 60.8595], [10.9434, 60.8594], [10.9434, 60.8593], [10.9434, 60.8592], [10.9434, 60.8591], [10.9434, 60.8591], [10.9434, 60.8591], [10.9435, 60.8591], [10.9436, 60.8591], [10.9436, 60.8591], [10.9437, 60.8591], [10.9439, 60.8591], [10.944, 60.859], [10.9442, 60.859], [10.9443, 60.8589], [10.9443, 60.8589], [10.9444, 60.8589], [10.9444, 60.8588], [10.9445, 60.8588], [10.9445, 60.8588], [10.9445, 60.8587], [10.9445, 60.8586], [10.9445, 60.8585], [10.9445, 60.8584], [10.9445, 60.8584], [10.9446, 60.8583], [10.9446, 60.8583], [10.9447, 60.8582], [10.9448, 60.8582], [10.9448, 60.8581], [10.9449, 60.858], [10.9449, 60.858], [10.945, 60.8579], [10.945, 60.8579], [10.9451, 60.8578], [10.9452, 60.8577], [10.9452, 60.8576], [10.9452, 60.8576], [10.9452, 60.8576], [10.9453, 60.8575], [10.9453, 60.8575], [10.9454, 60.8575], [10.9454, 60.8574], [10.9455, 60.8574], [10.9456, 60.8573], [10.9457, 60.8573], [10.9458, 60.8572], [10.9458, 60.8572], [10.9458, 60.8571], [10.9458, 60.857], [10.9458, 60.857], [10.9458, 60.857], [10.9457, 60.8569], [10.9456, 60.8569], [10.9132, 60.8569], [10.9132, 60.8569], [10.9133, 60.8572], [10.9134, 60.8572], [10.9135, 60.8573], [10.9136, 60.8574], [10.9138, 60.8575], [10.9138, 60.8576], [10.9139, 60.8577], [10.9139, 60.8578], [10.9139, 60.858], [10.9139, 60.8581], [10.9139, 60.8582], [10.9139, 60.8584], [10.9139, 60.8585], [10.9139, 60.8588], [10.9138, 60.8593], [10.9139, 60.8594], [10.914, 60.8594], [10.914, 60.8594], [10.9141, 60.8595], [10.9141, 60.8595], [10.914, 60.8595], [10.9139, 60.8595], [10.9139, 60.8595], [10.9139, 60.8595], [10.914, 60.8595], [10.9141, 60.8595], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.914, 60.8596], [10.9139, 60.8596], [10.9139, 60.8596], [10.9138, 60.8596], [10.9137, 60.8596], [10.9137, 60.8597], [10.9137, 60.8597], [10.9139, 60.8597], [10.9139, 60.8597], [10.914, 60.8597], [10.914, 60.8597], [10.9141, 60.8597], [10.9141, 60.8597], [10.9141, 60.8598], [10.9141, 60.8598], [10.9137, 60.8598], [10.9137, 60.8598], [10.9137, 60.86], [10.9136, 60.86], [10.9137, 60.8601], [10.9137, 60.8602], [10.9137, 60.8602], [10.9137, 60.8602], [10.9137, 60.8603], [10.9137, 60.8604], [10.9135, 60.8605], [10.9132, 60.8606], [10.9132, 60.8607], [10.9133, 60.8607], [10.9133, 60.8608], [10.9132, 60.8608], [10.9131, 60.8607], [10.9131, 60.8607], [10.9129, 60.8608], [10.9128, 60.8609], [10.9129, 60.8609], [10.9129, 60.8609], [10.9128, 60.8609], [10.9127, 60.861], [10.9127, 60.861], [10.9127, 60.8611], [10.9126, 60.8612], [10.9125, 60.8614], [10.9125, 60.8616], [10.9124, 60.8616], [10.9125, 60.8617], [10.9125, 60.8618], [10.9124, 60.8619], [10.9124, 60.8621], [10.9122, 60.8622], [10.9121, 60.8623], [10.9121, 60.8624], [10.9121, 60.8624], [10.912, 60.8625], [10.912, 60.8626], [10.9118, 60.8627], [10.9116, 60.8628], [10.9115, 60.8629], [10.9114, 60.863], [10.9114, 60.863], [10.9114, 60.8632], [10.9113, 60.8633], [10.9113, 60.8636], [10.9113, 60.8637], [10.9113, 60.8638], [10.9112, 60.8639], [10.9112, 60.8641], [10.9112, 60.8641], [10.9112, 60.8642], [10.9112, 60.8643], [10.9112, 60.8643], [10.9112, 60.8645], [10.9112, 60.8645], [10.9112, 60.8646], [10.9114, 60.8647], [10.9116, 60.8648], [10.9118, 60.8649], [10.9119, 60.8651], [10.912, 60.8653], [10.9121, 60.8654], [10.9121, 60.8655], [10.9122, 60.8655], [10.9122, 60.8656], [10.9122, 60.8659], [10.9121, 60.8662], [10.912, 60.8664], [10.912, 60.8667], [10.912, 60.8669], [10.912, 60.8671], [10.9119, 60.8672], [10.912, 60.8674], [10.912, 60.8676], [10.912, 60.8677], [10.9121, 60.8677], [10.9121, 60.8677], [10.9121, 60.8678], [10.9121, 60.8678], [10.9121, 60.8678], [10.912, 60.8679], [10.9119, 60.8679], [10.9118, 60.8679], [10.9117, 60.8679], [10.9116, 60.868], [10.9116, 60.868], [10.9116, 60.868], [10.9116, 60.8681], [10.9116, 60.8681], [10.9116, 60.8681], [10.9117, 60.8682], [10.9118, 60.8683], [10.9118, 60.8683], [10.9118, 60.8683], [10.9117, 60.8684], [10.9117, 60.8684], [10.9117, 60.8684], [10.9117, 60.8683], [10.9117, 60.8683], [10.9115, 60.8682], [10.9114, 60.8682], [10.9113, 60.8682], [10.9113, 60.8683], [10.9113, 60.8683], [10.9112, 60.8684], [10.9111, 60.8684], [10.9111, 60.8686], [10.9109, 60.8687], [10.9108, 60.8688], [10.9106, 60.8689], [10.9106, 60.869], [10.9105, 60.8691], [10.9104, 60.8692], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "74", "sub_div_center": [0.0152, 0.0065]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8823], [10.9105, 60.8823], [10.9106, 60.8822], [10.9107, 60.8823], [10.9108, 60.8823], [10.9109, 60.8823], [10.9108, 60.8824], [10.9108, 60.8825], [10.9108, 60.8826], [10.911, 60.8826], [10.9112, 60.8827], [10.9114, 60.8827], [10.9115, 60.8828], [10.9117, 60.8829], [10.9121, 60.8829], [10.9125, 60.883], [10.9125, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.8831], [10.9127, 60.8831], [10.9127, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8832], [10.9127, 60.8833], [10.9127, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9129, 60.8833], [10.9129, 60.8832], [10.913, 60.8832], [10.9131, 60.8832], [10.9132, 60.8832], [10.9132, 60.8832], [10.9134, 60.8832], [10.9134, 60.8831], [10.9135, 60.8831], [10.9135, 60.8831], [10.9134, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.8829], [10.9135, 60.8829], [10.9136, 60.8829], [10.9137, 60.8829], [10.9137, 60.8828], [10.9137, 60.8828], [10.9136, 60.8828], [10.9136, 60.8828], [10.9137, 60.8827], [10.9137, 60.8827], [10.9137, 60.8827], [10.9138, 60.8827], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9136, 60.8825], [10.9137, 60.8825], [10.9138, 60.8824], [10.9139, 60.8824], [10.9139, 60.8823], [10.9139, 60.8822], [10.914, 60.8821], [10.9141, 60.882], [10.9142, 60.8819], [10.9142, 60.8818], [10.9143, 60.8817], [10.9144, 60.8816], [10.9145, 60.8815], [10.9144, 60.8815], [10.9144, 60.8815], [10.9143, 60.8814], [10.9142, 60.8814], [10.9142, 60.8814], [10.9143, 60.8814], [10.9144, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9146, 60.8813], [10.9146, 60.8813], [10.9147, 60.8813], [10.9148, 60.8812], [10.9148, 60.8812], [10.9149, 60.8812], [10.9149, 60.8812], [10.915, 60.8812], [10.9149, 60.8811], [10.9149, 60.8811], [10.9149, 60.8811], [10.9148, 60.8811], [10.9147, 60.8811], [10.9147, 60.881], [10.9147, 60.881], [10.9148, 60.881], [10.9149, 60.881], [10.9149, 60.881], [10.915, 60.8811], [10.9151, 60.8811], [10.9152, 60.8811], [10.9153, 60.8811], [10.9155, 60.8811], [10.9156, 60.8812], [10.9157, 60.8811], [10.9157, 60.8811], [10.9156, 60.8812], [10.9156, 60.8812], [10.9158, 60.8813], [10.9159, 60.8813], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8813], [10.916, 60.8813], [10.9161, 60.8813], [10.9163, 60.8814], [10.9165, 60.8814], [10.9166, 60.8815], [10.9167, 60.8815], [10.9167, 60.8816], [10.9168, 60.8816], [10.917, 60.8817], [10.9171, 60.8819], [10.9172, 60.882], [10.9172, 60.882], [10.9171, 60.8821], [10.9171, 60.8822], [10.917, 60.8823], [10.9171, 60.8824], [10.9172, 60.8825], [10.9177, 60.8823], [10.9183, 60.8822], [10.9182, 60.882], [10.918, 60.8819], [10.9179, 60.8818], [10.9179, 60.8818], [10.9178, 60.8817], [10.9178, 60.8816], [10.9178, 60.8816], [10.9178, 60.8816], [10.918, 60.8814], [10.9182, 60.8814], [10.9185, 60.8811], [10.9186, 60.881], [10.9187, 60.8809], [10.9187, 60.8808], [10.9187, 60.8807], [10.9187, 60.8806], [10.9186, 60.8806], [10.9186, 60.8805], [10.9186, 60.8805], [10.9186, 60.8804], [10.9186, 60.8804], [10.9187, 60.8804], [10.9187, 60.8803], [10.9188, 60.8803], [10.9189, 60.8803], [10.9191, 60.8803], [10.9192, 60.8803], [10.9194, 60.8803], [10.9195, 60.8803], [10.9196, 60.8803], [10.9198, 60.8803], [10.9199, 60.8803], [10.92, 60.8803], [10.9201, 60.8803], [10.9201, 60.8802], [10.92, 60.8802], [10.9199, 60.8802], [10.9198, 60.8802], [10.9199, 60.8801], [10.9199, 60.8801], [10.92, 60.88], [10.9201, 60.88], [10.9202, 60.8799], [10.9204, 60.8798], [10.9205, 60.8797], [10.9206, 60.8796], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8794], [10.9207, 60.8794], [10.9206, 60.8793], [10.9205, 60.8793], [10.9204, 60.8793], [10.9202, 60.8792], [10.92, 60.8792], [10.9198, 60.8792], [10.9197, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.879], [10.9196, 60.879], [10.9197, 60.879], [10.9197, 60.879], [10.9198, 60.879], [10.9199, 60.879], [10.9201, 60.879], [10.9203, 60.879], [10.9205, 60.8791], [10.9207, 60.8791], [10.9207, 60.8791], [10.9208, 60.8791], [10.9208, 60.8791], [10.9209, 60.8791], [10.9209, 60.8791], [10.9212, 60.8789], [10.9213, 60.8788], [10.9213, 60.8788], [10.9213, 60.8787], [10.9213, 60.8786], [10.9213, 60.8786], [10.9214, 60.8785], [10.9214, 60.8785], [10.9213, 60.8784], [10.9213, 60.8783], [10.9212, 60.8783], [10.9211, 60.8782], [10.9209, 60.8782], [10.9206, 60.8781], [10.9204, 60.8781], [10.9203, 60.8781], [10.9203, 60.8781], [10.9202, 60.8781], [10.9201, 60.8781], [10.92, 60.8781], [10.92, 60.8782], [10.9199, 60.8782], [10.9199, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9197, 60.8782], [10.9196, 60.8782], [10.9196, 60.8781], [10.9195, 60.8781], [10.9194, 60.8781], [10.9193, 60.8781], [10.9193, 60.8781], [10.9192, 60.878], [10.9191, 60.878], [10.919, 60.878], [10.919, 60.878], [10.9188, 60.878], [10.9187, 60.878], [10.9187, 60.878], [10.9187, 60.8781], [10.9187, 60.8781], [10.9185, 60.8781], [10.9184, 60.8781], [10.9183, 60.8781], [10.9182, 60.8781], [10.9182, 60.8781], [10.9182, 60.878], [10.9183, 60.8779], [10.9185, 60.8777], [10.9186, 60.8776], [10.9188, 60.8776], [10.9189, 60.8775], [10.9191, 60.8775], [10.9193, 60.8775], [10.9195, 60.8775], [10.9199, 60.8776], [10.9201, 60.8777], [10.9202, 60.8777], [10.9203, 60.8777], [10.9203, 60.8777], [10.9204, 60.8776], [10.9205, 60.8776], [10.9205, 60.8776], [10.9205, 60.8775], [10.9206, 60.8775], [10.9207, 60.8774], [10.9208, 60.8773], [10.921, 60.8772], [10.9212, 60.8771], [10.9214, 60.8771], [10.9216, 60.877], [10.9216, 60.877], [10.9218, 60.877], [10.9219, 60.877], [10.922, 60.877], [10.9221, 60.877], [10.9221, 60.877], [10.9223, 60.877], [10.9226, 60.8771], [10.9227, 60.8771], [10.9228, 60.8771], [10.9228, 60.8772], [10.9229, 60.8772], [10.9233, 60.8774], [10.9237, 60.8775], [10.9239, 60.8775], [10.924, 60.8775], [10.9242, 60.8773], [10.9244, 60.8773], [10.9248, 60.8771], [10.9256, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "75", "sub_div_center": [0.0184, 0.0065]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8823], [10.9105, 60.8823], [10.9106, 60.8822], [10.9107, 60.8823], [10.9108, 60.8823], [10.9109, 60.8823], [10.9108, 60.8824], [10.9108, 60.8825], [10.9108, 60.8826], [10.911, 60.8826], [10.9112, 60.8827], [10.9114, 60.8827], [10.9115, 60.8828], [10.9117, 60.8829], [10.9121, 60.8829], [10.9125, 60.883], [10.9125, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.8831], [10.9127, 60.8831], [10.9127, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8832], [10.9127, 60.8833], [10.9127, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9129, 60.8833], [10.9129, 60.8832], [10.913, 60.8832], [10.9131, 60.8832], [10.9132, 60.8832], [10.9132, 60.8832], [10.9134, 60.8832], [10.9134, 60.8831], [10.9135, 60.8831], [10.9135, 60.8831], [10.9134, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.8829], [10.9135, 60.8829], [10.9136, 60.8829], [10.9137, 60.8829], [10.9137, 60.8828], [10.9137, 60.8828], [10.9136, 60.8828], [10.9136, 60.8828], [10.9137, 60.8827], [10.9137, 60.8827], [10.9137, 60.8827], [10.9138, 60.8827], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9136, 60.8825], [10.9137, 60.8825], [10.9138, 60.8824], [10.9139, 60.8824], [10.9139, 60.8823], [10.9139, 60.8822], [10.914, 60.8821], [10.9141, 60.882], [10.9142, 60.8819], [10.9142, 60.8818], [10.9143, 60.8817], [10.9144, 60.8816], [10.9145, 60.8815], [10.9144, 60.8815], [10.9144, 60.8815], [10.9143, 60.8814], [10.9142, 60.8814], [10.9142, 60.8814], [10.9143, 60.8814], [10.9144, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9146, 60.8813], [10.9146, 60.8813], [10.9147, 60.8813], [10.9148, 60.8812], [10.9148, 60.8812], [10.9149, 60.8812], [10.9149, 60.8812], [10.915, 60.8812], [10.9149, 60.8811], [10.9149, 60.8811], [10.9149, 60.8811], [10.9148, 60.8811], [10.9147, 60.8811], [10.9147, 60.881], [10.9147, 60.881], [10.9148, 60.881], [10.9149, 60.881], [10.9149, 60.881], [10.915, 60.8811], [10.9151, 60.8811], [10.9152, 60.8811], [10.9153, 60.8811], [10.9155, 60.8811], [10.9156, 60.8812], [10.9157, 60.8811], [10.9157, 60.8811], [10.9156, 60.8812], [10.9156, 60.8812], [10.9158, 60.8813], [10.9159, 60.8813], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8813], [10.916, 60.8813], [10.9161, 60.8813], [10.9163, 60.8814], [10.9165, 60.8814], [10.9166, 60.8815], [10.9167, 60.8815], [10.9167, 60.8816], [10.9168, 60.8816], [10.917, 60.8817], [10.9171, 60.8819], [10.9172, 60.882], [10.9172, 60.882], [10.9171, 60.8821], [10.9171, 60.8822], [10.917, 60.8823], [10.9171, 60.8824], [10.9172, 60.8825], [10.9177, 60.8823], [10.9183, 60.8822], [10.9182, 60.882], [10.918, 60.8819], [10.9179, 60.8818], [10.9179, 60.8818], [10.9178, 60.8817], [10.9178, 60.8816], [10.9178, 60.8816], [10.9178, 60.8816], [10.918, 60.8814], [10.9182, 60.8814], [10.9185, 60.8811], [10.9186, 60.881], [10.9187, 60.8809], [10.9187, 60.8808], [10.9187, 60.8807], [10.9187, 60.8806], [10.9186, 60.8806], [10.9186, 60.8805], [10.9186, 60.8805], [10.9186, 60.8804], [10.9186, 60.8804], [10.9187, 60.8804], [10.9187, 60.8803], [10.9188, 60.8803], [10.9189, 60.8803], [10.9191, 60.8803], [10.9192, 60.8803], [10.9194, 60.8803], [10.9195, 60.8803], [10.9196, 60.8803], [10.9198, 60.8803], [10.9199, 60.8803], [10.92, 60.8803], [10.9201, 60.8803], [10.9201, 60.8802], [10.92, 60.8802], [10.9199, 60.8802], [10.9198, 60.8802], [10.9199, 60.8801], [10.9199, 60.8801], [10.92, 60.88], [10.9201, 60.88], [10.9202, 60.8799], [10.9204, 60.8798], [10.9205, 60.8797], [10.9206, 60.8796], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8794], [10.9207, 60.8794], [10.9206, 60.8793], [10.9205, 60.8793], [10.9204, 60.8793], [10.9202, 60.8792], [10.92, 60.8792], [10.9198, 60.8792], [10.9197, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.879], [10.9196, 60.879], [10.9197, 60.879], [10.9197, 60.879], [10.9198, 60.879], [10.9199, 60.879], [10.9201, 60.879], [10.9203, 60.879], [10.9205, 60.8791], [10.9207, 60.8791], [10.9207, 60.8791], [10.9208, 60.8791], [10.9208, 60.8791], [10.9209, 60.8791], [10.9209, 60.8791], [10.9212, 60.8789], [10.9213, 60.8788], [10.9213, 60.8788], [10.9213, 60.8787], [10.9213, 60.8786], [10.9213, 60.8786], [10.9214, 60.8785], [10.9214, 60.8785], [10.9213, 60.8784], [10.9213, 60.8783], [10.9212, 60.8783], [10.9211, 60.8782], [10.9209, 60.8782], [10.9206, 60.8781], [10.9204, 60.8781], [10.9203, 60.8781], [10.9203, 60.8781], [10.9202, 60.8781], [10.9201, 60.8781], [10.92, 60.8781], [10.92, 60.8782], [10.9199, 60.8782], [10.9199, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9197, 60.8782], [10.9196, 60.8782], [10.9196, 60.8781], [10.9195, 60.8781], [10.9194, 60.8781], [10.9193, 60.8781], [10.9193, 60.8781], [10.9192, 60.878], [10.9191, 60.878], [10.919, 60.878], [10.919, 60.878], [10.9188, 60.878], [10.9187, 60.878], [10.9187, 60.878], [10.9187, 60.8781], [10.9187, 60.8781], [10.9185, 60.8781], [10.9184, 60.8781], [10.9183, 60.8781], [10.9182, 60.8781], [10.9182, 60.8781], [10.9182, 60.878], [10.9183, 60.8779], [10.9185, 60.8777], [10.9186, 60.8776], [10.9188, 60.8776], [10.9189, 60.8775], [10.9191, 60.8775], [10.9193, 60.8775], [10.9195, 60.8775], [10.9199, 60.8776], [10.9201, 60.8777], [10.9202, 60.8777], [10.9203, 60.8777], [10.9203, 60.8777], [10.9204, 60.8776], [10.9205, 60.8776], [10.9205, 60.8776], [10.9205, 60.8775], [10.9206, 60.8775], [10.9207, 60.8774], [10.9208, 60.8773], [10.921, 60.8772], [10.9212, 60.8771], [10.9214, 60.8771], [10.9216, 60.877], [10.9216, 60.877], [10.9218, 60.877], [10.9219, 60.877], [10.922, 60.877], [10.9221, 60.877], [10.9221, 60.877], [10.9223, 60.877], [10.9226, 60.8771], [10.9227, 60.8771], [10.9228, 60.8771], [10.9228, 60.8772], [10.9229, 60.8772], [10.9233, 60.8774], [10.9237, 60.8775], [10.9239, 60.8775], [10.924, 60.8775], [10.9242, 60.8773], [10.9244, 60.8773], [10.9248, 60.8771], [10.9256, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "76", "sub_div_center": [0.0346, 0.0169]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9504, 60.82], [10.9501, 60.8201], [10.9499, 60.8201], [10.9499, 60.8202], [10.9498, 60.8202], [10.9497, 60.8203], [10.9498, 60.8203], [10.9498, 60.8204], [10.9498, 60.8204], [10.9498, 60.8204], [10.9495, 60.8203], [10.9494, 60.8204], [10.9494, 60.8204], [10.9493, 60.8204], [10.9491, 60.8205], [10.949, 60.8206], [10.9491, 60.8206], [10.9492, 60.8207], [10.9493, 60.8207], [10.9495, 60.8206], [10.9495, 60.8206], [10.9495, 60.8205], [10.9495, 60.8205], [10.9496, 60.8206], [10.9496, 60.8206], [10.9495, 60.8207], [10.9493, 60.8208], [10.9492, 60.8208], [10.9491, 60.8208], [10.949, 60.8208], [10.949, 60.8207], [10.9488, 60.8207], [10.9484, 60.8209], [10.9483, 60.8211], [10.9482, 60.8212], [10.9481, 60.8212], [10.948, 60.8212], [10.9479, 60.8213], [10.9478, 60.8214], [10.9477, 60.8214], [10.9475, 60.8215], [10.9474, 60.8216], [10.9473, 60.8216], [10.9473, 60.8217], [10.9473, 60.8217], [10.9472, 60.8218], [10.9471, 60.8218], [10.947, 60.8218], [10.9468, 60.8218], [10.9466, 60.8218], [10.9463, 60.822], [10.9462, 60.8221], [10.946, 60.8221], [10.9457, 60.8223], [10.9454, 60.8224], [10.9453, 60.8225], [10.9452, 60.8226], [10.9451, 60.8227], [10.945, 60.8227], [10.9448, 60.8228], [10.9446, 60.8229], [10.9442, 60.823], [10.9434, 60.8234], [10.9426, 60.8237], [10.9422, 60.8238], [10.9418, 60.824], [10.9412, 60.8241], [10.9412, 60.8241], [10.941, 60.8241], [10.9409, 60.8242], [10.9408, 60.8243], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9404, 60.8244], [10.9404, 60.8244], [10.9404, 60.8245], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9402, 60.8244], [10.9397, 60.8245], [10.9396, 60.8246], [10.9395, 60.8246], [10.9394, 60.8246], [10.9392, 60.8247], [10.9392, 60.8247], [10.9394, 60.8248], [10.9394, 60.8248], [10.9394, 60.8248], [10.9395, 60.8248], [10.9395, 60.8248], [10.9395, 60.8248], [10.9395, 60.8249], [10.9394, 60.8249], [10.9394, 60.8249], [10.9391, 60.8248], [10.939, 60.8248], [10.9389, 60.8248], [10.9389, 60.8248], [10.9386, 60.8249], [10.9384, 60.8249], [10.9382, 60.825], [10.9376, 60.8252], [10.9369, 60.8253], [10.9363, 60.8255], [10.9356, 60.8256], [10.9351, 60.8258], [10.9347, 60.826], [10.9344, 60.826], [10.9341, 60.8261], [10.934, 60.8262], [10.9339, 60.8263], [10.9333, 60.8264], [10.9327, 60.8266], [10.9325, 60.8267], [10.9322, 60.8268], [10.9315, 60.8269], [10.9312, 60.8271], [10.9308, 60.8271], [10.9304, 60.8272], [10.9302, 60.8272], [10.9301, 60.8272], [10.93, 60.8272], [10.9301, 60.8273], [10.93, 60.8273], [10.9299, 60.8272], [10.9299, 60.8272], [10.9298, 60.8272], [10.9297, 60.8272], [10.9295, 60.8273], [10.9296, 60.8273], [10.9296, 60.8274], [10.9297, 60.8274], [10.9298, 60.8274], [10.9298, 60.8274], [10.9297, 60.8274], [10.9296, 60.8274], [10.9296, 60.8274], [10.9295, 60.8273], [10.9295, 60.8273], [10.9294, 60.8273], [10.9292, 60.8273], [10.9292, 60.8273], [10.9292, 60.8273], [10.9291, 60.8274], [10.9291, 60.8274], [10.9291, 60.8274], [10.9291, 60.8275], [10.9291, 60.8275], [10.9291, 60.8275], [10.929, 60.8276], [10.9289, 60.8276], [10.9287, 60.8274], [10.9285, 60.8275], [10.9284, 60.8275], [10.9283, 60.8274], [10.9282, 60.8274], [10.9281, 60.8274], [10.928, 60.8275], [10.928, 60.8275], [10.928, 60.8275], [10.928, 60.8275], [10.9279, 60.8275], [10.9279, 60.8275], [10.9278, 60.8275], [10.9277, 60.8275], [10.9277, 60.8275], [10.9277, 60.8276], [10.9279, 60.8276], [10.9279, 60.8277], [10.928, 60.8277], [10.9279, 60.8277], [10.9279, 60.8277], [10.9278, 60.8277], [10.9277, 60.8276], [10.9275, 60.8276], [10.9274, 60.8277], [10.9273, 60.8279], [10.9272, 60.828], [10.9271, 60.828], [10.9272, 60.8281], [10.9276, 60.8282], [10.9275, 60.8282], [10.9272, 60.8281], [10.9271, 60.8281], [10.9271, 60.8281], [10.9271, 60.8281], [10.9273, 60.8282], [10.9273, 60.8282], [10.9274, 60.8282], [10.9274, 60.8283], [10.9273, 60.8283], [10.9274, 60.8283], [10.9274, 60.8283], [10.9275, 60.8283], [10.9277, 60.8283], [10.9277, 60.8283], [10.9277, 60.8283], [10.9276, 60.8283], [10.9276, 60.8284], [10.9273, 60.8284], [10.9272, 60.8284], [10.927, 60.8284], [10.9268, 60.8283], [10.9268, 60.8283], [10.9267, 60.8284], [10.9266, 60.8284], [10.9265, 60.8285], [10.9264, 60.8286], [10.9264, 60.8287], [10.9264, 60.8288], [10.9264, 60.8288], [10.9264, 60.8288], [10.9263, 60.8289], [10.9262, 60.8289], [10.9263, 60.8289], [10.9263, 60.829], [10.9263, 60.8291], [10.9263, 60.8291], [10.9263, 60.8291], [10.9264, 60.8292], [10.9264, 60.8293], [10.9264, 60.8294], [10.9263, 60.8296], [10.9264, 60.8298], [10.9265, 60.8298], [10.9266, 60.8298], [10.9267, 60.8298], [10.9267, 60.8298], [10.9267, 60.8299], [10.9265, 60.8298], [10.9263, 60.8298], [10.9262, 60.8298], [10.9262, 60.8298], [10.9262, 60.8298], [10.9261, 60.8299], [10.926, 60.83], [10.926, 60.8301], [10.926, 60.8302], [10.9261, 60.8302], [10.9261, 60.8303], [10.9262, 60.8303], [10.9263, 60.8304], [10.9264, 60.8304], [10.9265, 60.8304], [10.9266, 60.8304], [10.9266, 60.8303], [10.9267, 60.8302], [10.9267, 60.8302], [10.9268, 60.8302], [10.9268, 60.8304], [10.9268, 60.8304], [10.9267, 60.8304], [10.9266, 60.8304], [10.9262, 60.8305], [10.9262, 60.8305], [10.9262, 60.8305], [10.9262, 60.8306], [10.9262, 60.8307], [10.9262, 60.8307], [10.9262, 60.8308], [10.9263, 60.8308], [10.9264, 60.8308], [10.9266, 60.8308], [10.9267, 60.8308], [10.9268, 60.8308], [10.9268, 60.8306], [10.9268, 60.8305], [10.9269, 60.8305], [10.9269, 60.8305], [10.9269, 60.8305], [10.9269, 60.8308], [10.9268, 60.8308], [10.9265, 60.8309], [10.9265, 60.8309], [10.9265, 60.8309], [10.9264, 60.831], [10.9265, 60.8311], [10.9265, 60.8311], [10.9266, 60.8312], [10.9266, 60.8313], [10.9266, 60.8313], [10.9266, 60.8314], [10.9266, 60.8315], [10.9266, 60.8316], [10.9265, 60.8316], [10.9265, 60.8316], [10.9265, 60.8316], [10.9264, 60.8317], [10.9262, 60.8318], [10.9262, 60.8318], [10.9262, 60.8319], [10.9263, 60.832], [10.9265, 60.832], [10.9265, 60.832], [10.9265, 60.8321], [10.9265, 60.8321], [10.9264, 60.8321], [10.9262, 60.832], [10.9261, 60.832], [10.926, 60.832], [10.9259, 60.832], [10.9258, 60.8321], [10.9258, 60.8321], [10.9256, 60.8323], [10.9257, 60.8323], [10.9258, 60.8323], [10.9259, 60.8322], [10.926, 60.8321], [10.9261, 60.8321], [10.9261, 60.8321], [10.926, 60.8322], [10.9259, 60.8323], [10.9257, 60.8324], [10.9256, 60.8324], [10.9255, 60.8325], [10.9255, 60.8326], [10.9254, 60.8327], [10.9253, 60.8328], [10.9251, 60.8328], [10.9248, 60.8329], [10.9246, 60.833], [10.9245, 60.8331], [10.9244, 60.8332], [10.9243, 60.8332], [10.9243, 60.8332], [10.9243, 60.8333], [10.9241, 60.8334], [10.9243, 60.8335], [10.9242, 60.8335], [10.924, 60.8335], [10.924, 60.8334], [10.9239, 60.8335], [10.9238, 60.8335], [10.9236, 60.8335], [10.9236, 60.8335], [10.9235, 60.8336], [10.9236, 60.8337], [10.9236, 60.8337], [10.9237, 60.8337], [10.9238, 60.8337], [10.9239, 60.8337], [10.9239, 60.8337], [10.9239, 60.8337], [10.9238, 60.8337], [10.9238, 60.8338], [10.9237, 60.8338], [10.9236, 60.8338], [10.9236, 60.8338], [10.9233, 60.8336], [10.9232, 60.8336], [10.923, 60.8336], [10.9228, 60.8337], [10.9226, 60.8338], [10.9225, 60.8338], [10.9225, 60.8339], [10.9224, 60.8339], [10.9222, 60.834], [10.9222, 60.8341], [10.9222, 60.8341], [10.9222, 60.8342], [10.9222, 60.8343], [10.9221, 60.8345], [10.922, 60.8345], [10.922, 60.8346], [10.9218, 60.8347], [10.9217, 60.8348], [10.9216, 60.8349], [10.9215, 60.835], [10.9214, 60.8351], [10.9212, 60.8352], [10.921, 60.8353], [10.9206, 60.8353], [10.9205, 60.8353], [10.9203, 60.8353], [10.9201, 60.8352], [10.9192, 60.8352], [10.919, 60.8351], [10.9188, 60.8351], [10.9184, 60.835], [10.9183, 60.835], [10.9182, 60.835], [10.9182, 60.835], [10.9182, 60.8351], [10.9182, 60.8352], [10.9181, 60.8353], [10.918, 60.8353], [10.9179, 60.8354], [10.9178, 60.8354], [10.9177, 60.8355], [10.9175, 60.8356], [10.9174, 60.8357], [10.9171, 60.8357], [10.9169, 60.8359], [10.9167, 60.836], [10.9167, 60.8361], [10.9166, 60.8361], [10.9165, 60.8362], [10.9164, 60.8364], [10.9163, 60.8366], [10.9161, 60.8367], [10.9161, 60.8367], [10.9161, 60.8368], [10.9161, 60.8368], [10.9161, 60.8368], [10.9161, 60.8368], [10.9159, 60.8368], [10.9158, 60.8369], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "77", "sub_div_center": [0.0044, 0.0015]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9259, 60.8769], [10.9245, 60.8773], [10.9252, 60.8778], [10.9253, 60.8778], [10.9254, 60.8778], [10.9255, 60.8778], [10.9255, 60.8778], [10.926, 60.878], [10.9263, 60.8782], [10.9263, 60.8782], [10.9264, 60.8782], [10.9264, 60.8782], [10.9265, 60.8782], [10.9265, 60.8783], [10.9266, 60.8783], [10.9267, 60.8784], [10.9278, 60.8781], [10.9279, 60.8781], [10.9288, 60.8779], [10.9289, 60.8779], [10.928, 60.8769], [10.9259, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "78", "sub_div_center": [0.0235, 0.0074]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9504, 60.6894], [10.9502, 60.6895], [10.95, 60.6896], [10.9499, 60.6896], [10.9498, 60.6897], [10.9494, 60.6897], [10.9487, 60.6898], [10.9486, 60.6898], [10.9487, 60.69], [10.9486, 60.69], [10.9486, 60.69], [10.9485, 60.6901], [10.9484, 60.6901], [10.9484, 60.69], [10.9485, 60.69], [10.9485, 60.69], [10.9486, 60.69], [10.9486, 60.6899], [10.9485, 60.6899], [10.9483, 60.6899], [10.9481, 60.6899], [10.9479, 60.6899], [10.9479, 60.6899], [10.9478, 60.6899], [10.9476, 60.6899], [10.9475, 60.6899], [10.9475, 60.6899], [10.9473, 60.6899], [10.9466, 60.6899], [10.9459, 60.6899], [10.9456, 60.69], [10.9452, 60.69], [10.945, 60.69], [10.944, 60.69], [10.944, 60.69], [10.9439, 60.6901], [10.9435, 60.6902], [10.9432, 60.6904], [10.9428, 60.6905], [10.9423, 60.6907], [10.942, 60.6908], [10.9419, 60.6909], [10.9414, 60.691], [10.9414, 60.6911], [10.9414, 60.6911], [10.9415, 60.6912], [10.9415, 60.6912], [10.9416, 60.6912], [10.9416, 60.6912], [10.9419, 60.6912], [10.942, 60.6912], [10.9419, 60.6912], [10.9418, 60.6912], [10.9416, 60.6913], [10.9415, 60.6913], [10.9415, 60.6913], [10.9413, 60.6912], [10.9411, 60.6912], [10.941, 60.6912], [10.9406, 60.6913], [10.9398, 60.6916], [10.9394, 60.6918], [10.939, 60.6919], [10.9387, 60.6921], [10.9387, 60.6921], [10.9387, 60.6921], [10.9388, 60.6922], [10.9389, 60.6923], [10.9389, 60.6923], [10.9389, 60.6923], [10.9388, 60.6924], [10.9388, 60.6923], [10.9386, 60.6921], [10.9385, 60.6921], [10.9384, 60.6922], [10.9384, 60.6922], [10.9383, 60.6922], [10.9382, 60.6923], [10.9381, 60.6922], [10.938, 60.6922], [10.9379, 60.6923], [10.9377, 60.6923], [10.9373, 60.6925], [10.9372, 60.6925], [10.9371, 60.6926], [10.9369, 60.6927], [10.9368, 60.6927], [10.9367, 60.6928], [10.9364, 60.6931], [10.9361, 60.6934], [10.936, 60.6934], [10.9358, 60.6935], [10.9355, 60.6937], [10.9354, 60.6937], [10.9344, 60.694], [10.9341, 60.6941], [10.934, 60.6941], [10.934, 60.6941], [10.9341, 60.6943], [10.9341, 60.6943], [10.9341, 60.6943], [10.9341, 60.6943], [10.934, 60.6943], [10.934, 60.6943], [10.9339, 60.6941], [10.9338, 60.6941], [10.9337, 60.6941], [10.9337, 60.6941], [10.9337, 60.6942], [10.9336, 60.6942], [10.9335, 60.6942], [10.9335, 60.6942], [10.9331, 60.6942], [10.9331, 60.6943], [10.933, 60.6943], [10.9328, 60.6943], [10.9324, 60.6945], [10.9323, 60.6946], [10.9322, 60.6946], [10.9321, 60.6947], [10.9318, 60.6949], [10.9316, 60.6949], [10.9314, 60.695], [10.9312, 60.6951], [10.9308, 60.6954], [10.9307, 60.6954], [10.9304, 60.6956], [10.9304, 60.6956], [10.9304, 60.6957], [10.9303, 60.6957], [10.9302, 60.6958], [10.9302, 60.6958], [10.9302, 60.6959], [10.9301, 60.6959], [10.9301, 60.6959], [10.9299, 60.6959], [10.9298, 60.6959], [10.9298, 60.6959], [10.9298, 60.6959], [10.9293, 60.696], [10.9289, 60.6963], [10.9287, 60.6963], [10.9286, 60.6963], [10.9285, 60.6964], [10.9285, 60.6964], [10.9285, 60.6965], [10.9284, 60.6965], [10.9283, 60.6965], [10.9283, 60.6965], [10.9283, 60.6965], [10.9282, 60.6965], [10.9281, 60.6965], [10.9269, 60.6969], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "79", "sub_div_center": [0.0006, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9281, 60.8769], [10.9283, 60.877], [10.9287, 60.8769], [10.9281, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "80", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9904, 60.6969], [10.9904, 60.6769], [10.9684, 60.6769], [10.9683, 60.6769], [10.9683, 60.677], [10.9681, 60.6771], [10.9681, 60.6772], [10.968, 60.6774], [10.968, 60.6775], [10.9679, 60.6777], [10.9678, 60.6779], [10.9678, 60.678], [10.9678, 60.6781], [10.9676, 60.6782], [10.9675, 60.6783], [10.9675, 60.6784], [10.9675, 60.6784], [10.9674, 60.6785], [10.9671, 60.6788], [10.9671, 60.6789], [10.9667, 60.6794], [10.9665, 60.6797], [10.966, 60.6803], [10.9659, 60.6804], [10.9659, 60.6805], [10.9659, 60.6807], [10.9659, 60.6808], [10.9657, 60.681], [10.9656, 60.6811], [10.9654, 60.6812], [10.9652, 60.6814], [10.9651, 60.6816], [10.9648, 60.6819], [10.9648, 60.682], [10.9648, 60.682], [10.9646, 60.6822], [10.9644, 60.6823], [10.9639, 60.6827], [10.9638, 60.6828], [10.9637, 60.6828], [10.9637, 60.6829], [10.9634, 60.6832], [10.9632, 60.6835], [10.9632, 60.6836], [10.9631, 60.6837], [10.9631, 60.6837], [10.963, 60.6838], [10.9629, 60.6838], [10.9628, 60.6839], [10.9627, 60.6839], [10.9625, 60.684], [10.9625, 60.6841], [10.9623, 60.6841], [10.9622, 60.6842], [10.9621, 60.6842], [10.9621, 60.6843], [10.9621, 60.6843], [10.9622, 60.6843], [10.9623, 60.6844], [10.9624, 60.6844], [10.9624, 60.6845], [10.9622, 60.6844], [10.9622, 60.6844], [10.9621, 60.6844], [10.962, 60.6844], [10.9621, 60.6845], [10.9621, 60.6845], [10.9622, 60.6845], [10.9623, 60.6846], [10.9622, 60.6846], [10.9619, 60.6845], [10.9619, 60.6845], [10.9615, 60.6847], [10.9611, 60.685], [10.9611, 60.6851], [10.961, 60.6851], [10.9608, 60.6852], [10.9606, 60.6852], [10.9604, 60.6854], [10.9601, 60.6856], [10.9599, 60.6857], [10.9597, 60.6859], [10.9595, 60.686], [10.9589, 60.6863], [10.9585, 60.6866], [10.9583, 60.6866], [10.958, 60.6868], [10.9578, 60.6869], [10.9575, 60.687], [10.9575, 60.6871], [10.9573, 60.6872], [10.9571, 60.6873], [10.9568, 60.6875], [10.9565, 60.6877], [10.9563, 60.6878], [10.9562, 60.6878], [10.9558, 60.6879], [10.9552, 60.6881], [10.9546, 60.6882], [10.954, 60.6884], [10.9539, 60.6884], [10.9539, 60.6885], [10.9538, 60.6886], [10.9538, 60.6885], [10.9537, 60.6885], [10.9537, 60.6885], [10.9535, 60.6886], [10.9535, 60.6886], [10.9535, 60.6886], [10.9536, 60.6887], [10.9535, 60.6887], [10.9534, 60.6886], [10.9533, 60.6887], [10.953, 60.6887], [10.9527, 60.6888], [10.9527, 60.6888], [10.9526, 60.6889], [10.9525, 60.6889], [10.9523, 60.6889], [10.9521, 60.6889], [10.952, 60.6889], [10.9514, 60.6891], [10.9511, 60.6892], [10.9509, 60.6893], [10.9508, 60.6893], [10.9508, 60.6894], [10.9507, 60.6894], [10.9505, 60.6894], [10.9504, 60.6894], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "81", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9504, 60.7169], [10.9904, 60.7169], [10.9904, 60.6969], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "82", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7169], [10.9504, 60.7369], [10.9904, 60.7369], [10.9904, 60.7169], [10.9504, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "83", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7369], [10.9504, 60.7569], [10.9904, 60.7569], [10.9904, 60.7369], [10.9504, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "84", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7569], [10.9504, 60.7659], [10.9506, 60.7659], [10.9507, 60.766], [10.9508, 60.766], [10.9509, 60.766], [10.951, 60.7661], [10.9512, 60.7661], [10.9514, 60.7662], [10.9517, 60.7663], [10.9521, 60.7663], [10.9523, 60.7664], [10.9525, 60.7664], [10.9525, 60.7664], [10.9527, 60.7664], [10.9529, 60.7664], [10.9529, 60.7665], [10.9531, 60.7665], [10.9533, 60.7666], [10.9534, 60.7666], [10.9534, 60.7667], [10.9535, 60.7667], [10.9536, 60.7667], [10.9537, 60.7667], [10.9538, 60.7668], [10.9539, 60.7669], [10.9541, 60.767], [10.9542, 60.767], [10.9544, 60.7671], [10.9547, 60.7673], [10.9548, 60.7673], [10.9549, 60.7674], [10.9549, 60.7674], [10.955, 60.7674], [10.955, 60.7674], [10.955, 60.7675], [10.955, 60.7675], [10.9551, 60.7676], [10.9553, 60.7677], [10.9554, 60.7678], [10.9555, 60.7678], [10.9557, 60.7679], [10.9559, 60.768], [10.9559, 60.768], [10.956, 60.768], [10.9562, 60.7681], [10.9563, 60.7681], [10.9564, 60.7682], [10.9566, 60.7682], [10.9569, 60.7683], [10.9571, 60.7683], [10.9572, 60.7683], [10.9573, 60.7683], [10.9573, 60.7683], [10.9574, 60.7683], [10.9574, 60.7683], [10.9576, 60.7683], [10.9576, 60.7684], [10.9577, 60.7683], [10.9578, 60.7683], [10.9578, 60.7683], [10.9577, 60.7683], [10.9577, 60.7683], [10.9577, 60.7683], [10.9578, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9581, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7683], [10.9582, 60.7683], [10.9582, 60.7683], [10.9583, 60.7683], [10.9583, 60.7683], [10.9584, 60.7683], [10.9584, 60.7683], [10.9584, 60.7682], [10.9585, 60.7681], [10.9585, 60.7681], [10.9585, 60.7683], [10.9584, 60.7684], [10.9584, 60.7684], [10.9584, 60.7685], [10.9585, 60.7685], [10.9586, 60.7685], [10.9587, 60.7685], [10.9587, 60.7685], [10.9589, 60.7685], [10.959, 60.7685], [10.959, 60.7684], [10.9591, 60.7684], [10.9591, 60.7684], [10.9592, 60.7685], [10.9592, 60.7685], [10.9593, 60.7686], [10.9594, 60.7686], [10.9595, 60.7686], [10.9596, 60.7686], [10.9596, 60.7686], [10.9597, 60.7686], [10.9598, 60.7686], [10.9599, 60.7686], [10.96, 60.7686], [10.9601, 60.7687], [10.9602, 60.7687], [10.9604, 60.7687], [10.9607, 60.7687], [10.9609, 60.7687], [10.9611, 60.7687], [10.9611, 60.7687], [10.9612, 60.7687], [10.9611, 60.7687], [10.9612, 60.7688], [10.9614, 60.7688], [10.9614, 60.7687], [10.9615, 60.7687], [10.9616, 60.7687], [10.9617, 60.7687], [10.9617, 60.7688], [10.9618, 60.7688], [10.9621, 60.7688], [10.9624, 60.7689], [10.9625, 60.7689], [10.9626, 60.7689], [10.9628, 60.7689], [10.9631, 60.7689], [10.9633, 60.7689], [10.9634, 60.7688], [10.9636, 60.7688], [10.9637, 60.7687], [10.9639, 60.7687], [10.9642, 60.7687], [10.9643, 60.7687], [10.9644, 60.7687], [10.9644, 60.7687], [10.9645, 60.7687], [10.9645, 60.7687], [10.9646, 60.7687], [10.9647, 60.7687], [10.9647, 60.7687], [10.9647, 60.7687], [10.9647, 60.7686], [10.9648, 60.7686], [10.9648, 60.7685], [10.9649, 60.7685], [10.965, 60.7685], [10.9651, 60.7685], [10.9652, 60.7686], [10.9652, 60.7686], [10.9652, 60.7686], [10.9651, 60.7686], [10.9649, 60.7686], [10.9649, 60.7686], [10.9648, 60.7687], [10.9648, 60.7687], [10.9649, 60.7687], [10.9649, 60.7687], [10.9651, 60.7688], [10.9651, 60.7688], [10.9651, 60.7688], [10.9651, 60.7688], [10.9652, 60.7687], [10.9653, 60.7687], [10.9654, 60.7686], [10.9655, 60.7685], [10.9656, 60.7685], [10.9656, 60.7685], [10.9656, 60.7685], [10.9656, 60.7686], [10.9655, 60.7686], [10.9655, 60.7687], [10.9656, 60.7687], [10.9656, 60.7687], [10.9657, 60.7688], [10.9657, 60.7688], [10.9657, 60.7689], [10.9658, 60.7689], [10.9658, 60.7689], [10.9658, 60.7689], [10.9659, 60.7689], [10.9659, 60.7689], [10.9659, 60.769], [10.966, 60.769], [10.966, 60.769], [10.9662, 60.7691], [10.9666, 60.7693], [10.9667, 60.7693], [10.9668, 60.7695], [10.9669, 60.7699], [10.9671, 60.7702], [10.9673, 60.7705], [10.9673, 60.7706], [10.9675, 60.7709], [10.9675, 60.771], [10.9676, 60.7711], [10.9677, 60.7712], [10.9678, 60.7712], [10.9679, 60.7713], [10.9679, 60.7713], [10.9679, 60.7715], [10.9681, 60.7717], [10.9682, 60.7718], [10.9682, 60.772], [10.9683, 60.7722], [10.9684, 60.7723], [10.9686, 60.7726], [10.9687, 60.7727], [10.9688, 60.7728], [10.9689, 60.773], [10.969, 60.7731], [10.969, 60.7731], [10.9691, 60.7731], [10.9691, 60.7731], [10.9692, 60.7731], [10.9693, 60.7731], [10.9693, 60.7731], [10.9694, 60.7731], [10.9694, 60.7731], [10.9693, 60.7731], [10.9693, 60.7731], [10.9692, 60.7732], [10.9692, 60.7732], [10.9692, 60.7733], [10.9693, 60.7733], [10.9693, 60.7733], [10.9693, 60.7733], [10.9694, 60.7733], [10.9695, 60.7732], [10.9695, 60.7732], [10.9696, 60.7732], [10.9696, 60.7731], [10.9695, 60.7731], [10.9695, 60.7731], [10.9695, 60.773], [10.9695, 60.773], [10.9695, 60.773], [10.9695, 60.773], [10.9696, 60.773], [10.9696, 60.773], [10.9697, 60.7731], [10.9697, 60.7731], [10.9698, 60.7731], [10.9698, 60.7732], [10.9697, 60.7732], [10.9697, 60.7732], [10.9697, 60.7733], [10.9696, 60.7733], [10.9694, 60.7734], [10.9694, 60.7734], [10.9694, 60.7734], [10.9695, 60.7734], [10.9696, 60.7735], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7733], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7734], [10.9697, 60.7735], [10.9696, 60.7735], [10.9696, 60.7735], [10.9696, 60.7735], [10.9696, 60.7736], [10.9698, 60.7738], [10.9699, 60.7738], [10.97, 60.774], [10.9701, 60.7741], [10.9703, 60.7743], [10.9704, 60.7744], [10.9705, 60.7744], [10.9705, 60.7744], [10.9706, 60.7746], [10.9707, 60.7746], [10.9708, 60.7747], [10.9708, 60.7747], [10.9709, 60.7748], [10.971, 60.7749], [10.9711, 60.7749], [10.9712, 60.775], [10.9713, 60.775], [10.9714, 60.7751], [10.9715, 60.7752], [10.9716, 60.7753], [10.9717, 60.7754], [10.9718, 60.7755], [10.9719, 60.7756], [10.9719, 60.7756], [10.9719, 60.7756], [10.972, 60.7756], [10.9721, 60.7756], [10.9726, 60.7755], [10.9726, 60.7755], [10.9727, 60.7755], [10.9727, 60.7755], [10.9727, 60.7755], [10.9726, 60.7755], [10.9725, 60.7756], [10.9723, 60.7756], [10.9722, 60.7756], [10.972, 60.7757], [10.9721, 60.7758], [10.9721, 60.7758], [10.9721, 60.7759], [10.9721, 60.776], [10.9723, 60.7761], [10.9724, 60.7763], [10.9725, 60.7764], [10.9725, 60.7765], [10.9726, 60.7768], [10.9727, 60.7769], [10.9904, 60.7769], [10.9904, 60.7569], [10.9504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "85", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9717, 60.8369], [10.9717, 60.8368], [10.9717, 60.8368], [10.9719, 60.8368], [10.9719, 60.8368], [10.9719, 60.8368], [10.9719, 60.8367], [10.972, 60.8367], [10.972, 60.8367], [10.9722, 60.8367], [10.9722, 60.8367], [10.9723, 60.8366], [10.9724, 60.8366], [10.9725, 60.8366], [10.9725, 60.8365], [10.9726, 60.8365], [10.9727, 60.8365], [10.9729, 60.8364], [10.9729, 60.8364], [10.973, 60.8364], [10.973, 60.8364], [10.9732, 60.8364], [10.9733, 60.8363], [10.9733, 60.8363], [10.9733, 60.8363], [10.9734, 60.8363], [10.9735, 60.8363], [10.9736, 60.8363], [10.9736, 60.8363], [10.9738, 60.8364], [10.9739, 60.8363], [10.974, 60.8363], [10.974, 60.8363], [10.974, 60.8363], [10.974, 60.8362], [10.974, 60.8362], [10.974, 60.8363], [10.9741, 60.8363], [10.9741, 60.8363], [10.9742, 60.8363], [10.9742, 60.8364], [10.9743, 60.8364], [10.9743, 60.8364], [10.9744, 60.8363], [10.9745, 60.8363], [10.9744, 60.8364], [10.9745, 60.8364], [10.9745, 60.8364], [10.9746, 60.8364], [10.9746, 60.8364], [10.9746, 60.8364], [10.9747, 60.8364], [10.9748, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9752, 60.8364], [10.9753, 60.8364], [10.9754, 60.8364], [10.9755, 60.8363], [10.9756, 60.8363], [10.9757, 60.8362], [10.9758, 60.836], [10.9759, 60.8359], [10.976, 60.8358], [10.976, 60.8357], [10.9761, 60.8355], [10.9761, 60.8355], [10.9761, 60.8354], [10.9761, 60.8353], [10.9761, 60.8352], [10.9761, 60.8352], [10.9761, 60.8352], [10.9761, 60.8351], [10.976, 60.8351], [10.9759, 60.835], [10.9758, 60.835], [10.9756, 60.835], [10.9756, 60.8349], [10.9756, 60.8349], [10.9755, 60.8349], [10.9755, 60.8349], [10.9755, 60.8348], [10.9753, 60.8348], [10.9752, 60.8348], [10.9752, 60.8348], [10.9752, 60.8347], [10.9751, 60.8346], [10.9751, 60.8345], [10.9751, 60.8345], [10.975, 60.8343], [10.9749, 60.8342], [10.9748, 60.8342], [10.9747, 60.8341], [10.9745, 60.8341], [10.9744, 60.8341], [10.9742, 60.8341], [10.9741, 60.8341], [10.974, 60.8341], [10.9739, 60.8341], [10.9738, 60.8341], [10.9738, 60.8341], [10.9737, 60.8341], [10.9737, 60.8341], [10.9736, 60.8341], [10.9736, 60.8341], [10.9735, 60.8341], [10.9736, 60.834], [10.9736, 60.834], [10.9737, 60.8339], [10.9737, 60.8339], [10.9737, 60.8338], [10.9736, 60.8337], [10.9735, 60.8336], [10.9735, 60.8336], [10.9733, 60.8336], [10.9733, 60.8336], [10.9733, 60.8336], [10.9735, 60.8336], [10.9735, 60.8336], [10.9735, 60.8336], [10.9735, 60.8335], [10.9735, 60.8334], [10.9732, 60.8333], [10.9731, 60.8333], [10.973, 60.8332], [10.9729, 60.8331], [10.9728, 60.833], [10.9728, 60.833], [10.9728, 60.8329], [10.9729, 60.8328], [10.9731, 60.8328], [10.9733, 60.8327], [10.9736, 60.8327], [10.9738, 60.8327], [10.9739, 60.8326], [10.974, 60.8326], [10.974, 60.8326], [10.9741, 60.8326], [10.974, 60.8325], [10.974, 60.8325], [10.9741, 60.8325], [10.9744, 60.8325], [10.9748, 60.8324], [10.9748, 60.8323], [10.9748, 60.8323], [10.975, 60.8323], [10.9751, 60.8322], [10.9754, 60.8321], [10.9755, 60.8321], [10.9755, 60.832], [10.9756, 60.832], [10.9757, 60.832], [10.9757, 60.832], [10.9758, 60.832], [10.9759, 60.832], [10.976, 60.8319], [10.976, 60.8319], [10.976, 60.8319], [10.9762, 60.8318], [10.9762, 60.8318], [10.9763, 60.8318], [10.9763, 60.8317], [10.9763, 60.8317], [10.9764, 60.8317], [10.9764, 60.8317], [10.9765, 60.8317], [10.9765, 60.8316], [10.9767, 60.8316], [10.9768, 60.8316], [10.9768, 60.8315], [10.9769, 60.8314], [10.977, 60.8314], [10.9771, 60.8313], [10.9772, 60.8313], [10.9773, 60.8312], [10.9774, 60.8312], [10.9774, 60.8312], [10.9774, 60.8312], [10.9776, 60.8312], [10.9777, 60.8312], [10.9779, 60.8312], [10.9782, 60.8311], [10.9788, 60.8308], [10.9791, 60.8307], [10.9791, 60.8307], [10.9791, 60.8306], [10.9791, 60.8306], [10.9792, 60.8306], [10.9792, 60.8306], [10.9792, 60.8305], [10.9793, 60.8305], [10.9793, 60.8305], [10.9793, 60.8305], [10.9794, 60.8305], [10.9795, 60.8306], [10.9796, 60.8305], [10.9796, 60.8305], [10.9797, 60.8305], [10.9797, 60.8305], [10.9797, 60.8304], [10.9797, 60.8304], [10.9797, 60.8304], [10.9798, 60.8303], [10.9799, 60.8303], [10.9799, 60.8303], [10.98, 60.8303], [10.9802, 60.8302], [10.9803, 60.8302], [10.9804, 60.8301], [10.9805, 60.8301], [10.9807, 60.83], [10.9808, 60.83], [10.9808, 60.8299], [10.9809, 60.8299], [10.9809, 60.8298], [10.981, 60.8298], [10.9811, 60.8298], [10.9811, 60.8298], [10.9811, 60.8298], [10.9812, 60.8297], [10.9813, 60.8297], [10.9812, 60.8297], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9812, 60.8295], [10.9812, 60.8295], [10.9813, 60.8294], [10.9814, 60.8294], [10.9815, 60.8294], [10.9815, 60.8294], [10.9814, 60.8294], [10.9814, 60.8294], [10.9813, 60.8295], [10.9812, 60.8295], [10.9812, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9814, 60.8295], [10.9814, 60.8295], [10.9814, 60.8296], [10.9817, 60.8295], [10.9817, 60.8294], [10.9818, 60.8294], [10.9819, 60.8293], [10.9818, 60.8292], [10.9818, 60.8292], [10.9817, 60.8292], [10.9817, 60.8292], [10.9817, 60.8291], [10.9817, 60.8291], [10.9817, 60.829], [10.9817, 60.829], [10.9817, 60.8289], [10.9817, 60.8289], [10.9817, 60.829], [10.9817, 60.829], [10.9817, 60.8291], [10.9817, 60.8291], [10.9817, 60.8292], [10.9817, 60.8292], [10.9818, 60.8292], [10.9818, 60.8292], [10.9819, 60.8293], [10.9821, 60.8292], [10.9822, 60.8291], [10.9822, 60.8291], [10.9823, 60.8291], [10.9823, 60.829], [10.9823, 60.829], [10.9823, 60.829], [10.9822, 60.8289], [10.9821, 60.8289], [10.982, 60.8289], [10.982, 60.8289], [10.9819, 60.8289], [10.9819, 60.8288], [10.9818, 60.8288], [10.9817, 60.8288], [10.9816, 60.8287], [10.9815, 60.8287], [10.9816, 60.8287], [10.9816, 60.8287], [10.9817, 60.8287], [10.9819, 60.8288], [10.982, 60.8289], [10.982, 60.8289], [10.9821, 60.8289], [10.9822, 60.8289], [10.9822, 60.8289], [10.9822, 60.8288], [10.9823, 60.8288], [10.9823, 60.8288], [10.9825, 60.8287], [10.9825, 60.8287], [10.9823, 60.8287], [10.9824, 60.8286], [10.9824, 60.8286], [10.9825, 60.8286], [10.9827, 60.8287], [10.9829, 60.8287], [10.9829, 60.8286], [10.9828, 60.8285], [10.9825, 60.8284], [10.9824, 60.8283], [10.9823, 60.8283], [10.9823, 60.8284], [10.9819, 60.8285], [10.9819, 60.8286], [10.9818, 60.8286], [10.9818, 60.8286], [10.9817, 60.8286], [10.9818, 60.8285], [10.9822, 60.8283], [10.9823, 60.8283], [10.9824, 60.8283], [10.9825, 60.8283], [10.9826, 60.8283], [10.9826, 60.8284], [10.9829, 60.8285], [10.9832, 60.8287], [10.9833, 60.8287], [10.9834, 60.8287], [10.9835, 60.8287], [10.9835, 60.8286], [10.9836, 60.8285], [10.9836, 60.8285], [10.9835, 60.8284], [10.9835, 60.8284], [10.9835, 60.8283], [10.9836, 60.8283], [10.9837, 60.8284], [10.9838, 60.8284], [10.9839, 60.8283], [10.984, 60.8283], [10.984, 60.8282], [10.984, 60.8282], [10.9839, 60.8282], [10.9839, 60.8281], [10.984, 60.828], [10.9841, 60.828], [10.9841, 60.828], [10.9841, 60.828], [10.9842, 60.828], [10.9842, 60.828], [10.9843, 60.8281], [10.9844, 60.8281], [10.9844, 60.828], [10.9844, 60.828], [10.9844, 60.828], [10.9843, 60.8279], [10.9843, 60.8279], [10.9842, 60.8278], [10.9841, 60.8278], [10.9842, 60.8278], [10.9842, 60.8278], [10.9843, 60.8278], [10.9844, 60.8278], [10.9844, 60.8278], [10.9845, 60.8278], [10.9846, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8277], [10.9846, 60.8277], [10.9846, 60.8277], [10.9846, 60.8276], [10.9846, 60.8276], [10.9846, 60.8276], [10.9847, 60.8276], [10.9847, 60.8276], [10.9847, 60.8277], [10.9848, 60.8277], [10.985, 60.8277], [10.9852, 60.8277], [10.9853, 60.8277], [10.9854, 60.8276], [10.9856, 60.8276], [10.9857, 60.8276], [10.9858, 60.8276], [10.9859, 60.8276], [10.986, 60.8276], [10.9862, 60.8275], [10.9862, 60.8276], [10.9863, 60.8276], [10.9864, 60.8276], [10.9865, 60.8276], [10.9866, 60.8276], [10.9867, 60.8276], [10.9867, 60.8276], [10.9868, 60.8275], [10.9867, 60.8275], [10.9868, 60.8274], [10.9868, 60.8274], [10.9868, 60.8274], [10.9868, 60.8274], [10.9869, 60.8274], [10.9869, 60.8275], [10.987, 60.8275], [10.987, 60.8276], [10.9871, 60.8276], [10.9874, 60.8275], [10.9876, 60.8275], [10.9876, 60.8275], [10.9877, 60.8274], [10.9878, 60.8274], [10.9878, 60.8273], [10.9879, 60.8271], [10.988, 60.827], [10.9879, 60.827], [10.9879, 60.827], [10.9879, 60.8269], [10.9879, 60.8269], [10.988, 60.8269], [10.9879, 60.8269], [10.9874, 60.8269], [10.9869, 60.8268], [10.9867, 60.8268], [10.9866, 60.8268], [10.9865, 60.8268], [10.9864, 60.8269], [10.9864, 60.8269], [10.9863, 60.8268], [10.9863, 60.8268], [10.9863, 60.8268], [10.9864, 60.8268], [10.9865, 60.8267], [10.9866, 60.8267], [10.9867, 60.8267], [10.987, 60.8268], [10.9873, 60.8268], [10.9876, 60.8268], [10.988, 60.8268], [10.9881, 60.8269], [10.9882, 60.8269], [10.9883, 60.8268], [10.9883, 60.8268], [10.9883, 60.8268], [10.9883, 60.8268], [10.9884, 60.8267], [10.9884, 60.8267], [10.9884, 60.8267], [10.9886, 60.8266], [10.9887, 60.8266], [10.9888, 60.8266], [10.9891, 60.8266], [10.9894, 60.8266], [10.9894, 60.8266], [10.9895, 60.8265], [10.9895, 60.8265], [10.9896, 60.8266], [10.9896, 60.8266], [10.9897, 60.8266], [10.9899, 60.8266], [10.99, 60.8265], [10.9902, 60.8265], [10.9903, 60.8265], [10.9902, 60.8265], [10.9902, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9904, 60.8263], [10.9904, 60.8169], [10.9576, 60.8169], [10.9573, 60.817], [10.9565, 60.8174], [10.9557, 60.8178], [10.9544, 60.8182], [10.9541, 60.8184], [10.9538, 60.8185], [10.9536, 60.8185], [10.9535, 60.8185], [10.9531, 60.8187], [10.953, 60.8188], [10.9528, 60.8188], [10.9525, 60.8189], [10.9523, 60.819], [10.9521, 60.8191], [10.9519, 60.8192], [10.9518, 60.8193], [10.9518, 60.8193], [10.9518, 60.8193], [10.9518, 60.8194], [10.9521, 60.8195], [10.952, 60.8195], [10.9519, 60.8195], [10.9517, 60.8194], [10.9516, 60.8195], [10.9514, 60.8195], [10.9512, 60.8196], [10.9509, 60.8197], [10.9507, 60.8199], [10.9505, 60.8199], [10.9504, 60.82], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "86", "sub_div_center": [0.0213, 0.0174]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9504, 60.8527], [10.9505, 60.8527], [10.9506, 60.8527], [10.9507, 60.8527], [10.9508, 60.8527], [10.9509, 60.8527], [10.951, 60.8527], [10.951, 60.8527], [10.951, 60.8528], [10.9511, 60.8528], [10.9511, 60.8528], [10.9511, 60.8529], [10.9512, 60.8529], [10.9512, 60.8529], [10.9511, 60.8529], [10.9512, 60.853], [10.9512, 60.853], [10.9513, 60.853], [10.9513, 60.8531], [10.9514, 60.8531], [10.9514, 60.8531], [10.9514, 60.8532], [10.9514, 60.8532], [10.9514, 60.8533], [10.9513, 60.8533], [10.9513, 60.8534], [10.9513, 60.8535], [10.9513, 60.8535], [10.9513, 60.8536], [10.9514, 60.8536], [10.9513, 60.8536], [10.9513, 60.8537], [10.9513, 60.8537], [10.9513, 60.8537], [10.9512, 60.8538], [10.9512, 60.8538], [10.9513, 60.8538], [10.9512, 60.8539], [10.9512, 60.8538], [10.9511, 60.8539], [10.9511, 60.8538], [10.9511, 60.8539], [10.951, 60.8539], [10.951, 60.8539], [10.951, 60.8539], [10.9508, 60.8539], [10.9507, 60.8539], [10.9507, 60.8539], [10.9506, 60.8539], [10.9506, 60.854], [10.9506, 60.854], [10.9506, 60.854], [10.9507, 60.8541], [10.9508, 60.8541], [10.9509, 60.8541], [10.9509, 60.8541], [10.951, 60.8541], [10.9511, 60.8541], [10.9512, 60.8541], [10.9512, 60.8542], [10.9514, 60.8542], [10.9514, 60.8542], [10.9512, 60.8541], [10.9512, 60.854], [10.9513, 60.854], [10.9513, 60.8539], [10.9515, 60.8539], [10.9515, 60.8538], [10.9516, 60.8537], [10.9516, 60.8536], [10.9517, 60.8535], [10.9518, 60.8535], [10.9518, 60.8535], [10.9518, 60.8535], [10.9518, 60.8534], [10.9519, 60.8534], [10.952, 60.8534], [10.952, 60.8534], [10.9521, 60.8534], [10.9522, 60.8533], [10.9522, 60.8533], [10.9523, 60.8533], [10.9523, 60.8533], [10.9523, 60.8532], [10.9523, 60.8532], [10.9524, 60.8533], [10.9525, 60.8533], [10.9525, 60.8533], [10.9526, 60.8533], [10.9526, 60.8533], [10.9526, 60.8533], [10.9527, 60.8532], [10.9527, 60.8532], [10.9527, 60.8532], [10.9528, 60.8532], [10.9528, 60.8531], [10.9527, 60.853], [10.9527, 60.8529], [10.9527, 60.8528], [10.9527, 60.8528], [10.9526, 60.8528], [10.9526, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9526, 60.8527], [10.9526, 60.8527], [10.9527, 60.8527], [10.9527, 60.8525], [10.9528, 60.8525], [10.9528, 60.8525], [10.9528, 60.8525], [10.9528, 60.8524], [10.9527, 60.8523], [10.9526, 60.8522], [10.9527, 60.8521], [10.9527, 60.852], [10.9528, 60.852], [10.9528, 60.8519], [10.9529, 60.8519], [10.953, 60.8518], [10.9532, 60.8518], [10.9532, 60.8518], [10.9533, 60.8518], [10.9534, 60.8518], [10.9534, 60.8518], [10.9534, 60.8518], [10.9536, 60.8518], [10.9537, 60.8518], [10.9538, 60.8517], [10.9539, 60.8517], [10.954, 60.8517], [10.954, 60.8516], [10.9541, 60.8516], [10.9541, 60.8515], [10.9539, 60.8515], [10.9539, 60.8515], [10.954, 60.8515], [10.9541, 60.8515], [10.9541, 60.8515], [10.9541, 60.8515], [10.9542, 60.8514], [10.9541, 60.8514], [10.9541, 60.8513], [10.9541, 60.8513], [10.9542, 60.8514], [10.9543, 60.8513], [10.9543, 60.8513], [10.9544, 60.8512], [10.9544, 60.8512], [10.9544, 60.8512], [10.9545, 60.8512], [10.9545, 60.8512], [10.9545, 60.8511], [10.9544, 60.8511], [10.9544, 60.8511], [10.9544, 60.8511], [10.9545, 60.8511], [10.9546, 60.8511], [10.9546, 60.851], [10.9547, 60.851], [10.9547, 60.8509], [10.9547, 60.8508], [10.9547, 60.8507], [10.9547, 60.8506], [10.9547, 60.8505], [10.9547, 60.8505], [10.9547, 60.8504], [10.9547, 60.8503], [10.9546, 60.8502], [10.9546, 60.8501], [10.9546, 60.8501], [10.9545, 60.85], [10.9544, 60.8499], [10.9543, 60.8499], [10.9542, 60.8498], [10.9542, 60.8497], [10.9542, 60.8496], [10.9543, 60.8495], [10.9543, 60.8495], [10.9542, 60.8494], [10.9542, 60.8494], [10.954, 60.8493], [10.9538, 60.8493], [10.9536, 60.8492], [10.9535, 60.8492], [10.9534, 60.8491], [10.9533, 60.849], [10.9533, 60.849], [10.9533, 60.8489], [10.9532, 60.8489], [10.9532, 60.8488], [10.9531, 60.8488], [10.9529, 60.8487], [10.9528, 60.8486], [10.9527, 60.8486], [10.9526, 60.8485], [10.9524, 60.8484], [10.9524, 60.8483], [10.9523, 60.8483], [10.9522, 60.8482], [10.9522, 60.8482], [10.9521, 60.8482], [10.952, 60.8481], [10.9519, 60.848], [10.9518, 60.8479], [10.9516, 60.8478], [10.9515, 60.8477], [10.9513, 60.8477], [10.9512, 60.8476], [10.9511, 60.8475], [10.951, 60.8474], [10.9509, 60.8474], [10.9508, 60.8472], [10.9507, 60.8472], [10.9507, 60.8472], [10.9507, 60.8471], [10.9507, 60.8471], [10.9506, 60.8471], [10.9505, 60.847], [10.9505, 60.847], [10.9505, 60.8469], [10.9505, 60.8469], [10.9505, 60.8469], [10.9506, 60.8468], [10.9507, 60.8468], [10.9507, 60.8467], [10.9507, 60.8467], [10.9507, 60.8467], [10.9508, 60.8467], [10.9509, 60.8467], [10.951, 60.8466], [10.9511, 60.8466], [10.9512, 60.8466], [10.9513, 60.8466], [10.9513, 60.8466], [10.9513, 60.8466], [10.9514, 60.8466], [10.9515, 60.8466], [10.9516, 60.8466], [10.9517, 60.8466], [10.9517, 60.8466], [10.9518, 60.8466], [10.9519, 60.8466], [10.952, 60.8466], [10.9521, 60.8466], [10.9522, 60.8467], [10.9523, 60.8467], [10.9524, 60.8468], [10.9525, 60.8468], [10.9526, 60.8469], [10.9527, 60.8469], [10.9528, 60.847], [10.9529, 60.847], [10.9531, 60.8471], [10.9532, 60.8471], [10.9535, 60.8472], [10.9537, 60.8473], [10.9539, 60.8473], [10.9542, 60.8474], [10.9544, 60.8474], [10.9546, 60.8474], [10.9548, 60.8474], [10.9551, 60.8474], [10.9554, 60.8474], [10.9555, 60.8475], [10.9557, 60.8476], [10.9558, 60.8477], [10.956, 60.8478], [10.9561, 60.8478], [10.9561, 60.8479], [10.9561, 60.848], [10.9561, 60.848], [10.9561, 60.8481], [10.9561, 60.8481], [10.9561, 60.8483], [10.9562, 60.8484], [10.9563, 60.8484], [10.9564, 60.8484], [10.9566, 60.8485], [10.9567, 60.8485], [10.9568, 60.8485], [10.9569, 60.8485], [10.9569, 60.8485], [10.957, 60.8485], [10.9571, 60.8485], [10.9572, 60.8485], [10.9573, 60.8484], [10.9574, 60.8484], [10.9575, 60.8484], [10.9576, 60.8484], [10.9577, 60.8485], [10.9578, 60.8485], [10.9579, 60.8485], [10.958, 60.8486], [10.958, 60.8486], [10.9581, 60.8487], [10.9581, 60.8487], [10.9583, 60.8488], [10.9585, 60.8488], [10.9586, 60.8488], [10.9588, 60.8489], [10.9589, 60.8489], [10.959, 60.849], [10.959, 60.849], [10.9591, 60.8489], [10.9592, 60.8489], [10.9593, 60.8488], [10.9593, 60.8488], [10.9593, 60.8487], [10.9593, 60.8486], [10.9593, 60.8486], [10.9593, 60.8485], [10.9593, 60.8484], [10.9592, 60.8484], [10.9592, 60.8483], [10.9591, 60.8482], [10.9589, 60.8481], [10.9588, 60.848], [10.9588, 60.8479], [10.9588, 60.8479], [10.9588, 60.8478], [10.9588, 60.8478], [10.9589, 60.8477], [10.959, 60.8478], [10.9592, 60.8477], [10.9593, 60.8477], [10.9595, 60.8477], [10.9596, 60.8477], [10.9598, 60.8477], [10.96, 60.8477], [10.9601, 60.8477], [10.9601, 60.8477], [10.9602, 60.8476], [10.9603, 60.8474], [10.9604, 60.8474], [10.9604, 60.8473], [10.9605, 60.8472], [10.9605, 60.8472], [10.9606, 60.8471], [10.9606, 60.847], [10.9606, 60.8469], [10.9606, 60.8468], [10.9607, 60.8468], [10.9608, 60.8467], [10.961, 60.8467], [10.9611, 60.8466], [10.9612, 60.8465], [10.9612, 60.8465], [10.9613, 60.8464], [10.9614, 60.8464], [10.9614, 60.8463], [10.9614, 60.8462], [10.9614, 60.8461], [10.9614, 60.8461], [10.9614, 60.8461], [10.9614, 60.8461], [10.9615, 60.846], [10.9615, 60.8459], [10.9616, 60.8459], [10.9616, 60.8458], [10.9615, 60.8458], [10.9616, 60.8458], [10.9616, 60.8458], [10.9616, 60.8458], [10.9617, 60.8458], [10.9618, 60.8458], [10.9619, 60.8457], [10.962, 60.8457], [10.962, 60.8456], [10.9621, 60.8456], [10.9622, 60.8456], [10.9622, 60.8456], [10.9623, 60.8455], [10.9624, 60.8455], [10.9625, 60.8454], [10.9625, 60.8454], [10.9625, 60.8453], [10.9626, 60.8453], [10.9626, 60.8452], [10.9627, 60.8451], [10.9627, 60.8451], [10.9628, 60.8451], [10.9629, 60.8451], [10.9629, 60.8451], [10.963, 60.8452], [10.9631, 60.8452], [10.9632, 60.8452], [10.9633, 60.8452], [10.9634, 60.8452], [10.9635, 60.8452], [10.9636, 60.8452], [10.9637, 60.8452], [10.9639, 60.8451], [10.9639, 60.8451], [10.9639, 60.845], [10.9638, 60.845], [10.9639, 60.8449], [10.964, 60.8449], [10.964, 60.8449], [10.964, 60.8448], [10.964, 60.8448], [10.9641, 60.8447], [10.9642, 60.8447], [10.9642, 60.8446], [10.9642, 60.8446], [10.9642, 60.8445], [10.9644, 60.8445], [10.9644, 60.8444], [10.9643, 60.8444], [10.9643, 60.8444], [10.9641, 60.8443], [10.964, 60.8443], [10.9639, 60.8443], [10.9638, 60.8443], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8441], [10.9637, 60.8441], [10.9637, 60.8441], [10.9638, 60.844], [10.9638, 60.844], [10.964, 60.8439], [10.9641, 60.8439], [10.9642, 60.8438], [10.9643, 60.8438], [10.9644, 60.8438], [10.9644, 60.8438], [10.9644, 60.8437], [10.9644, 60.8437], [10.9645, 60.8436], [10.9644, 60.8436], [10.9644, 60.8436], [10.9643, 60.8436], [10.9642, 60.8436], [10.9642, 60.8436], [10.9641, 60.8436], [10.9642, 60.8435], [10.9643, 60.8435], [10.9643, 60.8435], [10.9644, 60.8435], [10.9645, 60.8435], [10.9645, 60.8436], [10.9645, 60.8436], [10.9646, 60.8435], [10.9647, 60.8435], [10.9647, 60.8434], [10.9647, 60.8433], [10.9647, 60.8433], [10.9647, 60.8432], [10.9647, 60.8431], [10.9647, 60.843], [10.9647, 60.8429], [10.9647, 60.8429], [10.9647, 60.8429], [10.9647, 60.8429], [10.9648, 60.8428], [10.9648, 60.8428], [10.9648, 60.8428], [10.9649, 60.8428], [10.9649, 60.8428], [10.9649, 60.8428], [10.9649, 60.8427], [10.9649, 60.8427], [10.9649, 60.8426], [10.9649, 60.8425], [10.9649, 60.8425], [10.965, 60.8424], [10.965, 60.8423], [10.965, 60.8422], [10.965, 60.8421], [10.965, 60.842], [10.965, 60.8419], [10.965, 60.8418], [10.9649, 60.8417], [10.9649, 60.8417], [10.965, 60.8416], [10.965, 60.8415], [10.965, 60.8414], [10.9649, 60.8414], [10.9648, 60.8413], [10.9648, 60.8412], [10.9648, 60.8412], [10.9648, 60.8412], [10.9648, 60.8411], [10.9648, 60.8411], [10.9649, 60.841], [10.9649, 60.841], [10.9649, 60.841], [10.965, 60.8409], [10.9651, 60.8409], [10.9652, 60.8409], [10.9652, 60.8409], [10.9653, 60.8408], [10.9654, 60.8408], [10.9655, 60.8408], [10.9656, 60.8406], [10.9658, 60.8404], [10.966, 60.8402], [10.9661, 60.8402], [10.9662, 60.8401], [10.9663, 60.8401], [10.9663, 60.84], [10.9664, 60.8399], [10.9664, 60.8399], [10.9663, 60.8398], [10.9663, 60.8398], [10.9663, 60.8397], [10.9663, 60.8397], [10.9662, 60.8397], [10.9661, 60.8396], [10.966, 60.8396], [10.966, 60.8396], [10.966, 60.8396], [10.9659, 60.8395], [10.9659, 60.8395], [10.9659, 60.8395], [10.966, 60.8395], [10.9661, 60.8395], [10.966, 60.8395], [10.966, 60.8395], [10.9661, 60.8395], [10.9662, 60.8395], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8393], [10.9663, 60.8393], [10.9663, 60.8393], [10.9664, 60.8393], [10.9664, 60.8393], [10.9665, 60.8393], [10.9665, 60.8393], [10.9666, 60.8393], [10.9667, 60.8393], [10.9667, 60.8393], [10.9667, 60.8393], [10.9668, 60.8393], [10.9669, 60.8393], [10.9669, 60.8393], [10.967, 60.8393], [10.967, 60.8392], [10.9671, 60.8392], [10.9671, 60.8392], [10.9672, 60.8391], [10.9673, 60.8391], [10.9675, 60.839], [10.9675, 60.839], [10.9676, 60.839], [10.9677, 60.8389], [10.9677, 60.8389], [10.9677, 60.8389], [10.9678, 60.8389], [10.9679, 60.8388], [10.9679, 60.8388], [10.9679, 60.8388], [10.968, 60.8388], [10.968, 60.8388], [10.9682, 60.8387], [10.9684, 60.8387], [10.9685, 60.8387], [10.9686, 60.8386], [10.9688, 60.8386], [10.9689, 60.8386], [10.969, 60.8385], [10.9689, 60.8385], [10.969, 60.8385], [10.9691, 60.8384], [10.9691, 60.8384], [10.9691, 60.8383], [10.9692, 60.8383], [10.9692, 60.8382], [10.9693, 60.8382], [10.9694, 60.8382], [10.9696, 60.8381], [10.9695, 60.8381], [10.9697, 60.8381], [10.9698, 60.838], [10.9698, 60.838], [10.9699, 60.838], [10.9699, 60.838], [10.97, 60.838], [10.9701, 60.838], [10.9701, 60.8379], [10.97, 60.8379], [10.9701, 60.8379], [10.9701, 60.8379], [10.9702, 60.8379], [10.9703, 60.8379], [10.9705, 60.8378], [10.9706, 60.8378], [10.9708, 60.8377], [10.9709, 60.8377], [10.9709, 60.8377], [10.9709, 60.8377], [10.9709, 60.8376], [10.971, 60.8375], [10.971, 60.8375], [10.9711, 60.8374], [10.9712, 60.8374], [10.9713, 60.8374], [10.9714, 60.8374], [10.9714, 60.8374], [10.9715, 60.8373], [10.9715, 60.8373], [10.9714, 60.8373], [10.9713, 60.8372], [10.9714, 60.8371], [10.9714, 60.8371], [10.9714, 60.8371], [10.9715, 60.8371], [10.9715, 60.837], [10.9715, 60.837], [10.9716, 60.837], [10.9716, 60.8369], [10.9717, 60.8369], [10.9718, 60.8369], [10.9717, 60.8369], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "87", "sub_div_center": [0.0328, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.8169], [10.9904, 60.7969], [10.9691, 60.7969], [10.969, 60.7969], [10.9691, 60.7971], [10.969, 60.7973], [10.969, 60.7975], [10.9689, 60.7976], [10.969, 60.7977], [10.969, 60.7978], [10.9691, 60.7979], [10.9691, 60.798], [10.9692, 60.7982], [10.9692, 60.7984], [10.9693, 60.7985], [10.9693, 60.7986], [10.9693, 60.7987], [10.9693, 60.7988], [10.9693, 60.7989], [10.9693, 60.799], [10.9694, 60.7992], [10.9693, 60.7993], [10.9693, 60.7994], [10.9693, 60.7996], [10.9693, 60.7997], [10.9694, 60.7998], [10.9694, 60.7999], [10.9694, 60.8], [10.9693, 60.8002], [10.9692, 60.8003], [10.9691, 60.8004], [10.9691, 60.8005], [10.9692, 60.8006], [10.9692, 60.8007], [10.9692, 60.8008], [10.9691, 60.801], [10.9691, 60.8011], [10.9691, 60.8013], [10.9692, 60.8014], [10.9692, 60.8015], [10.9692, 60.8017], [10.9693, 60.8019], [10.9694, 60.802], [10.9695, 60.8022], [10.9695, 60.8022], [10.9696, 60.8023], [10.9697, 60.8023], [10.9698, 60.8025], [10.97, 60.8027], [10.9701, 60.8028], [10.9702, 60.8029], [10.9703, 60.803], [10.9705, 60.8032], [10.9709, 60.8034], [10.9711, 60.8036], [10.9713, 60.8037], [10.9715, 60.8038], [10.9719, 60.804], [10.9721, 60.8041], [10.9724, 60.8042], [10.9726, 60.8043], [10.9729, 60.8045], [10.9731, 60.8047], [10.9734, 60.8049], [10.9736, 60.8051], [10.9739, 60.8052], [10.9741, 60.8055], [10.9744, 60.8058], [10.9744, 60.8059], [10.9744, 60.806], [10.9744, 60.8061], [10.9743, 60.8062], [10.9742, 60.8063], [10.9739, 60.8064], [10.9738, 60.8064], [10.9736, 60.8064], [10.9733, 60.8065], [10.9731, 60.8066], [10.9731, 60.8067], [10.9731, 60.807], [10.9731, 60.8072], [10.973, 60.8073], [10.973, 60.8073], [10.9729, 60.8075], [10.9729, 60.8076], [10.973, 60.8077], [10.9731, 60.8081], [10.9732, 60.8082], [10.9733, 60.8083], [10.9734, 60.8087], [10.9734, 60.8089], [10.9734, 60.809], [10.9735, 60.8092], [10.9736, 60.8093], [10.9737, 60.8095], [10.9738, 60.8097], [10.9739, 60.8098], [10.9739, 60.8099], [10.974, 60.8099], [10.974, 60.81], [10.974, 60.81], [10.9742, 60.8101], [10.9742, 60.8101], [10.9743, 60.8101], [10.9742, 60.8102], [10.9741, 60.8102], [10.9741, 60.8103], [10.9741, 60.8103], [10.9739, 60.8103], [10.9738, 60.8104], [10.9737, 60.8104], [10.9735, 60.8104], [10.9734, 60.8104], [10.9733, 60.8104], [10.9733, 60.8104], [10.9731, 60.8104], [10.9729, 60.8104], [10.9725, 60.8104], [10.9723, 60.8104], [10.9722, 60.8104], [10.972, 60.8105], [10.9718, 60.8105], [10.9713, 60.8106], [10.9711, 60.8107], [10.9709, 60.8108], [10.9705, 60.8109], [10.9701, 60.8112], [10.9698, 60.8113], [10.9694, 60.8114], [10.9693, 60.8115], [10.9692, 60.8116], [10.969, 60.8117], [10.9686, 60.8119], [10.9681, 60.812], [10.968, 60.8122], [10.9676, 60.8124], [10.9675, 60.8125], [10.9673, 60.8127], [10.9671, 60.8128], [10.9669, 60.8129], [10.9667, 60.813], [10.9666, 60.8131], [10.9665, 60.8132], [10.9664, 60.8132], [10.9662, 60.8133], [10.9659, 60.8134], [10.9656, 60.8136], [10.9654, 60.8136], [10.9652, 60.8137], [10.9648, 60.8138], [10.9643, 60.8139], [10.9641, 60.8139], [10.9639, 60.8139], [10.9637, 60.814], [10.9635, 60.814], [10.9632, 60.8141], [10.9629, 60.8142], [10.9625, 60.8143], [10.9618, 60.8144], [10.9612, 60.8146], [10.9604, 60.8153], [10.9591, 60.816], [10.9589, 60.8161], [10.9581, 60.8165], [10.9576, 60.8169], [10.9904, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "88", "sub_div_center": [0.0258, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6769], [10.9904, 60.6569], [10.9716, 60.6569], [10.9717, 60.6569], [10.9717, 60.6569], [10.9717, 60.657], [10.9718, 60.657], [10.9718, 60.6571], [10.9717, 60.6572], [10.9717, 60.6573], [10.9716, 60.6574], [10.9716, 60.6576], [10.9715, 60.6577], [10.9715, 60.6578], [10.9714, 60.658], [10.9713, 60.658], [10.9713, 60.6582], [10.9713, 60.6584], [10.9712, 60.6587], [10.9712, 60.6588], [10.9712, 60.6589], [10.9712, 60.6589], [10.9712, 60.659], [10.9712, 60.6591], [10.9712, 60.6593], [10.9712, 60.6594], [10.9711, 60.6595], [10.9711, 60.6596], [10.9708, 60.6597], [10.9708, 60.6597], [10.9709, 60.6598], [10.9709, 60.6599], [10.9709, 60.6599], [10.9707, 60.66], [10.9705, 60.6601], [10.9704, 60.6602], [10.9701, 60.6602], [10.9699, 60.6603], [10.9699, 60.6604], [10.9699, 60.6604], [10.9699, 60.6604], [10.97, 60.6605], [10.97, 60.6605], [10.9699, 60.6605], [10.9698, 60.6605], [10.9698, 60.6605], [10.9696, 60.6605], [10.9695, 60.6604], [10.9694, 60.6604], [10.9694, 60.6604], [10.9693, 60.6604], [10.9692, 60.6604], [10.969, 60.6604], [10.9689, 60.6604], [10.9688, 60.6604], [10.9687, 60.6603], [10.9686, 60.6603], [10.9686, 60.6603], [10.9686, 60.6602], [10.9687, 60.6602], [10.9688, 60.6603], [10.969, 60.6603], [10.9691, 60.6603], [10.9691, 60.6603], [10.9692, 60.6603], [10.9692, 60.6603], [10.9691, 60.6602], [10.9687, 60.6602], [10.9686, 60.6601], [10.9685, 60.6601], [10.9683, 60.66], [10.9683, 60.66], [10.9682, 60.66], [10.968, 60.66], [10.968, 60.66], [10.9684, 60.6602], [10.9684, 60.6602], [10.9684, 60.6603], [10.9684, 60.6603], [10.9683, 60.6603], [10.9682, 60.6603], [10.9682, 60.6603], [10.9681, 60.6602], [10.9679, 60.6601], [10.9679, 60.6601], [10.9679, 60.6601], [10.9678, 60.6601], [10.9679, 60.6602], [10.9679, 60.6602], [10.968, 60.6603], [10.9681, 60.6604], [10.9685, 60.6605], [10.9686, 60.6606], [10.9686, 60.6606], [10.9686, 60.6606], [10.9684, 60.6606], [10.9684, 60.6607], [10.9683, 60.6607], [10.9682, 60.6607], [10.968, 60.6606], [10.9674, 60.6604], [10.9672, 60.6603], [10.9671, 60.6603], [10.9665, 60.6601], [10.9659, 60.6598], [10.9657, 60.6598], [10.9653, 60.6597], [10.9652, 60.6596], [10.965, 60.6596], [10.9648, 60.6595], [10.9647, 60.6595], [10.9646, 60.6595], [10.9646, 60.6596], [10.9646, 60.6597], [10.9646, 60.6597], [10.9646, 60.6597], [10.9649, 60.6598], [10.9652, 60.6598], [10.9654, 60.6599], [10.9655, 60.6599], [10.9657, 60.66], [10.9663, 60.6603], [10.9663, 60.6603], [10.9665, 60.6605], [10.9665, 60.6605], [10.9666, 60.6605], [10.9671, 60.6606], [10.9674, 60.6607], [10.9675, 60.6608], [10.9676, 60.6608], [10.9679, 60.6608], [10.9682, 60.6608], [10.9684, 60.6609], [10.9685, 60.6609], [10.969, 60.6611], [10.9693, 60.6611], [10.9697, 60.6613], [10.9698, 60.6613], [10.9699, 60.6614], [10.9699, 60.6614], [10.97, 60.6614], [10.9701, 60.6616], [10.9701, 60.6616], [10.9703, 60.6617], [10.9704, 60.6617], [10.9705, 60.6617], [10.9705, 60.6618], [10.9705, 60.6618], [10.9704, 60.6618], [10.9703, 60.6619], [10.9701, 60.6619], [10.9701, 60.6619], [10.9701, 60.6619], [10.97, 60.662], [10.97, 60.662], [10.97, 60.662], [10.97, 60.6622], [10.97, 60.6622], [10.97, 60.6623], [10.9701, 60.6623], [10.9701, 60.6623], [10.9701, 60.6623], [10.9703, 60.6625], [10.9705, 60.6626], [10.9705, 60.6626], [10.9705, 60.6626], [10.9704, 60.6627], [10.9703, 60.6628], [10.9701, 60.6628], [10.97, 60.6628], [10.97, 60.6629], [10.97, 60.6629], [10.97, 60.6632], [10.9698, 60.6633], [10.9698, 60.6633], [10.9698, 60.6635], [10.9697, 60.6636], [10.9697, 60.6636], [10.9697, 60.6637], [10.9698, 60.6637], [10.9698, 60.6639], [10.9698, 60.6642], [10.9698, 60.6643], [10.9699, 60.6643], [10.9698, 60.6643], [10.9698, 60.6644], [10.9696, 60.6646], [10.9696, 60.6647], [10.9696, 60.6648], [10.9696, 60.6648], [10.9696, 60.6649], [10.9696, 60.665], [10.9697, 60.6651], [10.9697, 60.6651], [10.9696, 60.6653], [10.9695, 60.6654], [10.9695, 60.6655], [10.9695, 60.6655], [10.9695, 60.6656], [10.9695, 60.6656], [10.9695, 60.6658], [10.9695, 60.6658], [10.9697, 60.6658], [10.9698, 60.6659], [10.9698, 60.6659], [10.9697, 60.6659], [10.9695, 60.6659], [10.9695, 60.666], [10.9695, 60.666], [10.9696, 60.666], [10.9698, 60.666], [10.9697, 60.666], [10.9697, 60.6661], [10.9698, 60.6661], [10.9698, 60.6666], [10.9698, 60.6667], [10.9698, 60.6667], [10.9697, 60.6669], [10.9697, 60.6669], [10.9697, 60.6671], [10.9697, 60.6672], [10.9698, 60.6674], [10.9699, 60.6676], [10.97, 60.6677], [10.9703, 60.6683], [10.9704, 60.6684], [10.9705, 60.6687], [10.9705, 60.6688], [10.9705, 60.6693], [10.9705, 60.6697], [10.9705, 60.67], [10.9705, 60.6702], [10.9705, 60.6704], [10.9704, 60.6707], [10.9704, 60.6711], [10.9703, 60.6712], [10.9703, 60.6713], [10.9703, 60.6716], [10.9702, 60.6717], [10.9701, 60.6718], [10.97, 60.672], [10.97, 60.6721], [10.97, 60.6721], [10.9699, 60.6722], [10.9698, 60.6723], [10.9696, 60.6726], [10.9695, 60.6729], [10.9695, 60.6732], [10.9694, 60.6733], [10.9693, 60.6734], [10.9692, 60.6735], [10.969, 60.6736], [10.969, 60.6737], [10.9689, 60.6738], [10.9688, 60.674], [10.9688, 60.674], [10.9688, 60.675], [10.9688, 60.6751], [10.9689, 60.6753], [10.9689, 60.6753], [10.9688, 60.6754], [10.9688, 60.6755], [10.9688, 60.6756], [10.9688, 60.6756], [10.9688, 60.6757], [10.9688, 60.6757], [10.9689, 60.6758], [10.9688, 60.6759], [10.9688, 60.6759], [10.9687, 60.6759], [10.9686, 60.676], [10.9686, 60.6762], [10.9684, 60.6763], [10.9684, 60.6764], [10.9684, 60.6765], [10.9685, 60.6766], [10.9685, 60.6767], [10.9684, 60.6768], [10.9684, 60.6769], [10.9904, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "89", "sub_div_center": [0.0217, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7969], [10.9904, 60.7769], [10.9727, 60.7769], [10.9727, 60.7769], [10.9727, 60.7771], [10.9727, 60.7771], [10.9727, 60.7773], [10.9727, 60.7774], [10.9726, 60.7775], [10.9727, 60.7777], [10.9728, 60.7779], [10.9729, 60.7782], [10.9729, 60.7784], [10.973, 60.7785], [10.973, 60.7787], [10.9731, 60.7792], [10.9732, 60.7794], [10.9732, 60.7796], [10.9733, 60.7796], [10.9733, 60.7797], [10.9734, 60.7798], [10.9734, 60.7799], [10.9733, 60.78], [10.9733, 60.78], [10.9733, 60.7801], [10.9733, 60.7801], [10.9734, 60.7802], [10.9734, 60.7802], [10.9734, 60.7803], [10.9734, 60.7803], [10.9733, 60.7804], [10.9733, 60.7804], [10.9732, 60.7804], [10.9732, 60.7805], [10.9732, 60.7805], [10.9732, 60.7806], [10.9732, 60.7807], [10.9732, 60.7809], [10.9732, 60.781], [10.9732, 60.7811], [10.9732, 60.7812], [10.9732, 60.7812], [10.9733, 60.7812], [10.9734, 60.7815], [10.9734, 60.7816], [10.9734, 60.7818], [10.9734, 60.782], [10.9735, 60.7821], [10.9735, 60.7822], [10.9735, 60.7823], [10.9736, 60.7824], [10.9736, 60.7824], [10.9736, 60.7825], [10.9736, 60.7825], [10.9738, 60.7825], [10.9739, 60.7825], [10.974, 60.7825], [10.974, 60.7826], [10.974, 60.7826], [10.974, 60.7827], [10.974, 60.7827], [10.9739, 60.7827], [10.9739, 60.7826], [10.9739, 60.7826], [10.9739, 60.7826], [10.9737, 60.7826], [10.9737, 60.7826], [10.9736, 60.7826], [10.9735, 60.7826], [10.9735, 60.7826], [10.9734, 60.7827], [10.9735, 60.7827], [10.9736, 60.7828], [10.9737, 60.7828], [10.9738, 60.7828], [10.9738, 60.7828], [10.9738, 60.7828], [10.9737, 60.7829], [10.9737, 60.7829], [10.9736, 60.7829], [10.9734, 60.7829], [10.9734, 60.7829], [10.9734, 60.783], [10.9734, 60.783], [10.9734, 60.7831], [10.9733, 60.7832], [10.9733, 60.7832], [10.9733, 60.7833], [10.9733, 60.7833], [10.9733, 60.7834], [10.9734, 60.7835], [10.9734, 60.7838], [10.9734, 60.7838], [10.9734, 60.7838], [10.9734, 60.784], [10.9734, 60.7842], [10.9734, 60.7844], [10.9734, 60.7846], [10.9734, 60.7847], [10.9735, 60.7847], [10.9734, 60.7847], [10.9734, 60.7847], [10.9734, 60.7847], [10.9734, 60.7849], [10.9733, 60.785], [10.9733, 60.7852], [10.9732, 60.7855], [10.973, 60.7857], [10.9728, 60.786], [10.9728, 60.7861], [10.9728, 60.7862], [10.9727, 60.7863], [10.9726, 60.7864], [10.9726, 60.7865], [10.9726, 60.7866], [10.9726, 60.7867], [10.9723, 60.7868], [10.9722, 60.7869], [10.9722, 60.7869], [10.9721, 60.7871], [10.9721, 60.7871], [10.9721, 60.7871], [10.9722, 60.7871], [10.9723, 60.7871], [10.9725, 60.7872], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7872], [10.9724, 60.7872], [10.9724, 60.7872], [10.9723, 60.7872], [10.9723, 60.7872], [10.9722, 60.7872], [10.9721, 60.7872], [10.9721, 60.7872], [10.9721, 60.7873], [10.9721, 60.7874], [10.9722, 60.7874], [10.9722, 60.7874], [10.9723, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9724, 60.7874], [10.9722, 60.7874], [10.9721, 60.7875], [10.9721, 60.7875], [10.972, 60.7876], [10.9719, 60.7878], [10.9719, 60.7879], [10.9719, 60.7879], [10.9719, 60.788], [10.972, 60.7882], [10.9719, 60.7883], [10.9719, 60.7884], [10.9719, 60.7884], [10.972, 60.7884], [10.972, 60.7886], [10.9719, 60.7888], [10.972, 60.789], [10.972, 60.7891], [10.9722, 60.7892], [10.9722, 60.7894], [10.9722, 60.7894], [10.9721, 60.7895], [10.9721, 60.7895], [10.9722, 60.7895], [10.9722, 60.7895], [10.9722, 60.7895], [10.9721, 60.7896], [10.9721, 60.7896], [10.9722, 60.7896], [10.9722, 60.7897], [10.9722, 60.7897], [10.9722, 60.7899], [10.9722, 60.7899], [10.972, 60.79], [10.972, 60.79], [10.972, 60.79], [10.9721, 60.79], [10.9721, 60.79], [10.9721, 60.7901], [10.9722, 60.7901], [10.9723, 60.7901], [10.9724, 60.7901], [10.9725, 60.7902], [10.9725, 60.7902], [10.9725, 60.7903], [10.9725, 60.7903], [10.9724, 60.7903], [10.9723, 60.7904], [10.9722, 60.7903], [10.9722, 60.7904], [10.9722, 60.7904], [10.9721, 60.7904], [10.9721, 60.7904], [10.9721, 60.7903], [10.972, 60.7903], [10.972, 60.7903], [10.9719, 60.7902], [10.9719, 60.7902], [10.9718, 60.7902], [10.9715, 60.7903], [10.9712, 60.7903], [10.9708, 60.7905], [10.9708, 60.7905], [10.9708, 60.7906], [10.9708, 60.7907], [10.9708, 60.7907], [10.9708, 60.7908], [10.9702, 60.7908], [10.9702, 60.7908], [10.9701, 60.7909], [10.9702, 60.7909], [10.9702, 60.7909], [10.9703, 60.7909], [10.9705, 60.791], [10.9707, 60.791], [10.971, 60.791], [10.971, 60.791], [10.971, 60.791], [10.9709, 60.791], [10.9707, 60.791], [10.9705, 60.791], [10.9702, 60.791], [10.97, 60.791], [10.97, 60.791], [10.9699, 60.791], [10.9698, 60.7911], [10.9697, 60.7912], [10.9695, 60.7914], [10.9694, 60.7915], [10.9693, 60.7918], [10.9692, 60.7918], [10.9691, 60.792], [10.9691, 60.7921], [10.969, 60.7924], [10.9689, 60.7926], [10.9689, 60.7926], [10.9689, 60.7927], [10.9689, 60.7928], [10.9689, 60.7929], [10.9689, 60.793], [10.9688, 60.7931], [10.9688, 60.7931], [10.9689, 60.7931], [10.9689, 60.7932], [10.9689, 60.7932], [10.969, 60.7932], [10.9691, 60.7933], [10.9692, 60.7933], [10.9693, 60.7933], [10.9693, 60.7933], [10.9694, 60.7933], [10.9694, 60.7933], [10.9694, 60.7934], [10.9693, 60.7935], [10.9692, 60.7936], [10.969, 60.7936], [10.9689, 60.7936], [10.9689, 60.7936], [10.9688, 60.7936], [10.9688, 60.7937], [10.9687, 60.7938], [10.9687, 60.794], [10.9688, 60.7941], [10.9688, 60.7942], [10.9688, 60.7943], [10.9689, 60.7943], [10.9688, 60.7944], [10.9688, 60.7945], [10.9688, 60.7946], [10.9689, 60.7946], [10.9688, 60.7947], [10.9689, 60.7948], [10.9689, 60.7949], [10.9689, 60.7951], [10.9689, 60.7953], [10.9689, 60.7954], [10.969, 60.7954], [10.969, 60.7957], [10.969, 60.7959], [10.9691, 60.796], [10.9691, 60.7961], [10.9692, 60.7962], [10.9691, 60.7962], [10.9691, 60.7964], [10.969, 60.7965], [10.9691, 60.7967], [10.9691, 60.7968], [10.9691, 60.7969], [10.9904, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "90", "sub_div_center": [0.0189, 0.0035]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6569], [10.9904, 60.6534], [10.9903, 60.6534], [10.9903, 60.6534], [10.99, 60.6534], [10.9898, 60.6534], [10.9892, 60.6535], [10.989, 60.6536], [10.9889, 60.6536], [10.9889, 60.6537], [10.9889, 60.6538], [10.989, 60.6538], [10.9889, 60.6538], [10.9889, 60.6538], [10.9887, 60.6537], [10.9886, 60.6537], [10.9883, 60.6537], [10.9883, 60.6537], [10.9885, 60.6538], [10.9884, 60.6538], [10.9883, 60.6538], [10.9882, 60.6538], [10.9882, 60.6538], [10.9881, 60.6538], [10.988, 60.6538], [10.9876, 60.6539], [10.9875, 60.6539], [10.9875, 60.654], [10.9875, 60.654], [10.9876, 60.6541], [10.9875, 60.6541], [10.9875, 60.6541], [10.9875, 60.654], [10.9874, 60.654], [10.9873, 60.654], [10.9871, 60.654], [10.9869, 60.6541], [10.9868, 60.6541], [10.9869, 60.6542], [10.9868, 60.6542], [10.9867, 60.6542], [10.9867, 60.6542], [10.9866, 60.6542], [10.9865, 60.6542], [10.9864, 60.6542], [10.9863, 60.6542], [10.9863, 60.6542], [10.9863, 60.6543], [10.9865, 60.6546], [10.9865, 60.6546], [10.9866, 60.6546], [10.9865, 60.6546], [10.9865, 60.6546], [10.9864, 60.6546], [10.9863, 60.6544], [10.9862, 60.6543], [10.9862, 60.6543], [10.986, 60.6543], [10.986, 60.6543], [10.9859, 60.6543], [10.9858, 60.6544], [10.9858, 60.6544], [10.9856, 60.6544], [10.9855, 60.6544], [10.9855, 60.6544], [10.9853, 60.6544], [10.9851, 60.6545], [10.9849, 60.6546], [10.9847, 60.6548], [10.9847, 60.6548], [10.9847, 60.6549], [10.9847, 60.6549], [10.9846, 60.655], [10.9845, 60.6552], [10.9844, 60.6552], [10.9843, 60.6553], [10.9842, 60.6553], [10.9838, 60.6554], [10.9837, 60.6554], [10.9835, 60.6554], [10.9834, 60.6555], [10.9833, 60.6555], [10.9828, 60.6557], [10.9827, 60.6557], [10.9825, 60.6559], [10.9824, 60.656], [10.9823, 60.656], [10.982, 60.6561], [10.9819, 60.6562], [10.9819, 60.6562], [10.9817, 60.6562], [10.9814, 60.6561], [10.9814, 60.6561], [10.9811, 60.6561], [10.981, 60.6561], [10.9809, 60.6561], [10.9807, 60.656], [10.9806, 60.656], [10.9802, 60.656], [10.9802, 60.656], [10.9799, 60.6559], [10.9798, 60.6559], [10.9797, 60.6559], [10.9797, 60.656], [10.9796, 60.656], [10.9796, 60.6561], [10.9797, 60.6562], [10.9797, 60.6563], [10.9796, 60.6563], [10.9795, 60.6564], [10.9794, 60.6564], [10.9794, 60.6564], [10.9793, 60.6564], [10.9793, 60.6563], [10.9795, 60.6562], [10.9795, 60.6562], [10.9795, 60.6561], [10.9795, 60.6561], [10.9793, 60.6561], [10.9792, 60.6561], [10.9791, 60.6561], [10.9791, 60.6562], [10.979, 60.6562], [10.9789, 60.6562], [10.9787, 60.6563], [10.9785, 60.6563], [10.9784, 60.6564], [10.9784, 60.6564], [10.9783, 60.6565], [10.9781, 60.6565], [10.9781, 60.6565], [10.978, 60.6565], [10.9779, 60.6563], [10.9778, 60.6563], [10.9777, 60.6563], [10.9776, 60.6562], [10.9773, 60.6561], [10.9772, 60.656], [10.9771, 60.656], [10.9771, 60.656], [10.9769, 60.6561], [10.9769, 60.6561], [10.9768, 60.6561], [10.9768, 60.656], [10.9769, 60.656], [10.9769, 60.6559], [10.9768, 60.6559], [10.9766, 60.6559], [10.9761, 60.6559], [10.9758, 60.6559], [10.9754, 60.6559], [10.9753, 60.656], [10.9752, 60.6561], [10.9751, 60.6561], [10.9751, 60.6561], [10.975, 60.656], [10.975, 60.656], [10.9751, 60.656], [10.9751, 60.656], [10.9751, 60.6559], [10.9752, 60.6558], [10.9752, 60.6558], [10.9752, 60.6557], [10.9751, 60.6557], [10.975, 60.6558], [10.9748, 60.6558], [10.9748, 60.6558], [10.9748, 60.6558], [10.9747, 60.6557], [10.9747, 60.6557], [10.9745, 60.6557], [10.9744, 60.6557], [10.9743, 60.6558], [10.9743, 60.6558], [10.9743, 60.6558], [10.9743, 60.6557], [10.9743, 60.6556], [10.974, 60.6557], [10.9737, 60.6558], [10.9735, 60.6558], [10.973, 60.6559], [10.9728, 60.656], [10.972, 60.6563], [10.9719, 60.6564], [10.9719, 60.6564], [10.9717, 60.6567], [10.9717, 60.6567], [10.9716, 60.6568], [10.9716, 60.6568], [10.9715, 60.6568], [10.9716, 60.6568], [10.9716, 60.6569], [10.9904, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "91", "sub_div_center": [0.04, 0.0089]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0299, 60.648], [11.0294, 60.648], [11.0291, 60.648], [11.0287, 60.648], [11.0285, 60.648], [11.0283, 60.648], [11.0282, 60.648], [11.0281, 60.6481], [11.028, 60.6481], [11.028, 60.6482], [11.0279, 60.6482], [11.0278, 60.6482], [11.0266, 60.6483], [11.0264, 60.6483], [11.0263, 60.6483], [11.0261, 60.6484], [11.026, 60.6484], [11.0259, 60.6485], [11.0256, 60.6487], [11.0256, 60.6488], [11.0255, 60.6489], [11.0253, 60.649], [11.0252, 60.649], [11.0252, 60.649], [11.0252, 60.649], [11.0247, 60.6491], [11.0235, 60.6495], [11.0229, 60.6496], [11.0223, 60.6498], [11.0214, 60.65], [11.0212, 60.6501], [11.021, 60.6502], [11.0208, 60.6502], [11.0205, 60.6503], [11.0204, 60.6503], [11.0198, 60.6504], [11.0197, 60.6504], [11.0195, 60.6504], [11.0195, 60.6504], [11.0194, 60.6504], [11.0194, 60.6505], [11.0193, 60.6505], [11.0193, 60.6505], [11.0192, 60.6505], [11.019, 60.6505], [11.0185, 60.6505], [11.018, 60.6506], [11.0175, 60.6506], [11.0172, 60.6506], [11.0165, 60.6506], [11.0158, 60.6506], [11.0151, 60.6506], [11.0148, 60.6506], [11.0143, 60.6506], [11.0129, 60.6506], [11.012, 60.6507], [11.0113, 60.6508], [11.0112, 60.6508], [11.0109, 60.6508], [11.0108, 60.6508], [11.0107, 60.6508], [11.0106, 60.6508], [11.0105, 60.6508], [11.0101, 60.6509], [11.0099, 60.651], [11.0097, 60.6511], [11.0091, 60.6512], [11.0088, 60.6513], [11.0085, 60.6514], [11.0083, 60.6515], [11.0082, 60.6515], [11.0081, 60.6516], [11.0081, 60.6516], [11.008, 60.6517], [11.0079, 60.6517], [11.0072, 60.6518], [11.0071, 60.6518], [11.007, 60.6519], [11.007, 60.6519], [11.007, 60.6521], [11.0071, 60.6521], [11.0071, 60.6522], [11.0072, 60.6524], [11.0071, 60.6524], [11.0072, 60.6525], [11.0073, 60.6525], [11.0073, 60.6525], [11.0071, 60.6526], [11.007, 60.6524], [11.007, 60.6523], [11.007, 60.6523], [11.0068, 60.6521], [11.0067, 60.652], [11.0063, 60.6521], [11.0061, 60.6522], [11.006, 60.6522], [11.0056, 60.6523], [11.0054, 60.6523], [11.0048, 60.6525], [11.0046, 60.6525], [11.0045, 60.6525], [11.0045, 60.6526], [11.0044, 60.6526], [11.004, 60.6527], [11.004, 60.6527], [11.0033, 60.6527], [11.0032, 60.6527], [11.0029, 60.6527], [11.0028, 60.6527], [11.0028, 60.6527], [11.0027, 60.6526], [11.0026, 60.6526], [11.0026, 60.6525], [11.0025, 60.6525], [11.0023, 60.6525], [11.0023, 60.6526], [11.0022, 60.6526], [11.0021, 60.6526], [11.0017, 60.6527], [11.0015, 60.6527], [11.0013, 60.6527], [11.0011, 60.6527], [11.0008, 60.6528], [11.0006, 60.6528], [11.0005, 60.6528], [11.0, 60.6529], [10.9998, 60.6529], [10.9997, 60.653], [10.9996, 60.653], [10.9995, 60.6531], [10.9994, 60.6531], [10.9994, 60.6531], [10.9992, 60.653], [10.9991, 60.653], [10.999, 60.653], [10.9985, 60.6529], [10.9984, 60.6529], [10.9977, 60.6529], [10.997, 60.6529], [10.997, 60.6529], [10.9968, 60.6528], [10.9966, 60.6528], [10.9964, 60.6528], [10.9957, 60.6529], [10.9954, 60.6529], [10.9951, 60.6529], [10.995, 60.653], [10.9949, 60.653], [10.9949, 60.6529], [10.9949, 60.6529], [10.9948, 60.6529], [10.9947, 60.6529], [10.9946, 60.6529], [10.9943, 60.653], [10.9941, 60.6531], [10.9939, 60.6532], [10.9939, 60.6532], [10.9938, 60.6533], [10.9937, 60.6533], [10.9934, 60.6533], [10.9933, 60.6533], [10.9932, 60.6533], [10.9931, 60.6534], [10.9931, 60.6534], [10.9931, 60.6534], [10.9932, 60.6535], [10.9932, 60.6536], [10.9932, 60.6536], [10.9934, 60.6536], [10.9935, 60.6536], [10.9935, 60.6537], [10.9934, 60.6537], [10.9934, 60.6537], [10.9933, 60.6537], [10.9932, 60.6537], [10.9932, 60.6537], [10.9931, 60.6536], [10.993, 60.6535], [10.9929, 60.6534], [10.9928, 60.6534], [10.9927, 60.6535], [10.9926, 60.6535], [10.9924, 60.6535], [10.9923, 60.6536], [10.9922, 60.6536], [10.9922, 60.6536], [10.9922, 60.6537], [10.9921, 60.6537], [10.9921, 60.6536], [10.992, 60.6535], [10.992, 60.6535], [10.9919, 60.6535], [10.9914, 60.6535], [10.9914, 60.6535], [10.9914, 60.6534], [10.9912, 60.6534], [10.9912, 60.6534], [10.9908, 60.6534], [10.9907, 60.6534], [10.9907, 60.6534], [10.9906, 60.6534], [10.9906, 60.6534], [10.9906, 60.6535], [10.9905, 60.6535], [10.9905, 60.6535], [10.9904, 60.6534], [10.9904, 60.6569], [11.0304, 60.6569], [11.0304, 60.6482], [11.0299, 60.648]]]}}, {"type": "Feature", "properties": {"sub_div_id": "92", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6569], [10.9904, 60.6769], [11.0304, 60.6769], [11.0304, 60.6569], [10.9904, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "93", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6769], [10.9904, 60.6969], [11.0304, 60.6969], [11.0304, 60.6769], [10.9904, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "94", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6969], [10.9904, 60.7169], [11.0304, 60.7169], [11.0304, 60.6969], [10.9904, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "95", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7169], [10.9904, 60.7369], [11.0304, 60.7369], [11.0304, 60.7169], [10.9904, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "96", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7369], [10.9904, 60.7569], [11.0304, 60.7569], [11.0304, 60.7369], [10.9904, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "97", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7569], [10.9904, 60.7769], [11.0304, 60.7769], [11.0304, 60.7569], [10.9904, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "98", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7769], [10.9904, 60.7969], [11.0272, 60.7969], [11.0273, 60.7968], [11.0273, 60.7968], [11.0274, 60.7968], [11.0275, 60.7968], [11.0276, 60.7968], [11.0277, 60.7968], [11.0278, 60.7968], [11.0278, 60.7968], [11.0279, 60.7969], [11.0304, 60.7969], [11.0304, 60.7769], [10.9904, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "99", "sub_div_center": [0.0368, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7969], [10.9904, 60.8169], [11.0056, 60.8169], [11.0057, 60.8168], [11.0058, 60.8166], [11.0059, 60.8165], [11.0061, 60.8162], [11.0062, 60.816], [11.0063, 60.8158], [11.0066, 60.8156], [11.0069, 60.8154], [11.007, 60.8154], [11.0071, 60.8153], [11.0072, 60.8151], [11.0073, 60.815], [11.0074, 60.8149], [11.0076, 60.8149], [11.0078, 60.8148], [11.0082, 60.8145], [11.0086, 60.8142], [11.0088, 60.8142], [11.0089, 60.8141], [11.0092, 60.8139], [11.0093, 60.8139], [11.0095, 60.8138], [11.0098, 60.8137], [11.0104, 60.8134], [11.0111, 60.8132], [11.0117, 60.813], [11.012, 60.8129], [11.0123, 60.8128], [11.0126, 60.8127], [11.0129, 60.8126], [11.0133, 60.8125], [11.0135, 60.8124], [11.0137, 60.8123], [11.0141, 60.8122], [11.0144, 60.8121], [11.0148, 60.812], [11.015, 60.8119], [11.0153, 60.8119], [11.0156, 60.8119], [11.016, 60.8118], [11.0162, 60.8118], [11.0163, 60.8117], [11.0164, 60.8117], [11.0165, 60.8117], [11.0167, 60.8116], [11.0169, 60.8116], [11.017, 60.8115], [11.0173, 60.8115], [11.0173, 60.8114], [11.0174, 60.8114], [11.0176, 60.8113], [11.0178, 60.8111], [11.0179, 60.8111], [11.018, 60.811], [11.0184, 60.8109], [11.0186, 60.8108], [11.0187, 60.8108], [11.0188, 60.8108], [11.019, 60.8107], [11.0191, 60.8107], [11.0192, 60.8106], [11.0193, 60.8105], [11.0193, 60.8104], [11.0194, 60.8103], [11.0194, 60.8102], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.8099], [11.0195, 60.8099], [11.0195, 60.8099], [11.0196, 60.8098], [11.0196, 60.8098], [11.0195, 60.8098], [11.0195, 60.8098], [11.0195, 60.8097], [11.0196, 60.8097], [11.0197, 60.8097], [11.0197, 60.8096], [11.0197, 60.8096], [11.0199, 60.8096], [11.02, 60.8096], [11.0201, 60.8096], [11.0203, 60.8095], [11.0205, 60.8094], [11.0207, 60.8093], [11.0209, 60.8093], [11.0211, 60.8092], [11.0211, 60.8091], [11.0211, 60.8091], [11.0211, 60.8091], [11.0212, 60.8091], [11.0213, 60.809], [11.0215, 60.8089], [11.0217, 60.8088], [11.0219, 60.8087], [11.0219, 60.8087], [11.0219, 60.8086], [11.0219, 60.8086], [11.022, 60.8085], [11.022, 60.8084], [11.0219, 60.8083], [11.0219, 60.8082], [11.0218, 60.8081], [11.0218, 60.808], [11.0219, 60.8079], [11.0221, 60.8078], [11.0223, 60.8076], [11.0223, 60.8076], [11.0222, 60.8075], [11.0223, 60.8075], [11.0223, 60.8075], [11.0225, 60.8073], [11.0227, 60.8072], [11.0229, 60.807], [11.0229, 60.8069], [11.0229, 60.8069], [11.023, 60.8069], [11.0231, 60.8068], [11.0235, 60.8067], [11.0237, 60.8065], [11.0239, 60.8064], [11.0242, 60.8062], [11.0244, 60.806], [11.0247, 60.8059], [11.0247, 60.8058], [11.0248, 60.8058], [11.0249, 60.8057], [11.0249, 60.8056], [11.0249, 60.8054], [11.025, 60.8054], [11.025, 60.8053], [11.0251, 60.8052], [11.0251, 60.8051], [11.0251, 60.8051], [11.0251, 60.805], [11.0252, 60.8049], [11.0253, 60.8048], [11.0254, 60.8046], [11.0254, 60.8046], [11.0255, 60.8045], [11.0255, 60.8044], [11.0255, 60.8044], [11.0255, 60.8043], [11.0255, 60.8043], [11.0255, 60.8042], [11.0255, 60.8041], [11.0255, 60.8041], [11.0255, 60.804], [11.0254, 60.8039], [11.0254, 60.8037], [11.0253, 60.8036], [11.0252, 60.8035], [11.0251, 60.8034], [11.025, 60.8033], [11.025, 60.8032], [11.025, 60.8032], [11.0251, 60.8032], [11.0252, 60.8031], [11.0253, 60.8031], [11.0255, 60.8031], [11.0256, 60.803], [11.0257, 60.8029], [11.0258, 60.8028], [11.0258, 60.8028], [11.0259, 60.8027], [11.0259, 60.8026], [11.0259, 60.8025], [11.0259, 60.8024], [11.0259, 60.8023], [11.0258, 60.8021], [11.0258, 60.8021], [11.0258, 60.8019], [11.0257, 60.8018], [11.0257, 60.8017], [11.0256, 60.8016], [11.0256, 60.8015], [11.0255, 60.8015], [11.0255, 60.8014], [11.0254, 60.8013], [11.0254, 60.8012], [11.0253, 60.8012], [11.0252, 60.8011], [11.0251, 60.801], [11.025, 60.8009], [11.0249, 60.8009], [11.0248, 60.8008], [11.0247, 60.8008], [11.0246, 60.8008], [11.0245, 60.8008], [11.0245, 60.8008], [11.0245, 60.8007], [11.0244, 60.8007], [11.0243, 60.8006], [11.0243, 60.8006], [11.0242, 60.8005], [11.0242, 60.8005], [11.0242, 60.8004], [11.0242, 60.8004], [11.0242, 60.8003], [11.0242, 60.8003], [11.0242, 60.8002], [11.0243, 60.8002], [11.0243, 60.8002], [11.0243, 60.8002], [11.0243, 60.8001], [11.0243, 60.8], [11.0244, 60.7999], [11.0244, 60.7998], [11.0244, 60.7998], [11.0244, 60.7997], [11.0244, 60.7997], [11.0243, 60.7996], [11.0243, 60.7996], [11.0243, 60.7995], [11.0243, 60.7994], [11.0242, 60.7994], [11.0242, 60.7994], [11.0242, 60.7993], [11.0242, 60.7993], [11.0241, 60.7993], [11.0241, 60.7992], [11.0241, 60.7992], [11.0241, 60.7992], [11.0241, 60.7991], [11.024, 60.7991], [11.024, 60.799], [11.024, 60.799], [11.0239, 60.799], [11.0239, 60.799], [11.0238, 60.7989], [11.0237, 60.7989], [11.0238, 60.7989], [11.0239, 60.7989], [11.0239, 60.7988], [11.024, 60.7988], [11.0241, 60.7988], [11.0243, 60.7987], [11.0243, 60.7986], [11.0243, 60.7986], [11.0244, 60.7985], [11.0245, 60.7985], [11.0245, 60.7984], [11.0246, 60.7984], [11.0247, 60.7984], [11.0247, 60.7983], [11.0248, 60.7982], [11.0249, 60.7982], [11.025, 60.7981], [11.0251, 60.7981], [11.0253, 60.798], [11.0253, 60.798], [11.0254, 60.798], [11.0255, 60.798], [11.0256, 60.798], [11.0258, 60.798], [11.0259, 60.798], [11.026, 60.798], [11.0261, 60.798], [11.0262, 60.798], [11.0262, 60.7979], [11.0262, 60.7979], [11.0263, 60.7979], [11.0263, 60.7978], [11.0263, 60.7978], [11.0264, 60.7978], [11.0264, 60.7977], [11.0264, 60.7977], [11.0262, 60.7977], [11.0262, 60.7977], [11.0261, 60.7977], [11.0262, 60.7976], [11.0261, 60.7976], [11.0261, 60.7976], [11.0262, 60.7975], [11.0262, 60.7975], [11.0262, 60.7975], [11.0263, 60.7975], [11.0264, 60.7975], [11.0264, 60.7975], [11.0264, 60.7974], [11.0264, 60.7974], [11.0266, 60.7973], [11.0267, 60.7973], [11.0268, 60.7972], [11.0269, 60.7972], [11.0269, 60.7971], [11.027, 60.7971], [11.027, 60.797], [11.027, 60.797], [11.0271, 60.7969], [11.0272, 60.7969], [11.0272, 60.7969], [10.9904, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "100", "sub_div_center": [0.0169, 0.0095]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.8169], [10.9904, 60.8263], [10.9906, 60.8263], [10.9906, 60.8262], [10.9907, 60.8262], [10.9907, 60.8262], [10.9908, 60.8262], [10.9909, 60.8262], [10.9909, 60.8261], [10.9909, 60.826], [10.9909, 60.826], [10.9909, 60.826], [10.991, 60.8259], [10.9911, 60.8259], [10.9913, 60.8258], [10.9915, 60.8258], [10.9915, 60.8258], [10.9915, 60.8258], [10.9916, 60.8258], [10.9916, 60.8258], [10.9917, 60.8258], [10.9918, 60.8258], [10.9918, 60.8258], [10.9918, 60.8258], [10.9919, 60.8258], [10.9919, 60.8258], [10.9919, 60.8257], [10.992, 60.8257], [10.992, 60.8257], [10.9921, 60.8257], [10.9923, 60.8257], [10.9923, 60.8256], [10.9924, 60.8256], [10.9925, 60.8256], [10.9926, 60.8257], [10.9927, 60.8257], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8255], [10.9935, 60.8254], [10.9935, 60.8254], [10.9935, 60.8254], [10.9936, 60.8254], [10.9937, 60.8254], [10.9937, 60.8254], [10.9938, 60.8254], [10.9938, 60.8254], [10.9939, 60.8254], [10.9939, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8253], [10.994, 60.8253], [10.994, 60.8253], [10.994, 60.8253], [10.9941, 60.8253], [10.9942, 60.8253], [10.9942, 60.8253], [10.9942, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9945, 60.8251], [10.9944, 60.8251], [10.9945, 60.825], [10.9945, 60.825], [10.9946, 60.825], [10.9948, 60.8249], [10.9949, 60.8249], [10.995, 60.8249], [10.9951, 60.825], [10.9952, 60.8249], [10.9952, 60.8249], [10.9953, 60.8249], [10.9952, 60.8249], [10.9953, 60.8248], [10.9953, 60.8248], [10.9953, 60.8248], [10.9953, 60.8249], [10.9954, 60.8248], [10.9955, 60.8248], [10.9955, 60.8247], [10.9955, 60.8247], [10.9955, 60.8247], [10.9957, 60.8246], [10.9958, 60.8246], [10.9958, 60.8246], [10.9958, 60.8246], [10.9959, 60.8245], [10.9959, 60.8246], [10.996, 60.8245], [10.9961, 60.8245], [10.9961, 60.8244], [10.9962, 60.8244], [10.9963, 60.8243], [10.9964, 60.8243], [10.9964, 60.8243], [10.9965, 60.8242], [10.9966, 60.8242], [10.9966, 60.8241], [10.9967, 60.8241], [10.9969, 60.8241], [10.9969, 60.8241], [10.9969, 60.824], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.9971, 60.8241], [10.9971, 60.824], [10.9972, 60.824], [10.9973, 60.824], [10.9975, 60.824], [10.9977, 60.824], [10.9978, 60.824], [10.9978, 60.824], [10.9978, 60.8239], [10.9978, 60.824], [10.9979, 60.824], [10.9981, 60.8239], [10.9983, 60.8239], [10.9983, 60.8239], [10.9984, 60.8239], [10.9985, 60.8239], [10.9985, 60.8239], [10.9987, 60.8239], [10.9987, 60.8239], [10.9988, 60.8239], [10.9989, 60.8238], [10.9989, 60.8238], [10.999, 60.8238], [10.9992, 60.8238], [10.9993, 60.8237], [10.9994, 60.8237], [10.9994, 60.8237], [10.9996, 60.8237], [10.9996, 60.8237], [10.9997, 60.8237], [10.9997, 60.8237], [10.9998, 60.8237], [10.9998, 60.8237], [10.9999, 60.8236], [11.0, 60.8236], [11.0, 60.8236], [11.0001, 60.8236], [11.0001, 60.8235], [11.0001, 60.8235], [11.0001, 60.8234], [11.0002, 60.8234], [11.0002, 60.8234], [11.0003, 60.8233], [11.0003, 60.8233], [11.0004, 60.8233], [11.0004, 60.8233], [11.0005, 60.8233], [11.0005, 60.8233], [11.0005, 60.8233], [11.0006, 60.8233], [11.0006, 60.8233], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0007, 60.8231], [11.0007, 60.8231], [11.0008, 60.8231], [11.0008, 60.8231], [11.0008, 60.823], [11.0008, 60.823], [11.0007, 60.823], [11.0007, 60.823], [11.0007, 60.823], [11.0007, 60.8229], [11.0007, 60.8229], [11.0008, 60.8229], [11.0008, 60.8228], [11.0008, 60.8228], [11.0008, 60.8227], [11.0007, 60.8227], [11.0006, 60.8226], [11.0005, 60.8226], [11.0005, 60.8226], [11.0005, 60.8226], [11.0005, 60.8225], [11.0005, 60.8225], [11.0005, 60.8225], [11.0006, 60.8224], [11.0006, 60.8225], [11.0007, 60.8225], [11.0007, 60.8225], [11.0007, 60.8224], [11.0006, 60.8224], [11.0006, 60.8224], [11.0006, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0004, 60.8223], [11.0004, 60.8223], [11.0005, 60.8223], [11.0008, 60.8224], [11.0009, 60.8224], [11.0006, 60.8222], [11.0006, 60.8222], [11.0006, 60.8222], [11.0007, 60.8222], [11.0007, 60.8222], [11.0008, 60.8222], [11.0009, 60.8222], [11.001, 60.8222], [11.0011, 60.8221], [11.0012, 60.8221], [11.0013, 60.8221], [11.0013, 60.822], [11.0015, 60.822], [11.0017, 60.8219], [11.0018, 60.8219], [11.0018, 60.8219], [11.0019, 60.8218], [11.002, 60.8218], [11.0021, 60.8217], [11.0023, 60.8217], [11.0024, 60.8216], [11.0025, 60.8216], [11.0026, 60.8215], [11.0026, 60.8215], [11.0027, 60.8215], [11.0027, 60.8214], [11.0027, 60.8214], [11.0028, 60.8214], [11.0028, 60.8214], [11.0028, 60.8214], [11.0028, 60.8213], [11.0027, 60.8213], [11.0029, 60.8212], [11.0028, 60.8212], [11.0027, 60.8211], [11.0026, 60.8211], [11.0027, 60.8211], [11.0029, 60.8212], [11.0031, 60.8212], [11.0031, 60.8212], [11.0032, 60.8212], [11.0031, 60.8212], [11.0032, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.821], [11.0033, 60.821], [11.0033, 60.821], [11.0033, 60.8211], [11.0034, 60.8211], [11.0036, 60.8211], [11.0037, 60.821], [11.004, 60.821], [11.0041, 60.821], [11.0042, 60.821], [11.0043, 60.821], [11.0045, 60.8209], [11.0047, 60.8209], [11.0049, 60.8209], [11.005, 60.8208], [11.0052, 60.8208], [11.0053, 60.8208], [11.0054, 60.8207], [11.0056, 60.8207], [11.0058, 60.8206], [11.0059, 60.8206], [11.006, 60.8206], [11.006, 60.8205], [11.0059, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.0061, 60.8205], [11.0062, 60.8204], [11.0062, 60.8204], [11.0063, 60.8204], [11.0063, 60.8204], [11.0063, 60.8203], [11.0063, 60.8203], [11.0064, 60.8203], [11.0065, 60.8203], [11.0065, 60.8203], [11.0066, 60.8203], [11.0066, 60.8203], [11.0067, 60.8203], [11.0068, 60.8203], [11.0069, 60.8202], [11.007, 60.8202], [11.007, 60.8202], [11.007, 60.8202], [11.007, 60.8201], [11.0071, 60.8201], [11.0071, 60.8201], [11.0072, 60.8201], [11.0072, 60.8201], [11.0072, 60.82], [11.0073, 60.82], [11.0073, 60.82], [11.0073, 60.8199], [11.0073, 60.8199], [11.0073, 60.8198], [11.0072, 60.8195], [11.0071, 60.8193], [11.0071, 60.8192], [11.0068, 60.8188], [11.0067, 60.8187], [11.0066, 60.8186], [11.0065, 60.8186], [11.0063, 60.8183], [11.0061, 60.8181], [11.0059, 60.8178], [11.0057, 60.8176], [11.0056, 60.8174], [11.0056, 60.8173], [11.0055, 60.8172], [11.0056, 60.817], [11.0056, 60.8169], [11.0056, 60.8169], [10.9904, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "101", "sub_div_center": [0.0025, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0279, 60.7969], [11.0279, 60.7969], [11.028, 60.7969], [11.028, 60.797], [11.028, 60.797], [11.028, 60.7971], [11.028, 60.7972], [11.028, 60.7972], [11.0281, 60.7972], [11.0282, 60.7973], [11.0282, 60.7973], [11.0283, 60.7974], [11.0285, 60.7974], [11.0285, 60.7974], [11.0287, 60.7974], [11.0287, 60.7974], [11.0288, 60.7974], [11.0289, 60.7974], [11.0289, 60.7974], [11.0289, 60.7974], [11.029, 60.7974], [11.0291, 60.7974], [11.0292, 60.7973], [11.0293, 60.7973], [11.0294, 60.7972], [11.0295, 60.7972], [11.0296, 60.7972], [11.0297, 60.7971], [11.0298, 60.7972], [11.0299, 60.7971], [11.0299, 60.7971], [11.0299, 60.7971], [11.0301, 60.7971], [11.0301, 60.7971], [11.0301, 60.797], [11.0303, 60.7971], [11.0304, 60.7971], [11.0304, 60.7971], [11.0304, 60.7969], [11.0279, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "102", "sub_div_center": [0.04, 0.0174]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0701, 60.6395], [11.07, 60.6396], [11.0698, 60.6397], [11.0698, 60.6397], [11.0697, 60.6397], [11.0694, 60.6398], [11.0692, 60.6398], [11.0686, 60.64], [11.0684, 60.6401], [11.0683, 60.6402], [11.068, 60.6402], [11.0678, 60.6403], [11.0675, 60.6404], [11.0674, 60.6404], [11.0674, 60.6405], [11.0674, 60.6405], [11.0674, 60.6406], [11.0672, 60.6406], [11.0671, 60.6406], [11.0669, 60.6406], [11.0668, 60.6407], [11.0666, 60.6407], [11.0661, 60.6408], [11.0659, 60.6409], [11.0656, 60.641], [11.0651, 60.641], [11.065, 60.6411], [11.065, 60.6411], [11.065, 60.6412], [11.0649, 60.6412], [11.0648, 60.6412], [11.0648, 60.6412], [11.0648, 60.6412], [11.0647, 60.6412], [11.0644, 60.6412], [11.0644, 60.6412], [11.0644, 60.6413], [11.0644, 60.6413], [11.0645, 60.6413], [11.0647, 60.6413], [11.0649, 60.6413], [11.065, 60.6413], [11.065, 60.6413], [11.065, 60.6413], [11.0646, 60.6414], [11.0645, 60.6414], [11.0644, 60.6414], [11.0643, 60.6413], [11.0642, 60.6413], [11.064, 60.6413], [11.0634, 60.6413], [11.0626, 60.6415], [11.0619, 60.6416], [11.0619, 60.6416], [11.0618, 60.6416], [11.0614, 60.6416], [11.0613, 60.6417], [11.0612, 60.6417], [11.0612, 60.6418], [11.0612, 60.6418], [11.0612, 60.6419], [11.0612, 60.642], [11.0612, 60.642], [11.0611, 60.6419], [11.0611, 60.6419], [11.0607, 60.6419], [11.0605, 60.6419], [11.0604, 60.6419], [11.06, 60.642], [11.0599, 60.642], [11.0596, 60.6421], [11.0596, 60.6422], [11.0595, 60.6422], [11.0596, 60.6422], [11.0596, 60.6423], [11.0596, 60.6423], [11.0594, 60.6422], [11.0593, 60.6422], [11.0587, 60.6424], [11.0583, 60.6425], [11.0581, 60.6425], [11.0574, 60.6426], [11.0568, 60.6427], [11.0565, 60.6427], [11.0562, 60.6427], [11.0559, 60.6427], [11.0555, 60.6427], [11.0551, 60.6427], [11.0544, 60.6427], [11.0541, 60.6427], [11.0534, 60.6427], [11.0534, 60.6427], [11.0533, 60.6427], [11.0533, 60.6428], [11.0532, 60.6428], [11.0531, 60.6428], [11.053, 60.6428], [11.0529, 60.6428], [11.0528, 60.6428], [11.0525, 60.6428], [11.0523, 60.6428], [11.0514, 60.6429], [11.0507, 60.643], [11.0504, 60.643], [11.0492, 60.6431], [11.0486, 60.6431], [11.0484, 60.6431], [11.0483, 60.6431], [11.0482, 60.6431], [11.048, 60.6431], [11.0478, 60.6432], [11.0477, 60.6433], [11.0477, 60.6433], [11.0477, 60.6434], [11.0476, 60.6434], [11.0475, 60.6433], [11.0474, 60.6433], [11.0474, 60.6433], [11.0472, 60.6433], [11.0472, 60.6433], [11.047, 60.6433], [11.0465, 60.6434], [11.0465, 60.6434], [11.0465, 60.6434], [11.0465, 60.6435], [11.0464, 60.6435], [11.0463, 60.6435], [11.0461, 60.6431], [11.046, 60.6431], [11.046, 60.6431], [11.0459, 60.6431], [11.0458, 60.6431], [11.0457, 60.6431], [11.0458, 60.6431], [11.0456, 60.6431], [11.0458, 60.6436], [11.0458, 60.6437], [11.0461, 60.6441], [11.0465, 60.6449], [11.0466, 60.6449], [11.0482, 60.6446], [11.0483, 60.6446], [11.0482, 60.6446], [11.0464, 60.645], [11.046, 60.6444], [11.0459, 60.6443], [11.0459, 60.6443], [11.0455, 60.6438], [11.0454, 60.6437], [11.0451, 60.6437], [11.0449, 60.6437], [11.0446, 60.6437], [11.0445, 60.6438], [11.0444, 60.6438], [11.0442, 60.6439], [11.0441, 60.6439], [11.0439, 60.6439], [11.0436, 60.6441], [11.0432, 60.6444], [11.0427, 60.6446], [11.0425, 60.6448], [11.0422, 60.6449], [11.0416, 60.6453], [11.0412, 60.6456], [11.0408, 60.6458], [11.0406, 60.6459], [11.0402, 60.6461], [11.04, 60.6462], [11.0395, 60.6464], [11.0393, 60.6464], [11.0388, 60.6466], [11.0384, 60.6467], [11.0382, 60.6468], [11.0377, 60.6469], [11.0371, 60.6471], [11.0369, 60.6471], [11.0365, 60.6472], [11.0365, 60.6473], [11.0364, 60.6474], [11.0363, 60.6475], [11.036, 60.6475], [11.036, 60.6476], [11.036, 60.6476], [11.036, 60.6476], [11.036, 60.6477], [11.0362, 60.6478], [11.0362, 60.6478], [11.0362, 60.6478], [11.0362, 60.6479], [11.0362, 60.6479], [11.0361, 60.6479], [11.036, 60.6478], [11.0358, 60.6477], [11.0357, 60.6476], [11.0354, 60.6476], [11.035, 60.6477], [11.0343, 60.6478], [11.0336, 60.6478], [11.0335, 60.6479], [11.0333, 60.6479], [11.0332, 60.648], [11.0328, 60.6481], [11.0327, 60.6483], [11.0326, 60.6483], [11.0327, 60.6483], [11.0327, 60.6483], [11.0328, 60.6483], [11.0328, 60.6484], [11.0327, 60.6484], [11.0326, 60.6484], [11.0326, 60.6485], [11.0327, 60.6486], [11.0327, 60.6486], [11.0326, 60.6486], [11.0324, 60.6485], [11.0324, 60.6485], [11.0324, 60.6485], [11.0323, 60.6484], [11.0323, 60.6484], [11.0322, 60.6485], [11.0321, 60.6485], [11.0319, 60.6485], [11.0318, 60.6485], [11.0315, 60.6484], [11.0305, 60.6482], [11.0304, 60.6482], [11.0304, 60.6569], [11.0704, 60.6569], [11.0704, 60.6394], [11.0701, 60.6395]]]}}, {"type": "Feature", "properties": {"sub_div_id": "103", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6569], [11.0304, 60.6769], [11.0704, 60.6769], [11.0704, 60.6569], [11.0304, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "104", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6769], [11.0304, 60.6969], [11.0704, 60.6969], [11.0704, 60.6769], [11.0304, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "105", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6969], [11.0304, 60.7169], [11.0704, 60.7169], [11.0704, 60.6969], [11.0304, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "106", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7169], [11.0304, 60.7369], [11.0704, 60.7369], [11.0704, 60.7169], [11.0304, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "107", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7369], [11.0304, 60.7569], [11.0704, 60.7569], [11.0704, 60.7369], [11.0304, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "108", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7569], [11.0304, 60.7769], [11.0704, 60.7769], [11.0704, 60.7569], [11.0304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "109", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7769], [11.0304, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0321, 60.7968], [11.0321, 60.7968], [11.032, 60.7967], [11.032, 60.7967], [11.032, 60.7967], [11.0321, 60.7967], [11.0322, 60.7967], [11.0323, 60.7968], [11.0324, 60.7968], [11.0325, 60.7969], [11.0326, 60.7969], [11.0327, 60.7968], [11.0329, 60.7968], [11.033, 60.7968], [11.0331, 60.7968], [11.0333, 60.7968], [11.0334, 60.7968], [11.0335, 60.7968], [11.0336, 60.7968], [11.0337, 60.7967], [11.0339, 60.7967], [11.034, 60.7967], [11.034, 60.7967], [11.0341, 60.7967], [11.0341, 60.7967], [11.0342, 60.7967], [11.0343, 60.7967], [11.0344, 60.7967], [11.0345, 60.7967], [11.0345, 60.7967], [11.0346, 60.7967], [11.0347, 60.7968], [11.0348, 60.7968], [11.0348, 60.7968], [11.0349, 60.7968], [11.0351, 60.7968], [11.0352, 60.7968], [11.0353, 60.7968], [11.0354, 60.7967], [11.0355, 60.7967], [11.0355, 60.7967], [11.0356, 60.7967], [11.0356, 60.7968], [11.0357, 60.7968], [11.0359, 60.7967], [11.0361, 60.7967], [11.0362, 60.7966], [11.0363, 60.7966], [11.0364, 60.7966], [11.0364, 60.7965], [11.0364, 60.7965], [11.0364, 60.7964], [11.0363, 60.7964], [11.0364, 60.7964], [11.0364, 60.7963], [11.0365, 60.7963], [11.0365, 60.7962], [11.0365, 60.7962], [11.0366, 60.7961], [11.0367, 60.7961], [11.0368, 60.796], [11.037, 60.796], [11.0371, 60.796], [11.0373, 60.7959], [11.0375, 60.7959], [11.0376, 60.7959], [11.0378, 60.7958], [11.038, 60.7958], [11.0383, 60.7957], [11.0384, 60.7957], [11.0385, 60.7956], [11.0383, 60.7956], [11.0383, 60.7956], [11.0383, 60.7955], [11.0383, 60.7955], [11.0384, 60.7954], [11.0385, 60.7953], [11.0385, 60.7953], [11.0385, 60.7953], [11.0386, 60.7952], [11.0386, 60.7952], [11.0386, 60.7951], [11.0386, 60.7951], [11.0386, 60.7951], [11.0385, 60.7951], [11.0386, 60.795], [11.0386, 60.795], [11.0385, 60.7949], [11.0383, 60.7947], [11.0382, 60.7945], [11.038, 60.7943], [11.038, 60.7942], [11.0379, 60.7941], [11.0378, 60.7941], [11.0377, 60.794], [11.0375, 60.794], [11.0372, 60.7939], [11.037, 60.7938], [11.0367, 60.7937], [11.0366, 60.7938], [11.0365, 60.7938], [11.0365, 60.7938], [11.0364, 60.7938], [11.0364, 60.7938], [11.0363, 60.7937], [11.0363, 60.7936], [11.0361, 60.7935], [11.036, 60.7935], [11.0359, 60.7934], [11.0358, 60.7933], [11.0355, 60.7932], [11.0353, 60.7932], [11.0352, 60.7931], [11.0352, 60.7931], [11.0351, 60.7931], [11.0351, 60.7931], [11.0351, 60.7931], [11.0351, 60.793], [11.0349, 60.7928], [11.0348, 60.7928], [11.0347, 60.7927], [11.0345, 60.7926], [11.0342, 60.7923], [11.0342, 60.7923], [11.034, 60.7922], [11.0338, 60.7921], [11.0335, 60.792], [11.0334, 60.792], [11.0334, 60.7919], [11.0333, 60.7919], [11.0334, 60.7919], [11.0336, 60.7919], [11.0337, 60.7919], [11.0338, 60.7919], [11.034, 60.7919], [11.0343, 60.7919], [11.0344, 60.7919], [11.0345, 60.7919], [11.0345, 60.7918], [11.0346, 60.7918], [11.0346, 60.7919], [11.035, 60.7918], [11.0353, 60.7918], [11.0355, 60.7918], [11.0356, 60.7917], [11.0357, 60.7917], [11.0358, 60.7917], [11.0358, 60.7916], [11.0358, 60.7916], [11.0358, 60.7916], [11.0358, 60.7915], [11.0358, 60.7915], [11.0359, 60.7915], [11.036, 60.7915], [11.0362, 60.7915], [11.0363, 60.7915], [11.0364, 60.7915], [11.0366, 60.7914], [11.0369, 60.7914], [11.0371, 60.7914], [11.0372, 60.7913], [11.0373, 60.7914], [11.0375, 60.7913], [11.0377, 60.7913], [11.0378, 60.7913], [11.038, 60.7913], [11.0381, 60.7912], [11.0383, 60.7912], [11.0384, 60.7911], [11.0385, 60.7911], [11.0387, 60.7911], [11.039, 60.7911], [11.0391, 60.7911], [11.0392, 60.7911], [11.0394, 60.791], [11.0396, 60.7911], [11.0397, 60.7911], [11.0398, 60.7911], [11.0401, 60.7911], [11.0404, 60.7912], [11.0406, 60.7912], [11.0408, 60.7912], [11.041, 60.7912], [11.0411, 60.7913], [11.0411, 60.7912], [11.0414, 60.7913], [11.0416, 60.7913], [11.0418, 60.7914], [11.0422, 60.7915], [11.0425, 60.7915], [11.0431, 60.7916], [11.0435, 60.7917], [11.0435, 60.7917], [11.0437, 60.7917], [11.0438, 60.7918], [11.0441, 60.7918], [11.0444, 60.7919], [11.0446, 60.7919], [11.045, 60.7919], [11.0452, 60.7919], [11.0454, 60.792], [11.0455, 60.792], [11.0457, 60.792], [11.0459, 60.7921], [11.046, 60.7921], [11.0461, 60.7921], [11.0464, 60.7922], [11.0466, 60.7922], [11.0469, 60.7923], [11.0473, 60.7923], [11.0475, 60.7923], [11.0478, 60.7923], [11.0482, 60.7924], [11.0486, 60.7924], [11.0489, 60.7924], [11.0492, 60.7924], [11.0497, 60.7925], [11.0503, 60.7925], [11.0509, 60.7925], [11.0517, 60.7925], [11.0524, 60.7925], [11.053, 60.7925], [11.0532, 60.7924], [11.0536, 60.7924], [11.0539, 60.7923], [11.0539, 60.7924], [11.0539, 60.7924], [11.0534, 60.7924], [11.0534, 60.7925], [11.0532, 60.7925], [11.0531, 60.7925], [11.053, 60.7925], [11.0529, 60.7926], [11.053, 60.7926], [11.053, 60.7927], [11.0532, 60.7928], [11.0532, 60.7928], [11.0531, 60.7928], [11.0532, 60.7929], [11.0532, 60.793], [11.0534, 60.7931], [11.0537, 60.7932], [11.054, 60.7934], [11.0543, 60.7935], [11.0544, 60.7935], [11.0545, 60.7936], [11.0546, 60.7936], [11.0547, 60.7936], [11.0549, 60.7936], [11.0552, 60.7936], [11.0552, 60.7936], [11.0555, 60.7937], [11.0558, 60.7937], [11.0564, 60.7937], [11.0571, 60.7938], [11.0574, 60.7938], [11.0576, 60.7938], [11.0578, 60.7937], [11.058, 60.7937], [11.0583, 60.7937], [11.0587, 60.7936], [11.059, 60.7936], [11.0592, 60.7935], [11.0593, 60.7935], [11.0594, 60.7935], [11.0595, 60.7935], [11.0596, 60.7934], [11.0596, 60.7935], [11.0598, 60.7934], [11.0598, 60.7934], [11.0599, 60.7934], [11.06, 60.7934], [11.06, 60.7934], [11.0601, 60.7934], [11.0601, 60.7934], [11.0603, 60.7933], [11.0605, 60.7933], [11.0606, 60.7932], [11.0607, 60.7932], [11.0609, 60.7931], [11.0609, 60.7931], [11.0609, 60.793], [11.0611, 60.7928], [11.0614, 60.7926], [11.0618, 60.7925], [11.0619, 60.7924], [11.0621, 60.7923], [11.0621, 60.7923], [11.0622, 60.7923], [11.0622, 60.7922], [11.0623, 60.7922], [11.0624, 60.7922], [11.0624, 60.7923], [11.0625, 60.7923], [11.0625, 60.7923], [11.0626, 60.7923], [11.0626, 60.7923], [11.0626, 60.7923], [11.0625, 60.7923], [11.0625, 60.7924], [11.0625, 60.7924], [11.0625, 60.7924], [11.0625, 60.7925], [11.0626, 60.7925], [11.0627, 60.7926], [11.0628, 60.7926], [11.063, 60.7927], [11.0632, 60.7927], [11.0635, 60.7928], [11.0636, 60.7928], [11.0637, 60.7928], [11.0639, 60.7927], [11.064, 60.7927], [11.0641, 60.7927], [11.0642, 60.7927], [11.0643, 60.7927], [11.0645, 60.7927], [11.0645, 60.7927], [11.0647, 60.7927], [11.0647, 60.7927], [11.0649, 60.7927], [11.0651, 60.7927], [11.0654, 60.7927], [11.0656, 60.7927], [11.0658, 60.7928], [11.0659, 60.7928], [11.066, 60.7928], [11.0661, 60.7929], [11.0662, 60.7929], [11.0663, 60.7929], [11.0664, 60.7929], [11.0666, 60.7928], [11.0668, 60.7927], [11.067, 60.7927], [11.0669, 60.7927], [11.0673, 60.7925], [11.0676, 60.7924], [11.0677, 60.7924], [11.0678, 60.7925], [11.0677, 60.7925], [11.0677, 60.7925], [11.0676, 60.7926], [11.0675, 60.7926], [11.0673, 60.7927], [11.0673, 60.7927], [11.0672, 60.7927], [11.0672, 60.7927], [11.0672, 60.7927], [11.0671, 60.7928], [11.067, 60.7928], [11.0671, 60.7929], [11.067, 60.7929], [11.0671, 60.7929], [11.0671, 60.7929], [11.067, 60.793], [11.0669, 60.793], [11.0669, 60.793], [11.0669, 60.793], [11.0669, 60.7931], [11.0669, 60.7931], [11.0669, 60.7931], [11.0669, 60.7931], [11.0675, 60.7929], [11.0676, 60.793], [11.0671, 60.7932], [11.0674, 60.7934], [11.0677, 60.7935], [11.068, 60.7935], [11.0682, 60.7935], [11.0685, 60.7935], [11.0686, 60.7936], [11.069, 60.7935], [11.0694, 60.7935], [11.0698, 60.7935], [11.0699, 60.7935], [11.0699, 60.7934], [11.0697, 60.793], [11.0696, 60.793], [11.0695, 60.7929], [11.0694, 60.7929], [11.069, 60.7929], [11.0686, 60.7929], [11.0684, 60.7929], [11.0684, 60.7929], [11.0684, 60.7928], [11.0685, 60.7928], [11.0689, 60.7928], [11.0691, 60.7928], [11.0694, 60.7928], [11.0696, 60.7928], [11.0699, 60.7927], [11.0699, 60.7927], [11.0703, 60.7927], [11.0704, 60.7926], [11.0704, 60.7899], [11.0704, 60.7899], [11.0704, 60.79], [11.0704, 60.79], [11.0704, 60.79], [11.0703, 60.79], [11.0703, 60.7899], [11.0702, 60.7898], [11.0702, 60.7898], [11.0699, 60.7897], [11.0696, 60.7896], [11.069, 60.7894], [11.0684, 60.7892], [11.0681, 60.7891], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.7889], [11.0679, 60.7888], [11.0684, 60.7883], [11.0687, 60.7881], [11.0688, 60.7879], [11.069, 60.7878], [11.0694, 60.7876], [11.0695, 60.7875], [11.0698, 60.7874], [11.07, 60.7874], [11.0702, 60.7875], [11.0704, 60.7875], [11.0704, 60.7769], [11.0304, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "110", "sub_div_center": [0.0017, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7969], [11.0304, 60.7971], [11.0306, 60.7971], [11.0307, 60.7971], [11.0309, 60.7971], [11.0312, 60.7971], [11.0314, 60.7971], [11.0315, 60.7971], [11.0317, 60.797], [11.0318, 60.797], [11.032, 60.797], [11.032, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0304, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "111", "sub_div_center": [0.0002, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0325, 60.7969], [11.0325, 60.7969], [11.0326, 60.7969], [11.0326, 60.7969], [11.0325, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "112", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6569], [11.1104, 60.6569], [11.1104, 60.6369], [11.0763, 60.6369], [11.076, 60.637], [11.0752, 60.6375], [11.0748, 60.6378], [11.0747, 60.6379], [11.0745, 60.638], [11.0742, 60.6381], [11.0737, 60.6383], [11.0719, 60.6389], [11.0713, 60.6391], [11.0708, 60.6393], [11.0705, 60.6394], [11.0704, 60.6394], [11.0704, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "113", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6569], [11.0704, 60.6769], [11.1104, 60.6769], [11.1104, 60.6569], [11.0704, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "114", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6769], [11.0704, 60.6969], [11.109, 60.6969], [11.109, 60.6968], [11.1092, 60.6967], [11.1093, 60.6967], [11.1095, 60.6965], [11.1096, 60.6965], [11.1096, 60.6964], [11.1098, 60.6963], [11.1098, 60.6962], [11.1099, 60.6961], [11.1098, 60.696], [11.1098, 60.696], [11.1099, 60.6959], [11.1099, 60.6958], [11.11, 60.6957], [11.1099, 60.6957], [11.1099, 60.6956], [11.1099, 60.6956], [11.1099, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.1099, 60.6955], [11.1098, 60.6956], [11.1097, 60.6956], [11.1097, 60.6956], [11.1097, 60.6956], [11.1098, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6954], [11.1099, 60.6954], [11.1098, 60.6954], [11.1098, 60.6954], [11.1098, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6955], [11.1097, 60.6955], [11.1097, 60.6955], [11.1096, 60.6955], [11.1096, 60.6955], [11.1096, 60.6954], [11.1096, 60.6954], [11.1094, 60.6954], [11.1093, 60.6954], [11.1093, 60.6955], [11.1093, 60.6955], [11.1093, 60.6955], [11.1092, 60.6954], [11.1092, 60.6954], [11.1093, 60.6954], [11.1093, 60.6954], [11.1093, 60.6954], [11.1092, 60.6953], [11.1092, 60.6953], [11.1092, 60.6952], [11.1092, 60.6952], [11.1091, 60.6952], [11.109, 60.6952], [11.109, 60.6952], [11.109, 60.6952], [11.1089, 60.6951], [11.1089, 60.6951], [11.1089, 60.6951], [11.1089, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1087, 60.6949], [11.1087, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1085, 60.6949], [11.1086, 60.6949], [11.1087, 60.6948], [11.1087, 60.6947], [11.1086, 60.6946], [11.1086, 60.6946], [11.1086, 60.6945], [11.1086, 60.6945], [11.1086, 60.6944], [11.1086, 60.6944], [11.1086, 60.6944], [11.1085, 60.6944], [11.1084, 60.6943], [11.1084, 60.6943], [11.1083, 60.6943], [11.1083, 60.6942], [11.1083, 60.6942], [11.1083, 60.6941], [11.1084, 60.6941], [11.1083, 60.694], [11.1082, 60.694], [11.1082, 60.6939], [11.1082, 60.6938], [11.1081, 60.6937], [11.1081, 60.6937], [11.1081, 60.6936], [11.1081, 60.6936], [11.1081, 60.6936], [11.1081, 60.6935], [11.1082, 60.6934], [11.1083, 60.6932], [11.1084, 60.6932], [11.1085, 60.693], [11.1086, 60.6929], [11.1087, 60.6929], [11.1088, 60.6929], [11.1088, 60.6928], [11.1087, 60.6928], [11.1087, 60.6927], [11.1088, 60.6927], [11.1089, 60.6926], [11.1092, 60.6926], [11.1092, 60.6926], [11.1094, 60.6926], [11.1096, 60.6925], [11.1098, 60.6925], [11.1101, 60.6925], [11.1102, 60.6924], [11.1103, 60.6924], [11.1104, 60.6923], [11.1104, 60.6923], [11.1104, 60.6769], [11.0704, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "115", "sub_div_center": [0.0387, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6969], [11.0704, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.1048, 60.7168], [11.1048, 60.7168], [11.1048, 60.7167], [11.1047, 60.7167], [11.1047, 60.7167], [11.1047, 60.7167], [11.1046, 60.7166], [11.1046, 60.7166], [11.1045, 60.7166], [11.1044, 60.7165], [11.1043, 60.7165], [11.1042, 60.7165], [11.1042, 60.7166], [11.1041, 60.7166], [11.104, 60.7167], [11.1039, 60.7168], [11.1039, 60.7168], [11.1038, 60.7168], [11.1037, 60.7168], [11.1037, 60.7168], [11.1037, 60.7167], [11.1037, 60.7167], [11.1037, 60.7166], [11.1037, 60.7165], [11.1037, 60.7165], [11.1038, 60.7164], [11.1038, 60.7164], [11.1038, 60.7164], [11.1038, 60.7163], [11.1039, 60.7163], [11.104, 60.7162], [11.1041, 60.7162], [11.1042, 60.7162], [11.1043, 60.7161], [11.1044, 60.7161], [11.1045, 60.7161], [11.1046, 60.7162], [11.1048, 60.7162], [11.1048, 60.7162], [11.105, 60.7162], [11.1051, 60.7162], [11.1054, 60.7162], [11.1055, 60.7161], [11.1054, 60.7161], [11.1055, 60.7161], [11.1055, 60.716], [11.1055, 60.7159], [11.1056, 60.7159], [11.1056, 60.7158], [11.1055, 60.7158], [11.1055, 60.7158], [11.1056, 60.7157], [11.1056, 60.7156], [11.1056, 60.7156], [11.1056, 60.7155], [11.1055, 60.7155], [11.1055, 60.7154], [11.1055, 60.7153], [11.1055, 60.7153], [11.1055, 60.7152], [11.1056, 60.7152], [11.1056, 60.7151], [11.1056, 60.7151], [11.1055, 60.715], [11.1055, 60.715], [11.1055, 60.7149], [11.1055, 60.7149], [11.1053, 60.7149], [11.1052, 60.7149], [11.1052, 60.7149], [11.1052, 60.7149], [11.1052, 60.7148], [11.1052, 60.7147], [11.1052, 60.7147], [11.1052, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7148], [11.1052, 60.7148], [11.1052, 60.7149], [11.1052, 60.7149], [11.1053, 60.7149], [11.1056, 60.7149], [11.1056, 60.7149], [11.1057, 60.7149], [11.1057, 60.7148], [11.1058, 60.7148], [11.1058, 60.7148], [11.1058, 60.7147], [11.1058, 60.7146], [11.1059, 60.7146], [11.106, 60.7145], [11.1061, 60.7145], [11.1062, 60.7144], [11.1062, 60.7144], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7142], [11.1062, 60.7142], [11.1061, 60.7142], [11.1061, 60.7142], [11.1061, 60.7141], [11.1062, 60.7141], [11.1062, 60.7141], [11.1062, 60.7141], [11.1061, 60.714], [11.106, 60.714], [11.1059, 60.7141], [11.1056, 60.7141], [11.1052, 60.7141], [11.1051, 60.7141], [11.105, 60.7141], [11.105, 60.7141], [11.1051, 60.7141], [11.1052, 60.7141], [11.1055, 60.714], [11.106, 60.714], [11.1059, 60.714], [11.1058, 60.7137], [11.1056, 60.7135], [11.1054, 60.7133], [11.1051, 60.713], [11.104, 60.7132], [11.1041, 60.7132], [11.1042, 60.7133], [11.1042, 60.7133], [11.104, 60.7132], [11.104, 60.7132], [11.104, 60.7133], [11.1042, 60.7135], [11.1044, 60.7138], [11.1045, 60.7139], [11.1046, 60.714], [11.1047, 60.7141], [11.1047, 60.7141], [11.1047, 60.7141], [11.1046, 60.7141], [11.1046, 60.7141], [11.1045, 60.7141], [11.1045, 60.714], [11.1044, 60.714], [11.1044, 60.7139], [11.1043, 60.7139], [11.1043, 60.7138], [11.1042, 60.7137], [11.104, 60.7136], [11.1039, 60.7135], [11.1039, 60.7135], [11.1038, 60.7134], [11.1037, 60.7134], [11.1036, 60.7135], [11.1035, 60.7134], [11.1034, 60.7134], [11.1033, 60.7134], [11.1032, 60.7133], [11.1031, 60.7132], [11.103, 60.7131], [11.103, 60.7131], [11.103, 60.713], [11.103, 60.7129], [11.103, 60.7128], [11.103, 60.7128], [11.1031, 60.7128], [11.103, 60.7128], [11.1031, 60.7127], [11.1031, 60.7128], [11.1032, 60.7128], [11.1032, 60.7127], [11.1033, 60.7127], [11.1033, 60.7127], [11.1033, 60.7126], [11.1034, 60.7125], [11.1036, 60.7125], [11.1037, 60.7126], [11.1037, 60.7126], [11.1037, 60.7126], [11.1038, 60.7127], [11.1039, 60.7128], [11.104, 60.7128], [11.1041, 60.7128], [11.1044, 60.7127], [11.1045, 60.7127], [11.1047, 60.7127], [11.1048, 60.7127], [11.105, 60.7127], [11.105, 60.7126], [11.105, 60.7126], [11.105, 60.7126], [11.1049, 60.7126], [11.1049, 60.7125], [11.1048, 60.7125], [11.1047, 60.7124], [11.1047, 60.7123], [11.1047, 60.7123], [11.1047, 60.7122], [11.1047, 60.7122], [11.1046, 60.7122], [11.1046, 60.7122], [11.1045, 60.7122], [11.1044, 60.7122], [11.1044, 60.7122], [11.1044, 60.7122], [11.1045, 60.7122], [11.1046, 60.7121], [11.1046, 60.7121], [11.1046, 60.7121], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.7119], [11.1046, 60.7119], [11.1046, 60.7119], [11.1046, 60.7119], [11.1045, 60.7118], [11.1044, 60.7117], [11.1044, 60.7116], [11.1043, 60.7115], [11.1042, 60.7115], [11.1042, 60.7114], [11.1042, 60.7114], [11.1042, 60.7114], [11.1041, 60.7113], [11.1041, 60.7113], [11.1041, 60.7113], [11.1039, 60.7113], [11.1039, 60.7113], [11.1039, 60.7113], [11.104, 60.7113], [11.104, 60.7112], [11.1039, 60.7112], [11.104, 60.7112], [11.104, 60.7111], [11.1039, 60.7111], [11.1038, 60.7111], [11.1037, 60.7111], [11.1035, 60.711], [11.1034, 60.711], [11.1032, 60.711], [11.1031, 60.711], [11.1029, 60.711], [11.1027, 60.711], [11.1025, 60.711], [11.1025, 60.711], [11.1024, 60.7108], [11.1023, 60.7107], [11.1023, 60.7106], [11.1023, 60.7106], [11.1023, 60.7105], [11.1024, 60.7104], [11.1024, 60.7104], [11.1025, 60.7103], [11.1026, 60.7103], [11.1027, 60.7103], [11.1028, 60.7103], [11.1029, 60.7102], [11.1029, 60.7102], [11.1029, 60.7102], [11.1029, 60.7101], [11.1029, 60.7101], [11.103, 60.7101], [11.1031, 60.7101], [11.1031, 60.7101], [11.1032, 60.71], [11.1033, 60.71], [11.1033, 60.71], [11.1033, 60.7099], [11.1033, 60.7099], [11.1033, 60.7099], [11.1034, 60.7099], [11.1034, 60.7099], [11.1034, 60.7099], [11.1036, 60.7099], [11.1037, 60.7099], [11.1037, 60.7099], [11.1038, 60.7099], [11.1038, 60.7099], [11.1038, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.104, 60.7097], [11.1041, 60.7097], [11.1041, 60.7097], [11.1042, 60.7097], [11.1042, 60.7096], [11.1042, 60.7096], [11.1043, 60.7096], [11.1044, 60.7095], [11.1044, 60.7095], [11.1045, 60.7094], [11.1045, 60.7094], [11.1046, 60.7093], [11.1046, 60.7093], [11.1046, 60.7092], [11.1047, 60.7092], [11.1047, 60.7091], [11.1046, 60.7091], [11.1046, 60.709], [11.1045, 60.709], [11.1046, 60.709], [11.1046, 60.7089], [11.1047, 60.7089], [11.1047, 60.7089], [11.1047, 60.7089], [11.1048, 60.7089], [11.1048, 60.7088], [11.1048, 60.7088], [11.1049, 60.7088], [11.105, 60.7088], [11.105, 60.7087], [11.105, 60.7087], [11.105, 60.7087], [11.105, 60.7086], [11.105, 60.7086], [11.105, 60.7085], [11.105, 60.7085], [11.1049, 60.7084], [11.1049, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1049, 60.7084], [11.1049, 60.7083], [11.1049, 60.7082], [11.1048, 60.7082], [11.1047, 60.7081], [11.1046, 60.708], [11.1045, 60.7079], [11.1045, 60.7079], [11.1044, 60.7078], [11.1042, 60.7077], [11.1041, 60.7076], [11.104, 60.7076], [11.1039, 60.7075], [11.1038, 60.7074], [11.1037, 60.7074], [11.1035, 60.7073], [11.1033, 60.7072], [11.1033, 60.7072], [11.1032, 60.7071], [11.1031, 60.707], [11.103, 60.707], [11.103, 60.7069], [11.1029, 60.7068], [11.1028, 60.7067], [11.1027, 60.7066], [11.1026, 60.7065], [11.1024, 60.7064], [11.1023, 60.7063], [11.1022, 60.7062], [11.1021, 60.7061], [11.1019, 60.706], [11.1019, 60.706], [11.1018, 60.7059], [11.1019, 60.7058], [11.1019, 60.7058], [11.102, 60.7057], [11.1021, 60.7057], [11.1022, 60.7056], [11.1023, 60.7055], [11.1025, 60.7054], [11.1026, 60.7053], [11.1026, 60.7053], [11.1027, 60.7053], [11.1027, 60.7053], [11.1028, 60.7053], [11.1027, 60.7052], [11.1028, 60.7051], [11.1029, 60.7051], [11.103, 60.7051], [11.1031, 60.705], [11.1032, 60.7049], [11.1033, 60.7049], [11.1033, 60.7048], [11.1034, 60.7048], [11.1035, 60.7048], [11.1036, 60.7047], [11.1036, 60.7047], [11.1037, 60.7047], [11.1038, 60.7047], [11.1039, 60.7048], [11.104, 60.7048], [11.1041, 60.7048], [11.104, 60.7047], [11.1041, 60.7047], [11.1042, 60.7046], [11.1043, 60.7045], [11.1043, 60.7043], [11.1044, 60.7042], [11.1045, 60.7041], [11.1045, 60.704], [11.1046, 60.704], [11.1046, 60.7039], [11.1046, 60.7039], [11.1047, 60.7038], [11.1049, 60.7037], [11.1049, 60.7037], [11.1049, 60.7036], [11.1049, 60.7036], [11.105, 60.7035], [11.105, 60.7035], [11.1049, 60.7034], [11.1049, 60.7033], [11.1048, 60.7033], [11.1049, 60.7032], [11.105, 60.7033], [11.1051, 60.7032], [11.1052, 60.7032], [11.1055, 60.7031], [11.1057, 60.703], [11.1058, 60.703], [11.106, 60.703], [11.106, 60.7029], [11.106, 60.7028], [11.106, 60.7027], [11.1058, 60.7025], [11.1057, 60.7024], [11.1056, 60.7023], [11.1055, 60.7023], [11.1054, 60.7022], [11.1053, 60.7022], [11.1052, 60.702], [11.1051, 60.7019], [11.1051, 60.7017], [11.105, 60.7016], [11.1049, 60.7015], [11.105, 60.7015], [11.1051, 60.7014], [11.1051, 60.7014], [11.1052, 60.7013], [11.1054, 60.7012], [11.1055, 60.7011], [11.1055, 60.7011], [11.1055, 60.7011], [11.1055, 60.701], [11.1055, 60.701], [11.1055, 60.7009], [11.1055, 60.7008], [11.1053, 60.7007], [11.1051, 60.7006], [11.105, 60.7005], [11.105, 60.7004], [11.105, 60.7004], [11.1051, 60.7003], [11.1052, 60.7002], [11.1053, 60.7001], [11.1053, 60.7], [11.1055, 60.7], [11.1056, 60.7], [11.1059, 60.6999], [11.1059, 60.6998], [11.106, 60.6998], [11.1061, 60.6998], [11.1062, 60.6997], [11.1063, 60.6997], [11.1063, 60.6997], [11.1064, 60.6997], [11.1064, 60.6997], [11.1065, 60.6997], [11.1066, 60.6997], [11.1066, 60.6996], [11.1067, 60.6995], [11.1067, 60.6995], [11.1067, 60.6994], [11.1067, 60.6993], [11.1065, 60.6993], [11.1065, 60.6993], [11.1065, 60.6993], [11.1066, 60.6993], [11.1066, 60.6992], [11.1066, 60.6991], [11.1066, 60.6991], [11.1067, 60.699], [11.1068, 60.699], [11.1069, 60.699], [11.107, 60.6989], [11.1071, 60.6989], [11.1072, 60.6988], [11.1072, 60.6987], [11.1072, 60.6987], [11.1071, 60.6986], [11.107, 60.6985], [11.1069, 60.6984], [11.1069, 60.6984], [11.1069, 60.6983], [11.1069, 60.6982], [11.107, 60.6981], [11.107, 60.6981], [11.1072, 60.6979], [11.1073, 60.698], [11.1074, 60.698], [11.1075, 60.6979], [11.1075, 60.698], [11.1076, 60.698], [11.1076, 60.6979], [11.1076, 60.6979], [11.1077, 60.698], [11.1078, 60.698], [11.1079, 60.698], [11.1081, 60.698], [11.1083, 60.6979], [11.1084, 60.6979], [11.1085, 60.6979], [11.1087, 60.6978], [11.1088, 60.6978], [11.1089, 60.6977], [11.109, 60.6976], [11.109, 60.6975], [11.1091, 60.6974], [11.109, 60.6974], [11.1088, 60.6974], [11.1088, 60.6974], [11.1088, 60.6973], [11.1088, 60.6972], [11.1088, 60.6971], [11.1089, 60.697], [11.1089, 60.6969], [11.109, 60.6969], [11.0704, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "116", "sub_div_center": [0.0344, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7169], [11.0704, 60.7369], [11.0851, 60.7369], [11.0852, 60.7367], [11.0853, 60.7366], [11.0855, 60.7365], [11.0857, 60.7364], [11.0858, 60.7363], [11.0859, 60.7362], [11.0861, 60.7361], [11.0863, 60.7361], [11.0864, 60.7361], [11.0866, 60.7361], [11.0868, 60.7361], [11.087, 60.7361], [11.0872, 60.7361], [11.0874, 60.7362], [11.0875, 60.7362], [11.0875, 60.7363], [11.0875, 60.7363], [11.0875, 60.7364], [11.0875, 60.7365], [11.0876, 60.7365], [11.0876, 60.7366], [11.0877, 60.7366], [11.0877, 60.7367], [11.0878, 60.7367], [11.0878, 60.7368], [11.0879, 60.7369], [11.0884, 60.7369], [11.0884, 60.7368], [11.0886, 60.7367], [11.0886, 60.7367], [11.0886, 60.7366], [11.0887, 60.7366], [11.0887, 60.7365], [11.0887, 60.7364], [11.0889, 60.7363], [11.0889, 60.7361], [11.0888, 60.7361], [11.0888, 60.736], [11.0888, 60.736], [11.0888, 60.736], [11.0889, 60.7359], [11.089, 60.7358], [11.0891, 60.7358], [11.0893, 60.7358], [11.0893, 60.7357], [11.0894, 60.7357], [11.0894, 60.7356], [11.0894, 60.7356], [11.0894, 60.7356], [11.0894, 60.7355], [11.0894, 60.7354], [11.0894, 60.7354], [11.0894, 60.7353], [11.0895, 60.7353], [11.0895, 60.7352], [11.0896, 60.7351], [11.0897, 60.735], [11.0897, 60.735], [11.0898, 60.7348], [11.0899, 60.7347], [11.0899, 60.7346], [11.09, 60.7346], [11.09, 60.7345], [11.0901, 60.7344], [11.0901, 60.7344], [11.0901, 60.7343], [11.0902, 60.7342], [11.0903, 60.7342], [11.0903, 60.7341], [11.0903, 60.734], [11.0903, 60.734], [11.0902, 60.7339], [11.0901, 60.7338], [11.0901, 60.7338], [11.09, 60.7337], [11.0899, 60.7337], [11.0899, 60.7337], [11.0899, 60.7336], [11.09, 60.7336], [11.0901, 60.7335], [11.0901, 60.7335], [11.0902, 60.7335], [11.0902, 60.7335], [11.0903, 60.7335], [11.0904, 60.7335], [11.0905, 60.7335], [11.0905, 60.7335], [11.0907, 60.7334], [11.0908, 60.7334], [11.0908, 60.7333], [11.0909, 60.7333], [11.0909, 60.7332], [11.0909, 60.7332], [11.091, 60.7331], [11.091, 60.7331], [11.0911, 60.733], [11.0911, 60.733], [11.0912, 60.733], [11.0911, 60.733], [11.0912, 60.7329], [11.0912, 60.7329], [11.0913, 60.7328], [11.0914, 60.7328], [11.0915, 60.7327], [11.0916, 60.7326], [11.0916, 60.7326], [11.0918, 60.7326], [11.0919, 60.7326], [11.092, 60.7325], [11.0923, 60.7325], [11.0926, 60.7325], [11.0927, 60.7326], [11.0928, 60.7326], [11.093, 60.7326], [11.0931, 60.7326], [11.0932, 60.7326], [11.0934, 60.7327], [11.0934, 60.7327], [11.0934, 60.7327], [11.0935, 60.7327], [11.0936, 60.7327], [11.0936, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0938, 60.7327], [11.0938, 60.7327], [11.0938, 60.7327], [11.0938, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.094, 60.7326], [11.0938, 60.7325], [11.0938, 60.7325], [11.0939, 60.7325], [11.0939, 60.7325], [11.094, 60.7325], [11.0941, 60.7325], [11.0941, 60.7326], [11.0942, 60.7326], [11.0942, 60.7326], [11.0943, 60.7325], [11.0943, 60.7325], [11.0941, 60.7325], [11.094, 60.7325], [11.094, 60.7325], [11.0939, 60.7324], [11.0939, 60.7324], [11.0938, 60.7323], [11.0938, 60.7323], [11.0938, 60.7323], [11.0939, 60.7322], [11.0939, 60.7322], [11.0939, 60.7322], [11.094, 60.7322], [11.094, 60.7321], [11.0939, 60.7321], [11.0938, 60.7321], [11.0939, 60.7321], [11.094, 60.7321], [11.0941, 60.7321], [11.0941, 60.7321], [11.0941, 60.732], [11.0942, 60.732], [11.094, 60.732], [11.0939, 60.732], [11.0936, 60.732], [11.0936, 60.732], [11.0936, 60.7319], [11.0936, 60.7319], [11.0938, 60.7319], [11.094, 60.7319], [11.0941, 60.7319], [11.0941, 60.7319], [11.0941, 60.7318], [11.094, 60.7318], [11.0938, 60.7317], [11.0936, 60.7317], [11.0935, 60.7318], [11.0935, 60.7318], [11.0934, 60.7318], [11.0934, 60.7319], [11.0934, 60.7319], [11.0933, 60.732], [11.0933, 60.732], [11.0932, 60.7319], [11.0932, 60.7319], [11.0932, 60.7319], [11.0935, 60.7317], [11.0935, 60.7317], [11.0936, 60.7316], [11.0936, 60.7316], [11.0937, 60.7316], [11.0937, 60.7315], [11.0936, 60.7315], [11.0936, 60.7315], [11.0936, 60.7314], [11.0936, 60.7314], [11.0936, 60.7314], [11.0936, 60.7313], [11.0936, 60.7313], [11.0936, 60.7312], [11.0937, 60.7312], [11.0937, 60.7312], [11.0937, 60.7311], [11.0936, 60.7311], [11.0935, 60.7311], [11.0934, 60.7311], [11.0932, 60.731], [11.0931, 60.731], [11.093, 60.731], [11.0929, 60.731], [11.0928, 60.731], [11.0927, 60.731], [11.0926, 60.7309], [11.0926, 60.7309], [11.0926, 60.7309], [11.0925, 60.7308], [11.0926, 60.7307], [11.0926, 60.7307], [11.0927, 60.7306], [11.0927, 60.7306], [11.0927, 60.7305], [11.0927, 60.7305], [11.0927, 60.7304], [11.0927, 60.7304], [11.0928, 60.7304], [11.0929, 60.7304], [11.093, 60.7304], [11.093, 60.7305], [11.093, 60.7306], [11.0931, 60.7307], [11.0931, 60.7308], [11.0933, 60.7308], [11.0937, 60.7309], [11.0937, 60.7309], [11.0938, 60.7309], [11.0938, 60.7308], [11.0938, 60.7307], [11.0938, 60.7306], [11.0938, 60.7306], [11.0939, 60.7305], [11.0939, 60.7304], [11.0939, 60.7304], [11.0939, 60.7303], [11.0939, 60.7302], [11.0937, 60.7302], [11.0936, 60.7302], [11.0936, 60.7302], [11.0936, 60.7303], [11.0936, 60.7304], [11.0935, 60.7304], [11.0935, 60.7304], [11.0935, 60.7304], [11.0935, 60.7303], [11.0935, 60.7303], [11.0936, 60.7302], [11.0936, 60.7302], [11.0934, 60.7301], [11.0933, 60.7301], [11.0932, 60.7301], [11.0932, 60.7302], [11.0932, 60.7302], [11.0932, 60.7302], [11.0931, 60.7302], [11.0932, 60.7301], [11.0932, 60.7301], [11.0932, 60.7301], [11.0933, 60.7301], [11.0934, 60.7301], [11.0936, 60.7302], [11.0937, 60.7302], [11.0939, 60.7302], [11.0939, 60.7301], [11.094, 60.7301], [11.0939, 60.7301], [11.0939, 60.73], [11.0939, 60.73], [11.094, 60.7299], [11.0939, 60.7299], [11.0938, 60.7298], [11.0937, 60.7298], [11.0937, 60.7297], [11.0937, 60.7297], [11.0937, 60.7296], [11.0938, 60.7296], [11.094, 60.7296], [11.0943, 60.7296], [11.0944, 60.7295], [11.0944, 60.7294], [11.0944, 60.7294], [11.0945, 60.7293], [11.0946, 60.7293], [11.0946, 60.7292], [11.0946, 60.7292], [11.0946, 60.7292], [11.0946, 60.7292], [11.0947, 60.7291], [11.0947, 60.7291], [11.0947, 60.729], [11.0947, 60.729], [11.0947, 60.729], [11.0947, 60.7289], [11.0947, 60.7289], [11.0946, 60.7289], [11.0946, 60.7288], [11.0945, 60.7288], [11.0945, 60.7287], [11.0945, 60.7287], [11.0945, 60.7286], [11.0946, 60.7286], [11.0945, 60.7285], [11.0945, 60.7284], [11.0945, 60.7284], [11.0945, 60.7283], [11.0944, 60.7282], [11.0944, 60.7282], [11.0944, 60.7281], [11.0943, 60.7281], [11.0943, 60.7281], [11.0943, 60.728], [11.0943, 60.728], [11.0942, 60.728], [11.0942, 60.7279], [11.0941, 60.7278], [11.0941, 60.7278], [11.094, 60.7277], [11.094, 60.7277], [11.0939, 60.7277], [11.0938, 60.7276], [11.0938, 60.7276], [11.0935, 60.7275], [11.0933, 60.7274], [11.0931, 60.7273], [11.0929, 60.7272], [11.0928, 60.7272], [11.0928, 60.7271], [11.0927, 60.7271], [11.0927, 60.727], [11.0927, 60.727], [11.0928, 60.727], [11.0928, 60.7269], [11.0928, 60.7269], [11.0928, 60.7268], [11.0929, 60.7268], [11.0929, 60.7267], [11.0929, 60.7267], [11.093, 60.7267], [11.0931, 60.7267], [11.0931, 60.7266], [11.0931, 60.7266], [11.0932, 60.7266], [11.0933, 60.7266], [11.0934, 60.7266], [11.0936, 60.7267], [11.0937, 60.7267], [11.0938, 60.7267], [11.0939, 60.7267], [11.094, 60.7267], [11.0941, 60.7267], [11.0941, 60.7267], [11.0941, 60.7267], [11.0943, 60.7267], [11.0945, 60.7268], [11.0947, 60.7268], [11.0947, 60.7269], [11.0948, 60.7269], [11.0948, 60.7269], [11.0949, 60.7269], [11.095, 60.7269], [11.0953, 60.727], [11.0955, 60.727], [11.0956, 60.7269], [11.0956, 60.7269], [11.0957, 60.7269], [11.0957, 60.7269], [11.0958, 60.727], [11.0959, 60.727], [11.0959, 60.727], [11.0959, 60.727], [11.096, 60.7269], [11.096, 60.7269], [11.096, 60.7269], [11.096, 60.7268], [11.096, 60.7267], [11.0961, 60.7266], [11.0962, 60.7266], [11.0962, 60.7266], [11.0963, 60.7266], [11.0964, 60.7266], [11.0964, 60.7266], [11.0965, 60.7266], [11.0965, 60.7266], [11.0966, 60.7266], [11.0967, 60.7266], [11.0967, 60.7265], [11.0968, 60.7264], [11.0968, 60.7264], [11.0969, 60.7264], [11.0969, 60.7264], [11.0968, 60.7264], [11.0968, 60.7263], [11.0967, 60.7262], [11.0967, 60.7262], [11.0966, 60.7262], [11.0965, 60.7261], [11.0965, 60.7261], [11.0965, 60.726], [11.0965, 60.726], [11.0965, 60.726], [11.0965, 60.7259], [11.0966, 60.7259], [11.0965, 60.7259], [11.0965, 60.7258], [11.0965, 60.7258], [11.0966, 60.7257], [11.0966, 60.7256], [11.0966, 60.7256], [11.0966, 60.7255], [11.0966, 60.7255], [11.0965, 60.7254], [11.0964, 60.7254], [11.0963, 60.7254], [11.096, 60.7254], [11.0957, 60.7254], [11.0955, 60.7253], [11.0954, 60.7253], [11.0954, 60.7253], [11.0953, 60.7252], [11.0952, 60.7252], [11.0951, 60.7252], [11.0951, 60.7251], [11.095, 60.7251], [11.095, 60.7251], [11.095, 60.725], [11.0951, 60.725], [11.0951, 60.7249], [11.0952, 60.7249], [11.0952, 60.7248], [11.0954, 60.7248], [11.0955, 60.7248], [11.0956, 60.7248], [11.0957, 60.7248], [11.0959, 60.7247], [11.0961, 60.7248], [11.0963, 60.7248], [11.0963, 60.7248], [11.0964, 60.7248], [11.0964, 60.7247], [11.0964, 60.7247], [11.0964, 60.7247], [11.0963, 60.7246], [11.0964, 60.7246], [11.0964, 60.7246], [11.0964, 60.7246], [11.0965, 60.7245], [11.0965, 60.7244], [11.0966, 60.7244], [11.0966, 60.7243], [11.0967, 60.7242], [11.0967, 60.7241], [11.0967, 60.7241], [11.0967, 60.724], [11.0967, 60.7239], [11.0966, 60.7238], [11.0966, 60.7237], [11.0965, 60.7236], [11.0965, 60.7236], [11.0965, 60.7235], [11.0966, 60.7235], [11.0966, 60.7234], [11.0967, 60.7234], [11.0969, 60.7233], [11.0969, 60.7233], [11.0969, 60.7233], [11.0969, 60.7232], [11.097, 60.7232], [11.0971, 60.7232], [11.0972, 60.723], [11.0974, 60.7229], [11.0975, 60.7228], [11.0976, 60.7227], [11.0977, 60.7225], [11.0978, 60.7223], [11.0978, 60.7223], [11.0979, 60.7222], [11.098, 60.7221], [11.0981, 60.7221], [11.0981, 60.7221], [11.0982, 60.722], [11.0983, 60.722], [11.0985, 60.7219], [11.0987, 60.7219], [11.0988, 60.7219], [11.099, 60.7219], [11.0991, 60.7219], [11.0991, 60.7219], [11.0992, 60.7219], [11.0993, 60.7219], [11.0995, 60.7219], [11.0996, 60.7219], [11.0996, 60.7218], [11.0998, 60.7219], [11.1002, 60.7219], [11.1004, 60.7219], [11.1006, 60.7218], [11.1006, 60.7218], [11.1006, 60.7217], [11.1007, 60.7217], [11.1007, 60.7216], [11.1007, 60.7216], [11.1008, 60.7216], [11.1008, 60.7216], [11.101, 60.7216], [11.1012, 60.7216], [11.1013, 60.7216], [11.1013, 60.7215], [11.1013, 60.7215], [11.1012, 60.7214], [11.1011, 60.7214], [11.1011, 60.7213], [11.1009, 60.7211], [11.1009, 60.7211], [11.101, 60.721], [11.1009, 60.7209], [11.1009, 60.7208], [11.1008, 60.7207], [11.1008, 60.7207], [11.1009, 60.7206], [11.1008, 60.7206], [11.1009, 60.7205], [11.1011, 60.7205], [11.1012, 60.7205], [11.1014, 60.7204], [11.1015, 60.7204], [11.1016, 60.7203], [11.1017, 60.7202], [11.1019, 60.7201], [11.1021, 60.72], [11.1022, 60.72], [11.1022, 60.72], [11.1023, 60.7199], [11.1025, 60.7197], [11.1027, 60.7196], [11.1028, 60.7196], [11.1028, 60.7195], [11.1029, 60.7195], [11.1029, 60.7195], [11.103, 60.7194], [11.103, 60.7194], [11.103, 60.7194], [11.103, 60.7193], [11.103, 60.7193], [11.103, 60.7193], [11.103, 60.7192], [11.1031, 60.7192], [11.1031, 60.7191], [11.1031, 60.7191], [11.1031, 60.719], [11.103, 60.719], [11.103, 60.719], [11.103, 60.7189], [11.103, 60.7189], [11.1029, 60.7189], [11.1028, 60.7188], [11.1028, 60.7188], [11.1028, 60.7188], [11.1029, 60.7189], [11.103, 60.7189], [11.103, 60.7189], [11.1031, 60.7189], [11.1031, 60.719], [11.1032, 60.719], [11.1032, 60.7189], [11.1033, 60.7189], [11.1033, 60.7188], [11.1034, 60.7188], [11.1033, 60.7188], [11.1033, 60.7187], [11.1032, 60.7187], [11.1032, 60.7187], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1034, 60.7186], [11.1035, 60.7186], [11.1035, 60.7186], [11.1036, 60.7185], [11.1035, 60.7185], [11.1035, 60.7185], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7183], [11.1035, 60.7183], [11.1035, 60.7183], [11.1035, 60.7182], [11.1036, 60.7182], [11.1036, 60.7182], [11.1037, 60.7182], [11.1037, 60.7182], [11.1039, 60.7181], [11.1039, 60.7181], [11.104, 60.7181], [11.1041, 60.7181], [11.1041, 60.7181], [11.1042, 60.7181], [11.1042, 60.718], [11.1043, 60.718], [11.1044, 60.718], [11.1044, 60.718], [11.1045, 60.718], [11.1046, 60.7179], [11.1046, 60.7179], [11.1046, 60.7179], [11.1047, 60.7178], [11.1048, 60.7178], [11.1048, 60.7178], [11.1048, 60.7177], [11.1048, 60.7177], [11.1048, 60.7176], [11.1047, 60.7175], [11.1048, 60.7175], [11.1048, 60.7175], [11.1048, 60.7174], [11.1048, 60.7174], [11.1048, 60.7173], [11.1048, 60.7172], [11.1047, 60.7172], [11.1047, 60.7171], [11.1047, 60.717], [11.1046, 60.717], [11.1041, 60.717], [11.1038, 60.717], [11.1038, 60.717], [11.1038, 60.7169], [11.1038, 60.7169], [11.1039, 60.7169], [11.1046, 60.717], [11.1046, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.0704, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "117", "sub_div_center": [0.0156, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7369], [11.0704, 60.7569], [11.0771, 60.7569], [11.0772, 60.7568], [11.0772, 60.7568], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7566], [11.0772, 60.7565], [11.0772, 60.7565], [11.0772, 60.7563], [11.0772, 60.7562], [11.0772, 60.7561], [11.0772, 60.7559], [11.0772, 60.7558], [11.0773, 60.7558], [11.0774, 60.7557], [11.0774, 60.7557], [11.0774, 60.7556], [11.0773, 60.7556], [11.0772, 60.7556], [11.0771, 60.7556], [11.0771, 60.7556], [11.0771, 60.7555], [11.0771, 60.7554], [11.0772, 60.7554], [11.0773, 60.7554], [11.0775, 60.7554], [11.0775, 60.7553], [11.0776, 60.7553], [11.0776, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0776, 60.7551], [11.0776, 60.7551], [11.0776, 60.755], [11.0777, 60.755], [11.0777, 60.755], [11.0778, 60.7549], [11.0779, 60.7548], [11.0778, 60.7547], [11.0778, 60.7546], [11.0779, 60.7545], [11.0779, 60.7544], [11.078, 60.7543], [11.078, 60.7542], [11.0782, 60.7541], [11.0782, 60.754], [11.0783, 60.754], [11.0783, 60.7539], [11.0784, 60.7539], [11.0784, 60.7538], [11.0784, 60.7537], [11.0783, 60.7537], [11.0782, 60.7536], [11.0781, 60.7535], [11.0781, 60.7534], [11.0781, 60.7533], [11.0782, 60.7533], [11.0783, 60.7532], [11.0782, 60.7532], [11.0782, 60.7531], [11.0782, 60.7531], [11.0782, 60.753], [11.0783, 60.753], [11.0783, 60.7529], [11.0783, 60.7529], [11.0783, 60.7527], [11.0784, 60.7527], [11.0784, 60.7526], [11.0784, 60.7525], [11.0785, 60.7525], [11.0786, 60.7524], [11.0788, 60.7524], [11.0791, 60.7524], [11.0793, 60.7523], [11.0795, 60.7523], [11.08, 60.7522], [11.0802, 60.7522], [11.0806, 60.752], [11.081, 60.7519], [11.0814, 60.7518], [11.0816, 60.7516], [11.0817, 60.7516], [11.0817, 60.7516], [11.0818, 60.7515], [11.0818, 60.7514], [11.0818, 60.7514], [11.0818, 60.7514], [11.0817, 60.7514], [11.0816, 60.7513], [11.0814, 60.7513], [11.0814, 60.7512], [11.0814, 60.7512], [11.0814, 60.7512], [11.0814, 60.7511], [11.0815, 60.7511], [11.0815, 60.7511], [11.0815, 60.7511], [11.0815, 60.751], [11.0816, 60.751], [11.0816, 60.751], [11.0817, 60.7509], [11.0818, 60.7509], [11.082, 60.7509], [11.0821, 60.7509], [11.0822, 60.7508], [11.0822, 60.7508], [11.0824, 60.7507], [11.0825, 60.7507], [11.0825, 60.7507], [11.0823, 60.7506], [11.0822, 60.7505], [11.0823, 60.7505], [11.0825, 60.7504], [11.0825, 60.7504], [11.0826, 60.7503], [11.0826, 60.7503], [11.0826, 60.7502], [11.0825, 60.7502], [11.0824, 60.7502], [11.0823, 60.7502], [11.0821, 60.7503], [11.0821, 60.7503], [11.0821, 60.7503], [11.0822, 60.7503], [11.0822, 60.7502], [11.0823, 60.7501], [11.0823, 60.7501], [11.0823, 60.7501], [11.0822, 60.75], [11.0822, 60.7499], [11.0822, 60.7499], [11.0822, 60.7499], [11.0822, 60.7498], [11.0823, 60.7498], [11.0824, 60.7498], [11.0825, 60.7498], [11.0825, 60.7498], [11.0826, 60.7498], [11.0827, 60.7497], [11.0828, 60.7497], [11.083, 60.7496], [11.0831, 60.7496], [11.0832, 60.7495], [11.0833, 60.7495], [11.0835, 60.7494], [11.0836, 60.7493], [11.0837, 60.7493], [11.084, 60.7492], [11.0842, 60.7491], [11.0843, 60.7491], [11.0846, 60.7491], [11.0847, 60.7491], [11.0848, 60.7491], [11.0848, 60.749], [11.0848, 60.7489], [11.0849, 60.7489], [11.0849, 60.7488], [11.0849, 60.7488], [11.0849, 60.7486], [11.0848, 60.7485], [11.0848, 60.7484], [11.0848, 60.7484], [11.0848, 60.7482], [11.0848, 60.7482], [11.0849, 60.7481], [11.085, 60.7481], [11.085, 60.7481], [11.0851, 60.7481], [11.0852, 60.748], [11.0852, 60.748], [11.0852, 60.7479], [11.0851, 60.7479], [11.0851, 60.7479], [11.0852, 60.7479], [11.0852, 60.7478], [11.0852, 60.7478], [11.0852, 60.7478], [11.0853, 60.7478], [11.0853, 60.7478], [11.0854, 60.7477], [11.0853, 60.7477], [11.0852, 60.7477], [11.0853, 60.7477], [11.0853, 60.7477], [11.0853, 60.7476], [11.0853, 60.7475], [11.0853, 60.7475], [11.0851, 60.7475], [11.085, 60.7475], [11.085, 60.7474], [11.0849, 60.7474], [11.0849, 60.7474], [11.0849, 60.7473], [11.0849, 60.7473], [11.0849, 60.7473], [11.085, 60.7472], [11.085, 60.7473], [11.0851, 60.7473], [11.0852, 60.7472], [11.0852, 60.7472], [11.0854, 60.7472], [11.0855, 60.7471], [11.0856, 60.7471], [11.0856, 60.7471], [11.0855, 60.7471], [11.0854, 60.747], [11.0855, 60.747], [11.0855, 60.747], [11.0856, 60.7469], [11.0856, 60.7469], [11.0856, 60.7469], [11.0857, 60.7469], [11.0856, 60.7468], [11.0856, 60.7467], [11.0857, 60.7467], [11.0858, 60.7467], [11.0859, 60.7466], [11.0859, 60.7466], [11.086, 60.7466], [11.086, 60.7465], [11.086, 60.7465], [11.0859, 60.7465], [11.0859, 60.7465], [11.0858, 60.7465], [11.0858, 60.7465], [11.0857, 60.7464], [11.0856, 60.7464], [11.0855, 60.7464], [11.0855, 60.7464], [11.0856, 60.7464], [11.0856, 60.7464], [11.0857, 60.7464], [11.0857, 60.7464], [11.0858, 60.7464], [11.0858, 60.7463], [11.0859, 60.7462], [11.0859, 60.7461], [11.0859, 60.7461], [11.0859, 60.746], [11.0859, 60.7459], [11.0859, 60.7458], [11.0859, 60.7457], [11.0858, 60.7457], [11.0857, 60.7457], [11.0857, 60.7457], [11.0856, 60.7456], [11.0856, 60.7456], [11.0855, 60.7456], [11.0854, 60.7456], [11.0853, 60.7456], [11.0851, 60.7456], [11.085, 60.7456], [11.0849, 60.7456], [11.0849, 60.7457], [11.0849, 60.7458], [11.085, 60.7458], [11.085, 60.7459], [11.085, 60.7459], [11.0849, 60.7459], [11.0848, 60.7459], [11.0847, 60.7459], [11.0847, 60.7459], [11.0846, 60.7459], [11.0845, 60.7458], [11.0845, 60.7457], [11.0844, 60.7457], [11.0844, 60.7456], [11.0843, 60.7455], [11.0843, 60.7454], [11.0843, 60.7454], [11.0843, 60.7453], [11.0845, 60.7452], [11.0846, 60.7451], [11.0847, 60.745], [11.0847, 60.745], [11.0848, 60.7449], [11.0849, 60.7449], [11.0849, 60.7448], [11.0851, 60.7448], [11.0852, 60.7448], [11.0852, 60.7447], [11.0852, 60.7447], [11.0853, 60.7447], [11.0854, 60.7447], [11.0854, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0857, 60.7448], [11.0857, 60.7448], [11.0856, 60.7447], [11.0855, 60.7446], [11.0855, 60.7445], [11.0854, 60.7445], [11.0853, 60.7444], [11.0853, 60.7443], [11.0853, 60.7443], [11.0852, 60.7442], [11.0852, 60.7442], [11.0852, 60.744], [11.0852, 60.744], [11.0852, 60.7439], [11.0853, 60.7439], [11.0853, 60.7438], [11.0852, 60.7438], [11.0851, 60.7438], [11.0851, 60.7437], [11.0852, 60.7437], [11.0853, 60.7437], [11.0853, 60.7437], [11.0852, 60.7436], [11.0852, 60.7436], [11.0852, 60.7435], [11.0853, 60.7435], [11.0853, 60.7435], [11.0852, 60.7435], [11.0852, 60.7434], [11.0853, 60.7434], [11.0853, 60.7434], [11.0852, 60.7434], [11.0852, 60.7434], [11.0852, 60.7433], [11.0852, 60.7432], [11.0852, 60.7431], [11.0852, 60.7431], [11.0852, 60.7429], [11.0852, 60.7429], [11.0852, 60.7428], [11.0851, 60.7428], [11.0851, 60.7427], [11.0851, 60.7427], [11.0851, 60.7426], [11.085, 60.7425], [11.0851, 60.7425], [11.0849, 60.7424], [11.0848, 60.7424], [11.0847, 60.7423], [11.0847, 60.7423], [11.0847, 60.7422], [11.0846, 60.7422], [11.0845, 60.7421], [11.0845, 60.7421], [11.0845, 60.742], [11.0845, 60.742], [11.0845, 60.7419], [11.0846, 60.7419], [11.0848, 60.7418], [11.0848, 60.7418], [11.0847, 60.7418], [11.0846, 60.7417], [11.0845, 60.7416], [11.0845, 60.7415], [11.0844, 60.7414], [11.0843, 60.7414], [11.0842, 60.7414], [11.0843, 60.7413], [11.0842, 60.7412], [11.0841, 60.7411], [11.084, 60.741], [11.0839, 60.7408], [11.0839, 60.7407], [11.0838, 60.7402], [11.0838, 60.74], [11.0838, 60.7399], [11.0838, 60.7395], [11.0838, 60.7395], [11.0838, 60.7394], [11.0838, 60.7394], [11.0838, 60.7393], [11.0839, 60.7393], [11.0839, 60.7393], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7391], [11.0839, 60.7391], [11.0839, 60.739], [11.0839, 60.739], [11.0839, 60.739], [11.0839, 60.7389], [11.0839, 60.7388], [11.0839, 60.7388], [11.084, 60.7387], [11.0841, 60.7386], [11.0841, 60.7385], [11.0842, 60.7384], [11.0842, 60.7383], [11.0843, 60.7383], [11.0843, 60.7383], [11.0843, 60.7382], [11.0843, 60.7382], [11.0843, 60.7381], [11.0842, 60.7381], [11.0841, 60.7381], [11.0841, 60.7381], [11.0842, 60.7381], [11.0842, 60.7381], [11.0843, 60.7381], [11.0843, 60.7381], [11.0843, 60.7381], [11.0843, 60.738], [11.0842, 60.738], [11.0841, 60.738], [11.0842, 60.738], [11.0843, 60.738], [11.0844, 60.738], [11.0844, 60.7379], [11.0845, 60.7379], [11.0845, 60.7378], [11.0845, 60.7378], [11.0845, 60.7378], [11.0845, 60.7378], [11.0846, 60.7377], [11.0846, 60.7376], [11.0847, 60.7375], [11.0847, 60.7374], [11.0847, 60.7373], [11.0847, 60.7372], [11.0848, 60.7371], [11.0849, 60.737], [11.0851, 60.7369], [11.0851, 60.7369], [11.0704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "118", "sub_div_center": [0.0163, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7569], [11.0704, 60.7769], [11.0868, 60.7769], [11.0867, 60.7769], [11.0866, 60.7768], [11.0864, 60.7767], [11.0864, 60.7767], [11.0861, 60.7767], [11.0861, 60.7766], [11.0862, 60.7766], [11.0861, 60.7765], [11.086, 60.7764], [11.086, 60.7764], [11.0857, 60.7763], [11.0855, 60.7762], [11.0854, 60.7762], [11.0853, 60.7762], [11.0852, 60.7761], [11.0852, 60.7761], [11.0851, 60.7761], [11.0851, 60.7761], [11.085, 60.7762], [11.0849, 60.7763], [11.0848, 60.7763], [11.0848, 60.7763], [11.0848, 60.7764], [11.0848, 60.7764], [11.0848, 60.7764], [11.0848, 60.7765], [11.0848, 60.7765], [11.0849, 60.7765], [11.085, 60.7766], [11.0852, 60.7766], [11.0852, 60.7767], [11.0852, 60.7767], [11.0852, 60.7767], [11.0851, 60.7767], [11.0848, 60.7766], [11.0847, 60.7766], [11.0846, 60.7765], [11.0845, 60.7765], [11.0845, 60.7764], [11.0846, 60.7764], [11.0846, 60.7763], [11.0847, 60.7763], [11.0848, 60.7762], [11.0849, 60.7761], [11.0848, 60.776], [11.0847, 60.776], [11.0846, 60.7759], [11.0844, 60.7759], [11.0843, 60.7759], [11.0843, 60.7758], [11.0842, 60.7758], [11.0841, 60.7757], [11.0841, 60.7757], [11.084, 60.7757], [11.084, 60.7757], [11.0837, 60.7755], [11.0836, 60.7754], [11.0834, 60.7754], [11.0834, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0834, 60.7754], [11.0833, 60.7754], [11.0833, 60.7754], [11.0834, 60.7753], [11.0834, 60.7753], [11.0834, 60.7753], [11.0834, 60.7752], [11.0833, 60.7752], [11.0833, 60.7751], [11.0832, 60.7751], [11.0832, 60.775], [11.0832, 60.775], [11.0832, 60.775], [11.0831, 60.775], [11.0832, 60.775], [11.0832, 60.775], [11.0831, 60.7749], [11.083, 60.7748], [11.083, 60.7748], [11.0829, 60.7748], [11.083, 60.7748], [11.0828, 60.7747], [11.0828, 60.7746], [11.0828, 60.7746], [11.0827, 60.7745], [11.0826, 60.7745], [11.0825, 60.7745], [11.0825, 60.7745], [11.0824, 60.7745], [11.0823, 60.7745], [11.0823, 60.7746], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0821, 60.7745], [11.0821, 60.7745], [11.0822, 60.7744], [11.0823, 60.7744], [11.0823, 60.7744], [11.0823, 60.7744], [11.0822, 60.7743], [11.0822, 60.7743], [11.0822, 60.7743], [11.0821, 60.7743], [11.0822, 60.7743], [11.0822, 60.7742], [11.0821, 60.7741], [11.0821, 60.7741], [11.0821, 60.7741], [11.0821, 60.774], [11.0821, 60.774], [11.082, 60.774], [11.0819, 60.774], [11.0819, 60.774], [11.082, 60.774], [11.082, 60.7739], [11.082, 60.7739], [11.0819, 60.7739], [11.0819, 60.7739], [11.0819, 60.7738], [11.0819, 60.7738], [11.0819, 60.7737], [11.0819, 60.7737], [11.0818, 60.7736], [11.0818, 60.7736], [11.0818, 60.7736], [11.0818, 60.7735], [11.0818, 60.7735], [11.0818, 60.7734], [11.0818, 60.7734], [11.0818, 60.7734], [11.0818, 60.7733], [11.0818, 60.7733], [11.0817, 60.7733], [11.0817, 60.7733], [11.0816, 60.7733], [11.0816, 60.7733], [11.0817, 60.7733], [11.0817, 60.7733], [11.0816, 60.7732], [11.0815, 60.7732], [11.0815, 60.7731], [11.0815, 60.7731], [11.0815, 60.7731], [11.0815, 60.7731], [11.0816, 60.773], [11.0816, 60.773], [11.0814, 60.7727], [11.0815, 60.7727], [11.0815, 60.7727], [11.0815, 60.7726], [11.0815, 60.7725], [11.0815, 60.7725], [11.0814, 60.7724], [11.0814, 60.7723], [11.0813, 60.7723], [11.0813, 60.7723], [11.0812, 60.7723], [11.0811, 60.7722], [11.0811, 60.7722], [11.081, 60.7722], [11.081, 60.7722], [11.0809, 60.7721], [11.0809, 60.7721], [11.0809, 60.772], [11.0809, 60.772], [11.081, 60.7719], [11.0811, 60.7719], [11.0811, 60.7719], [11.081, 60.7718], [11.081, 60.7718], [11.0809, 60.7717], [11.0809, 60.7717], [11.0807, 60.7716], [11.0806, 60.7715], [11.0804, 60.7714], [11.0803, 60.7712], [11.0803, 60.7711], [11.0802, 60.771], [11.0802, 60.7709], [11.0802, 60.7709], [11.0802, 60.7707], [11.0802, 60.7707], [11.0802, 60.7706], [11.0802, 60.7705], [11.0801, 60.7704], [11.0801, 60.7703], [11.0801, 60.7703], [11.0802, 60.7702], [11.0802, 60.7701], [11.0802, 60.7701], [11.0801, 60.7701], [11.0801, 60.7701], [11.08, 60.7702], [11.08, 60.7702], [11.0798, 60.7702], [11.0798, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0798, 60.7702], [11.0798, 60.7702], [11.0799, 60.7702], [11.08, 60.7702], [11.0801, 60.7701], [11.0801, 60.7701], [11.0801, 60.7701], [11.0801, 60.77], [11.08, 60.7699], [11.0799, 60.7699], [11.0798, 60.7699], [11.0797, 60.7698], [11.0797, 60.7698], [11.0795, 60.7698], [11.0795, 60.7697], [11.0794, 60.7697], [11.0796, 60.7697], [11.0798, 60.7696], [11.0797, 60.7696], [11.0798, 60.7695], [11.0798, 60.7695], [11.0797, 60.7695], [11.0796, 60.7695], [11.0796, 60.7694], [11.0795, 60.7694], [11.0794, 60.7694], [11.0792, 60.7693], [11.0791, 60.7694], [11.0789, 60.7694], [11.0788, 60.7694], [11.0786, 60.7694], [11.0784, 60.7694], [11.0782, 60.7694], [11.0781, 60.7694], [11.0779, 60.7694], [11.0778, 60.7694], [11.0777, 60.7693], [11.0777, 60.7693], [11.0776, 60.7693], [11.0776, 60.7693], [11.0775, 60.7693], [11.0775, 60.7693], [11.0774, 60.7693], [11.0773, 60.7693], [11.0772, 60.7693], [11.0772, 60.7693], [11.0771, 60.7693], [11.0769, 60.7692], [11.0768, 60.7692], [11.0768, 60.7691], [11.0768, 60.7691], [11.0767, 60.7691], [11.0767, 60.7691], [11.0766, 60.7691], [11.0766, 60.769], [11.0765, 60.7691], [11.0764, 60.7691], [11.0765, 60.769], [11.0765, 60.7689], [11.0765, 60.7689], [11.0764, 60.7689], [11.0763, 60.7689], [11.0763, 60.7689], [11.0763, 60.7689], [11.0762, 60.7689], [11.0761, 60.7689], [11.0759, 60.7689], [11.0756, 60.7689], [11.0754, 60.7689], [11.0753, 60.769], [11.0752, 60.7691], [11.075, 60.7693], [11.0748, 60.7694], [11.0747, 60.7694], [11.0745, 60.7695], [11.0744, 60.7695], [11.0743, 60.7695], [11.0742, 60.7695], [11.074, 60.7695], [11.0739, 60.7695], [11.0739, 60.7695], [11.0738, 60.7694], [11.0738, 60.7693], [11.0737, 60.7693], [11.0737, 60.7692], [11.0738, 60.7691], [11.0739, 60.7691], [11.0739, 60.769], [11.074, 60.7689], [11.0741, 60.7688], [11.0744, 60.7687], [11.0746, 60.7686], [11.0748, 60.7685], [11.0752, 60.7684], [11.0753, 60.7684], [11.0754, 60.7683], [11.0754, 60.7683], [11.0756, 60.7681], [11.0756, 60.7681], [11.0755, 60.768], [11.0756, 60.768], [11.0757, 60.768], [11.0757, 60.7679], [11.0758, 60.7678], [11.0758, 60.7677], [11.0757, 60.7677], [11.0756, 60.7677], [11.0754, 60.7677], [11.0753, 60.7677], [11.0753, 60.7676], [11.0753, 60.7675], [11.0753, 60.7674], [11.0753, 60.7674], [11.0753, 60.7673], [11.0753, 60.7673], [11.0753, 60.7672], [11.0752, 60.7672], [11.0749, 60.767], [11.0748, 60.7669], [11.0748, 60.7668], [11.0748, 60.7668], [11.0748, 60.7668], [11.0747, 60.7667], [11.0746, 60.7667], [11.0746, 60.7666], [11.0746, 60.7665], [11.0746, 60.7664], [11.0747, 60.7663], [11.0747, 60.7662], [11.0745, 60.7662], [11.0744, 60.7661], [11.0745, 60.7661], [11.0746, 60.7661], [11.0747, 60.7661], [11.0747, 60.7661], [11.0747, 60.7661], [11.0748, 60.766], [11.0748, 60.7659], [11.0748, 60.7658], [11.0748, 60.7657], [11.0748, 60.7657], [11.0748, 60.7655], [11.0749, 60.7654], [11.0749, 60.7653], [11.075, 60.7653], [11.075, 60.7652], [11.0751, 60.7652], [11.0751, 60.7651], [11.0751, 60.7649], [11.0751, 60.7648], [11.0752, 60.7648], [11.0752, 60.7647], [11.0754, 60.7647], [11.0756, 60.7645], [11.0758, 60.7645], [11.0758, 60.7644], [11.0759, 60.7644], [11.0759, 60.7643], [11.0758, 60.7642], [11.0759, 60.7641], [11.0758, 60.764], [11.0759, 60.764], [11.0758, 60.764], [11.0758, 60.7639], [11.0758, 60.7638], [11.0758, 60.7638], [11.0757, 60.7637], [11.0758, 60.7637], [11.0758, 60.7636], [11.0758, 60.7636], [11.0758, 60.7635], [11.0758, 60.7635], [11.0758, 60.7634], [11.0758, 60.7633], [11.0758, 60.7632], [11.0758, 60.7632], [11.0758, 60.7631], [11.0758, 60.7631], [11.0758, 60.763], [11.0758, 60.763], [11.0758, 60.763], [11.0757, 60.763], [11.0757, 60.7629], [11.0756, 60.7629], [11.0756, 60.7629], [11.0755, 60.7629], [11.0755, 60.7628], [11.0755, 60.7628], [11.0754, 60.7628], [11.0754, 60.7627], [11.0754, 60.7626], [11.0754, 60.7626], [11.0754, 60.7625], [11.0755, 60.7625], [11.0756, 60.7624], [11.0757, 60.7624], [11.0759, 60.7623], [11.076, 60.7623], [11.0761, 60.7624], [11.0761, 60.7623], [11.0762, 60.7623], [11.0762, 60.7622], [11.0762, 60.7622], [11.0762, 60.7621], [11.0762, 60.762], [11.0763, 60.762], [11.0763, 60.7619], [11.0764, 60.7618], [11.0765, 60.7617], [11.0767, 60.7616], [11.0768, 60.7616], [11.0769, 60.7615], [11.077, 60.7613], [11.0771, 60.7613], [11.0772, 60.7612], [11.0772, 60.7612], [11.0772, 60.7613], [11.0773, 60.7613], [11.0774, 60.7613], [11.0775, 60.7613], [11.0776, 60.7612], [11.0776, 60.7612], [11.0776, 60.7611], [11.0775, 60.7611], [11.0775, 60.7611], [11.0775, 60.7611], [11.0776, 60.7611], [11.0776, 60.7611], [11.0777, 60.761], [11.0778, 60.761], [11.0778, 60.7609], [11.0778, 60.7609], [11.0778, 60.7608], [11.0778, 60.7608], [11.0777, 60.7607], [11.0777, 60.7606], [11.0778, 60.7606], [11.0777, 60.7606], [11.0777, 60.7606], [11.0776, 60.7605], [11.0776, 60.7605], [11.0774, 60.7604], [11.0773, 60.7604], [11.0772, 60.7604], [11.0772, 60.7604], [11.0772, 60.7603], [11.0773, 60.7603], [11.0773, 60.7602], [11.0773, 60.7602], [11.0774, 60.7601], [11.0774, 60.76], [11.0775, 60.76], [11.0776, 60.76], [11.0778, 60.7599], [11.0779, 60.7599], [11.078, 60.7598], [11.0781, 60.7597], [11.0783, 60.7595], [11.0784, 60.7595], [11.0786, 60.7595], [11.0787, 60.7594], [11.0788, 60.7594], [11.079, 60.7594], [11.0791, 60.7594], [11.0791, 60.7594], [11.0789, 60.7593], [11.0788, 60.7593], [11.0788, 60.7592], [11.0788, 60.7591], [11.0787, 60.7591], [11.0787, 60.759], [11.0786, 60.7589], [11.0784, 60.7589], [11.0784, 60.7588], [11.0785, 60.7587], [11.0785, 60.7587], [11.0785, 60.7586], [11.0784, 60.7585], [11.0784, 60.7585], [11.0784, 60.7584], [11.0783, 60.7584], [11.0783, 60.7583], [11.0783, 60.7582], [11.0783, 60.7582], [11.0783, 60.7581], [11.0782, 60.7581], [11.0782, 60.7581], [11.0782, 60.758], [11.0781, 60.758], [11.0781, 60.7579], [11.078, 60.7579], [11.0779, 60.7579], [11.0779, 60.7579], [11.0778, 60.7579], [11.0777, 60.7578], [11.0776, 60.7578], [11.0776, 60.7578], [11.0775, 60.7577], [11.0775, 60.7577], [11.0775, 60.7576], [11.0775, 60.7575], [11.0774, 60.7575], [11.0774, 60.7574], [11.0774, 60.7573], [11.0773, 60.7572], [11.0772, 60.7572], [11.0771, 60.7571], [11.0771, 60.757], [11.0771, 60.757], [11.0771, 60.7569], [11.0771, 60.7569], [11.0704, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "119", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7769], [11.0704, 60.7875], [11.0717, 60.7876], [11.0719, 60.7877], [11.0721, 60.7877], [11.0722, 60.7878], [11.0722, 60.7878], [11.0723, 60.7879], [11.0724, 60.7879], [11.0726, 60.7879], [11.0728, 60.7879], [11.073, 60.788], [11.0733, 60.788], [11.0734, 60.7881], [11.0736, 60.7881], [11.074, 60.7882], [11.0742, 60.7882], [11.0742, 60.7882], [11.0744, 60.7882], [11.0744, 60.7882], [11.0745, 60.7882], [11.0745, 60.7882], [11.0746, 60.7882], [11.0747, 60.7882], [11.0748, 60.7882], [11.0749, 60.7883], [11.0749, 60.7883], [11.075, 60.7882], [11.0753, 60.7882], [11.0754, 60.7883], [11.0755, 60.7883], [11.0755, 60.7883], [11.0755, 60.7884], [11.0761, 60.7885], [11.0766, 60.7886], [11.0768, 60.7888], [11.077, 60.7888], [11.0772, 60.7889], [11.0772, 60.7889], [11.0773, 60.789], [11.0774, 60.789], [11.0775, 60.789], [11.0777, 60.7892], [11.0777, 60.7892], [11.0778, 60.7892], [11.0779, 60.7893], [11.0779, 60.7893], [11.0779, 60.7894], [11.0779, 60.7894], [11.078, 60.7895], [11.0781, 60.7895], [11.0781, 60.7896], [11.0781, 60.7896], [11.0781, 60.7896], [11.078, 60.7896], [11.0779, 60.7896], [11.0778, 60.7895], [11.0777, 60.7895], [11.0777, 60.7894], [11.0777, 60.7894], [11.0777, 60.7894], [11.0778, 60.7893], [11.0777, 60.7893], [11.0776, 60.7892], [11.0775, 60.7892], [11.0775, 60.7892], [11.0774, 60.7892], [11.0774, 60.7892], [11.0773, 60.7892], [11.0771, 60.7891], [11.077, 60.789], [11.0769, 60.789], [11.0767, 60.789], [11.0766, 60.789], [11.0765, 60.789], [11.0764, 60.789], [11.0762, 60.7889], [11.076, 60.7889], [11.0759, 60.7889], [11.0758, 60.7889], [11.0756, 60.7888], [11.0754, 60.7888], [11.0752, 60.7888], [11.0751, 60.7889], [11.0751, 60.7892], [11.0752, 60.7893], [11.0753, 60.7895], [11.0753, 60.7895], [11.0754, 60.7897], [11.0755, 60.7898], [11.0755, 60.7898], [11.0755, 60.7899], [11.0755, 60.7899], [11.0758, 60.79], [11.0761, 60.7901], [11.0763, 60.7901], [11.0766, 60.7902], [11.0766, 60.7903], [11.0767, 60.7903], [11.0769, 60.7903], [11.0771, 60.7903], [11.0773, 60.7903], [11.0776, 60.7904], [11.0778, 60.7903], [11.0784, 60.7902], [11.079, 60.7901], [11.0791, 60.7901], [11.0792, 60.7901], [11.0794, 60.79], [11.0795, 60.79], [11.0798, 60.79], [11.0803, 60.79], [11.0805, 60.79], [11.081, 60.7899], [11.0812, 60.7899], [11.0813, 60.7898], [11.0815, 60.7898], [11.0818, 60.7898], [11.082, 60.7897], [11.0823, 60.7897], [11.0826, 60.7896], [11.0833, 60.7895], [11.0837, 60.7894], [11.0839, 60.7894], [11.084, 60.7894], [11.0842, 60.7893], [11.0846, 60.7892], [11.0847, 60.7892], [11.0848, 60.7891], [11.0852, 60.789], [11.0857, 60.7888], [11.086, 60.7887], [11.0862, 60.7886], [11.0856, 60.7881], [11.0856, 60.7881], [11.0856, 60.788], [11.0857, 60.788], [11.0873, 60.7874], [11.0874, 60.7873], [11.0879, 60.7872], [11.0884, 60.787], [11.0886, 60.787], [11.0908, 60.7871], [11.0908, 60.7871], [11.0909, 60.7871], [11.0921, 60.7876], [11.0921, 60.7877], [11.0922, 60.7878], [11.0924, 60.7878], [11.0925, 60.7878], [11.0926, 60.7879], [11.0928, 60.788], [11.0929, 60.788], [11.093, 60.788], [11.0931, 60.788], [11.0931, 60.788], [11.0933, 60.7878], [11.0935, 60.7878], [11.0935, 60.7878], [11.0937, 60.7877], [11.0938, 60.7877], [11.0938, 60.7877], [11.0939, 60.7877], [11.0939, 60.7877], [11.0937, 60.7879], [11.0934, 60.7881], [11.0931, 60.7883], [11.0928, 60.7885], [11.0921, 60.7888], [11.0919, 60.789], [11.0919, 60.789], [11.0919, 60.7891], [11.092, 60.7891], [11.0921, 60.7892], [11.0923, 60.7892], [11.0923, 60.7892], [11.0924, 60.7892], [11.0926, 60.7892], [11.0935, 60.7889], [11.0944, 60.7887], [11.0972, 60.7879], [11.0973, 60.7879], [11.0974, 60.788], [11.0974, 60.7881], [11.0974, 60.7881], [11.0975, 60.7881], [11.0974, 60.7882], [11.0974, 60.7882], [11.0966, 60.7884], [11.0966, 60.7884], [11.0968, 60.7886], [11.0969, 60.7887], [11.097, 60.7888], [11.0971, 60.7889], [11.0972, 60.789], [11.0974, 60.7892], [11.0976, 60.7894], [11.0976, 60.7894], [11.0976, 60.7894], [11.0975, 60.7895], [11.0974, 60.7896], [11.0975, 60.7897], [11.0975, 60.7897], [11.0976, 60.7897], [11.0976, 60.7898], [11.0978, 60.7898], [11.098, 60.7899], [11.098, 60.7899], [11.0981, 60.79], [11.0981, 60.79], [11.0981, 60.7902], [11.0982, 60.7903], [11.0984, 60.7904], [11.0986, 60.7904], [11.0989, 60.7906], [11.099, 60.7907], [11.0992, 60.7907], [11.0993, 60.7908], [11.0994, 60.7909], [11.0994, 60.791], [11.0995, 60.791], [11.0994, 60.7911], [11.0995, 60.7912], [11.0995, 60.7912], [11.0995, 60.7913], [11.0995, 60.7913], [11.0994, 60.7913], [11.0995, 60.7914], [11.0994, 60.7914], [11.0993, 60.7914], [11.0994, 60.7915], [11.0994, 60.7916], [11.0994, 60.7917], [11.0996, 60.7917], [11.0997, 60.7917], [11.0998, 60.7917], [11.0999, 60.7917], [11.1001, 60.7917], [11.1002, 60.7917], [11.1004, 60.7918], [11.1005, 60.7918], [11.1007, 60.7918], [11.1007, 60.7918], [11.1008, 60.7918], [11.1011, 60.7918], [11.1014, 60.7919], [11.1019, 60.7921], [11.1023, 60.7922], [11.1026, 60.7924], [11.1028, 60.7925], [11.103, 60.7927], [11.103, 60.7928], [11.103, 60.7929], [11.1031, 60.7929], [11.1032, 60.7931], [11.1032, 60.7932], [11.1032, 60.7933], [11.1032, 60.7933], [11.1033, 60.7934], [11.1033, 60.7935], [11.1032, 60.7936], [11.1031, 60.7938], [11.1031, 60.7939], [11.1029, 60.794], [11.1028, 60.7941], [11.1028, 60.7941], [11.1027, 60.7942], [11.1027, 60.7943], [11.1027, 60.7944], [11.1028, 60.7945], [11.1028, 60.7946], [11.1028, 60.7946], [11.1028, 60.7947], [11.1028, 60.7947], [11.1028, 60.7948], [11.1028, 60.7948], [11.1028, 60.7949], [11.1028, 60.795], [11.1029, 60.7951], [11.103, 60.7952], [11.1031, 60.7952], [11.1031, 60.7952], [11.1031, 60.7953], [11.1031, 60.7953], [11.1031, 60.7954], [11.1031, 60.7955], [11.1031, 60.7955], [11.1031, 60.7956], [11.1031, 60.7956], [11.1031, 60.7957], [11.1031, 60.7957], [11.1032, 60.7958], [11.1034, 60.7958], [11.1035, 60.7959], [11.1036, 60.7959], [11.1036, 60.7959], [11.1037, 60.796], [11.1037, 60.796], [11.1036, 60.796], [11.1036, 60.7961], [11.1035, 60.7961], [11.1035, 60.7961], [11.1034, 60.7962], [11.1034, 60.7962], [11.1033, 60.7963], [11.1033, 60.7964], [11.1032, 60.7965], [11.1033, 60.7966], [11.1035, 60.7967], [11.1036, 60.7967], [11.1036, 60.7968], [11.1035, 60.7968], [11.1034, 60.7968], [11.1033, 60.7968], [11.1032, 60.7969], [11.104, 60.7969], [11.1039, 60.7968], [11.104, 60.7968], [11.1041, 60.7968], [11.1045, 60.7967], [11.1046, 60.7967], [11.1048, 60.7966], [11.1053, 60.7967], [11.1055, 60.7967], [11.1056, 60.7967], [11.1061, 60.7968], [11.1066, 60.7968], [11.1067, 60.7968], [11.1068, 60.7968], [11.1071, 60.7967], [11.1073, 60.7966], [11.1077, 60.7965], [11.1078, 60.7964], [11.1079, 60.7964], [11.1079, 60.7964], [11.1078, 60.7964], [11.1079, 60.7964], [11.1081, 60.7963], [11.1084, 60.7962], [11.1087, 60.7962], [11.1088, 60.7962], [11.109, 60.7961], [11.1094, 60.796], [11.1097, 60.7959], [11.1101, 60.7958], [11.1102, 60.7958], [11.1102, 60.7958], [11.1103, 60.7959], [11.1103, 60.7959], [11.1103, 60.796], [11.1102, 60.796], [11.1103, 60.7961], [11.1103, 60.7961], [11.1103, 60.7962], [11.1104, 60.7963], [11.1104, 60.7964], [11.1104, 60.7964], [11.1104, 60.7881], [11.1102, 60.7881], [11.1101, 60.788], [11.11, 60.788], [11.1099, 60.7879], [11.1098, 60.7879], [11.1097, 60.7878], [11.1095, 60.7876], [11.1095, 60.7875], [11.1094, 60.7874], [11.1094, 60.7873], [11.1093, 60.7872], [11.1092, 60.787], [11.1092, 60.7869], [11.1092, 60.7868], [11.1093, 60.7867], [11.1093, 60.7866], [11.1094, 60.7865], [11.1095, 60.7864], [11.1095, 60.7863], [11.1095, 60.7862], [11.1096, 60.7862], [11.1095, 60.7861], [11.1095, 60.786], [11.1095, 60.786], [11.1095, 60.7858], [11.1094, 60.7857], [11.1094, 60.7856], [11.1094, 60.7856], [11.1094, 60.7854], [11.1094, 60.7853], [11.1093, 60.7851], [11.1093, 60.785], [11.1092, 60.7849], [11.1091, 60.7849], [11.109, 60.7849], [11.109, 60.7848], [11.1091, 60.7848], [11.1089, 60.7847], [11.1089, 60.7847], [11.1086, 60.7846], [11.1086, 60.7846], [11.1084, 60.7846], [11.1084, 60.7846], [11.1083, 60.7846], [11.1082, 60.7846], [11.1079, 60.7845], [11.1077, 60.7845], [11.1075, 60.7844], [11.1074, 60.7844], [11.1073, 60.7844], [11.1071, 60.7845], [11.1069, 60.7845], [11.1067, 60.7845], [11.1066, 60.7846], [11.1065, 60.7846], [11.1065, 60.7846], [11.1062, 60.7847], [11.106, 60.7848], [11.1058, 60.7849], [11.1054, 60.7853], [11.1051, 60.7856], [11.1048, 60.7858], [11.1048, 60.7859], [11.1047, 60.786], [11.1048, 60.7861], [11.1048, 60.7862], [11.1049, 60.7863], [11.1048, 60.7863], [11.1048, 60.7864], [11.1048, 60.7865], [11.1047, 60.7866], [11.1045, 60.7866], [11.1044, 60.7866], [11.1044, 60.7866], [11.1043, 60.7867], [11.1042, 60.7867], [11.1042, 60.7867], [11.1041, 60.7867], [11.1041, 60.7867], [11.1041, 60.7866], [11.1041, 60.7866], [11.1041, 60.7866], [11.1041, 60.7865], [11.1041, 60.7864], [11.104, 60.7864], [11.1038, 60.7864], [11.1024, 60.7868], [11.1007, 60.7872], [11.1004, 60.7873], [11.0999, 60.7874], [11.0992, 60.7877], [11.0989, 60.7877], [11.0988, 60.7877], [11.0987, 60.7877], [11.0986, 60.7877], [11.0985, 60.7876], [11.0985, 60.7876], [11.0986, 60.7875], [11.1002, 60.7871], [11.1017, 60.7867], [11.1032, 60.7862], [11.1037, 60.7861], [11.1039, 60.786], [11.104, 60.7859], [11.1042, 60.7858], [11.1043, 60.7857], [11.1046, 60.7855], [11.1052, 60.785], [11.1053, 60.7849], [11.1055, 60.7847], [11.1056, 60.7846], [11.1057, 60.7845], [11.1058, 60.7845], [11.1059, 60.7844], [11.1059, 60.7843], [11.1059, 60.7843], [11.1058, 60.7842], [11.1058, 60.7842], [11.1056, 60.7842], [11.1055, 60.7842], [11.1054, 60.7842], [11.1052, 60.7842], [11.1051, 60.7842], [11.105, 60.7842], [11.1049, 60.7842], [11.1048, 60.7842], [11.1047, 60.7842], [11.1046, 60.7842], [11.1045, 60.7842], [11.1044, 60.7842], [11.1043, 60.7842], [11.1043, 60.7842], [11.1042, 60.7842], [11.1042, 60.7842], [11.1041, 60.7842], [11.1041, 60.7841], [11.104, 60.7841], [11.1039, 60.7841], [11.1039, 60.7841], [11.1038, 60.7841], [11.1038, 60.784], [11.1038, 60.784], [11.1038, 60.784], [11.1038, 60.7839], [11.1038, 60.7839], [11.1038, 60.7838], [11.1038, 60.7838], [11.1038, 60.7838], [11.1037, 60.7838], [11.1037, 60.7837], [11.1038, 60.7837], [11.1037, 60.7837], [11.1037, 60.7837], [11.1036, 60.7837], [11.1036, 60.7836], [11.1036, 60.7836], [11.1035, 60.7836], [11.1035, 60.7835], [11.1034, 60.7835], [11.1034, 60.7834], [11.1033, 60.7834], [11.1033, 60.7834], [11.1032, 60.7833], [11.1032, 60.7832], [11.1033, 60.7832], [11.1033, 60.7831], [11.1034, 60.783], [11.1034, 60.783], [11.1034, 60.7829], [11.1035, 60.7829], [11.1035, 60.7828], [11.1035, 60.7828], [11.1034, 60.7827], [11.1033, 60.7827], [11.1032, 60.7826], [11.1031, 60.7825], [11.1029, 60.7824], [11.1028, 60.7823], [11.1027, 60.7823], [11.1026, 60.7822], [11.1025, 60.7822], [11.1024, 60.7822], [11.1024, 60.7821], [11.1024, 60.7821], [11.1023, 60.782], [11.1021, 60.782], [11.1021, 60.7821], [11.1021, 60.7821], [11.102, 60.7821], [11.102, 60.7822], [11.102, 60.7822], [11.1019, 60.7823], [11.1019, 60.7823], [11.1018, 60.7822], [11.1017, 60.7823], [11.1016, 60.7824], [11.1015, 60.7824], [11.1015, 60.7824], [11.1014, 60.7825], [11.1014, 60.7825], [11.1013, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1011, 60.7823], [11.101, 60.7824], [11.101, 60.7825], [11.1009, 60.7826], [11.1008, 60.7827], [11.1006, 60.7829], [11.1005, 60.783], [11.1003, 60.7832], [11.1, 60.7834], [11.0998, 60.7836], [11.0995, 60.7838], [11.0993, 60.784], [11.0992, 60.784], [11.0991, 60.7841], [11.0988, 60.7843], [11.0985, 60.7845], [11.0982, 60.7847], [11.0979, 60.785], [11.0976, 60.7852], [11.0973, 60.7854], [11.097, 60.7856], [11.0969, 60.7856], [11.0967, 60.7858], [11.0957, 60.7865], [11.0953, 60.7868], [11.0948, 60.7871], [11.0948, 60.7872], [11.0947, 60.7872], [11.0947, 60.7872], [11.0945, 60.7873], [11.0945, 60.7873], [11.0943, 60.7873], [11.0943, 60.7873], [11.0945, 60.7871], [11.095, 60.7868], [11.0956, 60.7863], [11.096, 60.786], [11.0964, 60.7858], [11.0969, 60.7854], [11.0971, 60.7853], [11.0974, 60.785], [11.0978, 60.7847], [11.0982, 60.7844], [11.0984, 60.7843], [11.0987, 60.7841], [11.0989, 60.784], [11.0992, 60.7838], [11.0993, 60.7837], [11.0995, 60.7835], [11.0997, 60.7834], [11.0999, 60.7833], [11.1, 60.7831], [11.1002, 60.783], [11.1003, 60.7829], [11.1004, 60.7827], [11.1005, 60.7825], [11.1005, 60.7824], [11.1005, 60.7823], [11.1004, 60.7823], [11.1003, 60.7822], [11.1002, 60.7822], [11.1001, 60.7822], [11.1, 60.7822], [11.0999, 60.7821], [11.0998, 60.7821], [11.0997, 60.782], [11.0997, 60.782], [11.0996, 60.782], [11.0996, 60.782], [11.0995, 60.782], [11.0996, 60.782], [11.0996, 60.7819], [11.0996, 60.7818], [11.0995, 60.7818], [11.0995, 60.7817], [11.0994, 60.7816], [11.0994, 60.7816], [11.0993, 60.7816], [11.0993, 60.7815], [11.0992, 60.7815], [11.0992, 60.7815], [11.0991, 60.7815], [11.099, 60.7815], [11.0989, 60.7815], [11.0988, 60.7815], [11.0988, 60.7815], [11.0988, 60.7815], [11.0987, 60.7815], [11.0986, 60.7815], [11.0985, 60.7815], [11.0985, 60.7815], [11.0984, 60.7815], [11.0983, 60.7814], [11.0983, 60.7814], [11.0983, 60.7814], [11.0982, 60.7814], [11.0981, 60.7814], [11.098, 60.7814], [11.0979, 60.7813], [11.0978, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7812], [11.0975, 60.7812], [11.0975, 60.7812], [11.0975, 60.7811], [11.0976, 60.7811], [11.0976, 60.7811], [11.0976, 60.781], [11.0976, 60.7809], [11.0975, 60.7809], [11.0975, 60.7809], [11.0975, 60.7809], [11.0975, 60.7807], [11.0975, 60.7807], [11.0975, 60.7807], [11.0975, 60.7806], [11.0975, 60.7805], [11.0975, 60.7805], [11.0975, 60.7805], [11.0975, 60.7804], [11.0975, 60.7804], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7802], [11.0974, 60.7802], [11.0974, 60.7801], [11.0974, 60.7801], [11.0974, 60.78], [11.0974, 60.78], [11.0973, 60.7799], [11.0973, 60.7799], [11.0972, 60.7798], [11.0972, 60.7798], [11.0971, 60.7797], [11.0971, 60.7797], [11.097, 60.7796], [11.0969, 60.7795], [11.0968, 60.7795], [11.0967, 60.7794], [11.0966, 60.7793], [11.0963, 60.7792], [11.0962, 60.7792], [11.0961, 60.7791], [11.0961, 60.7791], [11.096, 60.7791], [11.096, 60.7791], [11.0959, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0955, 60.7791], [11.0954, 60.7791], [11.0953, 60.7791], [11.0953, 60.7791], [11.0952, 60.7791], [11.0951, 60.7791], [11.095, 60.7791], [11.0948, 60.7792], [11.0946, 60.7792], [11.0945, 60.7792], [11.0945, 60.7793], [11.094, 60.7792], [11.0936, 60.7793], [11.093, 60.7793], [11.0927, 60.7792], [11.0926, 60.7792], [11.0925, 60.7792], [11.0922, 60.7792], [11.0921, 60.7792], [11.0921, 60.7792], [11.092, 60.7791], [11.0918, 60.779], [11.0918, 60.779], [11.0918, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7788], [11.0916, 60.7788], [11.0915, 60.7788], [11.0915, 60.7787], [11.0915, 60.7787], [11.0915, 60.7786], [11.0914, 60.7786], [11.0914, 60.7786], [11.0914, 60.7785], [11.0914, 60.7785], [11.0915, 60.7785], [11.0914, 60.7784], [11.0914, 60.7784], [11.0914, 60.7784], [11.0913, 60.7784], [11.0913, 60.7783], [11.0911, 60.7782], [11.091, 60.7782], [11.091, 60.7782], [11.0911, 60.7782], [11.0911, 60.7782], [11.0911, 60.778], [11.091, 60.7779], [11.091, 60.7779], [11.0908, 60.7778], [11.0908, 60.7777], [11.0908, 60.7776], [11.0908, 60.7774], [11.0907, 60.7774], [11.0908, 60.7774], [11.0907, 60.7773], [11.0906, 60.7774], [11.0906, 60.7773], [11.0906, 60.7773], [11.0906, 60.7773], [11.0905, 60.7773], [11.0905, 60.7773], [11.0904, 60.7773], [11.0904, 60.7772], [11.0904, 60.7772], [11.0903, 60.7772], [11.0903, 60.7772], [11.0902, 60.7773], [11.0902, 60.7773], [11.0901, 60.7773], [11.0901, 60.7773], [11.09, 60.7773], [11.09, 60.7772], [11.0901, 60.7771], [11.0901, 60.7771], [11.09, 60.7771], [11.0899, 60.7771], [11.0898, 60.7771], [11.0897, 60.7772], [11.0896, 60.7772], [11.0895, 60.7773], [11.0894, 60.7772], [11.0894, 60.7772], [11.0894, 60.7772], [11.0895, 60.7771], [11.0896, 60.777], [11.0895, 60.777], [11.0893, 60.777], [11.0893, 60.777], [11.0892, 60.777], [11.0889, 60.777], [11.0889, 60.7771], [11.0886, 60.7771], [11.0886, 60.7772], [11.0885, 60.7772], [11.0884, 60.7772], [11.0885, 60.7773], [11.0884, 60.7773], [11.0884, 60.7772], [11.0884, 60.7772], [11.0882, 60.7772], [11.0882, 60.7772], [11.0881, 60.7772], [11.088, 60.7773], [11.0879, 60.7772], [11.0877, 60.7772], [11.0876, 60.7772], [11.0874, 60.7771], [11.0873, 60.7771], [11.0871, 60.777], [11.0869, 60.777], [11.0868, 60.7769], [11.0704, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "120", "sub_div_center": [0.0057, 0.0043]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0705, 60.7926], [11.0705, 60.7926], [11.0709, 60.7925], [11.0712, 60.7923], [11.0715, 60.7921], [11.0718, 60.7919], [11.072, 60.7918], [11.0722, 60.7917], [11.0723, 60.7916], [11.0724, 60.7915], [11.0726, 60.7915], [11.0731, 60.7915], [11.0731, 60.7915], [11.0733, 60.7914], [11.0728, 60.7912], [11.073, 60.7911], [11.0731, 60.7911], [11.0732, 60.791], [11.0732, 60.791], [11.0739, 60.7913], [11.074, 60.7912], [11.074, 60.7912], [11.0741, 60.7911], [11.0743, 60.791], [11.0744, 60.791], [11.0746, 60.791], [11.0747, 60.791], [11.0748, 60.791], [11.0748, 60.7909], [11.0749, 60.7908], [11.075, 60.7908], [11.0751, 60.7908], [11.0751, 60.7908], [11.0752, 60.7907], [11.0752, 60.7907], [11.0753, 60.7907], [11.0754, 60.7908], [11.0755, 60.7908], [11.0756, 60.7909], [11.0757, 60.7909], [11.0758, 60.7909], [11.0758, 60.7909], [11.076, 60.7909], [11.0761, 60.7909], [11.0761, 60.7908], [11.0761, 60.7908], [11.0761, 60.7908], [11.0761, 60.7907], [11.0761, 60.7907], [11.076, 60.7907], [11.076, 60.7906], [11.0757, 60.7904], [11.0756, 60.7904], [11.0755, 60.7903], [11.0751, 60.7902], [11.0748, 60.7901], [11.0747, 60.79], [11.0746, 60.79], [11.0746, 60.7901], [11.0745, 60.7901], [11.0745, 60.7901], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7903], [11.0745, 60.7903], [11.0744, 60.7903], [11.0744, 60.7902], [11.0743, 60.7902], [11.0743, 60.7902], [11.0743, 60.7902], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.79], [11.0742, 60.79], [11.0742, 60.79], [11.0741, 60.7899], [11.0741, 60.7899], [11.0739, 60.7898], [11.0737, 60.7898], [11.0736, 60.7897], [11.0736, 60.7897], [11.0734, 60.7897], [11.0732, 60.7897], [11.0732, 60.7897], [11.0732, 60.7896], [11.0729, 60.7897], [11.0729, 60.7896], [11.0729, 60.7896], [11.0727, 60.7895], [11.0723, 60.7893], [11.0724, 60.7893], [11.0719, 60.7892], [11.0719, 60.7892], [11.0713, 60.7892], [11.0709, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0706, 60.7892], [11.0706, 60.7891], [11.0708, 60.789], [11.0709, 60.7888], [11.0712, 60.7886], [11.0712, 60.7885], [11.0712, 60.7885], [11.0711, 60.7885], [11.0711, 60.7885], [11.071, 60.7884], [11.071, 60.7884], [11.0709, 60.7884], [11.0707, 60.7884], [11.0707, 60.7884], [11.0706, 60.7884], [11.0707, 60.7884], [11.0704, 60.7883], [11.0704, 60.7883], [11.0704, 60.7883], [11.0704, 60.7897], [11.0705, 60.7897], [11.0705, 60.7898], [11.0705, 60.7898], [11.0705, 60.7899], [11.0704, 60.7899], [11.0704, 60.7926], [11.0705, 60.7926]]]}}, {"type": "Feature", "properties": {"sub_div_id": "121", "sub_div_center": [0.0023, 0.0017]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7883], [11.0704, 60.7883], [11.0703, 60.7883], [11.0702, 60.7883], [11.0701, 60.7882], [11.0701, 60.7882], [11.0699, 60.7882], [11.0699, 60.7882], [11.0699, 60.7882], [11.0697, 60.7881], [11.0695, 60.7881], [11.0695, 60.7881], [11.0695, 60.7881], [11.0693, 60.788], [11.0692, 60.788], [11.0691, 60.788], [11.069, 60.7882], [11.0682, 60.7888], [11.0681, 60.7889], [11.0681, 60.7889], [11.0681, 60.7889], [11.0682, 60.789], [11.0683, 60.789], [11.0684, 60.7891], [11.0687, 60.7892], [11.0689, 60.7892], [11.0692, 60.7893], [11.0698, 60.7895], [11.07, 60.7895], [11.0702, 60.7896], [11.0704, 60.7897], [11.0704, 60.7883]]]}}, {"type": "Feature", "properties": {"sub_div_id": "122", "sub_div_center": [0.0341, 0.0142]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1104, 60.6227], [11.1104, 60.6227], [11.1102, 60.6228], [11.1095, 60.6231], [11.1094, 60.6231], [11.1079, 60.6235], [11.1071, 60.6237], [11.1064, 60.624], [11.1052, 60.6247], [11.1046, 60.6249], [11.1044, 60.625], [11.1036, 60.6252], [11.1026, 60.6258], [11.1012, 60.6264], [11.1001, 60.6268], [11.1, 60.6269], [11.0998, 60.627], [11.0993, 60.6274], [11.0984, 60.6279], [11.096, 60.6289], [11.095, 60.6293], [11.0945, 60.6295], [11.0939, 60.63], [11.0936, 60.6301], [11.0936, 60.6302], [11.0935, 60.6304], [11.0934, 60.6305], [11.0933, 60.6307], [11.0931, 60.6308], [11.0931, 60.6308], [11.0929, 60.6309], [11.0927, 60.631], [11.0926, 60.6311], [11.0925, 60.6311], [11.0925, 60.6312], [11.0926, 60.6313], [11.0926, 60.6314], [11.0926, 60.6314], [11.0926, 60.6315], [11.0922, 60.6316], [11.0916, 60.6317], [11.0914, 60.6318], [11.0908, 60.6319], [11.0901, 60.632], [11.0898, 60.632], [11.0891, 60.6321], [11.0889, 60.6321], [11.0884, 60.6322], [11.0883, 60.6323], [11.0881, 60.6323], [11.088, 60.6323], [11.0874, 60.6322], [11.0871, 60.6322], [11.0869, 60.6322], [11.0862, 60.6322], [11.0855, 60.6322], [11.0854, 60.6322], [11.0852, 60.6323], [11.0847, 60.6325], [11.0846, 60.6325], [11.0843, 60.6327], [11.084, 60.6328], [11.0835, 60.633], [11.0831, 60.6333], [11.083, 60.6333], [11.0826, 60.6335], [11.0822, 60.6337], [11.082, 60.6338], [11.082, 60.6338], [11.0819, 60.6339], [11.0818, 60.6339], [11.0817, 60.634], [11.0814, 60.6341], [11.0809, 60.6343], [11.0805, 60.6345], [11.0805, 60.6345], [11.0805, 60.6346], [11.0806, 60.6347], [11.0806, 60.6347], [11.0805, 60.6347], [11.0804, 60.6347], [11.0803, 60.6347], [11.0802, 60.6347], [11.0796, 60.6349], [11.0795, 60.6349], [11.0794, 60.635], [11.0792, 60.6351], [11.0784, 60.6355], [11.0781, 60.6357], [11.078, 60.6358], [11.0777, 60.6359], [11.0775, 60.6361], [11.0772, 60.6362], [11.0771, 60.6363], [11.0769, 60.6365], [11.0769, 60.6366], [11.0768, 60.6366], [11.0768, 60.6366], [11.0766, 60.6367], [11.0763, 60.6369], [11.0763, 60.6369], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "123", "sub_div_center": [0.0005, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0879, 60.7369], [11.0879, 60.7369], [11.088, 60.7369], [11.0881, 60.7369], [11.0881, 60.7369], [11.0881, 60.7369], [11.0882, 60.7369], [11.0882, 60.7369], [11.0883, 60.7369], [11.0884, 60.7369], [11.0879, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "124", "sub_div_center": [0.0074, 0.006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1032, 60.7969], [11.1032, 60.7969], [11.1032, 60.7969], [11.1032, 60.797], [11.1032, 60.7971], [11.1032, 60.7973], [11.1033, 60.7974], [11.1033, 60.7975], [11.1032, 60.7976], [11.1033, 60.7976], [11.1033, 60.7976], [11.1034, 60.7977], [11.1035, 60.7977], [11.1034, 60.7978], [11.1035, 60.7978], [11.1035, 60.798], [11.1034, 60.798], [11.1033, 60.7981], [11.1031, 60.7981], [11.103, 60.7982], [11.103, 60.799], [11.103, 60.7992], [11.1031, 60.7993], [11.103, 60.7993], [11.1031, 60.7994], [11.1031, 60.7994], [11.1032, 60.7993], [11.1032, 60.7994], [11.1032, 60.7994], [11.1031, 60.7994], [11.1032, 60.7995], [11.1032, 60.7996], [11.1032, 60.7997], [11.1034, 60.7998], [11.1035, 60.7999], [11.1036, 60.7999], [11.1035, 60.8], [11.1036, 60.8], [11.1036, 60.8001], [11.1037, 60.8001], [11.104, 60.8002], [11.1041, 60.8002], [11.1041, 60.8002], [11.1042, 60.8002], [11.1043, 60.8003], [11.1043, 60.8003], [11.1043, 60.8003], [11.1047, 60.8005], [11.105, 60.8006], [11.1052, 60.8006], [11.1053, 60.8007], [11.1055, 60.8007], [11.1056, 60.8008], [11.1057, 60.8008], [11.1057, 60.8009], [11.1057, 60.801], [11.1058, 60.8011], [11.1058, 60.8012], [11.1057, 60.8012], [11.1057, 60.8013], [11.1055, 60.8014], [11.1053, 60.8016], [11.1052, 60.8017], [11.1052, 60.8017], [11.1051, 60.8017], [11.1051, 60.8018], [11.1051, 60.8018], [11.1052, 60.8019], [11.1053, 60.8018], [11.1053, 60.8018], [11.1054, 60.8018], [11.1054, 60.8018], [11.1056, 60.8017], [11.1057, 60.8017], [11.1058, 60.8018], [11.1058, 60.8018], [11.106, 60.8018], [11.106, 60.8018], [11.1061, 60.8018], [11.1062, 60.8018], [11.1064, 60.8017], [11.1065, 60.8017], [11.1065, 60.8016], [11.1065, 60.8015], [11.1065, 60.8014], [11.1067, 60.8014], [11.1069, 60.8014], [11.107, 60.8014], [11.1072, 60.8014], [11.1074, 60.8012], [11.1075, 60.8011], [11.1076, 60.801], [11.1075, 60.801], [11.1074, 60.8009], [11.1073, 60.8009], [11.1072, 60.8009], [11.107, 60.8008], [11.1071, 60.8007], [11.1072, 60.8006], [11.1072, 60.8006], [11.1073, 60.8007], [11.1074, 60.8007], [11.1074, 60.8007], [11.1075, 60.8008], [11.1079, 60.8006], [11.108, 60.8007], [11.1081, 60.8007], [11.108, 60.8008], [11.108, 60.8008], [11.108, 60.8008], [11.1085, 60.8009], [11.1086, 60.8009], [11.1087, 60.801], [11.1088, 60.801], [11.109, 60.8011], [11.1094, 60.801], [11.1096, 60.8011], [11.1098, 60.8012], [11.11, 60.8012], [11.11, 60.8013], [11.11, 60.8013], [11.11, 60.8014], [11.1099, 60.8015], [11.1099, 60.8015], [11.1098, 60.8014], [11.1097, 60.8013], [11.1095, 60.8012], [11.1094, 60.8013], [11.1093, 60.8013], [11.1093, 60.8014], [11.1092, 60.8014], [11.109, 60.8014], [11.1088, 60.8014], [11.1086, 60.8015], [11.1084, 60.8016], [11.1082, 60.8016], [11.1078, 60.8017], [11.1077, 60.8017], [11.1076, 60.8018], [11.1075, 60.8019], [11.1074, 60.802], [11.1073, 60.8021], [11.1071, 60.8022], [11.107, 60.8023], [11.1069, 60.8023], [11.1069, 60.8023], [11.1067, 60.8024], [11.1066, 60.8024], [11.1067, 60.8024], [11.1076, 60.8026], [11.1081, 60.8026], [11.1083, 60.8025], [11.1085, 60.8024], [11.1085, 60.8024], [11.1086, 60.8024], [11.1087, 60.8023], [11.1088, 60.8023], [11.1089, 60.8023], [11.1091, 60.8022], [11.1093, 60.8021], [11.1094, 60.8021], [11.1096, 60.8021], [11.1098, 60.8021], [11.1098, 60.8022], [11.1098, 60.8022], [11.1097, 60.8022], [11.1096, 60.8023], [11.1095, 60.8023], [11.1095, 60.8024], [11.1097, 60.8024], [11.1098, 60.8024], [11.1098, 60.8025], [11.1097, 60.8025], [11.1097, 60.8025], [11.1096, 60.8026], [11.1096, 60.8026], [11.1095, 60.8026], [11.1095, 60.8027], [11.1097, 60.8026], [11.1098, 60.8026], [11.1099, 60.8026], [11.11, 60.8026], [11.1099, 60.8027], [11.1098, 60.8027], [11.1098, 60.8028], [11.1096, 60.8028], [11.1095, 60.8028], [11.1095, 60.8028], [11.1094, 60.8028], [11.1095, 60.8028], [11.1096, 60.8028], [11.1098, 60.8028], [11.11, 60.8028], [11.1101, 60.8027], [11.1102, 60.8027], [11.1104, 60.8027], [11.1104, 60.7988], [11.1101, 60.7987], [11.1096, 60.7987], [11.1095, 60.7986], [11.1093, 60.7986], [11.1092, 60.7986], [11.1091, 60.7986], [11.1089, 60.7987], [11.1087, 60.7987], [11.1086, 60.7987], [11.1085, 60.7987], [11.1081, 60.7989], [11.1079, 60.799], [11.1078, 60.799], [11.1077, 60.799], [11.1077, 60.799], [11.1075, 60.799], [11.1073, 60.799], [11.1072, 60.799], [11.1071, 60.7991], [11.1067, 60.7992], [11.1064, 60.7992], [11.1061, 60.7993], [11.1058, 60.7993], [11.1056, 60.7993], [11.1052, 60.7993], [11.1052, 60.7992], [11.105, 60.7992], [11.105, 60.7991], [11.1049, 60.7991], [11.1048, 60.799], [11.1047, 60.7989], [11.1047, 60.7987], [11.1046, 60.7987], [11.1045, 60.7986], [11.1044, 60.7984], [11.1043, 60.7983], [11.1043, 60.7983], [11.1043, 60.7982], [11.1043, 60.7982], [11.1041, 60.7982], [11.104, 60.7981], [11.104, 60.7979], [11.1041, 60.7978], [11.1042, 60.7977], [11.1045, 60.7978], [11.1047, 60.7978], [11.1049, 60.7978], [11.1049, 60.7978], [11.1049, 60.7977], [11.1049, 60.7976], [11.1048, 60.7976], [11.1046, 60.7973], [11.1043, 60.7971], [11.1044, 60.797], [11.1044, 60.797], [11.1043, 60.7969], [11.1042, 60.7969], [11.104, 60.7969], [11.104, 60.7969], [11.104, 60.7969], [11.1032, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "125", "sub_div_center": [0.0001, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.7969], [11.1104, 60.7966], [11.1104, 60.7967], [11.1103, 60.7969], [11.1104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "126", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1103, 60.7969], [11.1103, 60.7969], [11.1102, 60.797], [11.1104, 60.797], [11.1104, 60.7969], [11.1103, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "127", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1504, 60.6369], [11.1504, 60.6169], [11.1162, 60.6169], [11.1161, 60.617], [11.1159, 60.6173], [11.1158, 60.6176], [11.1152, 60.6182], [11.1152, 60.6184], [11.1154, 60.6186], [11.1152, 60.6189], [11.1153, 60.6191], [11.1157, 60.6193], [11.1155, 60.6196], [11.115, 60.6201], [11.1147, 60.6202], [11.1144, 60.6207], [11.1136, 60.621], [11.1127, 60.6218], [11.1121, 60.6221], [11.1113, 60.6224], [11.1104, 60.6227], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "128", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1104, 60.6569], [11.1466, 60.6569], [11.1467, 60.6568], [11.1467, 60.6567], [11.1467, 60.6567], [11.1469, 60.6565], [11.147, 60.6564], [11.1471, 60.6562], [11.1471, 60.6561], [11.1471, 60.6561], [11.1471, 60.6561], [11.1472, 60.656], [11.1473, 60.6559], [11.1474, 60.6558], [11.1474, 60.6556], [11.1474, 60.6555], [11.1475, 60.6554], [11.1474, 60.6553], [11.1475, 60.6552], [11.1475, 60.655], [11.1476, 60.655], [11.1476, 60.6549], [11.1478, 60.6548], [11.1479, 60.6545], [11.148, 60.6544], [11.148, 60.6542], [11.1481, 60.6541], [11.1481, 60.6539], [11.1483, 60.6538], [11.1484, 60.6535], [11.1485, 60.6533], [11.1486, 60.6529], [11.1487, 60.6526], [11.1488, 60.6525], [11.1489, 60.6524], [11.1489, 60.6522], [11.1489, 60.6521], [11.149, 60.652], [11.1492, 60.6518], [11.1493, 60.6516], [11.1495, 60.6511], [11.1496, 60.6508], [11.1497, 60.6506], [11.1499, 60.6504], [11.1499, 60.6504], [11.15, 60.6503], [11.15, 60.6502], [11.15, 60.6501], [11.1501, 60.65], [11.1503, 60.6498], [11.1504, 60.6495], [11.1504, 60.6494], [11.1504, 60.6369], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "129", "sub_div_center": [0.0362, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6569], [11.1104, 60.6769], [11.1162, 60.6769], [11.1162, 60.6767], [11.1164, 60.6766], [11.1166, 60.6764], [11.1168, 60.6763], [11.1169, 60.6762], [11.117, 60.6761], [11.1172, 60.6757], [11.1174, 60.6755], [11.1174, 60.6754], [11.1175, 60.6753], [11.1175, 60.6752], [11.1174, 60.6751], [11.1174, 60.6749], [11.1173, 60.6747], [11.1172, 60.6745], [11.1173, 60.6744], [11.1172, 60.6743], [11.1169, 60.674], [11.1165, 60.6738], [11.1165, 60.6736], [11.1165, 60.6735], [11.1166, 60.6734], [11.1166, 60.6733], [11.1166, 60.6732], [11.1166, 60.6731], [11.1166, 60.673], [11.1166, 60.6728], [11.1165, 60.6727], [11.1166, 60.6726], [11.1166, 60.6725], [11.1167, 60.6724], [11.1167, 60.6724], [11.1167, 60.6724], [11.1168, 60.6723], [11.1168, 60.6723], [11.1169, 60.6722], [11.117, 60.6721], [11.1171, 60.672], [11.1172, 60.672], [11.1172, 60.672], [11.1173, 60.672], [11.1173, 60.672], [11.1172, 60.672], [11.1173, 60.6719], [11.1174, 60.672], [11.1175, 60.6719], [11.1177, 60.6718], [11.1178, 60.6717], [11.1181, 60.6716], [11.1182, 60.6714], [11.1183, 60.6714], [11.1185, 60.6712], [11.1187, 60.6712], [11.1189, 60.6711], [11.1191, 60.6709], [11.1192, 60.6708], [11.1195, 60.6707], [11.1198, 60.6704], [11.1201, 60.6703], [11.1202, 60.6701], [11.1204, 60.6699], [11.1204, 60.6698], [11.1205, 60.6698], [11.1207, 60.6696], [11.1208, 60.6695], [11.1209, 60.6694], [11.1211, 60.6694], [11.1212, 60.6693], [11.1215, 60.6692], [11.1221, 60.6691], [11.1222, 60.669], [11.1224, 60.669], [11.1226, 60.6689], [11.1226, 60.6689], [11.1226, 60.6688], [11.1228, 60.6688], [11.1229, 60.6688], [11.1231, 60.6688], [11.1233, 60.6689], [11.1236, 60.669], [11.1239, 60.669], [11.1239, 60.669], [11.1242, 60.669], [11.1246, 60.669], [11.1248, 60.669], [11.125, 60.669], [11.1253, 60.669], [11.1255, 60.669], [11.1255, 60.6689], [11.1257, 60.6689], [11.1258, 60.6688], [11.1259, 60.6688], [11.1259, 60.6689], [11.126, 60.6689], [11.126, 60.6688], [11.1261, 60.6688], [11.1263, 60.6688], [11.1265, 60.6688], [11.1266, 60.6689], [11.1267, 60.6691], [11.1266, 60.6694], [11.1266, 60.6695], [11.1266, 60.6696], [11.1267, 60.6697], [11.1268, 60.6698], [11.127, 60.6699], [11.1271, 60.6699], [11.1272, 60.6699], [11.1273, 60.6699], [11.1273, 60.6698], [11.1273, 60.6698], [11.1274, 60.6699], [11.1274, 60.6699], [11.1275, 60.6698], [11.1275, 60.6698], [11.1276, 60.6698], [11.1276, 60.6698], [11.1276, 60.6697], [11.1277, 60.6697], [11.1277, 60.6697], [11.1278, 60.6697], [11.1279, 60.6696], [11.1279, 60.6696], [11.1279, 60.6696], [11.1279, 60.6695], [11.1279, 60.6695], [11.128, 60.6695], [11.128, 60.6695], [11.1281, 60.6694], [11.1281, 60.6694], [11.1281, 60.6693], [11.128, 60.6693], [11.128, 60.6693], [11.1281, 60.6693], [11.1281, 60.6693], [11.1281, 60.6692], [11.1281, 60.6691], [11.1282, 60.6691], [11.1283, 60.669], [11.1283, 60.6689], [11.1283, 60.6689], [11.1283, 60.6688], [11.1284, 60.6688], [11.1284, 60.6689], [11.1283, 60.6689], [11.1283, 60.6689], [11.1284, 60.6689], [11.1284, 60.6689], [11.1285, 60.6689], [11.1285, 60.6689], [11.1285, 60.6688], [11.1284, 60.6688], [11.1284, 60.6688], [11.1283, 60.6688], [11.1283, 60.6688], [11.1284, 60.6688], [11.1285, 60.6688], [11.1286, 60.6688], [11.1286, 60.6688], [11.1287, 60.6688], [11.1287, 60.6687], [11.1287, 60.6687], [11.1288, 60.6688], [11.1289, 60.6687], [11.1289, 60.6686], [11.1289, 60.6686], [11.1289, 60.6686], [11.129, 60.6685], [11.1291, 60.6685], [11.1291, 60.6685], [11.1293, 60.6684], [11.1294, 60.6684], [11.1295, 60.6683], [11.1296, 60.6683], [11.1295, 60.6682], [11.1295, 60.6682], [11.1295, 60.6682], [11.1298, 60.6682], [11.1298, 60.6682], [11.13, 60.6681], [11.13, 60.6681], [11.1299, 60.668], [11.1295, 60.6681], [11.1295, 60.6681], [11.1295, 60.6681], [11.1296, 60.6681], [11.1299, 60.668], [11.13, 60.668], [11.13, 60.668], [11.1301, 60.6681], [11.1302, 60.668], [11.1302, 60.668], [11.1303, 60.668], [11.1304, 60.668], [11.1305, 60.6679], [11.1305, 60.6679], [11.1306, 60.6679], [11.1306, 60.6678], [11.1307, 60.6678], [11.1307, 60.6677], [11.1305, 60.6677], [11.1304, 60.6677], [11.1303, 60.6677], [11.1303, 60.6677], [11.1302, 60.6678], [11.1301, 60.6678], [11.1302, 60.6677], [11.1302, 60.6677], [11.1304, 60.6677], [11.1305, 60.6676], [11.1307, 60.6676], [11.1307, 60.6676], [11.1308, 60.6676], [11.1309, 60.6675], [11.131, 60.6675], [11.1309, 60.6675], [11.1309, 60.6675], [11.131, 60.6674], [11.131, 60.6674], [11.1311, 60.6674], [11.1311, 60.6674], [11.1312, 60.6674], [11.1312, 60.6673], [11.1313, 60.6673], [11.1312, 60.6673], [11.1311, 60.6673], [11.131, 60.6674], [11.1309, 60.6674], [11.1309, 60.6674], [11.1309, 60.6673], [11.1309, 60.6673], [11.1311, 60.6673], [11.1312, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1314, 60.6672], [11.1314, 60.6672], [11.1315, 60.6672], [11.1316, 60.6672], [11.1316, 60.6673], [11.1317, 60.6672], [11.1317, 60.6672], [11.1318, 60.6672], [11.1315, 60.6671], [11.1315, 60.667], [11.1314, 60.6671], [11.1313, 60.6671], [11.1313, 60.6671], [11.1314, 60.667], [11.1315, 60.667], [11.1315, 60.667], [11.1316, 60.667], [11.1317, 60.6671], [11.1319, 60.6671], [11.1319, 60.6671], [11.132, 60.6671], [11.132, 60.667], [11.132, 60.667], [11.132, 60.6669], [11.132, 60.6669], [11.132, 60.6668], [11.1321, 60.6668], [11.1322, 60.6667], [11.1324, 60.6666], [11.1325, 60.6665], [11.1326, 60.6665], [11.1326, 60.6664], [11.1327, 60.6663], [11.1327, 60.6662], [11.1328, 60.6661], [11.1329, 60.666], [11.133, 60.6659], [11.1331, 60.6659], [11.1332, 60.6659], [11.1333, 60.6659], [11.1335, 60.666], [11.1337, 60.666], [11.134, 60.6659], [11.1341, 60.6659], [11.1342, 60.666], [11.1344, 60.666], [11.1345, 60.666], [11.1345, 60.6661], [11.1346, 60.6661], [11.1347, 60.666], [11.1349, 60.666], [11.1349, 60.6661], [11.1348, 60.6662], [11.1348, 60.6664], [11.1347, 60.6665], [11.1348, 60.6666], [11.1348, 60.6666], [11.1349, 60.6667], [11.135, 60.6667], [11.1351, 60.6667], [11.1353, 60.6667], [11.1354, 60.6667], [11.1355, 60.6666], [11.1356, 60.6666], [11.1357, 60.6665], [11.1358, 60.6665], [11.1358, 60.6664], [11.1358, 60.6663], [11.1358, 60.6663], [11.1358, 60.6662], [11.1358, 60.6661], [11.1359, 60.666], [11.1359, 60.666], [11.136, 60.6659], [11.136, 60.6658], [11.1362, 60.6658], [11.1363, 60.6657], [11.1364, 60.6656], [11.1365, 60.6656], [11.1366, 60.6656], [11.1369, 60.6656], [11.1371, 60.6656], [11.1373, 60.6656], [11.1376, 60.6656], [11.1377, 60.6656], [11.1378, 60.6656], [11.138, 60.6655], [11.1382, 60.6655], [11.1383, 60.6655], [11.1384, 60.6654], [11.1384, 60.6653], [11.1383, 60.6652], [11.1384, 60.6652], [11.1384, 60.6653], [11.1384, 60.6653], [11.1385, 60.6653], [11.1386, 60.6653], [11.1386, 60.6654], [11.1386, 60.6654], [11.1385, 60.6654], [11.1386, 60.6655], [11.1388, 60.6656], [11.1389, 60.6657], [11.139, 60.6657], [11.1391, 60.6658], [11.1393, 60.6658], [11.1394, 60.6659], [11.1394, 60.666], [11.1394, 60.6661], [11.1395, 60.6663], [11.1395, 60.6664], [11.1394, 60.6665], [11.1394, 60.6666], [11.1394, 60.6668], [11.1392, 60.667], [11.1392, 60.667], [11.1394, 60.667], [11.1396, 60.667], [11.1397, 60.667], [11.1399, 60.6668], [11.1401, 60.6667], [11.1401, 60.6666], [11.1402, 60.6665], [11.1402, 60.6665], [11.1402, 60.6664], [11.1403, 60.6663], [11.1402, 60.6662], [11.1403, 60.6662], [11.1403, 60.6661], [11.1404, 60.6661], [11.1405, 60.6661], [11.1405, 60.6661], [11.1405, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1403, 60.666], [11.1402, 60.666], [11.1401, 60.6659], [11.14, 60.6659], [11.14, 60.6659], [11.14, 60.6659], [11.14, 60.6658], [11.14, 60.6658], [11.1401, 60.6658], [11.1401, 60.6658], [11.1402, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6656], [11.1403, 60.6656], [11.1403, 60.6655], [11.1402, 60.6654], [11.1402, 60.6653], [11.1402, 60.6652], [11.1402, 60.6652], [11.1402, 60.6651], [11.1402, 60.665], [11.1402, 60.665], [11.1401, 60.665], [11.1402, 60.6649], [11.1402, 60.6649], [11.1402, 60.6648], [11.1401, 60.6648], [11.1401, 60.6647], [11.1402, 60.6647], [11.1401, 60.6646], [11.1401, 60.6646], [11.14, 60.6646], [11.1402, 60.6645], [11.1402, 60.6645], [11.1402, 60.6644], [11.1401, 60.6643], [11.1402, 60.6643], [11.1402, 60.6642], [11.1402, 60.6642], [11.1403, 60.6642], [11.1403, 60.6641], [11.1404, 60.6641], [11.1403, 60.6641], [11.1403, 60.6641], [11.1402, 60.6641], [11.1402, 60.6641], [11.1401, 60.6641], [11.1401, 60.6641], [11.1401, 60.6641], [11.14, 60.6641], [11.14, 60.6642], [11.1399, 60.6642], [11.1399, 60.6641], [11.1399, 60.664], [11.1399, 60.664], [11.1399, 60.6639], [11.1399, 60.6638], [11.14, 60.6638], [11.1401, 60.6637], [11.1404, 60.6637], [11.1403, 60.6636], [11.1402, 60.6635], [11.1402, 60.6634], [11.1401, 60.6633], [11.1401, 60.6633], [11.14, 60.6632], [11.1399, 60.6631], [11.1398, 60.6631], [11.1397, 60.663], [11.1395, 60.663], [11.1395, 60.663], [11.1394, 60.663], [11.1393, 60.663], [11.1392, 60.663], [11.1391, 60.663], [11.139, 60.663], [11.1389, 60.6629], [11.1389, 60.6629], [11.1389, 60.6628], [11.1388, 60.6628], [11.1386, 60.6628], [11.1383, 60.6628], [11.1383, 60.6628], [11.1382, 60.6628], [11.1381, 60.6627], [11.1381, 60.6627], [11.1381, 60.6626], [11.1381, 60.6625], [11.138, 60.6625], [11.1381, 60.6623], [11.138, 60.6622], [11.1379, 60.6621], [11.1379, 60.662], [11.1379, 60.662], [11.1379, 60.6619], [11.138, 60.6619], [11.1381, 60.6618], [11.138, 60.6618], [11.1379, 60.6617], [11.1379, 60.6618], [11.1378, 60.6617], [11.1378, 60.6617], [11.1377, 60.6617], [11.1377, 60.6616], [11.1377, 60.6616], [11.1376, 60.6615], [11.1377, 60.6614], [11.1378, 60.6613], [11.1378, 60.6612], [11.1379, 60.6611], [11.1379, 60.661], [11.1379, 60.6609], [11.1379, 60.6609], [11.138, 60.6609], [11.1381, 60.6608], [11.1382, 60.6606], [11.1382, 60.6605], [11.1383, 60.6605], [11.1385, 60.6605], [11.1386, 60.6605], [11.1387, 60.6605], [11.1387, 60.6605], [11.1388, 60.6605], [11.1388, 60.6605], [11.1388, 60.6605], [11.1387, 60.6605], [11.1387, 60.6605], [11.1389, 60.6605], [11.1389, 60.6604], [11.1389, 60.6603], [11.139, 60.6603], [11.1388, 60.6602], [11.1388, 60.6602], [11.1389, 60.6601], [11.1389, 60.66], [11.1391, 60.66], [11.1392, 60.6599], [11.1393, 60.6599], [11.1393, 60.6598], [11.1394, 60.6596], [11.1394, 60.6596], [11.1394, 60.6595], [11.1394, 60.6595], [11.1395, 60.6595], [11.1395, 60.6594], [11.1395, 60.6594], [11.1397, 60.6593], [11.1399, 60.6593], [11.1398, 60.6593], [11.1398, 60.6593], [11.14, 60.6592], [11.1401, 60.6592], [11.1403, 60.6592], [11.1405, 60.6592], [11.1407, 60.6592], [11.1408, 60.6592], [11.1409, 60.6592], [11.141, 60.6592], [11.1411, 60.6592], [11.1413, 60.6593], [11.1413, 60.6593], [11.1413, 60.6593], [11.1414, 60.6593], [11.1415, 60.6593], [11.1418, 60.6593], [11.1418, 60.6593], [11.1418, 60.6592], [11.1419, 60.6592], [11.1419, 60.6592], [11.1421, 60.6592], [11.1422, 60.6592], [11.1425, 60.6591], [11.1427, 60.6591], [11.143, 60.659], [11.1433, 60.6589], [11.1435, 60.6588], [11.1436, 60.6587], [11.1437, 60.6586], [11.1438, 60.6586], [11.1441, 60.6585], [11.1442, 60.6585], [11.1442, 60.6585], [11.1443, 60.6584], [11.1444, 60.6584], [11.1445, 60.6584], [11.1445, 60.6584], [11.1445, 60.6584], [11.1446, 60.6583], [11.1446, 60.6583], [11.1447, 60.6583], [11.1446, 60.6583], [11.1447, 60.6583], [11.1448, 60.6583], [11.1449, 60.6582], [11.1451, 60.6582], [11.1453, 60.6581], [11.1453, 60.6579], [11.1454, 60.6578], [11.1456, 60.6577], [11.1457, 60.6576], [11.1458, 60.6576], [11.1458, 60.6576], [11.1459, 60.6575], [11.146, 60.6575], [11.1462, 60.6574], [11.1464, 60.6572], [11.1465, 60.657], [11.1466, 60.6569], [11.1466, 60.6569], [11.1104, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "130", "sub_div_center": [0.0063, 0.0155]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6769], [11.1104, 60.6923], [11.1104, 60.6923], [11.1105, 60.6921], [11.1106, 60.6921], [11.1106, 60.692], [11.1108, 60.6918], [11.111, 60.6917], [11.1111, 60.6916], [11.1113, 60.6915], [11.1114, 60.6914], [11.1116, 60.6912], [11.1117, 60.6911], [11.1119, 60.691], [11.112, 60.6908], [11.1122, 60.6907], [11.1121, 60.6907], [11.112, 60.6906], [11.1121, 60.6906], [11.1121, 60.6905], [11.1123, 60.6905], [11.1124, 60.6905], [11.1124, 60.6904], [11.1123, 60.6903], [11.1123, 60.6903], [11.1122, 60.6902], [11.1121, 60.6901], [11.1121, 60.69], [11.1122, 60.6899], [11.1123, 60.6899], [11.1124, 60.6898], [11.1125, 60.6897], [11.1127, 60.6896], [11.1128, 60.6896], [11.113, 60.6895], [11.1131, 60.6895], [11.1132, 60.6896], [11.1132, 60.6896], [11.1133, 60.6896], [11.1134, 60.6896], [11.1135, 60.6895], [11.1135, 60.6895], [11.1134, 60.6894], [11.1133, 60.6894], [11.1131, 60.6895], [11.1131, 60.6895], [11.1132, 60.6894], [11.1132, 60.6894], [11.1133, 60.6893], [11.1134, 60.6893], [11.1135, 60.6893], [11.1137, 60.6892], [11.1137, 60.6892], [11.1138, 60.6891], [11.1139, 60.6891], [11.114, 60.6889], [11.1141, 60.6889], [11.1143, 60.6888], [11.1144, 60.6887], [11.1145, 60.6886], [11.1145, 60.6885], [11.1144, 60.6884], [11.1144, 60.6883], [11.1144, 60.6882], [11.1144, 60.6881], [11.1145, 60.688], [11.1146, 60.6879], [11.1146, 60.6879], [11.1146, 60.6878], [11.1148, 60.6878], [11.1148, 60.6878], [11.1147, 60.6878], [11.1147, 60.6877], [11.1149, 60.6877], [11.1149, 60.6877], [11.1151, 60.6876], [11.1152, 60.6874], [11.1152, 60.6873], [11.1153, 60.6872], [11.1153, 60.6871], [11.1153, 60.6869], [11.1153, 60.6868], [11.1153, 60.6868], [11.1153, 60.6867], [11.1154, 60.6865], [11.1154, 60.6864], [11.1153, 60.6862], [11.1153, 60.6861], [11.1154, 60.686], [11.1154, 60.6859], [11.1154, 60.6858], [11.1155, 60.6856], [11.1155, 60.6854], [11.1155, 60.6853], [11.1154, 60.6853], [11.1154, 60.6852], [11.1154, 60.6852], [11.1155, 60.6851], [11.1155, 60.6851], [11.1155, 60.685], [11.1156, 60.685], [11.1158, 60.6847], [11.1159, 60.6845], [11.1161, 60.6842], [11.1163, 60.684], [11.1165, 60.6838], [11.1166, 60.6836], [11.1166, 60.6834], [11.1167, 60.6832], [11.1167, 60.6831], [11.1167, 60.6828], [11.1166, 60.6825], [11.1166, 60.6824], [11.1166, 60.6821], [11.1165, 60.6819], [11.1164, 60.6818], [11.1163, 60.6816], [11.1161, 60.6813], [11.116, 60.681], [11.1159, 60.681], [11.1158, 60.6809], [11.1158, 60.6808], [11.1158, 60.6807], [11.1159, 60.6806], [11.1159, 60.6805], [11.1158, 60.6803], [11.1158, 60.6802], [11.1157, 60.6801], [11.1157, 60.6801], [11.1157, 60.68], [11.1156, 60.68], [11.1156, 60.6799], [11.1157, 60.6798], [11.1156, 60.6797], [11.1156, 60.6795], [11.1156, 60.6793], [11.1155, 60.6791], [11.1154, 60.679], [11.1153, 60.679], [11.1152, 60.6789], [11.1152, 60.6788], [11.1152, 60.6787], [11.1152, 60.6787], [11.1151, 60.6785], [11.115, 60.6784], [11.115, 60.6784], [11.115, 60.6783], [11.1151, 60.6783], [11.1151, 60.6782], [11.1151, 60.6782], [11.1152, 60.6781], [11.1153, 60.678], [11.1154, 60.6779], [11.1155, 60.6778], [11.1156, 60.6776], [11.1156, 60.6775], [11.1156, 60.6774], [11.1157, 60.6773], [11.1159, 60.6771], [11.116, 60.677], [11.1161, 60.6769], [11.1162, 60.6769], [11.1104, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "131", "sub_div_center": [0.0337, 0.0087]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1254, 60.7968], [11.1256, 60.7968], [11.126, 60.7968], [11.1262, 60.7968], [11.1265, 60.7968], [11.1269, 60.7968], [11.1271, 60.7968], [11.1273, 60.7967], [11.1273, 60.7966], [11.1274, 60.7966], [11.1277, 60.7964], [11.1276, 60.7964], [11.1279, 60.7963], [11.1281, 60.7962], [11.1283, 60.7962], [11.1283, 60.7962], [11.1282, 60.7961], [11.1283, 60.796], [11.1285, 60.7958], [11.1286, 60.7958], [11.1287, 60.7958], [11.1289, 60.7957], [11.129, 60.7956], [11.129, 60.7955], [11.1291, 60.7954], [11.1295, 60.7953], [11.1299, 60.7953], [11.1305, 60.7951], [11.1309, 60.795], [11.1315, 60.7949], [11.1317, 60.7949], [11.1318, 60.795], [11.1319, 60.795], [11.1319, 60.7951], [11.1319, 60.7952], [11.1321, 60.7951], [11.133, 60.7951], [11.1331, 60.7951], [11.1332, 60.795], [11.1332, 60.7949], [11.1331, 60.7949], [11.1331, 60.7948], [11.133, 60.7948], [11.1328, 60.7947], [11.1326, 60.7947], [11.1325, 60.7947], [11.1325, 60.7946], [11.1325, 60.7945], [11.1328, 60.7945], [11.133, 60.7944], [11.1331, 60.7943], [11.1335, 60.7942], [11.1336, 60.7942], [11.1341, 60.7941], [11.1346, 60.7939], [11.1347, 60.7939], [11.1348, 60.7939], [11.1349, 60.794], [11.1349, 60.794], [11.1349, 60.794], [11.135, 60.794], [11.135, 60.794], [11.135, 60.794], [11.1351, 60.794], [11.1351, 60.794], [11.1351, 60.794], [11.1352, 60.794], [11.1352, 60.794], [11.1352, 60.794], [11.1352, 60.7939], [11.1353, 60.7939], [11.1353, 60.7939], [11.1353, 60.7939], [11.1354, 60.7938], [11.1354, 60.7938], [11.1355, 60.7938], [11.1356, 60.7938], [11.1356, 60.7938], [11.1356, 60.7938], [11.1357, 60.7938], [11.1357, 60.7938], [11.1357, 60.7938], [11.1358, 60.7938], [11.1358, 60.7937], [11.1359, 60.7937], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.1361, 60.7935], [11.1361, 60.7935], [11.1361, 60.7935], [11.1361, 60.7934], [11.1361, 60.7934], [11.1361, 60.7934], [11.1361, 60.7934], [11.1362, 60.7933], [11.1365, 60.7932], [11.137, 60.793], [11.1376, 60.7928], [11.1379, 60.7928], [11.1383, 60.7929], [11.1385, 60.7926], [11.1387, 60.7925], [11.1391, 60.7923], [11.1394, 60.7923], [11.1396, 60.7922], [11.1395, 60.7921], [11.1397, 60.792], [11.1399, 60.792], [11.1399, 60.7919], [11.1401, 60.7919], [11.1402, 60.7917], [11.1404, 60.7915], [11.1404, 60.7914], [11.1405, 60.7913], [11.1405, 60.7912], [11.1404, 60.7912], [11.1403, 60.7913], [11.1402, 60.7914], [11.1398, 60.7918], [11.1393, 60.7919], [11.139, 60.792], [11.1389, 60.792], [11.1387, 60.7921], [11.1386, 60.7921], [11.1384, 60.7921], [11.1383, 60.7921], [11.1382, 60.7921], [11.1384, 60.792], [11.1385, 60.7919], [11.1387, 60.7919], [11.139, 60.7918], [11.1394, 60.7917], [11.1396, 60.7916], [11.14, 60.7913], [11.1404, 60.7911], [11.1405, 60.791], [11.1406, 60.7908], [11.1407, 60.7907], [11.1408, 60.7907], [11.1409, 60.7909], [11.1411, 60.7909], [11.1411, 60.7909], [11.1412, 60.7908], [11.1414, 60.7908], [11.1417, 60.7908], [11.1419, 60.7908], [11.1423, 60.7908], [11.1428, 60.7907], [11.1432, 60.7907], [11.1434, 60.7906], [11.1438, 60.7905], [11.1438, 60.7903], [11.1439, 60.7901], [11.144, 60.7899], [11.1442, 60.7898], [11.144, 60.7898], [11.1439, 60.7899], [11.1438, 60.7899], [11.1437, 60.79], [11.1438, 60.79], [11.1438, 60.7901], [11.1437, 60.7902], [11.1436, 60.7904], [11.1433, 60.7905], [11.1429, 60.7905], [11.1424, 60.7905], [11.1421, 60.7906], [11.1419, 60.7905], [11.1416, 60.7906], [11.1414, 60.7906], [11.1414, 60.7905], [11.1413, 60.7905], [11.1412, 60.7906], [11.141, 60.7906], [11.1409, 60.7905], [11.1409, 60.7904], [11.1409, 60.7903], [11.141, 60.7902], [11.141, 60.7902], [11.141, 60.79], [11.1411, 60.79], [11.1412, 60.7899], [11.141, 60.7895], [11.1407, 60.7891], [11.1406, 60.7892], [11.1405, 60.7892], [11.1404, 60.7893], [11.1403, 60.7894], [11.1402, 60.7894], [11.1401, 60.7894], [11.1398, 60.7894], [11.1396, 60.7894], [11.1395, 60.7894], [11.1392, 60.7894], [11.1391, 60.7895], [11.1389, 60.7895], [11.1388, 60.7896], [11.1386, 60.7896], [11.1385, 60.7896], [11.1384, 60.7895], [11.1382, 60.7895], [11.138, 60.7895], [11.1379, 60.7894], [11.1378, 60.7893], [11.1377, 60.7893], [11.1376, 60.7893], [11.1375, 60.7892], [11.1374, 60.7891], [11.1373, 60.7891], [11.1372, 60.789], [11.137, 60.789], [11.1369, 60.7889], [11.1368, 60.7889], [11.1367, 60.7889], [11.1366, 60.7888], [11.1365, 60.7888], [11.1364, 60.7888], [11.1363, 60.7887], [11.1361, 60.7887], [11.1359, 60.7887], [11.1358, 60.7887], [11.1358, 60.7886], [11.1357, 60.7886], [11.1356, 60.7886], [11.1355, 60.7885], [11.1354, 60.7885], [11.1353, 60.7884], [11.1353, 60.7884], [11.1352, 60.7884], [11.135, 60.7884], [11.1348, 60.7884], [11.1347, 60.7884], [11.1346, 60.7884], [11.1344, 60.7884], [11.1343, 60.7884], [11.1342, 60.7884], [11.134, 60.7884], [11.1339, 60.7884], [11.1338, 60.7884], [11.1336, 60.7884], [11.1335, 60.7884], [11.1333, 60.7884], [11.1331, 60.7884], [11.1329, 60.7884], [11.1328, 60.7884], [11.1326, 60.7884], [11.1324, 60.7884], [11.1323, 60.7885], [11.1322, 60.7885], [11.132, 60.7885], [11.1318, 60.7885], [11.1316, 60.7885], [11.1315, 60.7885], [11.1313, 60.7885], [11.1311, 60.7886], [11.1309, 60.7886], [11.1307, 60.7887], [11.1305, 60.7887], [11.1303, 60.7888], [11.1301, 60.7888], [11.13, 60.7889], [11.1299, 60.789], [11.1299, 60.789], [11.1299, 60.7891], [11.1297, 60.7892], [11.1296, 60.7892], [11.1295, 60.7892], [11.1294, 60.7893], [11.1293, 60.7893], [11.1292, 60.7894], [11.1291, 60.7894], [11.129, 60.7894], [11.1288, 60.7895], [11.1287, 60.7895], [11.1285, 60.7895], [11.1283, 60.7895], [11.128, 60.7896], [11.1279, 60.7896], [11.1278, 60.7896], [11.1278, 60.7896], [11.1277, 60.7896], [11.1277, 60.7897], [11.1276, 60.7898], [11.1275, 60.7898], [11.1274, 60.7899], [11.1273, 60.7899], [11.1272, 60.7899], [11.1271, 60.79], [11.127, 60.7901], [11.1269, 60.7901], [11.1267, 60.7902], [11.1266, 60.7901], [11.1264, 60.7901], [11.1264, 60.7901], [11.1263, 60.7901], [11.1263, 60.7901], [11.1262, 60.7901], [11.1261, 60.7901], [11.126, 60.7901], [11.1259, 60.7901], [11.1258, 60.7901], [11.1257, 60.7903], [11.1253, 60.7902], [11.1252, 60.7903], [11.1254, 60.7904], [11.1254, 60.7904], [11.1254, 60.7904], [11.1255, 60.7905], [11.1255, 60.7905], [11.1255, 60.7906], [11.1257, 60.7906], [11.1259, 60.7907], [11.1261, 60.7907], [11.1264, 60.7907], [11.1264, 60.7907], [11.1265, 60.7908], [11.1265, 60.7908], [11.1265, 60.7908], [11.1265, 60.7909], [11.1265, 60.791], [11.1265, 60.7911], [11.1264, 60.7911], [11.1263, 60.7913], [11.1263, 60.7913], [11.1262, 60.7914], [11.1261, 60.7915], [11.1259, 60.7916], [11.1256, 60.7917], [11.1254, 60.7916], [11.1251, 60.7915], [11.1249, 60.7915], [11.1248, 60.7914], [11.1244, 60.7921], [11.1245, 60.7921], [11.1246, 60.7922], [11.1247, 60.7922], [11.1248, 60.7922], [11.1249, 60.7922], [11.125, 60.7923], [11.1251, 60.7923], [11.1253, 60.7923], [11.1253, 60.7924], [11.1254, 60.7924], [11.1253, 60.7925], [11.1253, 60.7927], [11.1251, 60.7928], [11.1249, 60.7929], [11.1248, 60.7929], [11.1248, 60.793], [11.1248, 60.793], [11.1247, 60.793], [11.1247, 60.7932], [11.1247, 60.7933], [11.1248, 60.7933], [11.1248, 60.7934], [11.1247, 60.7935], [11.1247, 60.7935], [11.1247, 60.7937], [11.1246, 60.7937], [11.1246, 60.7938], [11.1245, 60.7939], [11.1243, 60.794], [11.1241, 60.794], [11.1239, 60.794], [11.1238, 60.794], [11.1236, 60.7939], [11.1234, 60.7939], [11.1232, 60.7939], [11.1231, 60.7941], [11.1231, 60.7942], [11.123, 60.7942], [11.1229, 60.7943], [11.1226, 60.7943], [11.1223, 60.7942], [11.1223, 60.7942], [11.1222, 60.7942], [11.1222, 60.7941], [11.1223, 60.794], [11.1224, 60.7939], [11.1224, 60.7938], [11.1224, 60.7937], [11.1223, 60.7937], [11.1223, 60.7936], [11.1222, 60.7936], [11.1221, 60.7935], [11.122, 60.7935], [11.1218, 60.7935], [11.1217, 60.7935], [11.1216, 60.7935], [11.1215, 60.7935], [11.1215, 60.7935], [11.1214, 60.7934], [11.1212, 60.7934], [11.1212, 60.7933], [11.1213, 60.7933], [11.1215, 60.7933], [11.1216, 60.7932], [11.1217, 60.7932], [11.1218, 60.7932], [11.122, 60.7931], [11.1221, 60.7931], [11.1222, 60.7931], [11.1224, 60.793], [11.1223, 60.7929], [11.1221, 60.7928], [11.1221, 60.7927], [11.1221, 60.7927], [11.122, 60.7926], [11.1221, 60.7925], [11.1221, 60.7924], [11.122, 60.7923], [11.122, 60.7922], [11.122, 60.792], [11.122, 60.792], [11.1221, 60.7919], [11.1222, 60.7918], [11.1225, 60.7918], [11.1227, 60.7918], [11.1229, 60.7917], [11.1232, 60.7917], [11.1234, 60.7917], [11.1237, 60.7917], [11.1237, 60.7916], [11.1238, 60.7916], [11.1238, 60.7915], [11.1239, 60.7914], [11.1239, 60.7913], [11.1239, 60.7912], [11.1237, 60.7912], [11.1236, 60.7913], [11.1235, 60.7913], [11.1234, 60.7913], [11.1232, 60.7913], [11.1232, 60.7912], [11.1233, 60.7911], [11.1233, 60.791], [11.1235, 60.791], [11.1236, 60.7909], [11.1236, 60.7908], [11.1237, 60.7907], [11.1238, 60.7906], [11.1239, 60.7906], [11.1241, 60.7906], [11.1242, 60.7906], [11.1243, 60.7905], [11.1245, 60.7902], [11.1248, 60.7903], [11.1248, 60.7902], [11.1245, 60.7901], [11.1244, 60.7901], [11.1243, 60.79], [11.1242, 60.79], [11.1241, 60.79], [11.1239, 60.7901], [11.1238, 60.7901], [11.1236, 60.7902], [11.1235, 60.7902], [11.1233, 60.7902], [11.1232, 60.7902], [11.1231, 60.7902], [11.123, 60.7902], [11.1229, 60.7902], [11.1229, 60.7902], [11.1228, 60.7902], [11.1227, 60.7902], [11.1226, 60.7902], [11.1224, 60.7902], [11.1223, 60.7901], [11.1223, 60.7901], [11.1223, 60.7901], [11.1224, 60.79], [11.1224, 60.79], [11.1223, 60.79], [11.1223, 60.7899], [11.1222, 60.7899], [11.1222, 60.7899], [11.1222, 60.7898], [11.1221, 60.7898], [11.1221, 60.7898], [11.122, 60.7897], [11.1219, 60.7897], [11.1219, 60.7897], [11.1218, 60.7897], [11.1217, 60.7896], [11.1216, 60.7896], [11.1215, 60.7896], [11.1214, 60.7896], [11.1214, 60.7896], [11.1213, 60.7896], [11.1213, 60.7896], [11.1212, 60.7895], [11.1211, 60.7895], [11.121, 60.7896], [11.1209, 60.7896], [11.1208, 60.7895], [11.1207, 60.7895], [11.1206, 60.7895], [11.1205, 60.7895], [11.1204, 60.7895], [11.1203, 60.7895], [11.1202, 60.7895], [11.1201, 60.7895], [11.12, 60.7896], [11.1199, 60.7896], [11.1199, 60.7895], [11.1198, 60.7895], [11.1197, 60.7895], [11.1196, 60.7895], [11.1195, 60.7895], [11.1194, 60.7895], [11.1193, 60.7896], [11.1192, 60.7896], [11.1191, 60.7896], [11.119, 60.7896], [11.1189, 60.7896], [11.1187, 60.7896], [11.1186, 60.7896], [11.1185, 60.7897], [11.1184, 60.7897], [11.1183, 60.7898], [11.1182, 60.7897], [11.1181, 60.7897], [11.118, 60.7897], [11.1179, 60.7898], [11.1178, 60.7898], [11.1178, 60.7897], [11.1176, 60.7896], [11.1175, 60.7895], [11.1173, 60.7894], [11.1171, 60.7893], [11.117, 60.7892], [11.1167, 60.7891], [11.1165, 60.7891], [11.1163, 60.789], [11.1161, 60.7889], [11.1158, 60.7889], [11.1157, 60.7889], [11.1154, 60.7889], [11.1152, 60.789], [11.1149, 60.789], [11.1148, 60.789], [11.1145, 60.789], [11.1143, 60.789], [11.114, 60.7889], [11.1136, 60.7889], [11.1134, 60.7889], [11.1132, 60.7889], [11.1129, 60.7889], [11.1126, 60.7889], [11.1123, 60.7888], [11.1121, 60.7889], [11.1119, 60.7889], [11.1117, 60.7889], [11.1114, 60.7888], [11.1112, 60.7888], [11.1111, 60.7887], [11.111, 60.7887], [11.1109, 60.7886], [11.1108, 60.7884], [11.1107, 60.7884], [11.1106, 60.7882], [11.1105, 60.7882], [11.1104, 60.7881], [11.1104, 60.7964], [11.1104, 60.7964], [11.1105, 60.7965], [11.1105, 60.7965], [11.1105, 60.7965], [11.1104, 60.7966], [11.1104, 60.7969], [11.1106, 60.7969], [11.1107, 60.7968], [11.1108, 60.7967], [11.111, 60.7967], [11.1112, 60.7967], [11.1113, 60.7967], [11.1115, 60.7967], [11.1117, 60.7968], [11.1119, 60.7968], [11.1121, 60.7968], [11.1124, 60.7969], [11.1133, 60.7968], [11.1138, 60.7968], [11.1141, 60.7968], [11.1142, 60.7968], [11.1143, 60.7967], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7967], [11.1144, 60.7967], [11.1145, 60.7967], [11.1146, 60.7966], [11.1146, 60.7966], [11.1147, 60.7966], [11.1147, 60.7966], [11.1148, 60.7965], [11.1149, 60.7964], [11.115, 60.7963], [11.1152, 60.7961], [11.1159, 60.796], [11.1162, 60.7959], [11.1164, 60.7958], [11.1165, 60.7957], [11.1166, 60.7956], [11.1166, 60.7955], [11.1168, 60.7954], [11.1169, 60.7954], [11.117, 60.7953], [11.1171, 60.7952], [11.1172, 60.7952], [11.1172, 60.7952], [11.1174, 60.7952], [11.1175, 60.7952], [11.1176, 60.7952], [11.1177, 60.7952], [11.1178, 60.7952], [11.1177, 60.7953], [11.1176, 60.7954], [11.1175, 60.7955], [11.1175, 60.7955], [11.1175, 60.7955], [11.1174, 60.7957], [11.1173, 60.7957], [11.1172, 60.7958], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1169, 60.796], [11.1169, 60.7961], [11.1168, 60.7963], [11.1168, 60.7964], [11.1169, 60.7965], [11.1168, 60.7966], [11.1169, 60.7967], [11.1169, 60.7968], [11.117, 60.7968], [11.1172, 60.7968], [11.1172, 60.7969], [11.1174, 60.7969], [11.1174, 60.7968], [11.1176, 60.7966], [11.1175, 60.7966], [11.1175, 60.7966], [11.1176, 60.7965], [11.1176, 60.7965], [11.1177, 60.7965], [11.1178, 60.7964], [11.1178, 60.7964], [11.1178, 60.7964], [11.1178, 60.7963], [11.1179, 60.7962], [11.1179, 60.7962], [11.1179, 60.7961], [11.1179, 60.796], [11.118, 60.7959], [11.118, 60.7959], [11.1182, 60.7958], [11.1186, 60.7956], [11.1189, 60.7955], [11.119, 60.7955], [11.1193, 60.7956], [11.1194, 60.7956], [11.1195, 60.7956], [11.1197, 60.7957], [11.1198, 60.7956], [11.12, 60.7956], [11.12, 60.7956], [11.1201, 60.7956], [11.1202, 60.7956], [11.1203, 60.7956], [11.1203, 60.7955], [11.1203, 60.7954], [11.1204, 60.7952], [11.1205, 60.7952], [11.1206, 60.7952], [11.1206, 60.7951], [11.1207, 60.795], [11.1206, 60.795], [11.1207, 60.7949], [11.1207, 60.7949], [11.1207, 60.7948], [11.1208, 60.7948], [11.1209, 60.7947], [11.1211, 60.7947], [11.1212, 60.7946], [11.1213, 60.7946], [11.1213, 60.7945], [11.1214, 60.7945], [11.1215, 60.7945], [11.1217, 60.7945], [11.1218, 60.7945], [11.122, 60.7945], [11.1223, 60.7945], [11.1225, 60.7946], [11.1227, 60.7946], [11.1227, 60.7946], [11.1228, 60.7947], [11.1228, 60.7948], [11.1228, 60.7949], [11.123, 60.795], [11.1231, 60.7951], [11.1233, 60.7951], [11.1234, 60.7951], [11.1235, 60.7951], [11.1237, 60.7951], [11.1238, 60.7951], [11.1238, 60.7951], [11.124, 60.795], [11.1241, 60.7951], [11.1242, 60.7951], [11.1242, 60.7951], [11.1243, 60.7951], [11.1245, 60.7951], [11.1247, 60.7952], [11.1248, 60.7952], [11.1249, 60.7953], [11.1251, 60.7953], [11.1252, 60.7954], [11.1252, 60.7956], [11.1252, 60.7957], [11.1251, 60.7959], [11.125, 60.7959], [11.1249, 60.7959], [11.1244, 60.7963], [11.1241, 60.7969], [11.1241, 60.7969], [11.1253, 60.7969], [11.1254, 60.7968]]]}}, {"type": "Feature", "properties": {"sub_div_id": "132", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.7969], [11.1104, 60.797], [11.1105, 60.797], [11.1106, 60.7969], [11.1104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "133", "sub_div_center": [0.0048, 0.0052]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1107, 60.8039], [11.111, 60.8038], [11.1114, 60.8038], [11.1117, 60.8037], [11.112, 60.8036], [11.1124, 60.8034], [11.1126, 60.8032], [11.1128, 60.803], [11.1129, 60.8029], [11.1131, 60.8029], [11.1134, 60.8027], [11.1132, 60.8027], [11.1131, 60.8027], [11.1131, 60.8028], [11.113, 60.8028], [11.113, 60.8027], [11.1129, 60.8025], [11.1129, 60.8024], [11.1129, 60.8023], [11.113, 60.8022], [11.1131, 60.8023], [11.1132, 60.8023], [11.1132, 60.8024], [11.1133, 60.8024], [11.1134, 60.8023], [11.1135, 60.8023], [11.1137, 60.8023], [11.1139, 60.8023], [11.1139, 60.8023], [11.1142, 60.8021], [11.1144, 60.8019], [11.1145, 60.8019], [11.1144, 60.8019], [11.1144, 60.8018], [11.1144, 60.8018], [11.1143, 60.8018], [11.1143, 60.8018], [11.1142, 60.8018], [11.1142, 60.8018], [11.1142, 60.8017], [11.1142, 60.8017], [11.1142, 60.8017], [11.1142, 60.8016], [11.1143, 60.8016], [11.1143, 60.8016], [11.1143, 60.8017], [11.1143, 60.8017], [11.1143, 60.8017], [11.1143, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1145, 60.8017], [11.1145, 60.8017], [11.1145, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1145, 60.8017], [11.1145, 60.8018], [11.1145, 60.8018], [11.1146, 60.8018], [11.1147, 60.8017], [11.1152, 60.8012], [11.1152, 60.8011], [11.1151, 60.801], [11.1146, 60.8009], [11.1143, 60.8009], [11.1141, 60.801], [11.1139, 60.8009], [11.1136, 60.801], [11.1134, 60.801], [11.1132, 60.801], [11.1132, 60.8009], [11.1132, 60.8008], [11.1132, 60.8007], [11.1135, 60.8005], [11.1136, 60.8004], [11.1135, 60.8002], [11.1134, 60.8001], [11.1131, 60.7998], [11.1129, 60.7998], [11.1124, 60.7996], [11.1121, 60.7995], [11.112, 60.7994], [11.1117, 60.7991], [11.1114, 60.7989], [11.1111, 60.7989], [11.1104, 60.7988], [11.1104, 60.8027], [11.1105, 60.8027], [11.1107, 60.8027], [11.1109, 60.8027], [11.1111, 60.8028], [11.1112, 60.8028], [11.1113, 60.8029], [11.1114, 60.8029], [11.1115, 60.803], [11.1115, 60.8031], [11.1116, 60.8032], [11.1116, 60.8032], [11.1117, 60.8032], [11.1117, 60.8031], [11.1116, 60.8031], [11.1116, 60.803], [11.1117, 60.803], [11.1118, 60.803], [11.1118, 60.8031], [11.1119, 60.8031], [11.1119, 60.8031], [11.1117, 60.8033], [11.1116, 60.8034], [11.1113, 60.8034], [11.1108, 60.8035], [11.1105, 60.8036], [11.1104, 60.8036], [11.1104, 60.8039], [11.1107, 60.8039]]]}}, {"type": "Feature", "properties": {"sub_div_id": "134", "sub_div_center": [0.0013, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.8036], [11.1103, 60.8036], [11.1102, 60.8036], [11.11, 60.8037], [11.1097, 60.8037], [11.1096, 60.8038], [11.1094, 60.8039], [11.1092, 60.804], [11.1091, 60.8041], [11.1093, 60.8042], [11.1098, 60.8042], [11.1099, 60.8041], [11.11, 60.804], [11.11, 60.804], [11.1104, 60.804], [11.1104, 60.8039], [11.1104, 60.8036]]]}}, {"type": "Feature", "properties": {"sub_div_id": "135", "sub_div_center": [0.0342, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6169], [11.1504, 60.5969], [11.1329, 60.5969], [11.1329, 60.5969], [11.1329, 60.5971], [11.1325, 60.5974], [11.1322, 60.5976], [11.1317, 60.5978], [11.1309, 60.5988], [11.1306, 60.599], [11.1302, 60.5993], [11.1297, 60.5997], [11.1295, 60.6], [11.1294, 60.6002], [11.1293, 60.6007], [11.1291, 60.6011], [11.1289, 60.6013], [11.1286, 60.6014], [11.1282, 60.6017], [11.1275, 60.6019], [11.1272, 60.6021], [11.1268, 60.6023], [11.1256, 60.6035], [11.125, 60.6043], [11.125, 60.606], [11.1239, 60.6068], [11.1235, 60.6074], [11.1231, 60.6077], [11.1227, 60.6079], [11.1219, 60.608], [11.1216, 60.6082], [11.1219, 60.6088], [11.1216, 60.6094], [11.1216, 60.6099], [11.1214, 60.6101], [11.1216, 60.6106], [11.1218, 60.6108], [11.1218, 60.6111], [11.1216, 60.6113], [11.1214, 60.6118], [11.1213, 60.6119], [11.1197, 60.6125], [11.1195, 60.6128], [11.1195, 60.613], [11.1195, 60.6138], [11.1194, 60.6142], [11.1193, 60.6147], [11.1192, 60.615], [11.1189, 60.6155], [11.1183, 60.6158], [11.1172, 60.6162], [11.1165, 60.6165], [11.1162, 60.6169], [11.1504, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "136", "sub_div_center": [0.0002, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1172, 60.7969], [11.1172, 60.7969], [11.1173, 60.797], [11.1172, 60.797], [11.1173, 60.7971], [11.1173, 60.797], [11.1174, 60.797], [11.1173, 60.7969], [11.1174, 60.7969], [11.1172, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "137", "sub_div_center": [0.0018, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1241, 60.7969], [11.124, 60.7971], [11.1239, 60.7973], [11.1239, 60.7973], [11.1239, 60.7974], [11.1239, 60.7974], [11.124, 60.7974], [11.1241, 60.7974], [11.1243, 60.7974], [11.1244, 60.7974], [11.1245, 60.7975], [11.1245, 60.7975], [11.1246, 60.7975], [11.1246, 60.7974], [11.1246, 60.7974], [11.1246, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1253, 60.7974], [11.1254, 60.7974], [11.1255, 60.7974], [11.1256, 60.7974], [11.1257, 60.7973], [11.1257, 60.7973], [11.1255, 60.7972], [11.1255, 60.7971], [11.1254, 60.797], [11.1253, 60.797], [11.1252, 60.7969], [11.1253, 60.7969], [11.1241, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "138", "sub_div_center": [0.0175, 0.0114]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1504, 60.5855], [11.1503, 60.5855], [11.1497, 60.5857], [11.1492, 60.586], [11.1478, 60.5872], [11.1478, 60.5872], [11.1478, 60.5873], [11.1477, 60.5875], [11.1477, 60.5878], [11.1477, 60.5878], [11.1477, 60.588], [11.1475, 60.5882], [11.1471, 60.5884], [11.1464, 60.5888], [11.1463, 60.5889], [11.1461, 60.589], [11.1452, 60.5894], [11.1446, 60.5897], [11.1442, 60.5898], [11.1427, 60.5898], [11.1421, 60.59], [11.1415, 60.5903], [11.1405, 60.5912], [11.1394, 60.5923], [11.1388, 60.5928], [11.1383, 60.5933], [11.1382, 60.5936], [11.1379, 60.5938], [11.1365, 60.5942], [11.1357, 60.5949], [11.1351, 60.5956], [11.1342, 60.5961], [11.1329, 60.5967], [11.1329, 60.5968], [11.1329, 60.5969], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "139", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1904, 60.5969], [11.1904, 60.5769], [11.1603, 60.5769], [11.1602, 60.577], [11.1595, 60.5774], [11.1588, 60.5782], [11.1583, 60.5787], [11.1578, 60.579], [11.1567, 60.5797], [11.1562, 60.5799], [11.1559, 60.5802], [11.1558, 60.5805], [11.1557, 60.5812], [11.1555, 60.5814], [11.1551, 60.5818], [11.155, 60.5821], [11.1544, 60.5824], [11.1539, 60.583], [11.1528, 60.5839], [11.1511, 60.5848], [11.1508, 60.5852], [11.1504, 60.5855], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "140", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1504, 60.6169], [11.1653, 60.6169], [11.1653, 60.6168], [11.1652, 60.6168], [11.1652, 60.6167], [11.1653, 60.6167], [11.1655, 60.6165], [11.1656, 60.6164], [11.1658, 60.6164], [11.1659, 60.6162], [11.166, 60.6162], [11.166, 60.616], [11.1661, 60.616], [11.1661, 60.616], [11.1662, 60.616], [11.1662, 60.6159], [11.1662, 60.6158], [11.1663, 60.6158], [11.1662, 60.6157], [11.1662, 60.6156], [11.1663, 60.6156], [11.1663, 60.6155], [11.1664, 60.6155], [11.1666, 60.6155], [11.1667, 60.6154], [11.1669, 60.6154], [11.1671, 60.6153], [11.1671, 60.6153], [11.1672, 60.6153], [11.1675, 60.6153], [11.1677, 60.6152], [11.168, 60.6151], [11.1681, 60.6151], [11.1683, 60.6151], [11.1683, 60.615], [11.1683, 60.615], [11.1684, 60.615], [11.1684, 60.6149], [11.1684, 60.6149], [11.1685, 60.6148], [11.1685, 60.6148], [11.1685, 60.6147], [11.1686, 60.6147], [11.1687, 60.6146], [11.1688, 60.6146], [11.169, 60.6145], [11.1692, 60.6145], [11.1693, 60.6145], [11.1694, 60.6145], [11.1694, 60.6145], [11.1695, 60.6145], [11.1695, 60.6145], [11.1696, 60.6144], [11.1696, 60.6143], [11.1697, 60.6143], [11.1698, 60.6143], [11.1699, 60.6142], [11.17, 60.6141], [11.17, 60.614], [11.1701, 60.614], [11.1701, 60.6139], [11.1701, 60.6139], [11.1701, 60.6138], [11.1701, 60.6138], [11.1702, 60.6138], [11.1702, 60.6137], [11.1702, 60.6137], [11.1703, 60.6137], [11.1703, 60.6137], [11.1703, 60.6137], [11.1703, 60.6136], [11.1704, 60.6136], [11.1704, 60.6136], [11.1705, 60.6134], [11.1704, 60.6134], [11.1704, 60.6133], [11.1705, 60.6133], [11.1705, 60.6132], [11.1704, 60.6132], [11.1703, 60.6131], [11.1702, 60.6131], [11.1702, 60.6131], [11.1702, 60.6131], [11.1702, 60.6132], [11.1701, 60.6132], [11.1701, 60.6132], [11.1701, 60.6131], [11.1701, 60.6131], [11.1701, 60.613], [11.1701, 60.6128], [11.1701, 60.6128], [11.1702, 60.6128], [11.1703, 60.6127], [11.1703, 60.6126], [11.1702, 60.6126], [11.1702, 60.6126], [11.1703, 60.6126], [11.1703, 60.6125], [11.1702, 60.6125], [11.1702, 60.6124], [11.1702, 60.6122], [11.1704, 60.6121], [11.1705, 60.612], [11.1705, 60.6119], [11.1704, 60.6119], [11.1704, 60.6118], [11.1705, 60.6117], [11.1707, 60.6116], [11.1708, 60.6115], [11.1709, 60.6114], [11.171, 60.6114], [11.1713, 60.6114], [11.1713, 60.6115], [11.1714, 60.6116], [11.1715, 60.6116], [11.1715, 60.6117], [11.1715, 60.6118], [11.1714, 60.6118], [11.1714, 60.6119], [11.1714, 60.612], [11.1714, 60.612], [11.1715, 60.6121], [11.1716, 60.6121], [11.1716, 60.6121], [11.1717, 60.6121], [11.1719, 60.6121], [11.1721, 60.6121], [11.1723, 60.6122], [11.1725, 60.6122], [11.1726, 60.6121], [11.1726, 60.6121], [11.1727, 60.6121], [11.1728, 60.6121], [11.1729, 60.612], [11.1729, 60.612], [11.1728, 60.612], [11.1728, 60.6119], [11.1729, 60.6119], [11.1729, 60.6119], [11.173, 60.6119], [11.173, 60.6119], [11.173, 60.6118], [11.1731, 60.6118], [11.173, 60.6118], [11.1728, 60.6118], [11.1728, 60.6118], [11.1728, 60.6117], [11.1729, 60.6117], [11.173, 60.6117], [11.1731, 60.6117], [11.1731, 60.6118], [11.1732, 60.6118], [11.1732, 60.6118], [11.1733, 60.6118], [11.1733, 60.6118], [11.1733, 60.6118], [11.1734, 60.6118], [11.1734, 60.6118], [11.1734, 60.6119], [11.1735, 60.6119], [11.1735, 60.6118], [11.1736, 60.6118], [11.1737, 60.6118], [11.1737, 60.6118], [11.1738, 60.6118], [11.1738, 60.6118], [11.1738, 60.6118], [11.1739, 60.6118], [11.1739, 60.6118], [11.1739, 60.6118], [11.174, 60.6119], [11.174, 60.6119], [11.174, 60.6119], [11.1741, 60.6118], [11.1742, 60.6118], [11.1742, 60.6118], [11.1744, 60.6118], [11.1747, 60.6117], [11.1747, 60.6117], [11.1748, 60.6117], [11.1749, 60.6118], [11.1749, 60.6117], [11.1749, 60.6117], [11.1749, 60.6117], [11.1751, 60.6116], [11.1751, 60.6116], [11.1752, 60.6116], [11.1754, 60.6115], [11.1758, 60.6115], [11.1762, 60.6115], [11.1764, 60.6115], [11.1765, 60.6115], [11.1766, 60.6115], [11.1767, 60.6114], [11.1767, 60.6114], [11.1768, 60.6113], [11.1769, 60.6113], [11.1769, 60.6113], [11.1769, 60.6113], [11.1769, 60.6112], [11.177, 60.6112], [11.1771, 60.6112], [11.1771, 60.6112], [11.1772, 60.6112], [11.1772, 60.6112], [11.1773, 60.6112], [11.1773, 60.6112], [11.1773, 60.6112], [11.1774, 60.6112], [11.1775, 60.6113], [11.1775, 60.6113], [11.1776, 60.6113], [11.1777, 60.6113], [11.1778, 60.6113], [11.1778, 60.6113], [11.178, 60.6112], [11.1782, 60.6112], [11.1784, 60.6111], [11.1786, 60.6109], [11.1786, 60.6108], [11.1788, 60.6107], [11.1789, 60.6105], [11.1789, 60.6104], [11.1789, 60.6103], [11.179, 60.6102], [11.1792, 60.6101], [11.1793, 60.61], [11.1793, 60.6099], [11.1795, 60.6099], [11.1796, 60.6098], [11.1798, 60.6097], [11.1799, 60.6095], [11.18, 60.6094], [11.1801, 60.6092], [11.1804, 60.6091], [11.1806, 60.6089], [11.1807, 60.6087], [11.1808, 60.6085], [11.1809, 60.6084], [11.181, 60.6083], [11.181, 60.6081], [11.181, 60.608], [11.1811, 60.6079], [11.1811, 60.6078], [11.1812, 60.6077], [11.1813, 60.6076], [11.1814, 60.6076], [11.1815, 60.6075], [11.1817, 60.6074], [11.1818, 60.6073], [11.1821, 60.6072], [11.1823, 60.6071], [11.1824, 60.6071], [11.1826, 60.607], [11.1828, 60.6069], [11.1829, 60.6068], [11.183, 60.6067], [11.1833, 60.6067], [11.1835, 60.6066], [11.1836, 60.6065], [11.1838, 60.6064], [11.1841, 60.6064], [11.1845, 60.6063], [11.1847, 60.6063], [11.185, 60.6061], [11.1851, 60.6061], [11.1853, 60.6061], [11.1854, 60.606], [11.1855, 60.606], [11.1858, 60.606], [11.1859, 60.6059], [11.1862, 60.6059], [11.1864, 60.6058], [11.1865, 60.6058], [11.1867, 60.6058], [11.1869, 60.6057], [11.1872, 60.6057], [11.1873, 60.6056], [11.1874, 60.6056], [11.1877, 60.6055], [11.1879, 60.6055], [11.1881, 60.6054], [11.1883, 60.6053], [11.1885, 60.6053], [11.1887, 60.6054], [11.1888, 60.6054], [11.1888, 60.6053], [11.1889, 60.6053], [11.189, 60.6053], [11.1889, 60.6052], [11.189, 60.6052], [11.1891, 60.6051], [11.1892, 60.6051], [11.1892, 60.605], [11.1893, 60.605], [11.1894, 60.6049], [11.1895, 60.6048], [11.1897, 60.6048], [11.1897, 60.6047], [11.1898, 60.6046], [11.1899, 60.6045], [11.1901, 60.6045], [11.1903, 60.6043], [11.1904, 60.6042], [11.1904, 60.5969], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "141", "sub_div_center": [0.0148, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6169], [11.1504, 60.6369], [11.1529, 60.6369], [11.1529, 60.6368], [11.1529, 60.6366], [11.1529, 60.6365], [11.153, 60.6364], [11.1531, 60.6362], [11.1531, 60.6361], [11.1532, 60.636], [11.1535, 60.6357], [11.1537, 60.6354], [11.1539, 60.6352], [11.1542, 60.6348], [11.1543, 60.6346], [11.1544, 60.6345], [11.1545, 60.6344], [11.1547, 60.6344], [11.1548, 60.6344], [11.1548, 60.6343], [11.155, 60.6343], [11.1552, 60.6342], [11.1553, 60.634], [11.1555, 60.6339], [11.1556, 60.6337], [11.1558, 60.6335], [11.1559, 60.6334], [11.156, 60.6332], [11.1561, 60.633], [11.1561, 60.6329], [11.1562, 60.6328], [11.1562, 60.6327], [11.1563, 60.6326], [11.1564, 60.6325], [11.1565, 60.6323], [11.1567, 60.6322], [11.1567, 60.6321], [11.1568, 60.6319], [11.1568, 60.6318], [11.1568, 60.6317], [11.1567, 60.6316], [11.1568, 60.6315], [11.157, 60.6314], [11.1572, 60.6313], [11.1574, 60.6311], [11.1575, 60.631], [11.1575, 60.6308], [11.1576, 60.6306], [11.1576, 60.6305], [11.1577, 60.6303], [11.1577, 60.6302], [11.1577, 60.6301], [11.1577, 60.6299], [11.1576, 60.6298], [11.1575, 60.6296], [11.1574, 60.6295], [11.1574, 60.6294], [11.1574, 60.6294], [11.1574, 60.6293], [11.1573, 60.6292], [11.1573, 60.629], [11.1573, 60.6289], [11.1572, 60.6288], [11.157, 60.6287], [11.157, 60.6285], [11.1571, 60.6283], [11.1572, 60.6282], [11.1573, 60.6279], [11.1574, 60.6279], [11.1575, 60.6278], [11.1578, 60.6276], [11.1579, 60.6274], [11.158, 60.6273], [11.158, 60.6271], [11.1581, 60.627], [11.1581, 60.6269], [11.1582, 60.6269], [11.1583, 60.6268], [11.1584, 60.6267], [11.1585, 60.6266], [11.1585, 60.6265], [11.1586, 60.6265], [11.1587, 60.6264], [11.1588, 60.6263], [11.1588, 60.6262], [11.1589, 60.626], [11.1589, 60.6259], [11.159, 60.6258], [11.159, 60.6257], [11.1591, 60.6256], [11.1591, 60.6255], [11.1592, 60.6253], [11.1594, 60.6252], [11.1594, 60.625], [11.1594, 60.6248], [11.1594, 60.6247], [11.1595, 60.6246], [11.1594, 60.6246], [11.1595, 60.6246], [11.1596, 60.6244], [11.1597, 60.6243], [11.1597, 60.6242], [11.1598, 60.6241], [11.1598, 60.624], [11.16, 60.6238], [11.16, 60.6237], [11.1602, 60.6235], [11.1604, 60.6234], [11.1606, 60.6233], [11.1608, 60.6232], [11.1609, 60.6231], [11.1609, 60.623], [11.1609, 60.6228], [11.1609, 60.6227], [11.1611, 60.6225], [11.1611, 60.6224], [11.1612, 60.6223], [11.1613, 60.6222], [11.1614, 60.622], [11.1615, 60.6219], [11.1615, 60.6218], [11.1616, 60.6216], [11.1618, 60.6214], [11.1619, 60.6212], [11.162, 60.6211], [11.1619, 60.6209], [11.1617, 60.6209], [11.1617, 60.6208], [11.1618, 60.6207], [11.1618, 60.6207], [11.1619, 60.6206], [11.162, 60.6206], [11.1621, 60.6205], [11.162, 60.6205], [11.1622, 60.6204], [11.1621, 60.6203], [11.1623, 60.6203], [11.1622, 60.6202], [11.1623, 60.6202], [11.1623, 60.6201], [11.1623, 60.62], [11.1622, 60.6199], [11.1621, 60.6198], [11.1621, 60.6197], [11.1621, 60.6196], [11.1622, 60.6195], [11.1622, 60.6194], [11.1623, 60.6192], [11.1624, 60.6192], [11.1626, 60.6191], [11.1628, 60.619], [11.163, 60.6189], [11.1632, 60.6187], [11.1633, 60.6186], [11.1635, 60.6184], [11.1637, 60.6183], [11.164, 60.6181], [11.164, 60.618], [11.1642, 60.618], [11.1643, 60.6178], [11.1644, 60.6177], [11.1645, 60.6176], [11.1646, 60.6175], [11.1649, 60.6174], [11.1649, 60.6173], [11.165, 60.6172], [11.1651, 60.6171], [11.1651, 60.617], [11.1652, 60.6169], [11.1653, 60.6169], [11.1504, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "142", "sub_div_center": [0.0027, 0.0126]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6369], [11.1504, 60.6494], [11.1504, 60.6494], [11.1505, 60.6494], [11.1505, 60.6493], [11.1505, 60.6492], [11.1506, 60.6491], [11.1506, 60.649], [11.1507, 60.6489], [11.1506, 60.6489], [11.1505, 60.6489], [11.1504, 60.6489], [11.1504, 60.6489], [11.1505, 60.6489], [11.1506, 60.6489], [11.1507, 60.6489], [11.1508, 60.6489], [11.1508, 60.6488], [11.1508, 60.6488], [11.1508, 60.6488], [11.1509, 60.6487], [11.1509, 60.6486], [11.1509, 60.6485], [11.1509, 60.6484], [11.1509, 60.6483], [11.1508, 60.6483], [11.1508, 60.6483], [11.1509, 60.6483], [11.1509, 60.6483], [11.1508, 60.6482], [11.1508, 60.6482], [11.1509, 60.6482], [11.1509, 60.6481], [11.1509, 60.648], [11.1509, 60.6479], [11.1509, 60.6479], [11.151, 60.6478], [11.151, 60.6478], [11.1509, 60.6477], [11.1509, 60.6477], [11.151, 60.6477], [11.151, 60.6477], [11.151, 60.6476], [11.151, 60.6476], [11.151, 60.6476], [11.151, 60.6475], [11.1511, 60.6475], [11.1511, 60.6473], [11.1512, 60.6472], [11.1513, 60.647], [11.1513, 60.6467], [11.1513, 60.6465], [11.1513, 60.6463], [11.1514, 60.6461], [11.1515, 60.646], [11.1516, 60.6459], [11.1516, 60.6458], [11.1517, 60.6456], [11.1517, 60.6455], [11.1517, 60.6454], [11.1518, 60.6452], [11.1519, 60.6451], [11.152, 60.6449], [11.152, 60.6447], [11.1521, 60.6445], [11.1521, 60.6443], [11.1521, 60.6442], [11.1522, 60.644], [11.1522, 60.6439], [11.1522, 60.6436], [11.1522, 60.6433], [11.1522, 60.6432], [11.1522, 60.643], [11.1522, 60.643], [11.1522, 60.6428], [11.1523, 60.6427], [11.1524, 60.6426], [11.1525, 60.6425], [11.1525, 60.6424], [11.1525, 60.6423], [11.1525, 60.6421], [11.1525, 60.6419], [11.1524, 60.6416], [11.1525, 60.6414], [11.1525, 60.6412], [11.1525, 60.6409], [11.1526, 60.6407], [11.1526, 60.6405], [11.1525, 60.6404], [11.1525, 60.6403], [11.1525, 60.6402], [11.1526, 60.64], [11.1526, 60.6397], [11.1526, 60.6395], [11.1527, 60.6393], [11.1528, 60.6391], [11.1528, 60.6389], [11.1528, 60.6388], [11.1529, 60.6386], [11.153, 60.6385], [11.1531, 60.6383], [11.1531, 60.6382], [11.1531, 60.638], [11.1531, 60.6378], [11.1531, 60.6377], [11.153, 60.6376], [11.153, 60.6374], [11.153, 60.6371], [11.1529, 60.6369], [11.1529, 60.6369], [11.1504, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "143", "sub_div_center": [0.0302, 0.0191]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.1904, 60.5577], [11.1899, 60.558], [11.188, 60.5592], [11.1874, 60.5597], [11.187, 60.5598], [11.185, 60.5608], [11.1831, 60.5616], [11.1824, 60.562], [11.1814, 60.5628], [11.1806, 60.5632], [11.1798, 60.5637], [11.1778, 60.5649], [11.1771, 60.5651], [11.1766, 60.5652], [11.1759, 60.5653], [11.1747, 60.5655], [11.1741, 60.5657], [11.173, 60.5663], [11.172, 60.5669], [11.1719, 60.5669], [11.1717, 60.5671], [11.1715, 60.5673], [11.1697, 60.5686], [11.1694, 60.5689], [11.169, 60.5691], [11.1669, 60.57], [11.1662, 60.5704], [11.1657, 60.5709], [11.1656, 60.571], [11.1645, 60.5719], [11.1643, 60.5721], [11.1636, 60.5728], [11.1629, 60.5738], [11.1623, 60.5746], [11.1621, 60.5747], [11.1621, 60.5748], [11.1615, 60.5753], [11.1614, 60.5755], [11.1612, 60.5758], [11.1609, 60.5763], [11.1603, 60.5767], [11.1603, 60.5769], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "144", "sub_div_center": [0.0289, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1702, 60.4969], [11.1705, 60.4967], [11.171, 60.4967], [11.1714, 60.4967], [11.1717, 60.4968], [11.1718, 60.4969], [11.1744, 60.4969], [11.1745, 60.4968], [11.1747, 60.4968], [11.1752, 60.4968], [11.1754, 60.4968], [11.1755, 60.4969], [11.1904, 60.4969], [11.1904, 60.4769], [11.1705, 60.4769], [11.1703, 60.477], [11.1699, 60.4773], [11.1695, 60.4776], [11.1695, 60.4778], [11.1695, 60.4781], [11.1695, 60.4785], [11.1696, 60.4786], [11.17, 60.4788], [11.1705, 60.479], [11.1707, 60.4791], [11.1708, 60.4791], [11.171, 60.479], [11.1712, 60.4792], [11.1713, 60.4793], [11.1713, 60.4796], [11.1713, 60.4798], [11.1711, 60.4799], [11.1708, 60.48], [11.1707, 60.4801], [11.1705, 60.4803], [11.17, 60.4805], [11.1696, 60.4808], [11.1692, 60.481], [11.169, 60.4811], [11.169, 60.4812], [11.1689, 60.4814], [11.1686, 60.4817], [11.1684, 60.4819], [11.1684, 60.4824], [11.1683, 60.4825], [11.1682, 60.4827], [11.1681, 60.4828], [11.1681, 60.4832], [11.168, 60.4833], [11.1678, 60.4836], [11.1677, 60.4836], [11.1674, 60.4837], [11.167, 60.4837], [11.1666, 60.4836], [11.1661, 60.4836], [11.166, 60.4836], [11.1658, 60.4837], [11.1657, 60.484], [11.1658, 60.4842], [11.1659, 60.4845], [11.166, 60.4847], [11.166, 60.4848], [11.1658, 60.4849], [11.1657, 60.4851], [11.1657, 60.4853], [11.1657, 60.4855], [11.1656, 60.4856], [11.1654, 60.4857], [11.165, 60.4861], [11.165, 60.4862], [11.165, 60.4864], [11.165, 60.4865], [11.1648, 60.4868], [11.1646, 60.487], [11.1646, 60.487], [11.1649, 60.4871], [11.1649, 60.4872], [11.1648, 60.4874], [11.1646, 60.4877], [11.1644, 60.488], [11.164, 60.4883], [11.1639, 60.4884], [11.1635, 60.4885], [11.1633, 60.4885], [11.1631, 60.4887], [11.1631, 60.4888], [11.163, 60.4889], [11.1629, 60.4891], [11.1628, 60.4892], [11.163, 60.4894], [11.1632, 60.4895], [11.1633, 60.4895], [11.1633, 60.4897], [11.1632, 60.4898], [11.1632, 60.4899], [11.1632, 60.4899], [11.1633, 60.49], [11.1632, 60.4904], [11.163, 60.4906], [11.1627, 60.4909], [11.1623, 60.4911], [11.162, 60.4913], [11.1618, 60.4915], [11.1618, 60.4918], [11.1616, 60.492], [11.1616, 60.492], [11.1615, 60.4921], [11.1615, 60.4921], [11.1618, 60.4925], [11.1625, 60.4925], [11.1627, 60.4926], [11.1628, 60.4927], [11.1629, 60.4928], [11.1626, 60.493], [11.1627, 60.493], [11.1629, 60.4931], [11.1633, 60.4934], [11.1637, 60.4937], [11.1638, 60.494], [11.1639, 60.4942], [11.1639, 60.4944], [11.1641, 60.4945], [11.1645, 60.4946], [11.1648, 60.4946], [11.1649, 60.4946], [11.165, 60.4947], [11.1653, 60.4951], [11.1655, 60.4952], [11.1657, 60.4953], [11.1659, 60.4953], [11.166, 60.4953], [11.1661, 60.4953], [11.1661, 60.4949], [11.1661, 60.4949], [11.1663, 60.4948], [11.1667, 60.4948], [11.1667, 60.4948], [11.1668, 60.4947], [11.1668, 60.4944], [11.1669, 60.4942], [11.167, 60.494], [11.1672, 60.494], [11.1675, 60.4939], [11.1677, 60.4939], [11.1678, 60.494], [11.1681, 60.4944], [11.1681, 60.4946], [11.1681, 60.4948], [11.1681, 60.4949], [11.1676, 60.4951], [11.1675, 60.4952], [11.1676, 60.4952], [11.1678, 60.4953], [11.1682, 60.4953], [11.1683, 60.4953], [11.1685, 60.4954], [11.1685, 60.4955], [11.1684, 60.4956], [11.1679, 60.4958], [11.1677, 60.496], [11.1676, 60.4962], [11.1677, 60.4963], [11.1678, 60.4967], [11.1679, 60.4969], [11.1702, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "145", "sub_div_center": [0.0023, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1679, 60.4969], [11.1679, 60.497], [11.1679, 60.4971], [11.1681, 60.4972], [11.1685, 60.4972], [11.1691, 60.4973], [11.1693, 60.4973], [11.1695, 60.4972], [11.17, 60.4969], [11.1702, 60.4969], [11.1679, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "146", "sub_div_center": [0.0206, 0.0173]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.1904, 60.4595], [11.1904, 60.4595], [11.1903, 60.4598], [11.1901, 60.46], [11.1899, 60.4601], [11.1897, 60.4602], [11.1895, 60.4604], [11.1895, 60.4606], [11.1896, 60.4608], [11.1896, 60.4609], [11.1895, 60.4612], [11.1894, 60.4615], [11.1894, 60.4617], [11.1893, 60.462], [11.1894, 60.4621], [11.1894, 60.4622], [11.1893, 60.4623], [11.189, 60.4625], [11.1889, 60.4628], [11.1888, 60.4629], [11.1882, 60.463], [11.1881, 60.463], [11.188, 60.463], [11.1879, 60.4632], [11.1878, 60.4635], [11.1876, 60.4636], [11.1872, 60.4637], [11.1868, 60.464], [11.1863, 60.4642], [11.1859, 60.4645], [11.1857, 60.4646], [11.1855, 60.4647], [11.1854, 60.4647], [11.1848, 60.4651], [11.1844, 60.4654], [11.1841, 60.4657], [11.1838, 60.4659], [11.1837, 60.4659], [11.1838, 60.466], [11.1838, 60.4661], [11.1837, 60.4661], [11.1836, 60.4662], [11.183, 60.4665], [11.183, 60.4667], [11.1828, 60.4669], [11.1825, 60.467], [11.1821, 60.4672], [11.1819, 60.4673], [11.1815, 60.4675], [11.1812, 60.4678], [11.1811, 60.4679], [11.181, 60.468], [11.1805, 60.4683], [11.1802, 60.4685], [11.1798, 60.4688], [11.1797, 60.469], [11.1797, 60.4691], [11.1796, 60.4693], [11.1795, 60.4693], [11.1794, 60.4693], [11.1793, 60.4693], [11.1792, 60.4695], [11.1794, 60.4697], [11.1795, 60.4698], [11.1795, 60.4699], [11.1793, 60.4703], [11.1792, 60.4705], [11.1792, 60.4707], [11.1795, 60.471], [11.1797, 60.4712], [11.1797, 60.4716], [11.1797, 60.4719], [11.1795, 60.4721], [11.1795, 60.4723], [11.1793, 60.4726], [11.1791, 60.4732], [11.179, 60.4733], [11.1788, 60.4733], [11.1787, 60.4733], [11.1783, 60.4729], [11.1779, 60.4727], [11.1778, 60.4726], [11.1773, 60.4726], [11.1771, 60.4726], [11.1767, 60.4727], [11.1761, 60.4729], [11.1757, 60.473], [11.1752, 60.4733], [11.1748, 60.4735], [11.1744, 60.4738], [11.1739, 60.474], [11.1737, 60.4742], [11.1736, 60.4742], [11.1736, 60.4743], [11.1737, 60.4744], [11.1737, 60.4746], [11.1736, 60.4747], [11.1734, 60.4747], [11.1731, 60.4747], [11.1727, 60.4748], [11.1724, 60.4749], [11.172, 60.4751], [11.1716, 60.4753], [11.1713, 60.4754], [11.1712, 60.4755], [11.171, 60.4754], [11.1708, 60.4754], [11.1704, 60.4756], [11.1702, 60.4757], [11.1701, 60.476], [11.17, 60.4761], [11.1698, 60.4763], [11.1703, 60.4765], [11.1699, 60.4765], [11.1698, 60.4766], [11.1702, 60.4767], [11.1704, 60.4766], [11.1708, 60.4761], [11.171, 60.4761], [11.1705, 60.4768], [11.1705, 60.4769], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "147", "sub_div_center": [0.0027, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1718, 60.4969], [11.1722, 60.4971], [11.1725, 60.4971], [11.1728, 60.4971], [11.173, 60.4972], [11.1731, 60.4973], [11.1732, 60.4974], [11.1733, 60.4974], [11.1735, 60.4974], [11.1738, 60.4973], [11.1742, 60.497], [11.1744, 60.4969], [11.1718, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "148", "sub_div_center": [0.0171, 0.0156]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1755, 60.4969], [11.1756, 60.4969], [11.1757, 60.497], [11.1758, 60.4973], [11.1758, 60.498], [11.1758, 60.4981], [11.1755, 60.4983], [11.1747, 60.4989], [11.1745, 60.499], [11.1741, 60.4991], [11.1739, 60.4991], [11.1737, 60.4991], [11.1735, 60.4992], [11.1735, 60.4993], [11.1735, 60.4994], [11.1736, 60.4995], [11.1738, 60.4995], [11.174, 60.4995], [11.1742, 60.4995], [11.1744, 60.4996], [11.1745, 60.4997], [11.1745, 60.4997], [11.1744, 60.4998], [11.1742, 60.4999], [11.1741, 60.5], [11.174, 60.5], [11.1738, 60.4999], [11.1737, 60.4998], [11.1737, 60.4998], [11.1734, 60.4998], [11.1733, 60.4998], [11.1733, 60.5], [11.1733, 60.5], [11.1735, 60.5003], [11.1738, 60.501], [11.1743, 60.5013], [11.1749, 60.5013], [11.1753, 60.5013], [11.1755, 60.5014], [11.1757, 60.5017], [11.1759, 60.5017], [11.1763, 60.5018], [11.1768, 60.5021], [11.1769, 60.5022], [11.1774, 60.5022], [11.1777, 60.5023], [11.1778, 60.503], [11.1781, 60.5034], [11.1782, 60.5037], [11.1782, 60.5045], [11.1779, 60.505], [11.1779, 60.5054], [11.1785, 60.5065], [11.1786, 60.507], [11.1786, 60.5077], [11.1791, 60.5081], [11.1794, 60.5086], [11.1797, 60.5087], [11.1799, 60.5087], [11.1799, 60.5089], [11.1796, 60.5091], [11.1796, 60.5093], [11.1798, 60.5094], [11.1803, 60.5093], [11.1805, 60.5093], [11.1808, 60.5095], [11.1809, 60.5099], [11.1809, 60.5104], [11.1806, 60.5108], [11.1802, 60.5113], [11.1803, 60.5114], [11.1804, 60.5115], [11.1803, 60.5118], [11.1799, 60.5122], [11.1798, 60.5124], [11.18, 60.5125], [11.1805, 60.5125], [11.1813, 60.5122], [11.1818, 60.5119], [11.1823, 60.5118], [11.1826, 60.5117], [11.1827, 60.5113], [11.183, 60.5111], [11.1833, 60.5108], [11.1833, 60.5107], [11.1836, 60.5107], [11.184, 60.5104], [11.1842, 60.5102], [11.1844, 60.5101], [11.1846, 60.5101], [11.1852, 60.5102], [11.1858, 60.5102], [11.1861, 60.5101], [11.1861, 60.5098], [11.1863, 60.5096], [11.1865, 60.5096], [11.1868, 60.5096], [11.1875, 60.5097], [11.1885, 60.5098], [11.1889, 60.5099], [11.1903, 60.5107], [11.1904, 60.5108], [11.1904, 60.4969], [11.1755, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "149", "sub_div_center": [0.0026, 0.0027]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5169], [11.1904, 60.5141], [11.1903, 60.5142], [11.1898, 60.5146], [11.1894, 60.5155], [11.1892, 60.5157], [11.189, 60.516], [11.1885, 60.5165], [11.1882, 60.5166], [11.1879, 60.5168], [11.1878, 60.5169], [11.1904, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "150", "sub_div_center": [0.0041, 0.0132]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1878, 60.5169], [11.1868, 60.5171], [11.1866, 60.5173], [11.1864, 60.5183], [11.1865, 60.5185], [11.1868, 60.5187], [11.1877, 60.5189], [11.1878, 60.5192], [11.188, 60.5198], [11.1879, 60.52], [11.1874, 60.5201], [11.1868, 60.5201], [11.1865, 60.5203], [11.1865, 60.5207], [11.1866, 60.5209], [11.1866, 60.5216], [11.1864, 60.522], [11.1864, 60.5222], [11.1867, 60.5223], [11.1868, 60.5224], [11.1868, 60.5224], [11.1871, 60.5225], [11.1872, 60.5228], [11.1873, 60.5229], [11.1876, 60.523], [11.1879, 60.5231], [11.1881, 60.5233], [11.1882, 60.5234], [11.1885, 60.5236], [11.1884, 60.5239], [11.1882, 60.5242], [11.1877, 60.5244], [11.1877, 60.5248], [11.1879, 60.5251], [11.1878, 60.5253], [11.1876, 60.5256], [11.1876, 60.5259], [11.1877, 60.5262], [11.188, 60.5273], [11.1883, 60.5276], [11.1886, 60.5278], [11.1889, 60.528], [11.1901, 60.5286], [11.1899, 60.5287], [11.1894, 60.5287], [11.1895, 60.5289], [11.1897, 60.5291], [11.1902, 60.5298], [11.1904, 60.5301], [11.1904, 60.5169], [11.1878, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "151", "sub_div_center": [0.002, 0.0053]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5315], [11.1904, 60.5316], [11.1903, 60.5317], [11.1904, 60.5321], [11.1902, 60.5325], [11.1899, 60.5329], [11.1891, 60.5331], [11.1887, 60.5337], [11.1887, 60.5348], [11.1884, 60.5359], [11.1885, 60.5367], [11.1886, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "152", "sub_div_center": [0.0018, 0.0029]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1886, 60.5369], [11.1889, 60.5373], [11.1898, 60.5386], [11.19, 60.5391], [11.1902, 60.5394], [11.1904, 60.5397], [11.1904, 60.5369], [11.1886, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "153", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.2304, 60.4769], [11.2304, 60.4569], [11.1923, 60.4569], [11.1923, 60.4569], [11.1921, 60.4571], [11.192, 60.4575], [11.1917, 60.4579], [11.1913, 60.4585], [11.191, 60.4588], [11.1909, 60.459], [11.1907, 60.4593], [11.1904, 60.4595], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "154", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.1904, 60.4969], [11.2304, 60.4969], [11.2304, 60.4769], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "155", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4969], [11.1904, 60.5108], [11.1905, 60.5108], [11.1909, 60.5116], [11.191, 60.5117], [11.191, 60.5123], [11.1912, 60.5126], [11.1908, 60.5133], [11.1907, 60.5138], [11.1904, 60.5141], [11.1904, 60.5169], [11.2304, 60.5169], [11.2304, 60.4969], [11.1904, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "156", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5169], [11.1904, 60.5301], [11.1904, 60.5301], [11.1907, 60.5308], [11.1906, 60.531], [11.1905, 60.5312], [11.1904, 60.5315], [11.1904, 60.5369], [11.2304, 60.5369], [11.2304, 60.5169], [11.1904, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "157", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5397], [11.1905, 60.54], [11.1908, 60.5401], [11.191, 60.5402], [11.1912, 60.5403], [11.1919, 60.5404], [11.1924, 60.5406], [11.1931, 60.541], [11.1934, 60.5418], [11.1934, 60.5428], [11.1941, 60.5445], [11.1943, 60.545], [11.1946, 60.5456], [11.1947, 60.5463], [11.1944, 60.5472], [11.1945, 60.5476], [11.1946, 60.548], [11.1947, 60.5483], [11.1946, 60.5487], [11.1946, 60.5489], [11.1948, 60.549], [11.1948, 60.5494], [11.1949, 60.5498], [11.1949, 60.55], [11.1947, 60.5507], [11.1943, 60.5515], [11.194, 60.5526], [11.1939, 60.5537], [11.1943, 60.5543], [11.1942, 60.5545], [11.1938, 60.555], [11.1935, 60.5556], [11.1934, 60.5557], [11.1922, 60.5565], [11.1917, 60.5569], [11.2304, 60.5569], [11.2304, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "158", "sub_div_center": [0.0006, 0.0005]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5397], [11.1905, 60.54], [11.1908, 60.5401], [11.191, 60.5402], [11.1912, 60.5403], [11.1919, 60.5404], [11.1924, 60.5406], [11.1931, 60.541], [11.1934, 60.5418], [11.1934, 60.5428], [11.1941, 60.5445], [11.1943, 60.545], [11.1946, 60.5456], [11.1947, 60.5463], [11.1944, 60.5472], [11.1945, 60.5476], [11.1946, 60.548], [11.1947, 60.5483], [11.1946, 60.5487], [11.1946, 60.5489], [11.1948, 60.549], [11.1948, 60.5494], [11.1949, 60.5498], [11.1949, 60.55], [11.1947, 60.5507], [11.1943, 60.5515], [11.194, 60.5526], [11.1939, 60.5537], [11.1943, 60.5543], [11.1942, 60.5545], [11.1938, 60.555], [11.1935, 60.5556], [11.1934, 60.5557], [11.1922, 60.5565], [11.1917, 60.5569], [11.2304, 60.5569], [11.2304, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "159", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.2304, 60.5769], [11.2304, 60.5569], [11.1917, 60.5569], [11.1911, 60.5574], [11.1904, 60.5577], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "160", "sub_div_center": [0.04, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.1904, 60.5969], [11.1987, 60.5969], [11.1987, 60.5969], [11.1987, 60.5969], [11.1996, 60.5969], [11.1997, 60.5968], [11.1999, 60.5967], [11.1998, 60.5967], [11.1998, 60.5966], [11.1998, 60.5966], [11.1999, 60.5966], [11.2, 60.5965], [11.2002, 60.5966], [11.2002, 60.5966], [11.2002, 60.5966], [11.2004, 60.5966], [11.2003, 60.5967], [11.2002, 60.5968], [11.2002, 60.5969], [11.2024, 60.5969], [11.2025, 60.5968], [11.2027, 60.5968], [11.2028, 60.5967], [11.2027, 60.5966], [11.2029, 60.5965], [11.2029, 60.5964], [11.203, 60.5963], [11.2031, 60.5962], [11.2031, 60.5961], [11.2031, 60.596], [11.2032, 60.5958], [11.2035, 60.5956], [11.2039, 60.5952], [11.2041, 60.595], [11.2043, 60.595], [11.2045, 60.5949], [11.2047, 60.5949], [11.2048, 60.595], [11.2049, 60.5951], [11.2049, 60.5951], [11.2049, 60.5952], [11.205, 60.5952], [11.2053, 60.5951], [11.2053, 60.5952], [11.2054, 60.5952], [11.2056, 60.5952], [11.2057, 60.5952], [11.2058, 60.5952], [11.2061, 60.5951], [11.2062, 60.5951], [11.2063, 60.5951], [11.2065, 60.5951], [11.2066, 60.595], [11.2067, 60.595], [11.2068, 60.5948], [11.207, 60.5948], [11.207, 60.5947], [11.2071, 60.5947], [11.2072, 60.5948], [11.2073, 60.5948], [11.2074, 60.5947], [11.2075, 60.5946], [11.2077, 60.5945], [11.2078, 60.5945], [11.2078, 60.5944], [11.2079, 60.5943], [11.2081, 60.5942], [11.2081, 60.5941], [11.2082, 60.5939], [11.2082, 60.5938], [11.2083, 60.5938], [11.2084, 60.5937], [11.2083, 60.5936], [11.2082, 60.5935], [11.2081, 60.5935], [11.2082, 60.5934], [11.2081, 60.5932], [11.2082, 60.593], [11.2083, 60.5928], [11.2085, 60.5926], [11.2086, 60.5924], [11.2088, 60.5923], [11.209, 60.5922], [11.2089, 60.5921], [11.209, 60.592], [11.2091, 60.5919], [11.2092, 60.5919], [11.2093, 60.592], [11.2093, 60.5921], [11.2094, 60.5921], [11.2095, 60.5921], [11.2097, 60.592], [11.2096, 60.5919], [11.2096, 60.5918], [11.2096, 60.5917], [11.2094, 60.5915], [11.2094, 60.5914], [11.2095, 60.5914], [11.2095, 60.5912], [11.2096, 60.5912], [11.2096, 60.5911], [11.2097, 60.5909], [11.2097, 60.5908], [11.2097, 60.5906], [11.2098, 60.5905], [11.2098, 60.5903], [11.2098, 60.5902], [11.2099, 60.5901], [11.2099, 60.5899], [11.21, 60.5897], [11.21, 60.5895], [11.21, 60.5894], [11.2099, 60.5892], [11.2098, 60.5891], [11.2098, 60.589], [11.21, 60.5889], [11.2099, 60.5889], [11.2098, 60.5888], [11.2099, 60.5887], [11.2101, 60.5886], [11.2104, 60.5885], [11.2106, 60.5885], [11.2105, 60.5883], [11.2104, 60.5882], [11.2103, 60.5881], [11.2102, 60.588], [11.2102, 60.5878], [11.2104, 60.5875], [11.2106, 60.5872], [11.2109, 60.587], [11.2114, 60.5867], [11.2116, 60.5865], [11.2117, 60.5862], [11.212, 60.5859], [11.2123, 60.5858], [11.2125, 60.5858], [11.2131, 60.5852], [11.2139, 60.5846], [11.2143, 60.5843], [11.2147, 60.5842], [11.2149, 60.5842], [11.215, 60.5842], [11.2154, 60.5842], [11.2155, 60.5841], [11.2157, 60.584], [11.2157, 60.5837], [11.2157, 60.5836], [11.2158, 60.5835], [11.2159, 60.5834], [11.2162, 60.5835], [11.2165, 60.5835], [11.2168, 60.5835], [11.217, 60.5833], [11.2172, 60.5831], [11.2175, 60.5829], [11.2177, 60.5827], [11.2179, 60.5824], [11.218, 60.5823], [11.2182, 60.5822], [11.2186, 60.582], [11.2189, 60.5818], [11.2191, 60.5816], [11.2194, 60.5813], [11.2198, 60.5811], [11.2202, 60.5809], [11.2204, 60.5808], [11.2205, 60.5807], [11.2204, 60.5805], [11.2204, 60.5805], [11.2202, 60.5804], [11.22, 60.5804], [11.2199, 60.5803], [11.2198, 60.5802], [11.2197, 60.5801], [11.2198, 60.5798], [11.2199, 60.5797], [11.2201, 60.5797], [11.2202, 60.5797], [11.2204, 60.5795], [11.2205, 60.5795], [11.2206, 60.5796], [11.2208, 60.5796], [11.221, 60.5795], [11.2211, 60.5795], [11.2212, 60.5794], [11.2215, 60.5794], [11.2217, 60.5795], [11.2219, 60.5795], [11.222, 60.5794], [11.2222, 60.5794], [11.2226, 60.5794], [11.2228, 60.5793], [11.2229, 60.5794], [11.2233, 60.5796], [11.2234, 60.5798], [11.2238, 60.58], [11.224, 60.5802], [11.224, 60.5804], [11.2241, 60.5806], [11.2241, 60.5807], [11.2241, 60.581], [11.2242, 60.5814], [11.2242, 60.5816], [11.2242, 60.5817], [11.2242, 60.5819], [11.2242, 60.5821], [11.2241, 60.5823], [11.224, 60.5823], [11.224, 60.5825], [11.2241, 60.5827], [11.2241, 60.5829], [11.224, 60.583], [11.2242, 60.5831], [11.2244, 60.5832], [11.2245, 60.5833], [11.2246, 60.5834], [11.2248, 60.5836], [11.2249, 60.5837], [11.225, 60.5838], [11.2253, 60.5841], [11.2254, 60.5841], [11.2258, 60.5842], [11.2259, 60.5843], [11.2261, 60.5842], [11.2262, 60.5842], [11.2263, 60.5841], [11.2264, 60.5841], [11.2266, 60.5841], [11.2266, 60.5843], [11.2268, 60.5844], [11.227, 60.5845], [11.2274, 60.5845], [11.2277, 60.5846], [11.2279, 60.5846], [11.2281, 60.5846], [11.2282, 60.5847], [11.2284, 60.5849], [11.2285, 60.585], [11.2286, 60.5852], [11.2287, 60.5854], [11.2288, 60.5856], [11.2287, 60.5857], [11.2286, 60.5859], [11.2284, 60.5861], [11.2283, 60.5862], [11.2283, 60.5863], [11.2282, 60.5864], [11.2281, 60.5865], [11.2281, 60.5866], [11.2281, 60.5868], [11.2282, 60.5869], [11.2282, 60.5871], [11.2283, 60.5873], [11.2284, 60.5874], [11.2285, 60.5875], [11.2286, 60.5876], [11.2286, 60.5878], [11.2286, 60.5879], [11.2288, 60.588], [11.229, 60.5881], [11.2291, 60.5882], [11.2292, 60.5884], [11.2293, 60.5885], [11.2292, 60.5887], [11.229, 60.5889], [11.2287, 60.5891], [11.2285, 60.5892], [11.2284, 60.5894], [11.2286, 60.5895], [11.2287, 60.5896], [11.2289, 60.5896], [11.2288, 60.5898], [11.2288, 60.5899], [11.2288, 60.59], [11.2288, 60.5902], [11.229, 60.5903], [11.2295, 60.5904], [11.2298, 60.5904], [11.2301, 60.5903], [11.2304, 60.5904], [11.2304, 60.5903], [11.2304, 60.5769], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "161", "sub_div_center": [0.0105, 0.0092]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5969], [11.1904, 60.6042], [11.1905, 60.6041], [11.1906, 60.604], [11.1907, 60.604], [11.1908, 60.6039], [11.1909, 60.6038], [11.1911, 60.6037], [11.1912, 60.6037], [11.1912, 60.6036], [11.1914, 60.6036], [11.1914, 60.6036], [11.1914, 60.6037], [11.1914, 60.6037], [11.1914, 60.6038], [11.1914, 60.6038], [11.1913, 60.6039], [11.1914, 60.6039], [11.1914, 60.604], [11.1913, 60.604], [11.1912, 60.6041], [11.191, 60.6042], [11.1909, 60.6043], [11.1911, 60.6043], [11.1911, 60.6043], [11.1909, 60.6044], [11.1907, 60.6046], [11.1906, 60.6047], [11.1906, 60.6048], [11.1906, 60.6049], [11.1906, 60.605], [11.1908, 60.6052], [11.1908, 60.6052], [11.1911, 60.6054], [11.1912, 60.6054], [11.1913, 60.6054], [11.1913, 60.6053], [11.1914, 60.6053], [11.1913, 60.6053], [11.1913, 60.6053], [11.1914, 60.6053], [11.1915, 60.6053], [11.1916, 60.6053], [11.1917, 60.6053], [11.1915, 60.6054], [11.1915, 60.6054], [11.1917, 60.6055], [11.192, 60.6055], [11.1922, 60.6055], [11.1924, 60.6055], [11.1927, 60.6055], [11.1929, 60.6054], [11.193, 60.6054], [11.1932, 60.6053], [11.1934, 60.6053], [11.1935, 60.6052], [11.1937, 60.6051], [11.1939, 60.6051], [11.1941, 60.6051], [11.1943, 60.6051], [11.1945, 60.605], [11.1946, 60.6051], [11.1948, 60.6051], [11.195, 60.6052], [11.1952, 60.6051], [11.1954, 60.6051], [11.1955, 60.6052], [11.1957, 60.6052], [11.1958, 60.6053], [11.196, 60.6052], [11.1963, 60.6052], [11.1964, 60.6053], [11.1966, 60.6052], [11.1967, 60.6052], [11.1969, 60.6052], [11.1973, 60.6052], [11.1974, 60.6052], [11.1974, 60.6053], [11.1974, 60.6054], [11.1975, 60.6054], [11.1976, 60.6055], [11.1975, 60.6056], [11.1976, 60.6056], [11.1977, 60.6057], [11.1977, 60.6058], [11.1977, 60.6058], [11.1979, 60.6059], [11.198, 60.606], [11.1982, 60.606], [11.1984, 60.606], [11.1985, 60.606], [11.1985, 60.606], [11.1985, 60.606], [11.1986, 60.606], [11.1988, 60.606], [11.1989, 60.606], [11.199, 60.606], [11.1993, 60.6059], [11.1996, 60.6059], [11.1997, 60.6058], [11.2, 60.6058], [11.2002, 60.6058], [11.2004, 60.6058], [11.2005, 60.6057], [11.2006, 60.6057], [11.2008, 60.6055], [11.2009, 60.6054], [11.2009, 60.6053], [11.2009, 60.605], [11.2008, 60.6049], [11.2007, 60.6047], [11.2006, 60.6046], [11.2005, 60.6046], [11.2004, 60.6045], [11.2004, 60.6045], [11.2002, 60.6044], [11.2001, 60.6044], [11.2002, 60.6043], [11.2003, 60.6042], [11.2002, 60.604], [11.2001, 60.604], [11.2001, 60.6039], [11.2002, 60.6039], [11.2002, 60.6038], [11.2002, 60.6038], [11.2002, 60.6037], [11.2003, 60.6036], [11.2002, 60.6035], [11.2001, 60.6034], [11.2001, 60.6033], [11.2001, 60.6031], [11.2002, 60.603], [11.2002, 60.6029], [11.2002, 60.6029], [11.2002, 60.6028], [11.2002, 60.6027], [11.2001, 60.6027], [11.2002, 60.6026], [11.2004, 60.6025], [11.2005, 60.6024], [11.2005, 60.6023], [11.2004, 60.6021], [11.2004, 60.6019], [11.2004, 60.6019], [11.2001, 60.6019], [11.2001, 60.6018], [11.2003, 60.6017], [11.2005, 60.6017], [11.2006, 60.6017], [11.2007, 60.6016], [11.2007, 60.6015], [11.2005, 60.6014], [11.2005, 60.6013], [11.2005, 60.6012], [11.2003, 60.6011], [11.2003, 60.601], [11.2002, 60.6008], [11.2001, 60.6007], [11.2002, 60.6005], [11.2002, 60.6004], [11.2002, 60.6003], [11.2, 60.6001], [11.1998, 60.6001], [11.1996, 60.6001], [11.1994, 60.6], [11.1993, 60.5999], [11.1992, 60.5999], [11.1991, 60.5997], [11.1991, 60.5996], [11.199, 60.5994], [11.1989, 60.5994], [11.1989, 60.5992], [11.199, 60.5991], [11.1991, 60.599], [11.1989, 60.599], [11.1988, 60.5991], [11.1986, 60.599], [11.1985, 60.5989], [11.1984, 60.5988], [11.1983, 60.5987], [11.1984, 60.5987], [11.1983, 60.5986], [11.1982, 60.5985], [11.1981, 60.5984], [11.1981, 60.5983], [11.198, 60.5982], [11.198, 60.5981], [11.1982, 60.598], [11.1984, 60.5979], [11.1985, 60.5978], [11.1984, 60.5977], [11.1983, 60.5976], [11.1983, 60.5975], [11.1984, 60.5975], [11.1983, 60.5975], [11.1983, 60.5974], [11.1984, 60.5974], [11.1986, 60.5973], [11.1987, 60.5973], [11.1988, 60.5973], [11.1986, 60.5972], [11.1986, 60.5972], [11.1987, 60.5972], [11.1988, 60.5971], [11.1985, 60.5971], [11.1987, 60.5969], [11.1904, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "162", "sub_div_center": [0.0381, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4569], [11.2304, 60.4369], [11.1966, 60.4369], [11.1966, 60.4372], [11.1968, 60.4377], [11.1968, 60.4401], [11.197, 60.4403], [11.1977, 60.4409], [11.1978, 60.4412], [11.1974, 60.4423], [11.1973, 60.4432], [11.1972, 60.4443], [11.1972, 60.4444], [11.1971, 60.4449], [11.1971, 60.4449], [11.1974, 60.4454], [11.1974, 60.4456], [11.1974, 60.4458], [11.197, 60.4461], [11.1969, 60.4463], [11.1968, 60.4467], [11.1961, 60.4481], [11.196, 60.4486], [11.1959, 60.4491], [11.1956, 60.4495], [11.1954, 60.45], [11.1951, 60.4508], [11.1951, 60.4513], [11.195, 60.4515], [11.1949, 60.4517], [11.195, 60.4524], [11.195, 60.4528], [11.1949, 60.453], [11.1948, 60.4532], [11.1946, 60.4535], [11.1939, 60.4542], [11.1935, 60.4549], [11.1929, 60.4555], [11.1924, 60.4563], [11.1923, 60.4569], [11.2304, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "163", "sub_div_center": [0.0339, 0.0188]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2304, 60.3981], [11.2304, 60.3981], [11.2301, 60.3982], [11.2296, 60.3983], [11.2291, 60.3982], [11.2286, 60.3981], [11.2282, 60.3981], [11.2275, 60.3981], [11.2274, 60.3981], [11.2267, 60.3981], [11.2261, 60.3983], [11.2257, 60.3983], [11.225, 60.3984], [11.2243, 60.3984], [11.2237, 60.3984], [11.2215, 60.3985], [11.2208, 60.3985], [11.2207, 60.3985], [11.2207, 60.3985], [11.2201, 60.3986], [11.2198, 60.3986], [11.2191, 60.3987], [11.2184, 60.3986], [11.2183, 60.3986], [11.2164, 60.3987], [11.2144, 60.3987], [11.2134, 60.3988], [11.2126, 60.399], [11.2106, 60.3994], [11.2089, 60.3999], [11.2086, 60.4], [11.2081, 60.4002], [11.2076, 60.4004], [11.2067, 60.4008], [11.2063, 60.4012], [11.2063, 60.4021], [11.2065, 60.4023], [11.2064, 60.4027], [11.2059, 60.4033], [11.2054, 60.4037], [11.2044, 60.4048], [11.2041, 60.4055], [11.2042, 60.4058], [11.2044, 60.406], [11.2048, 60.4061], [11.205, 60.4064], [11.2052, 60.4069], [11.2054, 60.4073], [11.2054, 60.4076], [11.2051, 60.4083], [11.2051, 60.4085], [11.2053, 60.4085], [11.2055, 60.4083], [11.2057, 60.4083], [11.2056, 60.4085], [11.2051, 60.409], [11.2049, 60.4094], [11.205, 60.4097], [11.2047, 60.4102], [11.2046, 60.4105], [11.2041, 60.4109], [11.204, 60.4112], [11.204, 60.4114], [11.2042, 60.4118], [11.2042, 60.4122], [11.2041, 60.4123], [11.204, 60.4125], [11.2035, 60.413], [11.2021, 60.4135], [11.2012, 60.4137], [11.2003, 60.4139], [11.2, 60.4141], [11.1999, 60.4142], [11.1993, 60.4144], [11.1986, 60.4147], [11.1978, 60.4149], [11.1974, 60.4151], [11.1972, 60.4153], [11.197, 60.4156], [11.1965, 60.416], [11.1966, 60.4164], [11.1965, 60.4165], [11.1966, 60.4169], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "164", "sub_div_center": [0.0355, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1966, 60.4169], [11.1966, 60.4171], [11.1968, 60.4173], [11.1971, 60.4173], [11.1969, 60.4175], [11.1968, 60.418], [11.1962, 60.4193], [11.1962, 60.4197], [11.1956, 60.4206], [11.1955, 60.4208], [11.1953, 60.4214], [11.1953, 60.4216], [11.195, 60.4222], [11.195, 60.4226], [11.1949, 60.4235], [11.1953, 60.4243], [11.1953, 60.4248], [11.1955, 60.425], [11.1952, 60.4253], [11.1957, 60.4272], [11.1959, 60.4277], [11.196, 60.4279], [11.1961, 60.4287], [11.1965, 60.4293], [11.1968, 60.4303], [11.197, 60.4308], [11.1971, 60.4315], [11.1973, 60.432], [11.1974, 60.4332], [11.1974, 60.4339], [11.1973, 60.4344], [11.1973, 60.4356], [11.197, 60.4359], [11.1968, 60.4365], [11.1966, 60.4367], [11.1966, 60.4369], [11.2304, 60.4369], [11.2304, 60.4169], [11.1966, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "165", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1966, 60.4169], [11.1966, 60.4171], [11.1968, 60.4173], [11.1971, 60.4173], [11.1969, 60.4175], [11.1968, 60.418], [11.1962, 60.4193], [11.1962, 60.4197], [11.1956, 60.4206], [11.1955, 60.4208], [11.1953, 60.4214], [11.1953, 60.4216], [11.195, 60.4222], [11.195, 60.4226], [11.1949, 60.4235], [11.1953, 60.4243], [11.1953, 60.4248], [11.1955, 60.425], [11.1952, 60.4253], [11.1957, 60.4272], [11.1959, 60.4277], [11.196, 60.4279], [11.1961, 60.4287], [11.1965, 60.4293], [11.1968, 60.4303], [11.197, 60.4308], [11.1971, 60.4315], [11.1973, 60.432], [11.1974, 60.4332], [11.1974, 60.4339], [11.1973, 60.4344], [11.1973, 60.4356], [11.197, 60.4359], [11.1968, 60.4365], [11.1966, 60.4367], [11.1966, 60.4369], [11.2304, 60.4369], [11.2304, 60.4169], [11.1966, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "166", "sub_div_center": [0.001, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1987, 60.5969], [11.1988, 60.5969], [11.1987, 60.597], [11.1988, 60.597], [11.199, 60.597], [11.1992, 60.597], [11.1992, 60.597], [11.1993, 60.597], [11.1996, 60.5969], [11.1996, 60.5969], [11.1987, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "167", "sub_div_center": [0.0022, 0.001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2002, 60.5969], [11.2002, 60.5969], [11.2002, 60.597], [11.2002, 60.597], [11.2004, 60.5971], [11.2004, 60.5972], [11.2006, 60.5972], [11.2007, 60.5973], [11.2008, 60.5974], [11.2007, 60.5974], [11.2008, 60.5975], [11.2008, 60.5976], [11.2007, 60.5978], [11.2008, 60.5978], [11.2009, 60.5979], [11.201, 60.5978], [11.2011, 60.5978], [11.201, 60.5977], [11.201, 60.5976], [11.2011, 60.5975], [11.2011, 60.5975], [11.2012, 60.5974], [11.2014, 60.5974], [11.2014, 60.5974], [11.2014, 60.5973], [11.2014, 60.5973], [11.2014, 60.5972], [11.2015, 60.5972], [11.2015, 60.5972], [11.2016, 60.5971], [11.2017, 60.5971], [11.2017, 60.5971], [11.2018, 60.5971], [11.2019, 60.597], [11.202, 60.597], [11.2021, 60.5971], [11.2022, 60.597], [11.2023, 60.5969], [11.2024, 60.5969], [11.2002, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "168", "sub_div_center": [0.0075, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2377, 60.4169], [11.2378, 60.4165], [11.2375, 60.4162], [11.2374, 60.4158], [11.2376, 60.4155], [11.2378, 60.4153], [11.2379, 60.4151], [11.2378, 60.4149], [11.2377, 60.4146], [11.2378, 60.4143], [11.2378, 60.4135], [11.2378, 60.4128], [11.2378, 60.4125], [11.2379, 60.4119], [11.2377, 60.4112], [11.2375, 60.4104], [11.2372, 60.4097], [11.2369, 60.4091], [11.2365, 60.4083], [11.2363, 60.4078], [11.2362, 60.4073], [11.236, 60.4067], [11.236, 60.4066], [11.2358, 60.4059], [11.2358, 60.4053], [11.2358, 60.4052], [11.2357, 60.4046], [11.2355, 60.404], [11.2355, 60.4036], [11.2355, 60.4031], [11.2353, 60.4027], [11.2349, 60.4023], [11.2347, 60.402], [11.2345, 60.4016], [11.2344, 60.4014], [11.2345, 60.4013], [11.2349, 60.4012], [11.2354, 60.4011], [11.2361, 60.4011], [11.2365, 60.4011], [11.2368, 60.4009], [11.2368, 60.4006], [11.2366, 60.4001], [11.2366, 60.3999], [11.2362, 60.3993], [11.2362, 60.3991], [11.2363, 60.3989], [11.2362, 60.3986], [11.2361, 60.3983], [11.2368, 60.3981], [11.2359, 60.3974], [11.2348, 60.3969], [11.2345, 60.3969], [11.2343, 60.397], [11.234, 60.3972], [11.2338, 60.3973], [11.2335, 60.3974], [11.2329, 60.3975], [11.2323, 60.3976], [11.2319, 60.3976], [11.2316, 60.3977], [11.2314, 60.3977], [11.2309, 60.3979], [11.2305, 60.3981], [11.2304, 60.3981], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "169", "sub_div_center": [0.0087, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2304, 60.4369], [11.2366, 60.4369], [11.2365, 60.4365], [11.2361, 60.4362], [11.2359, 60.4359], [11.2357, 60.4357], [11.2357, 60.4354], [11.2359, 60.4352], [11.2366, 60.435], [11.2375, 60.4345], [11.2379, 60.4343], [11.2382, 60.4338], [11.2385, 60.4335], [11.2387, 60.4331], [11.2387, 60.4328], [11.2385, 60.4327], [11.2383, 60.4326], [11.2382, 60.4321], [11.2388, 60.4309], [11.2386, 60.4304], [11.2385, 60.43], [11.2386, 60.4299], [11.2386, 60.4297], [11.2381, 60.4295], [11.2381, 60.4293], [11.2385, 60.4289], [11.2384, 60.4285], [11.2384, 60.4282], [11.2385, 60.428], [11.2389, 60.4276], [11.2391, 60.4268], [11.2391, 60.4263], [11.2391, 60.4262], [11.239, 60.4259], [11.2388, 60.4257], [11.2388, 60.4256], [11.2384, 60.4253], [11.238, 60.4251], [11.2375, 60.4252], [11.2368, 60.4251], [11.2364, 60.4249], [11.2363, 60.4245], [11.2361, 60.4233], [11.2361, 60.4226], [11.2362, 60.4224], [11.2362, 60.4223], [11.2369, 60.4218], [11.2372, 60.4214], [11.2373, 60.4211], [11.2372, 60.4206], [11.2372, 60.4205], [11.2375, 60.4199], [11.2384, 60.419], [11.2384, 60.419], [11.2385, 60.4187], [11.2384, 60.4186], [11.2382, 60.4185], [11.2379, 60.4183], [11.2379, 60.4178], [11.2377, 60.4176], [11.2376, 60.4173], [11.2377, 60.4169], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "170", "sub_div_center": [0.011, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4369], [11.2304, 60.4569], [11.2379, 60.4569], [11.2378, 60.4568], [11.2379, 60.4566], [11.2381, 60.4563], [11.2381, 60.4562], [11.2382, 60.456], [11.2383, 60.4558], [11.2382, 60.4554], [11.2383, 60.4551], [11.2384, 60.4547], [11.2384, 60.4547], [11.2383, 60.4547], [11.2383, 60.4546], [11.2384, 60.4545], [11.2385, 60.4543], [11.2386, 60.4543], [11.2387, 60.4543], [11.2387, 60.4538], [11.2387, 60.4536], [11.2385, 60.4535], [11.2383, 60.4533], [11.2383, 60.4532], [11.2384, 60.4529], [11.2386, 60.4528], [11.2388, 60.4525], [11.239, 60.4524], [11.2389, 60.4523], [11.2389, 60.4521], [11.2392, 60.4519], [11.2393, 60.4517], [11.2395, 60.4515], [11.2397, 60.4513], [11.2401, 60.4511], [11.2404, 60.4508], [11.2408, 60.4505], [11.2409, 60.4503], [11.2411, 60.4501], [11.2413, 60.4498], [11.2414, 60.4494], [11.2414, 60.4492], [11.2413, 60.4491], [11.2413, 60.449], [11.241, 60.4481], [11.2407, 60.4477], [11.2406, 60.4473], [11.2405, 60.4472], [11.2401, 60.4468], [11.24, 60.4467], [11.24, 60.4462], [11.24, 60.4461], [11.24, 60.446], [11.2402, 60.4459], [11.2404, 60.4457], [11.2404, 60.4457], [11.2404, 60.4456], [11.2404, 60.4452], [11.2402, 60.4447], [11.2401, 60.4442], [11.2401, 60.4438], [11.2402, 60.4436], [11.2403, 60.4433], [11.24, 60.443], [11.2396, 60.443], [11.2392, 60.4428], [11.2393, 60.4425], [11.2396, 60.4418], [11.2402, 60.4412], [11.24, 60.4405], [11.2403, 60.4401], [11.2403, 60.4399], [11.2401, 60.4396], [11.2395, 60.4392], [11.2393, 60.4391], [11.2391, 60.439], [11.239, 60.4387], [11.2386, 60.4385], [11.2386, 60.4382], [11.2384, 60.438], [11.2379, 60.4378], [11.2377, 60.4374], [11.2373, 60.4373], [11.2372, 60.4371], [11.2371, 60.437], [11.2368, 60.4369], [11.2366, 60.4369], [11.2366, 60.4369], [11.2304, 60.4369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "171", "sub_div_center": [0.0107, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4569], [11.2304, 60.4769], [11.2381, 60.4769], [11.2382, 60.4768], [11.2383, 60.4766], [11.2386, 60.4764], [11.2388, 60.4762], [11.2389, 60.4761], [11.2389, 60.476], [11.2389, 60.476], [11.2388, 60.4758], [11.2389, 60.4756], [11.239, 60.4755], [11.2391, 60.4754], [11.2393, 60.4754], [11.2394, 60.4753], [11.2394, 60.4752], [11.2394, 60.4749], [11.2394, 60.4747], [11.2394, 60.4744], [11.2393, 60.4743], [11.239, 60.4742], [11.2389, 60.4741], [11.2389, 60.4739], [11.2388, 60.4738], [11.2385, 60.4738], [11.2384, 60.4738], [11.2382, 60.4737], [11.2381, 60.4735], [11.238, 60.4734], [11.2379, 60.4733], [11.2378, 60.473], [11.2379, 60.4729], [11.238, 60.4728], [11.2379, 60.4727], [11.2376, 60.4725], [11.2375, 60.4725], [11.2372, 60.4725], [11.2371, 60.4724], [11.2371, 60.4723], [11.2373, 60.472], [11.2375, 60.4719], [11.2376, 60.4718], [11.2378, 60.4719], [11.2379, 60.4719], [11.238, 60.4719], [11.2385, 60.4721], [11.2387, 60.4721], [11.2393, 60.472], [11.2393, 60.4719], [11.2394, 60.4719], [11.2393, 60.4717], [11.2393, 60.4713], [11.2393, 60.4712], [11.2392, 60.4712], [11.239, 60.4712], [11.2387, 60.4713], [11.2383, 60.4712], [11.2381, 60.4712], [11.2379, 60.4712], [11.2377, 60.4712], [11.2377, 60.4711], [11.2377, 60.4708], [11.2378, 60.4707], [11.2382, 60.4705], [11.2384, 60.4704], [11.2385, 60.4703], [11.2387, 60.47], [11.2389, 60.4698], [11.2391, 60.4696], [11.2391, 60.4695], [11.2391, 60.4691], [11.2391, 60.4688], [11.239, 60.4684], [11.239, 60.4681], [11.2387, 60.468], [11.2387, 60.4679], [11.2388, 60.4678], [11.2393, 60.4675], [11.2394, 60.4674], [11.2393, 60.4671], [11.2393, 60.4668], [11.2394, 60.4665], [11.2395, 60.4662], [11.2402, 60.4656], [11.2402, 60.4655], [11.2402, 60.4652], [11.2402, 60.4648], [11.2404, 60.4645], [11.2405, 60.4644], [11.2408, 60.4642], [11.241, 60.464], [11.2411, 60.4639], [11.2412, 60.4638], [11.2411, 60.4636], [11.2411, 60.4636], [11.2407, 60.4636], [11.2406, 60.4635], [11.2406, 60.4634], [11.2408, 60.4631], [11.241, 60.4627], [11.241, 60.4625], [11.241, 60.4619], [11.241, 60.4618], [11.2409, 60.4618], [11.2406, 60.4616], [11.2404, 60.4614], [11.2402, 60.4612], [11.2401, 60.4612], [11.2401, 60.4608], [11.2399, 60.4606], [11.2396, 60.4605], [11.2394, 60.4605], [11.2387, 60.4605], [11.2385, 60.4604], [11.2383, 60.4603], [11.2382, 60.46], [11.2381, 60.4599], [11.2382, 60.4595], [11.2382, 60.4592], [11.2381, 60.459], [11.238, 60.459], [11.238, 60.4586], [11.238, 60.4583], [11.2379, 60.458], [11.2379, 60.4579], [11.2378, 60.4579], [11.2377, 60.4578], [11.2378, 60.4575], [11.238, 60.4571], [11.2379, 60.4569], [11.2304, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "172", "sub_div_center": [0.0078, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4769], [11.2304, 60.4969], [11.2319, 60.4969], [11.2318, 60.4968], [11.2316, 60.4963], [11.2314, 60.4955], [11.2314, 60.4952], [11.2314, 60.495], [11.2315, 60.4947], [11.2314, 60.4943], [11.2314, 60.494], [11.2313, 60.4935], [11.2314, 60.4932], [11.2314, 60.4927], [11.2314, 60.4922], [11.2316, 60.4916], [11.2318, 60.4912], [11.2319, 60.4907], [11.232, 60.4904], [11.2321, 60.4899], [11.2323, 60.4895], [11.2325, 60.4889], [11.2328, 60.4884], [11.2329, 60.4881], [11.2333, 60.4874], [11.2338, 60.4866], [11.2342, 60.4861], [11.2343, 60.4859], [11.2346, 60.4856], [11.2347, 60.4854], [11.2348, 60.4853], [11.235, 60.4851], [11.2352, 60.4848], [11.2355, 60.4844], [11.2355, 60.4844], [11.2354, 60.4843], [11.2352, 60.4841], [11.2351, 60.4841], [11.2349, 60.4839], [11.2342, 60.484], [11.2341, 60.484], [11.234, 60.4838], [11.2341, 60.4833], [11.2342, 60.483], [11.2343, 60.4827], [11.2344, 60.4825], [11.2346, 60.4824], [11.2352, 60.4822], [11.2357, 60.4819], [11.2357, 60.4819], [11.2358, 60.4818], [11.2358, 60.4815], [11.236, 60.4813], [11.236, 60.4809], [11.2361, 60.4805], [11.236, 60.4804], [11.236, 60.4802], [11.2361, 60.4799], [11.2362, 60.4797], [11.2364, 60.4795], [11.2367, 60.4793], [11.2367, 60.4793], [11.2368, 60.4789], [11.2369, 60.4787], [11.2372, 60.4786], [11.2375, 60.4784], [11.2378, 60.478], [11.2379, 60.4777], [11.2381, 60.4775], [11.2382, 60.4773], [11.2381, 60.4772], [11.238, 60.4771], [11.2381, 60.4769], [11.2304, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "173", "sub_div_center": [0.0117, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4969], [11.2304, 60.5169], [11.2414, 60.5169], [11.2414, 60.5168], [11.2416, 60.5166], [11.2417, 60.5165], [11.2417, 60.5165], [11.2418, 60.5163], [11.2418, 60.5162], [11.2418, 60.5162], [11.2419, 60.5161], [11.2419, 60.5161], [11.2419, 60.5159], [11.242, 60.5156], [11.2419, 60.5156], [11.2418, 60.5156], [11.2417, 60.5155], [11.2417, 60.5155], [11.2417, 60.5154], [11.2418, 60.5153], [11.2417, 60.5153], [11.2418, 60.5153], [11.2418, 60.5152], [11.2416, 60.5152], [11.2417, 60.5151], [11.2418, 60.515], [11.2417, 60.515], [11.2418, 60.5149], [11.2418, 60.5148], [11.2419, 60.5148], [11.2419, 60.5148], [11.2419, 60.5147], [11.2418, 60.5147], [11.2419, 60.5145], [11.242, 60.5144], [11.2421, 60.5142], [11.2421, 60.5138], [11.2421, 60.5137], [11.242, 60.5136], [11.242, 60.5135], [11.242, 60.5134], [11.2421, 60.5133], [11.242, 60.5132], [11.242, 60.5132], [11.2419, 60.5132], [11.2419, 60.5132], [11.2419, 60.5131], [11.2419, 60.5131], [11.2418, 60.5131], [11.2418, 60.513], [11.2417, 60.5131], [11.2417, 60.513], [11.2417, 60.513], [11.2416, 60.513], [11.2415, 60.513], [11.2415, 60.5129], [11.2415, 60.5129], [11.2415, 60.5129], [11.2415, 60.5128], [11.2416, 60.5128], [11.2415, 60.5127], [11.2414, 60.5127], [11.2413, 60.5127], [11.2414, 60.5127], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5127], [11.2414, 60.5127], [11.2415, 60.5127], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5125], [11.2414, 60.5124], [11.2414, 60.5124], [11.2414, 60.5124], [11.2415, 60.5123], [11.2415, 60.5123], [11.2415, 60.5123], [11.2415, 60.5122], [11.2415, 60.5122], [11.2414, 60.5121], [11.2415, 60.5121], [11.2416, 60.512], [11.2416, 60.5119], [11.2416, 60.5119], [11.2416, 60.5118], [11.2417, 60.5118], [11.2417, 60.5117], [11.2417, 60.5117], [11.2418, 60.5116], [11.2418, 60.5116], [11.2417, 60.5116], [11.2417, 60.5115], [11.2417, 60.5115], [11.2418, 60.5115], [11.2418, 60.5114], [11.2419, 60.5114], [11.2419, 60.5113], [11.2419, 60.5112], [11.2419, 60.511], [11.2419, 60.5109], [11.2419, 60.5109], [11.2419, 60.5108], [11.2419, 60.5107], [11.2418, 60.5107], [11.2417, 60.5105], [11.2417, 60.5104], [11.2416, 60.5104], [11.2416, 60.5103], [11.2415, 60.5104], [11.2414, 60.5103], [11.2414, 60.5103], [11.2414, 60.5102], [11.2414, 60.5101], [11.2413, 60.5101], [11.2414, 60.5101], [11.2415, 60.5101], [11.2415, 60.5101], [11.2414, 60.51], [11.2414, 60.51], [11.2414, 60.5099], [11.2414, 60.5098], [11.2414, 60.5097], [11.2414, 60.5097], [11.2413, 60.5096], [11.2413, 60.5096], [11.2412, 60.5096], [11.2412, 60.5097], [11.2412, 60.5097], [11.2411, 60.5097], [11.2411, 60.5097], [11.2411, 60.5096], [11.2411, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5095], [11.2412, 60.5095], [11.2412, 60.5094], [11.2412, 60.5094], [11.2412, 60.5094], [11.2412, 60.5093], [11.2412, 60.5093], [11.2411, 60.5091], [11.2411, 60.5089], [11.2409, 60.5088], [11.2408, 60.5087], [11.2408, 60.5086], [11.2408, 60.5085], [11.2408, 60.5084], [11.2408, 60.5083], [11.2409, 60.5083], [11.2409, 60.5082], [11.2408, 60.5082], [11.2408, 60.5082], [11.2408, 60.5081], [11.2407, 60.5081], [11.2406, 60.5081], [11.2405, 60.508], [11.2405, 60.5079], [11.2405, 60.5079], [11.2403, 60.5078], [11.2403, 60.5078], [11.2403, 60.5077], [11.2402, 60.5076], [11.2401, 60.5075], [11.2401, 60.5074], [11.2402, 60.5074], [11.2403, 60.5073], [11.2403, 60.5073], [11.2402, 60.5073], [11.2403, 60.5073], [11.2403, 60.5072], [11.2403, 60.5072], [11.2402, 60.507], [11.2401, 60.5068], [11.24, 60.5067], [11.24, 60.5066], [11.2399, 60.5066], [11.2399, 60.5065], [11.2397, 60.5063], [11.2395, 60.5061], [11.2395, 60.506], [11.2393, 60.5058], [11.2391, 60.5055], [11.2388, 60.5053], [11.2387, 60.5051], [11.2386, 60.505], [11.2385, 60.505], [11.2384, 60.5049], [11.2382, 60.5049], [11.2381, 60.5048], [11.2379, 60.5048], [11.2378, 60.5048], [11.2376, 60.5047], [11.2374, 60.5046], [11.2371, 60.5046], [11.2369, 60.5046], [11.2366, 60.5045], [11.2365, 60.5045], [11.2364, 60.5046], [11.2363, 60.5046], [11.2362, 60.5045], [11.2362, 60.5045], [11.2362, 60.5044], [11.2361, 60.5043], [11.236, 60.5042], [11.2359, 60.5041], [11.2357, 60.504], [11.2357, 60.5039], [11.2357, 60.5038], [11.2358, 60.5037], [11.2359, 60.5036], [11.2359, 60.5035], [11.2359, 60.5034], [11.2359, 60.5034], [11.2358, 60.5033], [11.2359, 60.5032], [11.2359, 60.5032], [11.2358, 60.503], [11.2358, 60.5029], [11.2357, 60.5028], [11.2357, 60.5027], [11.2356, 60.5026], [11.2356, 60.5025], [11.2355, 60.5024], [11.2355, 60.5024], [11.2355, 60.5023], [11.2353, 60.5022], [11.2352, 60.502], [11.235, 60.5018], [11.235, 60.5018], [11.2351, 60.5017], [11.2349, 60.5016], [11.2347, 60.5014], [11.2344, 60.5011], [11.2342, 60.5009], [11.234, 60.5007], [11.2339, 60.5006], [11.2339, 60.5006], [11.2338, 60.5005], [11.2335, 60.5001], [11.2331, 60.4994], [11.2329, 60.4993], [11.2327, 60.4991], [11.2326, 60.4987], [11.2323, 60.4981], [11.2321, 60.4976], [11.232, 60.497], [11.2319, 60.4969], [11.2304, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "174", "sub_div_center": [0.0119, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5169], [11.2304, 60.5369], [11.2423, 60.5369], [11.2423, 60.5368], [11.2422, 60.5367], [11.2422, 60.5366], [11.2422, 60.5366], [11.2421, 60.5365], [11.2421, 60.5365], [11.2422, 60.5364], [11.2421, 60.5364], [11.2421, 60.5364], [11.242, 60.5363], [11.2419, 60.5363], [11.242, 60.5363], [11.242, 60.5362], [11.242, 60.5362], [11.242, 60.5361], [11.242, 60.536], [11.2419, 60.536], [11.2419, 60.5359], [11.2419, 60.5358], [11.2419, 60.5357], [11.2419, 60.5356], [11.2419, 60.5356], [11.242, 60.5355], [11.242, 60.5355], [11.2419, 60.5354], [11.2419, 60.5353], [11.2419, 60.5351], [11.2419, 60.5349], [11.2418, 60.5343], [11.2418, 60.5342], [11.2418, 60.534], [11.2418, 60.5336], [11.2418, 60.5335], [11.2418, 60.5333], [11.2418, 60.533], [11.2418, 60.5328], [11.2418, 60.5327], [11.2418, 60.5325], [11.2418, 60.5322], [11.2418, 60.5319], [11.2418, 60.5317], [11.2418, 60.5317], [11.2418, 60.5314], [11.2417, 60.5313], [11.2417, 60.5311], [11.2417, 60.5309], [11.2417, 60.5308], [11.2417, 60.5305], [11.2417, 60.5304], [11.2416, 60.5301], [11.2416, 60.5299], [11.2416, 60.5297], [11.2415, 60.5294], [11.2415, 60.5293], [11.2415, 60.5291], [11.2415, 60.5289], [11.2414, 60.5287], [11.2414, 60.5285], [11.2414, 60.5282], [11.2413, 60.528], [11.2413, 60.5278], [11.2412, 60.5274], [11.2411, 60.5266], [11.2411, 60.5261], [11.241, 60.5258], [11.241, 60.5254], [11.2409, 60.5248], [11.2408, 60.5243], [11.2407, 60.524], [11.2407, 60.5235], [11.2406, 60.5227], [11.2406, 60.5223], [11.2406, 60.522], [11.2406, 60.5218], [11.2406, 60.5216], [11.2406, 60.5214], [11.2406, 60.5214], [11.2404, 60.5213], [11.2403, 60.5213], [11.2402, 60.5213], [11.2393, 60.5214], [11.2391, 60.5214], [11.239, 60.5213], [11.2389, 60.5213], [11.239, 60.5205], [11.239, 60.5203], [11.239, 60.5203], [11.2391, 60.5203], [11.2392, 60.5203], [11.2392, 60.5204], [11.2391, 60.521], [11.2391, 60.5212], [11.2392, 60.5212], [11.2392, 60.5213], [11.2395, 60.5213], [11.2399, 60.5212], [11.2399, 60.5212], [11.2398, 60.5212], [11.2398, 60.5211], [11.2399, 60.5211], [11.2399, 60.5211], [11.24, 60.521], [11.24, 60.5208], [11.24, 60.5208], [11.24, 60.5206], [11.24, 60.5206], [11.24, 60.5206], [11.24, 60.5202], [11.24, 60.5201], [11.2398, 60.5201], [11.2392, 60.5201], [11.2391, 60.5201], [11.239, 60.52], [11.2391, 60.52], [11.2391, 60.52], [11.2397, 60.52], [11.24, 60.52], [11.2401, 60.52], [11.24, 60.5198], [11.24, 60.5195], [11.2401, 60.5191], [11.2401, 60.5189], [11.2402, 60.5187], [11.2403, 60.5187], [11.2404, 60.5186], [11.2404, 60.5185], [11.2405, 60.5184], [11.2405, 60.5183], [11.2406, 60.5183], [11.2405, 60.5182], [11.2405, 60.5182], [11.2406, 60.5182], [11.2407, 60.5182], [11.2407, 60.5182], [11.2407, 60.5182], [11.2407, 60.5181], [11.2407, 60.5181], [11.2408, 60.5181], [11.2409, 60.5179], [11.241, 60.5179], [11.2411, 60.5178], [11.2412, 60.5176], [11.2413, 60.5174], [11.2414, 60.5173], [11.2414, 60.5172], [11.2413, 60.5171], [11.2413, 60.5171], [11.2414, 60.5169], [11.2413, 60.5169], [11.2414, 60.5169], [11.2304, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "175", "sub_div_center": [0.0188, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5369], [11.2304, 60.5569], [11.249, 60.5569], [11.249, 60.5568], [11.249, 60.5567], [11.249, 60.5565], [11.249, 60.5564], [11.2492, 60.5564], [11.2492, 60.5563], [11.2491, 60.5561], [11.2491, 60.5559], [11.249, 60.5558], [11.2489, 60.5556], [11.2487, 60.5555], [11.2486, 60.5553], [11.2484, 60.5551], [11.2483, 60.5549], [11.2481, 60.5547], [11.248, 60.5545], [11.2478, 60.5543], [11.2477, 60.554], [11.2476, 60.5538], [11.2475, 60.5537], [11.2474, 60.5536], [11.2474, 60.5535], [11.2472, 60.5534], [11.2472, 60.5534], [11.2471, 60.5533], [11.2471, 60.5533], [11.2471, 60.5532], [11.247, 60.5531], [11.2469, 60.5531], [11.2468, 60.5529], [11.2467, 60.5528], [11.2467, 60.5528], [11.2467, 60.5528], [11.2466, 60.5528], [11.2466, 60.5527], [11.2466, 60.5526], [11.2467, 60.5525], [11.2468, 60.5525], [11.2468, 60.5524], [11.2468, 60.5524], [11.2469, 60.5523], [11.2469, 60.5523], [11.2468, 60.5523], [11.2467, 60.5523], [11.2467, 60.5522], [11.2467, 60.5522], [11.2466, 60.5522], [11.2467, 60.5521], [11.2468, 60.552], [11.2468, 60.552], [11.2468, 60.5519], [11.2467, 60.5518], [11.2466, 60.5518], [11.2466, 60.5517], [11.2465, 60.5515], [11.2464, 60.5515], [11.2462, 60.5514], [11.2461, 60.5513], [11.2459, 60.5513], [11.2459, 60.5512], [11.2459, 60.5512], [11.2459, 60.5511], [11.2459, 60.5511], [11.2459, 60.551], [11.2458, 60.5509], [11.2457, 60.5508], [11.2457, 60.5507], [11.2457, 60.5505], [11.2457, 60.5504], [11.2458, 60.5503], [11.2458, 60.5502], [11.2458, 60.5501], [11.2457, 60.55], [11.2458, 60.5499], [11.2459, 60.5498], [11.2459, 60.5497], [11.2459, 60.5496], [11.2459, 60.5495], [11.2459, 60.5494], [11.2459, 60.5492], [11.2459, 60.5491], [11.2458, 60.5489], [11.2458, 60.5487], [11.2458, 60.5486], [11.2458, 60.5484], [11.2459, 60.5483], [11.2459, 60.5481], [11.2459, 60.548], [11.2459, 60.5479], [11.2459, 60.5477], [11.2458, 60.5473], [11.2458, 60.5469], [11.2458, 60.5467], [11.2458, 60.5465], [11.2458, 60.5462], [11.2458, 60.5458], [11.2457, 60.5454], [11.2457, 60.545], [11.2456, 60.5446], [11.2455, 60.5442], [11.2454, 60.5439], [11.2453, 60.5435], [11.2452, 60.5432], [11.2451, 60.5429], [11.245, 60.5426], [11.2449, 60.5425], [11.2448, 60.5424], [11.2448, 60.5424], [11.2448, 60.5424], [11.2448, 60.5423], [11.2448, 60.5422], [11.2448, 60.5421], [11.2447, 60.5419], [11.2444, 60.5413], [11.2443, 60.5411], [11.2441, 60.5407], [11.244, 60.5407], [11.244, 60.5407], [11.244, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5406], [11.244, 60.5406], [11.244, 60.5406], [11.244, 60.5406], [11.2439, 60.5404], [11.2438, 60.5402], [11.2437, 60.54], [11.2436, 60.5398], [11.2435, 60.5397], [11.2435, 60.5395], [11.2433, 60.5393], [11.2432, 60.5391], [11.2432, 60.539], [11.2431, 60.5388], [11.243, 60.5387], [11.243, 60.5385], [11.2429, 60.5384], [11.2427, 60.538], [11.2426, 60.5378], [11.2425, 60.5375], [11.2424, 60.5372], [11.2423, 60.537], [11.2423, 60.5369], [11.2423, 60.5369], [11.2304, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "176", "sub_div_center": [0.0361, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5569], [11.2304, 60.5769], [11.2665, 60.5769], [11.2665, 60.5769], [11.2664, 60.5767], [11.2663, 60.5767], [11.2662, 60.5767], [11.2662, 60.5767], [11.2662, 60.5766], [11.2661, 60.5766], [11.2661, 60.5765], [11.2662, 60.5765], [11.266, 60.5764], [11.2658, 60.5761], [11.2655, 60.5759], [11.2653, 60.5758], [11.2653, 60.5757], [11.2652, 60.5756], [11.2652, 60.5755], [11.2651, 60.5755], [11.265, 60.5754], [11.2648, 60.5753], [11.2647, 60.5752], [11.2646, 60.5751], [11.2646, 60.5751], [11.2645, 60.5751], [11.2644, 60.5751], [11.2644, 60.5751], [11.2643, 60.575], [11.2643, 60.575], [11.2643, 60.5749], [11.2642, 60.5749], [11.2642, 60.5748], [11.2641, 60.5747], [11.264, 60.5746], [11.2639, 60.5745], [11.2637, 60.5744], [11.2637, 60.5744], [11.2636, 60.5743], [11.2636, 60.5743], [11.2635, 60.5742], [11.2634, 60.5741], [11.2633, 60.574], [11.2633, 60.574], [11.2633, 60.5739], [11.2633, 60.5739], [11.2632, 60.5738], [11.2631, 60.5738], [11.2631, 60.5737], [11.2631, 60.5736], [11.2631, 60.5736], [11.263, 60.5736], [11.263, 60.5736], [11.2631, 60.5735], [11.263, 60.5735], [11.2629, 60.5733], [11.2627, 60.5731], [11.2625, 60.573], [11.2624, 60.5729], [11.2624, 60.5729], [11.2623, 60.5728], [11.2621, 60.5726], [11.262, 60.5725], [11.2619, 60.5724], [11.2619, 60.5723], [11.2618, 60.5722], [11.2616, 60.5721], [11.2615, 60.572], [11.2613, 60.5719], [11.2612, 60.5717], [11.2611, 60.5717], [11.2611, 60.5716], [11.2609, 60.5716], [11.2609, 60.5715], [11.2608, 60.5714], [11.2607, 60.5714], [11.2606, 60.5713], [11.2605, 60.5713], [11.2604, 60.5712], [11.2603, 60.5711], [11.2603, 60.571], [11.2602, 60.571], [11.2601, 60.5709], [11.2601, 60.5709], [11.2599, 60.5709], [11.2598, 60.5708], [11.2596, 60.5706], [11.2596, 60.5704], [11.2595, 60.5704], [11.2594, 60.5704], [11.2594, 60.5703], [11.2593, 60.5704], [11.2593, 60.5704], [11.2593, 60.5703], [11.2593, 60.5703], [11.2593, 60.5702], [11.2591, 60.5701], [11.259, 60.57], [11.2589, 60.5699], [11.2588, 60.5698], [11.2587, 60.5697], [11.2587, 60.5697], [11.2586, 60.5697], [11.2585, 60.5695], [11.2583, 60.5694], [11.2581, 60.5693], [11.2581, 60.5692], [11.258, 60.5691], [11.2579, 60.5691], [11.2578, 60.569], [11.2577, 60.5689], [11.2577, 60.5688], [11.2577, 60.5688], [11.2577, 60.5688], [11.2578, 60.5688], [11.2577, 60.5688], [11.2576, 60.5688], [11.2576, 60.5687], [11.2576, 60.5687], [11.2575, 60.5687], [11.2574, 60.5687], [11.2575, 60.5687], [11.2575, 60.5686], [11.2574, 60.5686], [11.2574, 60.5686], [11.2573, 60.5685], [11.2573, 60.5685], [11.2572, 60.5685], [11.2572, 60.5685], [11.2571, 60.5684], [11.2571, 60.5684], [11.257, 60.5684], [11.2569, 60.5683], [11.2569, 60.5682], [11.2569, 60.5682], [11.2569, 60.5681], [11.2568, 60.5681], [11.2568, 60.5681], [11.2568, 60.568], [11.2567, 60.568], [11.2566, 60.5679], [11.2567, 60.5679], [11.2566, 60.5678], [11.2565, 60.5677], [11.2565, 60.5676], [11.2565, 60.5676], [11.2564, 60.5676], [11.2564, 60.5676], [11.2564, 60.5676], [11.2563, 60.5675], [11.2563, 60.5675], [11.2562, 60.5674], [11.2562, 60.5673], [11.2562, 60.5673], [11.2561, 60.5673], [11.2561, 60.5672], [11.2559, 60.5671], [11.2558, 60.567], [11.2557, 60.5669], [11.2556, 60.5668], [11.2555, 60.5668], [11.2554, 60.5666], [11.2553, 60.5665], [11.2552, 60.5664], [11.255, 60.5663], [11.2549, 60.5661], [11.2549, 60.5661], [11.2548, 60.5661], [11.2548, 60.566], [11.2547, 60.5659], [11.2546, 60.5659], [11.2546, 60.5658], [11.2545, 60.5658], [11.2545, 60.5657], [11.2544, 60.5656], [11.2542, 60.5656], [11.2541, 60.5656], [11.2541, 60.5655], [11.254, 60.5654], [11.2541, 60.5654], [11.254, 60.5654], [11.254, 60.5654], [11.2539, 60.5653], [11.254, 60.5653], [11.2539, 60.5653], [11.2539, 60.5653], [11.2536, 60.5651], [11.2535, 60.5651], [11.2535, 60.565], [11.2534, 60.565], [11.2533, 60.5649], [11.2532, 60.5648], [11.2532, 60.5648], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.253, 60.5646], [11.253, 60.5646], [11.2529, 60.5646], [11.2528, 60.5646], [11.2529, 60.5646], [11.2529, 60.5645], [11.2528, 60.5646], [11.2528, 60.5645], [11.2528, 60.5645], [11.2527, 60.5645], [11.2527, 60.5644], [11.2527, 60.5644], [11.2527, 60.5643], [11.2527, 60.5643], [11.2526, 60.5643], [11.2526, 60.5642], [11.2526, 60.5641], [11.2526, 60.5641], [11.2525, 60.5641], [11.2525, 60.564], [11.2525, 60.5639], [11.2525, 60.5639], [11.2522, 60.5635], [11.2521, 60.5633], [11.2521, 60.5632], [11.252, 60.563], [11.2518, 60.5628], [11.2518, 60.5628], [11.2516, 60.5626], [11.2515, 60.5625], [11.2514, 60.5624], [11.2514, 60.5624], [11.2513, 60.5624], [11.2513, 60.5623], [11.2512, 60.5621], [11.2511, 60.562], [11.251, 60.5619], [11.251, 60.5619], [11.251, 60.5619], [11.251, 60.5618], [11.2509, 60.5618], [11.2508, 60.5618], [11.2508, 60.5618], [11.2506, 60.5618], [11.2506, 60.5619], [11.2507, 60.562], [11.2508, 60.562], [11.2508, 60.5621], [11.2508, 60.5621], [11.2508, 60.5621], [11.2508, 60.5621], [11.2507, 60.5621], [11.2507, 60.5621], [11.2506, 60.562], [11.2506, 60.5619], [11.2505, 60.5618], [11.2506, 60.5618], [11.2506, 60.5618], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5616], [11.2507, 60.5615], [11.2506, 60.5615], [11.2506, 60.5614], [11.2506, 60.5613], [11.2507, 60.5613], [11.2507, 60.5612], [11.2507, 60.5612], [11.2507, 60.5611], [11.2507, 60.5611], [11.2506, 60.561], [11.2507, 60.5609], [11.2507, 60.5609], [11.2506, 60.5608], [11.2506, 60.5607], [11.2506, 60.5607], [11.2506, 60.5606], [11.2506, 60.5606], [11.2506, 60.5606], [11.2505, 60.5605], [11.2505, 60.5604], [11.2504, 60.5604], [11.2503, 60.5602], [11.2503, 60.5602], [11.2503, 60.5602], [11.2503, 60.5601], [11.2502, 60.5601], [11.2502, 60.5601], [11.2501, 60.5601], [11.25, 60.56], [11.2499, 60.56], [11.2498, 60.5599], [11.2498, 60.5598], [11.2499, 60.5598], [11.2498, 60.5597], [11.2498, 60.5597], [11.2499, 60.5597], [11.2498, 60.5597], [11.2497, 60.5597], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5595], [11.2496, 60.5595], [11.2496, 60.5594], [11.2497, 60.5594], [11.2496, 60.5594], [11.2496, 60.5594], [11.2495, 60.5594], [11.2496, 60.5593], [11.2495, 60.5593], [11.2495, 60.5593], [11.2495, 60.5592], [11.2495, 60.5592], [11.2495, 60.5592], [11.2495, 60.5591], [11.2495, 60.5591], [11.2494, 60.559], [11.2495, 60.559], [11.2495, 60.559], [11.2494, 60.5589], [11.2495, 60.5589], [11.2494, 60.5589], [11.2494, 60.5588], [11.2494, 60.5588], [11.2493, 60.5588], [11.2493, 60.5587], [11.2492, 60.5587], [11.2493, 60.5586], [11.2492, 60.5586], [11.2492, 60.5585], [11.2492, 60.5584], [11.2492, 60.5584], [11.2492, 60.5583], [11.2491, 60.5583], [11.2491, 60.5581], [11.2491, 60.5581], [11.249, 60.5579], [11.249, 60.5579], [11.249, 60.5578], [11.2489, 60.5578], [11.249, 60.5577], [11.2489, 60.5576], [11.2489, 60.5575], [11.2488, 60.5575], [11.2489, 60.5574], [11.249, 60.5573], [11.249, 60.5572], [11.2489, 60.5572], [11.249, 60.5571], [11.249, 60.557], [11.249, 60.5569], [11.249, 60.5569], [11.249, 60.5569], [11.2304, 60.5569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "177", "sub_div_center": [0.04, 0.0169]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5769], [11.2304, 60.5903], [11.2309, 60.5903], [11.2314, 60.5903], [11.2316, 60.5902], [11.2319, 60.59], [11.2322, 60.5899], [11.2323, 60.5898], [11.2323, 60.5898], [11.2323, 60.5897], [11.2327, 60.5896], [11.2328, 60.5896], [11.233, 60.5897], [11.2334, 60.5895], [11.2337, 60.5893], [11.2339, 60.5893], [11.234, 60.5894], [11.234, 60.5895], [11.234, 60.5896], [11.2338, 60.5897], [11.2337, 60.5897], [11.2338, 60.5899], [11.2339, 60.59], [11.2341, 60.59], [11.2343, 60.5901], [11.2345, 60.5901], [11.2348, 60.59], [11.2349, 60.5901], [11.235, 60.59], [11.2351, 60.59], [11.2352, 60.5901], [11.2352, 60.5902], [11.236, 60.5902], [11.2361, 60.5904], [11.2362, 60.5905], [11.2363, 60.5907], [11.2364, 60.5908], [11.2364, 60.5909], [11.2366, 60.5909], [11.2366, 60.591], [11.2366, 60.5911], [11.2366, 60.5911], [11.2368, 60.5911], [11.2369, 60.5912], [11.237, 60.5912], [11.2373, 60.5912], [11.2375, 60.5912], [11.2375, 60.5912], [11.2375, 60.5913], [11.2377, 60.5913], [11.2378, 60.5913], [11.2379, 60.5913], [11.2379, 60.5913], [11.2379, 60.5914], [11.2379, 60.5914], [11.2381, 60.5914], [11.2382, 60.5914], [11.2382, 60.5914], [11.2383, 60.5914], [11.2386, 60.5914], [11.2388, 60.5914], [11.2389, 60.5914], [11.239, 60.5913], [11.239, 60.5913], [11.2391, 60.5911], [11.2392, 60.591], [11.2393, 60.591], [11.2394, 60.591], [11.2394, 60.5909], [11.2395, 60.5908], [11.2397, 60.5908], [11.2397, 60.5907], [11.2397, 60.5906], [11.24, 60.5905], [11.2399, 60.5905], [11.2398, 60.5905], [11.24, 60.5904], [11.2401, 60.5904], [11.2402, 60.5904], [11.2404, 60.5905], [11.2405, 60.5906], [11.2407, 60.5907], [11.2408, 60.5908], [11.241, 60.5909], [11.2411, 60.5909], [11.2412, 60.5908], [11.2415, 60.5909], [11.2416, 60.591], [11.2416, 60.5911], [11.2417, 60.5912], [11.242, 60.5912], [11.2421, 60.5912], [11.2422, 60.5913], [11.2424, 60.5914], [11.2425, 60.5915], [11.2426, 60.5917], [11.2429, 60.5918], [11.2431, 60.5919], [11.2432, 60.592], [11.2434, 60.592], [11.2436, 60.5922], [11.2438, 60.5923], [11.244, 60.5924], [11.2442, 60.5924], [11.2444, 60.5925], [11.2446, 60.5926], [11.2447, 60.5926], [11.2448, 60.5927], [11.2449, 60.5928], [11.245, 60.5929], [11.2452, 60.593], [11.2452, 60.5931], [11.2455, 60.5932], [11.2458, 60.5933], [11.2461, 60.5934], [11.2464, 60.5935], [11.2468, 60.5935], [11.2471, 60.5937], [11.2473, 60.5937], [11.2475, 60.5937], [11.2477, 60.5937], [11.2479, 60.5937], [11.2479, 60.5937], [11.2481, 60.5938], [11.2483, 60.5938], [11.2485, 60.5937], [11.2485, 60.5937], [11.2485, 60.5936], [11.2486, 60.5935], [11.2486, 60.5935], [11.2487, 60.5934], [11.2487, 60.5932], [11.2487, 60.5931], [11.2486, 60.5931], [11.2486, 60.593], [11.2485, 60.5929], [11.2485, 60.5928], [11.2485, 60.5927], [11.2485, 60.5925], [11.2485, 60.5924], [11.2486, 60.5923], [11.2486, 60.5923], [11.2487, 60.5923], [11.2488, 60.5921], [11.2489, 60.592], [11.2491, 60.592], [11.2493, 60.592], [11.2495, 60.5919], [11.2497, 60.5918], [11.2497, 60.5917], [11.2498, 60.5916], [11.2498, 60.5915], [11.2499, 60.5913], [11.2499, 60.5913], [11.2499, 60.5912], [11.2499, 60.5911], [11.25, 60.5908], [11.2498, 60.5907], [11.2497, 60.5906], [11.2495, 60.5906], [11.2493, 60.5906], [11.2491, 60.5906], [11.249, 60.5906], [11.2488, 60.5904], [11.2487, 60.5903], [11.2487, 60.5902], [11.2487, 60.5901], [11.2487, 60.59], [11.2487, 60.5899], [11.2489, 60.5898], [11.2489, 60.5898], [11.249, 60.5896], [11.2492, 60.5895], [11.2492, 60.5893], [11.2494, 60.5893], [11.2496, 60.5891], [11.2496, 60.589], [11.2495, 60.5889], [11.2496, 60.5889], [11.2498, 60.5888], [11.2499, 60.5887], [11.2499, 60.5886], [11.2498, 60.5886], [11.2499, 60.5885], [11.25, 60.5884], [11.25, 60.5884], [11.2502, 60.5884], [11.2503, 60.5884], [11.2504, 60.5883], [11.2505, 60.5882], [11.2506, 60.5881], [11.2507, 60.588], [11.2507, 60.5879], [11.2505, 60.5879], [11.2504, 60.5879], [11.2504, 60.5878], [11.2503, 60.5878], [11.2504, 60.5877], [11.2504, 60.5877], [11.2504, 60.5877], [11.2505, 60.5876], [11.2506, 60.5875], [11.2506, 60.5875], [11.2507, 60.5875], [11.2508, 60.5875], [11.2508, 60.5875], [11.2509, 60.5874], [11.251, 60.5874], [11.251, 60.5874], [11.251, 60.5874], [11.2511, 60.5873], [11.2512, 60.5873], [11.2512, 60.5873], [11.2513, 60.5872], [11.2513, 60.5873], [11.2512, 60.5873], [11.2513, 60.5873], [11.2514, 60.5873], [11.2515, 60.5873], [11.2516, 60.5873], [11.2516, 60.5873], [11.2518, 60.5873], [11.2518, 60.5873], [11.2519, 60.5873], [11.2519, 60.5872], [11.252, 60.5872], [11.2521, 60.5873], [11.2523, 60.5873], [11.2523, 60.5872], [11.2524, 60.5871], [11.2525, 60.5871], [11.2526, 60.5871], [11.2527, 60.587], [11.2527, 60.587], [11.2528, 60.587], [11.2528, 60.5871], [11.2528, 60.5871], [11.2527, 60.5871], [11.2527, 60.5871], [11.2527, 60.5872], [11.2527, 60.5872], [11.2526, 60.5873], [11.2526, 60.5873], [11.2526, 60.5873], [11.2525, 60.5874], [11.2524, 60.5874], [11.2524, 60.5874], [11.2524, 60.5873], [11.2523, 60.5873], [11.2522, 60.5874], [11.2522, 60.5874], [11.2522, 60.5875], [11.2522, 60.5876], [11.2523, 60.5877], [11.2522, 60.5878], [11.2522, 60.5878], [11.2522, 60.5879], [11.2522, 60.588], [11.2524, 60.5881], [11.2526, 60.5881], [11.2526, 60.5882], [11.2528, 60.5882], [11.2529, 60.5881], [11.253, 60.588], [11.2531, 60.5881], [11.2532, 60.588], [11.2533, 60.588], [11.2535, 60.5879], [11.2535, 60.5879], [11.2535, 60.5878], [11.2535, 60.5878], [11.2536, 60.5878], [11.2536, 60.5879], [11.2537, 60.5879], [11.2537, 60.5878], [11.2537, 60.5878], [11.2537, 60.5877], [11.2537, 60.5876], [11.2538, 60.5876], [11.2538, 60.5875], [11.2538, 60.5875], [11.2539, 60.5875], [11.254, 60.5875], [11.254, 60.5875], [11.2541, 60.5875], [11.2541, 60.5876], [11.2541, 60.5877], [11.2542, 60.5878], [11.2542, 60.5879], [11.2543, 60.5879], [11.2544, 60.588], [11.2545, 60.5882], [11.2545, 60.5883], [11.2545, 60.5883], [11.2546, 60.5884], [11.2548, 60.5883], [11.2551, 60.5884], [11.2554, 60.5883], [11.2555, 60.5882], [11.2558, 60.5882], [11.256, 60.5882], [11.2561, 60.5882], [11.2562, 60.5882], [11.2566, 60.5881], [11.257, 60.5881], [11.2576, 60.588], [11.2579, 60.5879], [11.2581, 60.5878], [11.2582, 60.5876], [11.2583, 60.5875], [11.2583, 60.5873], [11.2583, 60.5872], [11.2586, 60.5871], [11.2589, 60.5871], [11.2591, 60.5871], [11.2594, 60.587], [11.2597, 60.587], [11.2599, 60.5869], [11.2602, 60.5868], [11.2606, 60.5866], [11.2609, 60.5866], [11.261, 60.5867], [11.2612, 60.5867], [11.2614, 60.5866], [11.2617, 60.5867], [11.2619, 60.5868], [11.2621, 60.5869], [11.2622, 60.5869], [11.2625, 60.5869], [11.2626, 60.587], [11.2627, 60.587], [11.2628, 60.5871], [11.263, 60.5872], [11.2632, 60.5873], [11.2637, 60.5873], [11.264, 60.5873], [11.2645, 60.5873], [11.2647, 60.5874], [11.265, 60.5875], [11.2651, 60.5876], [11.2651, 60.5877], [11.2653, 60.5878], [11.2654, 60.5877], [11.2656, 60.5878], [11.2656, 60.5878], [11.2659, 60.588], [11.2661, 60.5881], [11.2663, 60.5882], [11.2666, 60.5882], [11.2667, 60.5883], [11.2667, 60.5885], [11.2668, 60.5886], [11.2668, 60.5887], [11.2672, 60.5889], [11.2673, 60.5891], [11.2674, 60.5893], [11.2674, 60.5894], [11.2675, 60.5895], [11.2674, 60.5896], [11.2674, 60.5897], [11.2673, 60.5898], [11.2675, 60.59], [11.2677, 60.5901], [11.2678, 60.5903], [11.268, 60.5905], [11.2679, 60.5906], [11.2678, 60.5909], [11.2678, 60.591], [11.2678, 60.5911], [11.2678, 60.5912], [11.2677, 60.5913], [11.2676, 60.5915], [11.2676, 60.5915], [11.268, 60.5916], [11.2682, 60.5916], [11.268, 60.5917], [11.2678, 60.5919], [11.2676, 60.5921], [11.2674, 60.5922], [11.2675, 60.5923], [11.2676, 60.5924], [11.268, 60.5926], [11.2682, 60.5928], [11.2683, 60.5929], [11.2683, 60.5932], [11.2682, 60.5933], [11.2684, 60.5934], [11.2686, 60.5934], [11.2689, 60.5934], [11.269, 60.5934], [11.2692, 60.5934], [11.2692, 60.5933], [11.2693, 60.5932], [11.2694, 60.5931], [11.2695, 60.5931], [11.2697, 60.5931], [11.2698, 60.5932], [11.27, 60.5933], [11.2704, 60.5933], [11.2704, 60.5933], [11.2704, 60.5824], [11.2704, 60.5824], [11.2704, 60.5824], [11.2703, 60.5822], [11.2702, 60.5822], [11.27, 60.582], [11.2699, 60.5818], [11.2698, 60.5816], [11.2699, 60.5814], [11.27, 60.5813], [11.27, 60.5812], [11.2701, 60.5811], [11.2701, 60.581], [11.2701, 60.5809], [11.27, 60.5808], [11.2699, 60.5806], [11.2698, 60.5804], [11.2697, 60.5803], [11.2696, 60.5801], [11.2693, 60.5798], [11.2691, 60.5797], [11.2691, 60.5797], [11.2691, 60.5797], [11.2691, 60.5796], [11.2691, 60.5796], [11.2691, 60.5796], [11.269, 60.5795], [11.269, 60.5795], [11.2689, 60.5795], [11.2689, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5794], [11.2688, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2688, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5793], [11.2687, 60.5793], [11.2686, 60.5793], [11.2686, 60.5793], [11.2687, 60.5793], [11.2686, 60.5793], [11.2686, 60.5793], [11.2686, 60.5792], [11.2685, 60.5792], [11.2684, 60.5791], [11.2683, 60.5791], [11.2682, 60.5789], [11.2681, 60.5788], [11.2681, 60.5788], [11.2679, 60.5786], [11.2677, 60.5785], [11.2677, 60.5784], [11.2676, 60.5783], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2675, 60.5782], [11.2675, 60.5782], [11.2675, 60.5781], [11.2674, 60.5781], [11.2674, 60.5781], [11.2675, 60.5781], [11.2674, 60.578], [11.2674, 60.578], [11.2674, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5778], [11.2673, 60.5778], [11.2672, 60.5778], [11.2673, 60.5778], [11.2673, 60.5778], [11.2673, 60.5778], [11.2672, 60.5778], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2671, 60.5776], [11.2671, 60.5775], [11.267, 60.5774], [11.2669, 60.5773], [11.2666, 60.577], [11.2665, 60.5769], [11.2304, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "178", "sub_div_center": [0.0165, 0.02]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2559, 60.6169], [11.2559, 60.6168], [11.256, 60.6168], [11.2561, 60.6167], [11.2563, 60.6167], [11.2564, 60.6167], [11.2566, 60.6167], [11.2566, 60.6166], [11.2566, 60.6165], [11.2567, 60.6165], [11.2567, 60.6164], [11.2568, 60.6164], [11.2568, 60.6163], [11.2569, 60.6162], [11.257, 60.6161], [11.2571, 60.616], [11.2574, 60.6159], [11.2576, 60.6158], [11.2577, 60.6156], [11.2578, 60.6156], [11.258, 60.6154], [11.2581, 60.6153], [11.2582, 60.6152], [11.2582, 60.615], [11.2583, 60.6149], [11.2583, 60.6147], [11.2583, 60.6146], [11.2584, 60.6146], [11.2584, 60.6145], [11.2585, 60.6144], [11.2585, 60.6143], [11.2585, 60.6143], [11.2587, 60.6142], [11.2587, 60.6142], [11.2588, 60.6141], [11.259, 60.6139], [11.259, 60.6138], [11.2591, 60.6137], [11.2593, 60.6136], [11.2594, 60.6135], [11.2597, 60.6134], [11.2598, 60.6134], [11.2599, 60.6134], [11.2599, 60.6134], [11.2603, 60.6134], [11.2603, 60.6134], [11.2603, 60.6134], [11.2604, 60.6134], [11.2604, 60.6134], [11.2606, 60.6134], [11.2608, 60.6134], [11.261, 60.6133], [11.2611, 60.6133], [11.2612, 60.6133], [11.2613, 60.6132], [11.2613, 60.6132], [11.2615, 60.6131], [11.2616, 60.6131], [11.2617, 60.6132], [11.2618, 60.6132], [11.2618, 60.6131], [11.2619, 60.6131], [11.262, 60.613], [11.2622, 60.6129], [11.2623, 60.6128], [11.2624, 60.6128], [11.2624, 60.6128], [11.2625, 60.6128], [11.2624, 60.6129], [11.2624, 60.6129], [11.2623, 60.613], [11.2623, 60.613], [11.2622, 60.6131], [11.2621, 60.6131], [11.262, 60.6132], [11.2619, 60.6132], [11.2619, 60.6132], [11.262, 60.6133], [11.262, 60.6133], [11.2621, 60.6134], [11.2622, 60.6134], [11.2623, 60.6135], [11.2623, 60.6135], [11.2624, 60.6136], [11.2624, 60.6136], [11.2625, 60.6136], [11.2626, 60.6137], [11.2626, 60.6137], [11.2627, 60.6137], [11.2628, 60.6137], [11.2629, 60.6138], [11.2629, 60.6138], [11.2629, 60.6138], [11.263, 60.6139], [11.263, 60.6139], [11.263, 60.614], [11.2631, 60.614], [11.2631, 60.614], [11.2632, 60.614], [11.2633, 60.614], [11.2634, 60.614], [11.2636, 60.614], [11.2638, 60.6139], [11.264, 60.6137], [11.264, 60.6136], [11.264, 60.6136], [11.2639, 60.6135], [11.2637, 60.6135], [11.2635, 60.6134], [11.2634, 60.6133], [11.2633, 60.6132], [11.2632, 60.6131], [11.2631, 60.613], [11.2631, 60.6128], [11.2629, 60.6127], [11.2628, 60.6127], [11.2629, 60.6127], [11.2629, 60.6126], [11.263, 60.6127], [11.2631, 60.6127], [11.2631, 60.6128], [11.2632, 60.6128], [11.2633, 60.6129], [11.2633, 60.613], [11.2634, 60.613], [11.2634, 60.6131], [11.2634, 60.6131], [11.2634, 60.6132], [11.2635, 60.6132], [11.2636, 60.6133], [11.2637, 60.6134], [11.2639, 60.6134], [11.264, 60.6135], [11.2642, 60.6135], [11.2642, 60.6135], [11.2643, 60.6134], [11.2643, 60.6132], [11.2644, 60.6132], [11.2646, 60.6131], [11.2647, 60.613], [11.265, 60.6129], [11.2649, 60.6128], [11.2649, 60.6128], [11.2649, 60.6128], [11.265, 60.6128], [11.2652, 60.6127], [11.2652, 60.6127], [11.2653, 60.6126], [11.2653, 60.6126], [11.2653, 60.6125], [11.2654, 60.6124], [11.2655, 60.6124], [11.2657, 60.6124], [11.266, 60.6124], [11.266, 60.6124], [11.2661, 60.6124], [11.2663, 60.6124], [11.2663, 60.6123], [11.2664, 60.6123], [11.2666, 60.6123], [11.2667, 60.6124], [11.2668, 60.6124], [11.2669, 60.6123], [11.2669, 60.6123], [11.2671, 60.6122], [11.2672, 60.6122], [11.2673, 60.6122], [11.2673, 60.6123], [11.2672, 60.6124], [11.2671, 60.6124], [11.2671, 60.6124], [11.2671, 60.6125], [11.2672, 60.6125], [11.2673, 60.6125], [11.2673, 60.6125], [11.2674, 60.6125], [11.2674, 60.6124], [11.2674, 60.6124], [11.2675, 60.6124], [11.2675, 60.6124], [11.2677, 60.6124], [11.2679, 60.6123], [11.2681, 60.6123], [11.2682, 60.6122], [11.2683, 60.6122], [11.2684, 60.6122], [11.2683, 60.6121], [11.2682, 60.6121], [11.2682, 60.6121], [11.2683, 60.6121], [11.2683, 60.6121], [11.2684, 60.6121], [11.2686, 60.6121], [11.2688, 60.612], [11.2689, 60.612], [11.269, 60.6119], [11.2692, 60.6119], [11.2692, 60.6118], [11.2694, 60.6118], [11.2695, 60.6116], [11.2695, 60.6115], [11.2694, 60.6114], [11.2696, 60.6114], [11.2696, 60.6114], [11.2697, 60.6113], [11.2698, 60.6112], [11.27, 60.6111], [11.2701, 60.611], [11.2702, 60.6109], [11.2704, 60.6108], [11.2704, 60.6108], [11.2704, 60.5969], [11.2684, 60.5969], [11.2683, 60.597], [11.2681, 60.5972], [11.2681, 60.5973], [11.2678, 60.5973], [11.2676, 60.5973], [11.2674, 60.5973], [11.2671, 60.5974], [11.2668, 60.5974], [11.2667, 60.5976], [11.2667, 60.5977], [11.2668, 60.5978], [11.2669, 60.5979], [11.267, 60.5981], [11.267, 60.5982], [11.2671, 60.5983], [11.2672, 60.5983], [11.2673, 60.5984], [11.2674, 60.5986], [11.2676, 60.5987], [11.2678, 60.5988], [11.2679, 60.5989], [11.2679, 60.5991], [11.2679, 60.5992], [11.2678, 60.5993], [11.2678, 60.5994], [11.2677, 60.5995], [11.2674, 60.5997], [11.2674, 60.5998], [11.2672, 60.5998], [11.2671, 60.5999], [11.2669, 60.6], [11.2669, 60.6001], [11.2668, 60.6002], [11.2668, 60.6003], [11.2666, 60.6004], [11.2665, 60.6004], [11.2663, 60.6005], [11.2663, 60.6005], [11.2662, 60.6006], [11.2661, 60.6007], [11.266, 60.6007], [11.2659, 60.6008], [11.2658, 60.6009], [11.2655, 60.6009], [11.2654, 60.6011], [11.2651, 60.6012], [11.2649, 60.6014], [11.2647, 60.6015], [11.2646, 60.6016], [11.2646, 60.6017], [11.2646, 60.6017], [11.2645, 60.6018], [11.2646, 60.6018], [11.2645, 60.6021], [11.2645, 60.6021], [11.2646, 60.6022], [11.2646, 60.6023], [11.2646, 60.6024], [11.2646, 60.6024], [11.2645, 60.6025], [11.2644, 60.6026], [11.2643, 60.6027], [11.2643, 60.6029], [11.2642, 60.603], [11.2641, 60.6031], [11.2641, 60.6032], [11.2643, 60.6033], [11.2643, 60.6034], [11.2642, 60.6035], [11.2641, 60.6038], [11.2641, 60.604], [11.2641, 60.6043], [11.264, 60.6045], [11.264, 60.6048], [11.264, 60.6049], [11.2639, 60.6051], [11.2638, 60.6052], [11.2637, 60.6054], [11.2636, 60.6056], [11.2636, 60.6057], [11.2637, 60.6058], [11.2638, 60.6059], [11.2639, 60.606], [11.2638, 60.6061], [11.2637, 60.6061], [11.2636, 60.6062], [11.2637, 60.6062], [11.2636, 60.6063], [11.2636, 60.6064], [11.2636, 60.6063], [11.2636, 60.6064], [11.2635, 60.6064], [11.2635, 60.6065], [11.2635, 60.6066], [11.2635, 60.6067], [11.2634, 60.607], [11.2632, 60.6071], [11.2631, 60.6073], [11.2629, 60.6075], [11.2627, 60.6076], [11.2625, 60.6078], [11.2624, 60.6079], [11.2622, 60.6081], [11.2621, 60.6083], [11.262, 60.6085], [11.2619, 60.6086], [11.2618, 60.6087], [11.2616, 60.6088], [11.2615, 60.609], [11.2613, 60.609], [11.2612, 60.6091], [11.2609, 60.6093], [11.2606, 60.6096], [11.2604, 60.6098], [11.2602, 60.6099], [11.2598, 60.6102], [11.2595, 60.6103], [11.2594, 60.6104], [11.2593, 60.6105], [11.2594, 60.6107], [11.2594, 60.6108], [11.2594, 60.6109], [11.2592, 60.611], [11.2591, 60.6112], [11.259, 60.6114], [11.2589, 60.6116], [11.2588, 60.6119], [11.2586, 60.6121], [11.2585, 60.6122], [11.2584, 60.6124], [11.2583, 60.6126], [11.2581, 60.6126], [11.258, 60.6128], [11.2579, 60.6129], [11.2577, 60.613], [11.2576, 60.6131], [11.2576, 60.6133], [11.2574, 60.6135], [11.2573, 60.6135], [11.2571, 60.6136], [11.2569, 60.6136], [11.2567, 60.6136], [11.2567, 60.6137], [11.2565, 60.6137], [11.2564, 60.6137], [11.2564, 60.6137], [11.2564, 60.6137], [11.2563, 60.6138], [11.2563, 60.6138], [11.2562, 60.6138], [11.2562, 60.6138], [11.2562, 60.6138], [11.2561, 60.6138], [11.256, 60.6139], [11.256, 60.6139], [11.256, 60.6139], [11.256, 60.614], [11.2559, 60.6139], [11.2558, 60.614], [11.2558, 60.614], [11.2559, 60.614], [11.2558, 60.614], [11.2559, 60.6141], [11.2559, 60.6141], [11.256, 60.6141], [11.2559, 60.6141], [11.2559, 60.6142], [11.2559, 60.6142], [11.256, 60.6142], [11.2561, 60.6142], [11.2561, 60.6143], [11.2561, 60.6144], [11.256, 60.6145], [11.2559, 60.6146], [11.2559, 60.6148], [11.2558, 60.6149], [11.2557, 60.6149], [11.2554, 60.6151], [11.2554, 60.6151], [11.2554, 60.6152], [11.2553, 60.6153], [11.255, 60.6155], [11.2549, 60.6155], [11.2549, 60.6157], [11.2546, 60.6159], [11.2544, 60.616], [11.2542, 60.6161], [11.254, 60.6163], [11.254, 60.6165], [11.2539, 60.6166], [11.2539, 60.6167], [11.254, 60.6167], [11.2542, 60.6167], [11.2543, 60.6168], [11.2546, 60.6168], [11.2546, 60.6169], [11.2559, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "179", "sub_div_center": [0.0014, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2546, 60.6169], [11.2547, 60.6169], [11.2548, 60.617], [11.255, 60.617], [11.2551, 60.617], [11.2551, 60.6169], [11.2552, 60.6169], [11.2553, 60.6169], [11.2555, 60.6169], [11.2556, 60.6169], [11.2557, 60.617], [11.2559, 60.6171], [11.2559, 60.6171], [11.256, 60.6171], [11.2559, 60.6169], [11.2559, 60.6169], [11.2546, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "180", "sub_div_center": [0.0026, 0.0027]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2704, 60.5969], [11.2704, 60.5942], [11.2703, 60.5943], [11.27, 60.5944], [11.27, 60.5945], [11.27, 60.5946], [11.2698, 60.5946], [11.2696, 60.5946], [11.2695, 60.5947], [11.2695, 60.5948], [11.2694, 60.5948], [11.2692, 60.5949], [11.269, 60.5949], [11.2689, 60.5949], [11.2687, 60.5949], [11.2684, 60.5949], [11.2684, 60.5949], [11.2681, 60.595], [11.2678, 60.5951], [11.2678, 60.5953], [11.2679, 60.5954], [11.268, 60.5954], [11.268, 60.5954], [11.268, 60.5955], [11.2679, 60.5955], [11.2679, 60.5955], [11.2678, 60.5955], [11.2678, 60.5956], [11.2679, 60.5957], [11.268, 60.5959], [11.2681, 60.596], [11.2683, 60.5961], [11.2684, 60.5961], [11.2685, 60.5962], [11.2684, 60.5963], [11.2684, 60.5965], [11.2684, 60.5968], [11.2684, 60.5969], [11.2704, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "181", "sub_div_center": [0.0186, 0.0144]}, "geometry": {"type": "Polygon", "coordinates": [[[11.289, 60.5968], [11.2889, 60.5967], [11.2889, 60.5966], [11.2888, 60.5966], [11.2887, 60.5966], [11.2887, 60.5965], [11.2886, 60.5965], [11.2886, 60.5965], [11.2885, 60.5964], [11.2885, 60.5964], [11.2884, 60.5964], [11.2884, 60.5964], [11.2884, 60.5964], [11.2883, 60.5964], [11.2882, 60.5963], [11.2882, 60.5963], [11.2881, 60.5963], [11.2881, 60.5962], [11.2881, 60.5962], [11.2881, 60.5961], [11.2881, 60.5961], [11.2882, 60.5961], [11.2882, 60.5961], [11.2882, 60.596], [11.2882, 60.596], [11.2882, 60.596], [11.2882, 60.5959], [11.2882, 60.5959], [11.2882, 60.5958], [11.2881, 60.5957], [11.2881, 60.5956], [11.2881, 60.5956], [11.288, 60.5955], [11.288, 60.5955], [11.2879, 60.5955], [11.2879, 60.5955], [11.2879, 60.5955], [11.2878, 60.5955], [11.2878, 60.5955], [11.2879, 60.5955], [11.2878, 60.5955], [11.2879, 60.5955], [11.2879, 60.5954], [11.2879, 60.5953], [11.2878, 60.5953], [11.2878, 60.5952], [11.2877, 60.5952], [11.2876, 60.5951], [11.2875, 60.5949], [11.2874, 60.5948], [11.2872, 60.5947], [11.2872, 60.5946], [11.2871, 60.5946], [11.2869, 60.5944], [11.2868, 60.5943], [11.2867, 60.5942], [11.2864, 60.5942], [11.2863, 60.594], [11.2861, 60.5939], [11.286, 60.5938], [11.2858, 60.5937], [11.2857, 60.5936], [11.2856, 60.5935], [11.2855, 60.5934], [11.2853, 60.5933], [11.2853, 60.5932], [11.2853, 60.5931], [11.2852, 60.5929], [11.2852, 60.5929], [11.2852, 60.5927], [11.2853, 60.5926], [11.2853, 60.5926], [11.2852, 60.5924], [11.2852, 60.5923], [11.2852, 60.5923], [11.2852, 60.5922], [11.2852, 60.5921], [11.2852, 60.592], [11.2852, 60.592], [11.2851, 60.592], [11.2851, 60.592], [11.2851, 60.592], [11.2847, 60.5921], [11.2846, 60.5921], [11.2845, 60.5921], [11.2844, 60.5921], [11.2848, 60.592], [11.2848, 60.5919], [11.2848, 60.5919], [11.2848, 60.5919], [11.2848, 60.5918], [11.2849, 60.5918], [11.2849, 60.5918], [11.2848, 60.5918], [11.2848, 60.5917], [11.2847, 60.5916], [11.2847, 60.5916], [11.2846, 60.5915], [11.2847, 60.5914], [11.2847, 60.5914], [11.2847, 60.5913], [11.2848, 60.5913], [11.2847, 60.5913], [11.2847, 60.5912], [11.2847, 60.5912], [11.2846, 60.5912], [11.2846, 60.5912], [11.2845, 60.5911], [11.2845, 60.5911], [11.2845, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2845, 60.5911], [11.2845, 60.591], [11.2845, 60.591], [11.2844, 60.5909], [11.2844, 60.5909], [11.2844, 60.5908], [11.2844, 60.5908], [11.2843, 60.5907], [11.2842, 60.5906], [11.2839, 60.5904], [11.2837, 60.5903], [11.2836, 60.5902], [11.2834, 60.5901], [11.2833, 60.59], [11.283, 60.5898], [11.2828, 60.5896], [11.2824, 60.5894], [11.2822, 60.5892], [11.2821, 60.5891], [11.282, 60.589], [11.2819, 60.5889], [11.2819, 60.5888], [11.2818, 60.5888], [11.2816, 60.5887], [11.2816, 60.5887], [11.2815, 60.5885], [11.2815, 60.5885], [11.2814, 60.5884], [11.2812, 60.5883], [11.2811, 60.5883], [11.281, 60.5882], [11.2808, 60.5881], [11.2807, 60.588], [11.2805, 60.5878], [11.2804, 60.5877], [11.2803, 60.5876], [11.2802, 60.5876], [11.2801, 60.5875], [11.2801, 60.5874], [11.28, 60.5873], [11.2796, 60.5872], [11.2795, 60.5872], [11.2794, 60.5871], [11.2794, 60.587], [11.2794, 60.587], [11.2794, 60.587], [11.2794, 60.587], [11.2793, 60.5869], [11.2793, 60.5869], [11.2792, 60.5868], [11.2789, 60.5866], [11.2786, 60.5865], [11.2785, 60.5864], [11.2783, 60.5864], [11.2781, 60.5862], [11.2779, 60.5862], [11.2777, 60.5861], [11.2776, 60.5861], [11.2775, 60.5861], [11.2775, 60.586], [11.2774, 60.586], [11.2774, 60.5859], [11.2774, 60.5858], [11.2773, 60.5857], [11.2772, 60.5856], [11.2771, 60.5855], [11.277, 60.5854], [11.2768, 60.5852], [11.2768, 60.5852], [11.2768, 60.5851], [11.2767, 60.5851], [11.2767, 60.5851], [11.2767, 60.585], [11.2766, 60.585], [11.2766, 60.585], [11.2765, 60.5849], [11.2765, 60.5849], [11.2764, 60.5848], [11.2763, 60.5848], [11.2762, 60.5847], [11.2761, 60.5846], [11.276, 60.5846], [11.276, 60.5845], [11.2759, 60.5845], [11.2759, 60.5845], [11.2758, 60.5844], [11.2757, 60.5843], [11.2756, 60.5842], [11.2755, 60.5842], [11.2753, 60.5841], [11.275, 60.5839], [11.2748, 60.5838], [11.2746, 60.5837], [11.2742, 60.5836], [11.2741, 60.5835], [11.2739, 60.5834], [11.2738, 60.5833], [11.2737, 60.5833], [11.2737, 60.5833], [11.2736, 60.5832], [11.2735, 60.5832], [11.2732, 60.5831], [11.273, 60.583], [11.2729, 60.583], [11.2729, 60.583], [11.2729, 60.583], [11.2729, 60.5829], [11.2728, 60.5829], [11.2727, 60.5829], [11.2726, 60.5828], [11.2725, 60.5828], [11.2725, 60.5828], [11.2724, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2722, 60.5828], [11.2721, 60.5828], [11.2719, 60.5827], [11.2718, 60.5827], [11.2718, 60.5827], [11.2717, 60.5827], [11.2716, 60.5827], [11.2715, 60.5827], [11.2714, 60.5827], [11.2713, 60.5827], [11.2713, 60.5828], [11.2712, 60.5827], [11.2713, 60.5827], [11.2712, 60.5827], [11.2712, 60.5827], [11.2711, 60.5827], [11.2711, 60.5827], [11.271, 60.5827], [11.271, 60.5828], [11.2709, 60.5827], [11.2708, 60.5827], [11.2708, 60.5827], [11.2707, 60.5827], [11.2707, 60.5827], [11.2708, 60.5826], [11.2708, 60.5826], [11.2706, 60.5826], [11.2706, 60.5826], [11.2704, 60.5824], [11.2704, 60.5933], [11.2707, 60.5934], [11.2709, 60.5936], [11.271, 60.5937], [11.271, 60.5939], [11.2708, 60.5939], [11.2706, 60.5941], [11.2705, 60.5941], [11.2704, 60.5942], [11.2704, 60.5969], [11.2891, 60.5969], [11.289, 60.5968]]]}}, {"type": "Feature", "properties": {"sub_div_id": "182", "sub_div_center": [0.0204, 0.0139]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2704, 60.5969], [11.2704, 60.6108], [11.2705, 60.6107], [11.2707, 60.6106], [11.2707, 60.6106], [11.2707, 60.6106], [11.2708, 60.6106], [11.271, 60.6105], [11.271, 60.6104], [11.271, 60.6104], [11.2711, 60.6104], [11.2712, 60.6103], [11.2714, 60.6102], [11.2716, 60.61], [11.2718, 60.6099], [11.2719, 60.6098], [11.2721, 60.6097], [11.2722, 60.6096], [11.2724, 60.6095], [11.2727, 60.6094], [11.2728, 60.6093], [11.2729, 60.6093], [11.2731, 60.6092], [11.2733, 60.6091], [11.2735, 60.6091], [11.2737, 60.609], [11.2739, 60.609], [11.2739, 60.6089], [11.2742, 60.6089], [11.2743, 60.6088], [11.2747, 60.6086], [11.2747, 60.6086], [11.2749, 60.6085], [11.2749, 60.6084], [11.2751, 60.6084], [11.2751, 60.6083], [11.275, 60.6083], [11.2749, 60.6083], [11.2748, 60.6083], [11.2748, 60.6082], [11.2749, 60.6082], [11.275, 60.6082], [11.2751, 60.6081], [11.2751, 60.6081], [11.2751, 60.608], [11.2752, 60.6079], [11.2753, 60.6079], [11.2755, 60.6078], [11.2756, 60.6078], [11.2757, 60.6078], [11.2758, 60.6078], [11.2758, 60.6078], [11.2759, 60.6078], [11.276, 60.6078], [11.2761, 60.6078], [11.2762, 60.6077], [11.2761, 60.6076], [11.2761, 60.6076], [11.2762, 60.6076], [11.2762, 60.6076], [11.2763, 60.6076], [11.2763, 60.6076], [11.2765, 60.6076], [11.2766, 60.6076], [11.2767, 60.6076], [11.2768, 60.6076], [11.2768, 60.6075], [11.2769, 60.6076], [11.277, 60.6076], [11.2771, 60.6076], [11.2773, 60.6076], [11.2779, 60.6075], [11.2783, 60.6075], [11.2785, 60.6075], [11.2787, 60.6074], [11.2787, 60.6074], [11.2789, 60.6074], [11.2789, 60.6074], [11.2791, 60.6073], [11.2792, 60.6072], [11.2793, 60.6072], [11.2795, 60.6071], [11.2797, 60.6071], [11.2798, 60.607], [11.2799, 60.6069], [11.2801, 60.6067], [11.2802, 60.6067], [11.2803, 60.6066], [11.2804, 60.6065], [11.2804, 60.6065], [11.2805, 60.6064], [11.2806, 60.6064], [11.2807, 60.6063], [11.2807, 60.6063], [11.2808, 60.6062], [11.2809, 60.6062], [11.2809, 60.6062], [11.281, 60.6062], [11.281, 60.6061], [11.2812, 60.606], [11.2813, 60.6059], [11.2814, 60.6058], [11.2814, 60.6058], [11.2815, 60.6058], [11.2816, 60.6057], [11.2818, 60.6057], [11.2819, 60.6056], [11.2821, 60.6055], [11.2823, 60.6054], [11.2824, 60.6053], [11.2826, 60.6052], [11.2827, 60.6051], [11.2827, 60.6051], [11.2827, 60.605], [11.2828, 60.605], [11.2828, 60.605], [11.283, 60.6049], [11.2831, 60.6049], [11.2832, 60.6048], [11.2834, 60.6048], [11.2836, 60.6047], [11.2837, 60.6046], [11.2838, 60.6046], [11.2839, 60.6045], [11.284, 60.6045], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.2841, 60.6044], [11.2843, 60.6043], [11.2844, 60.6042], [11.2845, 60.6042], [11.2846, 60.6041], [11.2846, 60.6041], [11.2847, 60.6041], [11.2848, 60.604], [11.2849, 60.604], [11.285, 60.6039], [11.2851, 60.6039], [11.2853, 60.6038], [11.2854, 60.6038], [11.2855, 60.6038], [11.2856, 60.6037], [11.2857, 60.6037], [11.2858, 60.6037], [11.2859, 60.6036], [11.286, 60.6036], [11.2861, 60.6036], [11.2862, 60.6036], [11.2862, 60.6035], [11.2863, 60.6035], [11.2863, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2863, 60.6035], [11.2863, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2865, 60.6035], [11.2865, 60.6035], [11.2866, 60.6034], [11.2867, 60.6034], [11.2869, 60.6033], [11.287, 60.6033], [11.2871, 60.6032], [11.2872, 60.6032], [11.2872, 60.6032], [11.2873, 60.6032], [11.2873, 60.6031], [11.2873, 60.6031], [11.2874, 60.6032], [11.2874, 60.6032], [11.2874, 60.6032], [11.2874, 60.6032], [11.2875, 60.6031], [11.2875, 60.6031], [11.2875, 60.6031], [11.2875, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2877, 60.6031], [11.2877, 60.6031], [11.2878, 60.6031], [11.2879, 60.6031], [11.2879, 60.603], [11.288, 60.603], [11.2879, 60.603], [11.288, 60.603], [11.288, 60.603], [11.288, 60.603], [11.288, 60.603], [11.2881, 60.603], [11.2881, 60.603], [11.2881, 60.6029], [11.2881, 60.603], [11.2882, 60.603], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2886, 60.6028], [11.2885, 60.6027], [11.2885, 60.6027], [11.2886, 60.6027], [11.2886, 60.6027], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6025], [11.2887, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2889, 60.6025], [11.2889, 60.6025], [11.2889, 60.6025], [11.2889, 60.6024], [11.289, 60.6024], [11.2891, 60.6024], [11.2891, 60.6023], [11.2892, 60.6023], [11.2893, 60.6023], [11.2894, 60.6023], [11.2894, 60.6022], [11.2895, 60.6022], [11.2896, 60.6021], [11.2897, 60.6021], [11.2897, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.602], [11.2898, 60.602], [11.2898, 60.602], [11.2899, 60.602], [11.2899, 60.602], [11.29, 60.602], [11.2901, 60.602], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2903, 60.6019], [11.2903, 60.6019], [11.2904, 60.6019], [11.2903, 60.6019], [11.2903, 60.6018], [11.2903, 60.6019], [11.2904, 60.6019], [11.2904, 60.6019], [11.2904, 60.6018], [11.2904, 60.6018], [11.2905, 60.6018], [11.2906, 60.6018], [11.2906, 60.6017], [11.2907, 60.6017], [11.2908, 60.6016], [11.2908, 60.6016], [11.2909, 60.6016], [11.2908, 60.6016], [11.2908, 60.6015], [11.2908, 60.6015], [11.2907, 60.6014], [11.2906, 60.6014], [11.2905, 60.6013], [11.2902, 60.6012], [11.29, 60.6012], [11.2899, 60.6012], [11.2899, 60.6011], [11.2897, 60.6011], [11.2897, 60.601], [11.2896, 60.601], [11.2895, 60.601], [11.2894, 60.6009], [11.2894, 60.6009], [11.2893, 60.6006], [11.2891, 60.6005], [11.2891, 60.6004], [11.289, 60.6002], [11.2891, 60.5999], [11.2892, 60.5999], [11.2892, 60.5997], [11.289, 60.5997], [11.2889, 60.5996], [11.2889, 60.5995], [11.289, 60.5995], [11.289, 60.5993], [11.2888, 60.5991], [11.2888, 60.599], [11.2888, 60.5989], [11.2889, 60.5989], [11.2889, 60.5988], [11.289, 60.5987], [11.2892, 60.5987], [11.2892, 60.5986], [11.2891, 60.5986], [11.2891, 60.5985], [11.2891, 60.5985], [11.2891, 60.5984], [11.289, 60.5984], [11.289, 60.5984], [11.2891, 60.5984], [11.2891, 60.5984], [11.2891, 60.5983], [11.289, 60.5983], [11.289, 60.5983], [11.289, 60.5982], [11.289, 60.5981], [11.2891, 60.598], [11.2891, 60.598], [11.2892, 60.5979], [11.2892, 60.5979], [11.2892, 60.5979], [11.2891, 60.5979], [11.2891, 60.5979], [11.2892, 60.5979], [11.2892, 60.5978], [11.2892, 60.5978], [11.2892, 60.5977], [11.2891, 60.5977], [11.2891, 60.5977], [11.2891, 60.5977], [11.2891, 60.5976], [11.2891, 60.5975], [11.2891, 60.5975], [11.289, 60.5974], [11.2891, 60.5974], [11.2891, 60.5973], [11.2891, 60.5973], [11.2891, 60.5973], [11.2891, 60.5972], [11.2891, 60.5971], [11.2891, 60.5971], [11.2891, 60.597], [11.2891, 60.5969], [11.2891, 60.5969], [11.2891, 60.5969], [11.2704, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "183", "sub_div_center": [0.0035, 0.0029]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0169, 60.7092], [11.0168, 60.7092], [11.0167, 60.7092], [11.0165, 60.7092], [11.0164, 60.7093], [11.0163, 60.7093], [11.0162, 60.7093], [11.0162, 60.7095], [11.0162, 60.7095], [11.0162, 60.7095], [11.0161, 60.7097], [11.0161, 60.7098], [11.016, 60.7099], [11.0158, 60.7099], [11.0158, 60.7101], [11.0156, 60.7102], [11.0154, 60.7104], [11.0152, 60.7104], [11.0151, 60.7106], [11.015, 60.7106], [11.0149, 60.7107], [11.0148, 60.7108], [11.0148, 60.7108], [11.0149, 60.711], [11.0149, 60.7111], [11.0148, 60.7112], [11.0148, 60.7112], [11.0148, 60.7113], [11.0149, 60.7115], [11.0149, 60.7115], [11.0149, 60.7116], [11.0149, 60.7117], [11.0149, 60.7117], [11.0149, 60.7118], [11.0148, 60.7119], [11.0148, 60.7119], [11.0147, 60.712], [11.0147, 60.712], [11.0147, 60.7121], [11.0148, 60.712], [11.0149, 60.712], [11.015, 60.712], [11.0151, 60.712], [11.0152, 60.712], [11.0153, 60.712], [11.0154, 60.712], [11.0155, 60.712], [11.0156, 60.712], [11.0156, 60.712], [11.0159, 60.7119], [11.0161, 60.7119], [11.0162, 60.7119], [11.0162, 60.7118], [11.0164, 60.7118], [11.0165, 60.7117], [11.0166, 60.7117], [11.0167, 60.7117], [11.0167, 60.7117], [11.0168, 60.7117], [11.0168, 60.7116], [11.0168, 60.7116], [11.0169, 60.7115], [11.0169, 60.7115], [11.017, 60.7114], [11.017, 60.7114], [11.0171, 60.7113], [11.0172, 60.7114], [11.0173, 60.7114], [11.0174, 60.7114], [11.0175, 60.7114], [11.0176, 60.7114], [11.0177, 60.7114], [11.0177, 60.7114], [11.0178, 60.7114], [11.0179, 60.7113], [11.018, 60.7113], [11.018, 60.7112], [11.0181, 60.7111], [11.0181, 60.7111], [11.0181, 60.711], [11.0181, 60.711], [11.0181, 60.7108], [11.0182, 60.7107], [11.0181, 60.7107], [11.0182, 60.7106], [11.0182, 60.7106], [11.0182, 60.7106], [11.0183, 60.7105], [11.0183, 60.7104], [11.0183, 60.7104], [11.0182, 60.7103], [11.0183, 60.7103], [11.0182, 60.7102], [11.0182, 60.7102], [11.0181, 60.7101], [11.0181, 60.71], [11.0181, 60.71], [11.0181, 60.7099], [11.0179, 60.7097], [11.0178, 60.7096], [11.0177, 60.7096], [11.0176, 60.7095], [11.0176, 60.7095], [11.0176, 60.7094], [11.0175, 60.7093], [11.0175, 60.7093], [11.0174, 60.7093], [11.0174, 60.7092], [11.0173, 60.7092], [11.0172, 60.7092], [11.0171, 60.7092], [11.017, 60.7092], [11.0169, 60.7092]]]}}, {"type": "Feature", "properties": {"sub_div_id": "184", "sub_div_center": [0.0011, 0.0007]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9512, 60.8519], [10.9513, 60.852], [10.9513, 60.852], [10.9514, 60.852], [10.9515, 60.8521], [10.9516, 60.8522], [10.9517, 60.8522], [10.9517, 60.8523], [10.9518, 60.8523], [10.9518, 60.8523], [10.9518, 60.8522], [10.9518, 60.8522], [10.9517, 60.8522], [10.9517, 60.8521], [10.9518, 60.8521], [10.9518, 60.8521], [10.952, 60.8521], [10.952, 60.852], [10.9521, 60.852], [10.9522, 60.852], [10.9522, 60.852], [10.9522, 60.8519], [10.9522, 60.8519], [10.9522, 60.8519], [10.9521, 60.8518], [10.952, 60.8518], [10.9519, 60.8518], [10.9519, 60.8517], [10.9518, 60.8516], [10.9517, 60.8516], [10.9516, 60.8516], [10.9515, 60.8516], [10.9514, 60.8517], [10.9513, 60.8517], [10.9513, 60.8518], [10.9512, 60.8518], [10.9512, 60.8519], [10.9512, 60.8519]]]}}, {"type": "Feature", "properties": {"sub_div_id": "185", "sub_div_center": [0.0036, 0.0018]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1332, 60.7934], [11.1333, 60.7935], [11.1332, 60.7936], [11.1344, 60.7933], [11.1352, 60.793], [11.1355, 60.7929], [11.1358, 60.7925], [11.136, 60.7924], [11.1361, 60.7922], [11.1362, 60.7921], [11.1363, 60.792], [11.1361, 60.792], [11.136, 60.7919], [11.136, 60.7918], [11.1357, 60.7918], [11.1354, 60.7918], [11.1353, 60.792], [11.1351, 60.7919], [11.1349, 60.7919], [11.1348, 60.792], [11.1348, 60.7922], [11.135, 60.7923], [11.1349, 60.7924], [11.1348, 60.7925], [11.1349, 60.7925], [11.135, 60.7925], [11.1353, 60.7923], [11.1353, 60.792], [11.1355, 60.7921], [11.1354, 60.7923], [11.135, 60.7926], [11.1348, 60.7926], [11.1346, 60.7927], [11.1347, 60.7927], [11.1351, 60.7928], [11.1351, 60.7929], [11.1346, 60.7929], [11.1339, 60.7931], [11.134, 60.7932], [11.1339, 60.7933], [11.1336, 60.7932], [11.1335, 60.7931], [11.1333, 60.7932], [11.1326, 60.7933], [11.1332, 60.7934]]]}}, {"type": "Feature", "properties": {"sub_div_id": "186", "sub_div_center": [0.0029, 0.0014]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1375, 60.7914], [11.1378, 60.7915], [11.1382, 60.7914], [11.1386, 60.7912], [11.1389, 60.7911], [11.139, 60.7909], [11.139, 60.7908], [11.1391, 60.7907], [11.1394, 60.7907], [11.1397, 60.7907], [11.14, 60.7906], [11.1401, 60.7903], [11.1402, 60.7901], [11.1396, 60.7901], [11.1385, 60.7902], [11.1381, 60.7903], [11.1383, 60.7904], [11.1382, 60.7907], [11.138, 60.7909], [11.1378, 60.7911], [11.1376, 60.7912], [11.1374, 60.7913], [11.1375, 60.7914]]]}}, {"type": "Feature", "properties": {"sub_div_id": "187", "sub_div_center": [0.003, 0.0011]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1334, 60.7901], [11.1335, 60.7902], [11.1335, 60.7903], [11.1336, 60.7903], [11.1341, 60.7903], [11.1344, 60.7903], [11.1346, 60.7904], [11.135, 60.7904], [11.1348, 60.7904], [11.1341, 60.7907], [11.1337, 60.7908], [11.1341, 60.7908], [11.1342, 60.7909], [11.1345, 60.791], [11.1347, 60.7911], [11.1349, 60.7911], [11.1353, 60.7909], [11.1356, 60.7908], [11.136, 60.7904], [11.1362, 60.7902], [11.1363, 60.7902], [11.1364, 60.7901], [11.1359, 60.7901], [11.1355, 60.7902], [11.135, 60.7902], [11.1346, 60.7902], [11.1343, 60.7901], [11.1339, 60.79], [11.1333, 60.7901], [11.1334, 60.7901]]]}}, {"type": "Feature", "properties": {"sub_div_id": "188", "sub_div_center": [0.0005, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1334, 60.7901], [11.1335, 60.7902], [11.1335, 60.7903], [11.1336, 60.7903], [11.1341, 60.7903], [11.1344, 60.7903], [11.1346, 60.7904], [11.135, 60.7904], [11.1348, 60.7904], [11.1341, 60.7907], [11.1337, 60.7908], [11.1341, 60.7908], [11.1342, 60.7909], [11.1345, 60.791], [11.1347, 60.7911], [11.1349, 60.7911], [11.1353, 60.7909], [11.1356, 60.7908], [11.136, 60.7904], [11.1362, 60.7902], [11.1363, 60.7902], [11.1364, 60.7901], [11.1359, 60.7901], [11.1355, 60.7902], [11.135, 60.7902], [11.1346, 60.7902], [11.1343, 60.7901], [11.1339, 60.79], [11.1333, 60.7901], [11.1334, 60.7901]]]}}, {"type": "Feature", "properties": {"sub_div_id": "189", "sub_div_center": [0.0018, 0.0005]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0626, 60.792], [11.0626, 60.792], [11.0626, 60.792], [11.0627, 60.792], [11.0627, 60.792], [11.063, 60.792], [11.0631, 60.7921], [11.0632, 60.7921], [11.0633, 60.7921], [11.0634, 60.7921], [11.0636, 60.7921], [11.0636, 60.7922], [11.0637, 60.7923], [11.0638, 60.7923], [11.0639, 60.7923], [11.0639, 60.7923], [11.064, 60.7923], [11.0641, 60.7923], [11.0641, 60.7923], [11.0642, 60.7923], [11.0643, 60.7923], [11.0643, 60.7923], [11.0644, 60.7923], [11.0644, 60.7923], [11.0644, 60.7922], [11.0644, 60.7922], [11.0644, 60.7922], [11.0644, 60.7922], [11.0643, 60.7921], [11.0643, 60.7921], [11.0642, 60.7921], [11.0641, 60.792], [11.064, 60.792], [11.0638, 60.7919], [11.0637, 60.7919], [11.0636, 60.7919], [11.0634, 60.7919], [11.0632, 60.7919], [11.063, 60.7919], [11.0628, 60.7919], [11.0627, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.792]]]}}, {"type": "Feature", "properties": {"sub_div_id": "190", "sub_div_center": [0.0004, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6957], [11.1085, 60.6957], [11.1085, 60.6957], [11.1085, 60.6958], [11.1086, 60.6959], [11.1086, 60.6959], [11.1087, 60.6959], [11.1088, 60.6958], [11.1088, 60.6958], [11.1088, 60.6958], [11.1089, 60.6957], [11.1089, 60.6957], [11.1088, 60.6957], [11.1088, 60.6956], [11.1088, 60.6956], [11.1087, 60.6956], [11.1087, 60.6956], [11.1088, 60.6956], [11.1088, 60.6955], [11.1088, 60.6955], [11.1088, 60.6955], [11.1088, 60.6955], [11.1087, 60.6955], [11.1087, 60.6955], [11.1086, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956]]]}}, {"type": "Feature", "properties": {"sub_div_id": "191", "sub_div_center": [0.0027, 0.0016]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1949, 60.5997], [11.195, 60.5997], [11.1951, 60.5996], [11.1952, 60.5996], [11.1952, 60.5997], [11.1952, 60.5998], [11.1952, 60.5998], [11.1953, 60.5998], [11.1953, 60.5998], [11.1954, 60.5998], [11.1956, 60.5997], [11.1957, 60.5998], [11.1958, 60.6], [11.1959, 60.6], [11.1959, 60.6001], [11.1961, 60.6001], [11.1962, 60.6], [11.1962, 60.6], [11.1963, 60.5999], [11.1963, 60.5997], [11.1963, 60.5996], [11.1962, 60.5996], [11.1962, 60.5996], [11.1962, 60.5995], [11.1966, 60.5994], [11.1967, 60.5994], [11.1969, 60.5994], [11.1971, 60.5993], [11.1973, 60.5992], [11.1974, 60.5992], [11.1975, 60.5991], [11.1975, 60.599], [11.1975, 60.599], [11.1975, 60.599], [11.1975, 60.5989], [11.1974, 60.5989], [11.1974, 60.5988], [11.1974, 60.5987], [11.1973, 60.5987], [11.1973, 60.5987], [11.1972, 60.5987], [11.1971, 60.5987], [11.1971, 60.5987], [11.197, 60.5987], [11.197, 60.5987], [11.1969, 60.5986], [11.1968, 60.5986], [11.1968, 60.5986], [11.1969, 60.5985], [11.1968, 60.5985], [11.1967, 60.5984], [11.1966, 60.5985], [11.1965, 60.5986], [11.1964, 60.5986], [11.1963, 60.5987], [11.1961, 60.5987], [11.196, 60.5988], [11.1959, 60.5988], [11.1957, 60.5989], [11.1956, 60.5989], [11.1955, 60.599], [11.1953, 60.5991], [11.1951, 60.5993], [11.1949, 60.5995], [11.1948, 60.5997], [11.1948, 60.5997], [11.1949, 60.5997]]]}}, {"type": "Feature", "properties": {"sub_div_id": "192", "sub_div_center": [0.0005, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2059, 60.5947], [11.206, 60.5947], [11.2061, 60.5947], [11.2061, 60.5946], [11.2062, 60.5945], [11.2063, 60.5944], [11.2063, 60.5944], [11.206, 60.5944], [11.2058, 60.5945], [11.2058, 60.5946], [11.2059, 60.5947]]]}}, {"type": "Feature", "properties": {"sub_div_id": "193", "sub_div_center": [0.0003, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1977, 60.6038], [11.1978, 60.6038], [11.1979, 60.6037], [11.1979, 60.6037], [11.1979, 60.6036], [11.1979, 60.6035], [11.1978, 60.6036], [11.1977, 60.6037], [11.1977, 60.6037], [11.1976, 60.6038], [11.1977, 60.6038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "194", "sub_div_center": [0.0009, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1807, 60.4709], [11.1807, 60.4709], [11.1807, 60.471], [11.1808, 60.4711], [11.1807, 60.4712], [11.1808, 60.4712], [11.1809, 60.4712], [11.1809, 60.4712], [11.181, 60.4712], [11.1811, 60.4712], [11.1811, 60.4712], [11.1812, 60.4712], [11.1813, 60.4711], [11.1814, 60.471], [11.1814, 60.4709], [11.1815, 60.4709], [11.1815, 60.4708], [11.1815, 60.4707], [11.1815, 60.4707], [11.1814, 60.4706], [11.1814, 60.4706], [11.1813, 60.4706], [11.1813, 60.4707], [11.1812, 60.4706], [11.1811, 60.4707], [11.1809, 60.4707], [11.1809, 60.4707], [11.1807, 60.4708], [11.1807, 60.4708], [11.1807, 60.4709]]]}}, {"type": "Feature", "properties": {"sub_div_id": "195", "sub_div_center": [0.0004, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1797, 60.5014], [11.1797, 60.5015], [11.1798, 60.5015], [11.1798, 60.5016], [11.1798, 60.5016], [11.1799, 60.5016], [11.1799, 60.5016], [11.18, 60.5015], [11.1801, 60.5014], [11.1801, 60.5014], [11.1801, 60.5013], [11.1801, 60.5013], [11.1801, 60.5012], [11.1801, 60.5012], [11.18, 60.5012], [11.18, 60.5012], [11.1799, 60.5011], [11.18, 60.5011], [11.1799, 60.5011], [11.1799, 60.501], [11.1798, 60.501], [11.1798, 60.5011], [11.1797, 60.5012], [11.1797, 60.5012], [11.1797, 60.5013], [11.1797, 60.5013], [11.1797, 60.5014], [11.1797, 60.5014]]]}}, {"type": "Feature", "properties": {"sub_div_id": "196", "sub_div_center": [0.0024, 0.0014]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6899, 60.9066], [10.6899, 60.9067], [10.6899, 60.9067], [10.6899, 60.9068], [10.6899, 60.9069], [10.6899, 60.9069], [10.6898, 60.9069], [10.6899, 60.907], [10.6899, 60.9071], [10.6899, 60.9071], [10.6901, 60.9072], [10.6902, 60.9072], [10.6903, 60.9072], [10.6904, 60.9073], [10.6905, 60.9073], [10.6905, 60.9072], [10.6906, 60.9072], [10.6906, 60.9072], [10.6906, 60.9071], [10.6906, 60.9071], [10.6907, 60.907], [10.6907, 60.9069], [10.6907, 60.9068], [10.6908, 60.9067], [10.6908, 60.9066], [10.6908, 60.9066], [10.6908, 60.9065], [10.6909, 60.9064], [10.691, 60.9064], [10.6911, 60.9063], [10.6913, 60.9063], [10.6913, 60.9062], [10.6914, 60.9062], [10.6915, 60.9062], [10.6915, 60.9061], [10.6915, 60.9061], [10.6916, 60.9061], [10.6917, 60.9061], [10.6917, 60.906], [10.6917, 60.906], [10.6917, 60.906], [10.6918, 60.906], [10.6918, 60.906], [10.6918, 60.906], [10.6919, 60.906], [10.6919, 60.906], [10.6921, 60.906], [10.6922, 60.906], [10.6923, 60.906], [10.6923, 60.906], [10.6923, 60.9059], [10.6923, 60.9059], [10.6922, 60.9059], [10.6922, 60.9059], [10.6922, 60.9059], [10.692, 60.9059], [10.6918, 60.9059], [10.6918, 60.906], [10.6917, 60.906], [10.6917, 60.906], [10.6916, 60.906], [10.6915, 60.9059], [10.6913, 60.9059], [10.6912, 60.906], [10.6911, 60.906], [10.6909, 60.906], [10.6906, 60.906], [10.6905, 60.9061], [10.6905, 60.9061], [10.6905, 60.9062], [10.6903, 60.9062], [10.6902, 60.9063], [10.6901, 60.9063], [10.69, 60.9064], [10.6899, 60.9064], [10.6899, 60.9065], [10.6899, 60.9065], [10.6899, 60.9065], [10.6898, 60.9066], [10.6899, 60.9066]]]}}, {"type": "Feature", "properties": {"sub_div_id": "197", "sub_div_center": [0.0012, 0.0009]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9177, 60.8392], [10.9179, 60.8393], [10.9182, 60.8394], [10.9185, 60.8393], [10.9188, 60.8393], [10.9188, 60.8392], [10.9188, 60.839], [10.9186, 60.8389], [10.9187, 60.8387], [10.9188, 60.8386], [10.9188, 60.8385], [10.9186, 60.8384], [10.9184, 60.8386], [10.918, 60.8387], [10.9179, 60.8388], [10.9178, 60.8388], [10.9178, 60.8388], [10.9178, 60.8389], [10.9177, 60.839], [10.9177, 60.839], [10.9177, 60.8392]]]}}, {"type": "Feature", "properties": {"sub_div_id": "198", "sub_div_center": [0.0003, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6981, 60.9038], [10.6982, 60.9038], [10.6983, 60.9038], [10.6983, 60.9038], [10.6984, 60.9038], [10.6984, 60.9038], [10.6984, 60.9037], [10.6984, 60.9037], [10.6983, 60.9037], [10.6983, 60.9037], [10.6982, 60.9037], [10.6982, 60.9037], [10.6981, 60.9037], [10.6981, 60.9037], [10.6981, 60.9038], [10.698, 60.9038], [10.6981, 60.9038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "199", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9211, 60.8381], [10.9211, 60.8381], [10.9211, 60.8382], [10.9212, 60.8382], [10.9212, 60.8382], [10.9213, 60.8382], [10.9212, 60.8382], [10.9212, 60.8381], [10.9212, 60.8381], [10.9212, 60.8381], [10.9211, 60.8381], [10.9211, 60.8381], [10.9211, 60.8381]]]}}, {"type": "Feature", "properties": {"sub_div_id": "200", "sub_div_center": [0.0003, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2505, 60.5852], [11.2506, 60.5852], [11.2506, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5854], [11.2507, 60.5854], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2508, 60.5852], [11.2508, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2506, 60.5852], [11.2506, 60.5852], [11.2506, 60.5852], [11.2506, 60.5851], [11.2506, 60.5851], [11.2505, 60.5851], [11.2505, 60.5851], [11.2505, 60.5851], [11.2505, 60.5852], [11.2505, 60.5852]]]}}, {"type": "Feature", "properties": {"sub_div_id": "201", "sub_div_center": [0.0004, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2588, 60.5797], [11.2588, 60.5798], [11.2588, 60.5798], [11.2589, 60.5799], [11.2588, 60.5799], [11.2589, 60.58], [11.2589, 60.58], [11.259, 60.58], [11.2591, 60.5799], [11.2592, 60.5799], [11.2591, 60.5798], [11.259, 60.5798], [11.2589, 60.5797], [11.2589, 60.5797], [11.2589, 60.5796], [11.2589, 60.5796], [11.2589, 60.5796], [11.2589, 60.5796], [11.2588, 60.5796], [11.2588, 60.5796], [11.2588, 60.5797]]]}}, {"type": "Feature", "properties": {"sub_div_id": "202", "sub_div_center": [0.0002, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.259, 60.5795], [11.2591, 60.5795], [11.2592, 60.5795], [11.2592, 60.5795], [11.2592, 60.5795], [11.2592, 60.5794], [11.2591, 60.5794], [11.2591, 60.5794], [11.259, 60.5794], [11.259, 60.5794], [11.259, 60.5795], [11.259, 60.5795]]]}}, {"type": "Feature", "properties": {"sub_div_id": "203", "sub_div_center": [0.0002, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1035, 60.7038], [11.1035, 60.7038], [11.1036, 60.7038], [11.1035, 60.7039], [11.1036, 60.7039], [11.1036, 60.7038], [11.1036, 60.7038], [11.1036, 60.7038], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7036], [11.1035, 60.7036], [11.1035, 60.7037], [11.1035, 60.7037], [11.1034, 60.7037], [11.1035, 60.7038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "204", "sub_div_center": [0.0009, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8972, 60.7612], [10.8972, 60.7612], [10.8972, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7613], [10.8972, 60.7613], [10.8971, 60.7613], [10.8971, 60.7613], [10.8971, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8972, 60.7614], [10.8974, 60.7613], [10.8975, 60.7614], [10.8976, 60.7614], [10.8977, 60.7613], [10.8977, 60.7613], [10.8978, 60.7613], [10.8979, 60.7613], [10.8979, 60.7613], [10.8979, 60.7613], [10.8978, 60.7613], [10.8976, 60.7612], [10.8974, 60.7611], [10.8973, 60.7611], [10.8972, 60.7611], [10.8972, 60.7611], [10.8971, 60.7612], [10.897, 60.7612], [10.897, 60.7612], [10.8972, 60.7612]]]}}, {"type": "Feature", "properties": {"sub_div_id": "205", "sub_div_center": [0.0011, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9187, 60.8783], [10.9187, 60.8783], [10.9187, 60.8784], [10.9188, 60.8785], [10.9188, 60.8786], [10.9188, 60.8786], [10.9188, 60.8786], [10.9189, 60.8787], [10.919, 60.8787], [10.9192, 60.8788], [10.9193, 60.8788], [10.9194, 60.8788], [10.9195, 60.8788], [10.9195, 60.8788], [10.9196, 60.8788], [10.9196, 60.8788], [10.9197, 60.8788], [10.9197, 60.8788], [10.9197, 60.8788], [10.9198, 60.8788], [10.9198, 60.8787], [10.9198, 60.8787], [10.9197, 60.8787], [10.9197, 60.8787], [10.9196, 60.8786], [10.9195, 60.8786], [10.9195, 60.8786], [10.9194, 60.8786], [10.9194, 60.8786], [10.9194, 60.8786], [10.9193, 60.8786], [10.9193, 60.8786], [10.9193, 60.8785], [10.9193, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8783], [10.9192, 60.8783], [10.9191, 60.8782], [10.9191, 60.8782], [10.919, 60.8782], [10.9189, 60.8782], [10.9189, 60.8782], [10.9188, 60.8782], [10.9187, 60.8782], [10.9187, 60.8782], [10.9187, 60.8782], [10.9187, 60.8783], [10.9187, 60.8783]]]}}, {"type": "Feature", "properties": {"sub_div_id": "206", "sub_div_center": [0.0012, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6814, 60.9284], [10.6814, 60.9285], [10.6816, 60.9285], [10.6818, 60.9285], [10.6819, 60.9285], [10.6822, 60.9285], [10.6822, 60.9285], [10.6823, 60.9285], [10.6824, 60.9285], [10.6825, 60.9284], [10.6824, 60.9284], [10.6824, 60.9284], [10.6825, 60.9283], [10.6824, 60.9283], [10.6824, 60.9283], [10.6823, 60.9282], [10.6823, 60.9282], [10.6822, 60.9281], [10.6821, 60.9281], [10.682, 60.9281], [10.6819, 60.9281], [10.6817, 60.9282], [10.6817, 60.9282], [10.6817, 60.9282], [10.6817, 60.9282], [10.6816, 60.9282], [10.6815, 60.9282], [10.6816, 60.9283], [10.6816, 60.9283], [10.6816, 60.9284], [10.6815, 60.9283], [10.6814, 60.9283], [10.6813, 60.9284], [10.6814, 60.9284]]]}}, {"type": "Feature", "properties": {"sub_div_id": "207", "sub_div_center": [0.0003, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1005, 60.7845], [11.1005, 60.7845], [11.1005, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7846], [11.1006, 60.7846], [11.1007, 60.7846], [11.1007, 60.7846], [11.1007, 60.7845], [11.1007, 60.7845], [11.1007, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1009, 60.7845], [11.1009, 60.7845], [11.1009, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7843], [11.1008, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1005, 60.7844], [11.1005, 60.7844], [11.1005, 60.7845], [11.1005, 60.7845], [11.1005, 60.7845]]]}}, {"type": "Feature", "properties": {"sub_div_id": "208", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6884, 60.9216], [10.6884, 60.9215], [10.6885, 60.9215], [10.6885, 60.9216], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9216]]]}}, {"type": "Feature", "properties": {"sub_div_id": "209", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6094, 60.9726], [10.6094, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726]]]}}, {"type": "Feature", "properties": {"sub_div_id": "210", "sub_div_center": [0.0013, 0.0006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6081, 60.9728], [10.6081, 60.9729], [10.6081, 60.9729], [10.6081, 60.9729], [10.6082, 60.9729], [10.6083, 60.9729], [10.6083, 60.9729], [10.6084, 60.973], [10.6085, 60.973], [10.6085, 60.9731], [10.6085, 60.9731], [10.6084, 60.9731], [10.6084, 60.9732], [10.6083, 60.9732], [10.6083, 60.9732], [10.6084, 60.9732], [10.6084, 60.9732], [10.6085, 60.9732], [10.6087, 60.9732], [10.6089, 60.9732], [10.6089, 60.9732], [10.6089, 60.9731], [10.6089, 60.9731], [10.609, 60.9731], [10.609, 60.973], [10.609, 60.973], [10.6091, 60.973], [10.6091, 60.9729], [10.6091, 60.9729], [10.609, 60.9729], [10.6091, 60.9728], [10.6093, 60.9728], [10.6093, 60.9728], [10.6093, 60.9727], [10.6094, 60.9727], [10.6093, 60.9727], [10.6092, 60.9727], [10.6091, 60.9727], [10.6091, 60.9727], [10.609, 60.9727], [10.6089, 60.9727], [10.6089, 60.9727], [10.6086, 60.9727], [10.6085, 60.9727], [10.6084, 60.9727], [10.6084, 60.9728], [10.6084, 60.9727], [10.6083, 60.9728], [10.6082, 60.9728], [10.6081, 60.9728], [10.6081, 60.9728], [10.6081, 60.9728]]]}}, {"type": "Feature", "properties": {"sub_div_id": "211", "sub_div_center": [0.0013, 0.0005]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6254, 60.9622], [10.6254, 60.9622], [10.6255, 60.9622], [10.6255, 60.9622], [10.6255, 60.9623], [10.6255, 60.9623], [10.6256, 60.9623], [10.6257, 60.9623], [10.6258, 60.9622], [10.626, 60.9622], [10.6261, 60.9622], [10.6262, 60.9622], [10.6263, 60.9622], [10.6264, 60.9621], [10.6264, 60.9621], [10.6265, 60.962], [10.6265, 60.962], [10.6266, 60.962], [10.6266, 60.9619], [10.6266, 60.9619], [10.6267, 60.9619], [10.6267, 60.9618], [10.6267, 60.9618], [10.6266, 60.9618], [10.6266, 60.9618], [10.6265, 60.9618], [10.6264, 60.9618], [10.6264, 60.9618], [10.6263, 60.9618], [10.6262, 60.9618], [10.6262, 60.9618], [10.6262, 60.9619], [10.6262, 60.9619], [10.6261, 60.9619], [10.6261, 60.9619], [10.626, 60.9619], [10.6259, 60.962], [10.6258, 60.962], [10.6258, 60.962], [10.6257, 60.962], [10.6256, 60.9621], [10.6255, 60.9621], [10.6254, 60.9621], [10.6254, 60.9621], [10.6254, 60.9621], [10.6254, 60.9622]]]}}, {"type": "Feature", "properties": {"sub_div_id": "212", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.187, 60.6056], [11.1871, 60.6056], [11.1872, 60.6055], [11.1872, 60.6055], [11.1872, 60.6055], [11.1871, 60.6055], [11.1871, 60.6055], [11.187, 60.6055], [11.187, 60.6055], [11.187, 60.6055], [11.187, 60.6056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "213", "sub_div_center": [0.001, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6775, 60.8874], [10.6776, 60.8874], [10.678, 60.8874], [10.6781, 60.8873], [10.6781, 60.8873], [10.6781, 60.8873], [10.6781, 60.8873], [10.6778, 60.8873], [10.6777, 60.8873], [10.6775, 60.8873], [10.6773, 60.8873], [10.6772, 60.8873], [10.6772, 60.8874], [10.6775, 60.8874]]]}}, {"type": "Feature", "properties": {"sub_div_id": "214", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9104], [10.6923, 60.9104], [10.6924, 60.9104], [10.6924, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6924, 60.9104], [10.6924, 60.9104], [10.6923, 60.9103], [10.6923, 60.9103], [10.6923, 60.9104], [10.6923, 60.9104], [10.6923, 60.9104]]]}}, {"type": "Feature", "properties": {"sub_div_id": "215", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9106], [10.6924, 60.9106], [10.6924, 60.9106], [10.6924, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "216", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9114]]]}}, {"type": "Feature", "properties": {"sub_div_id": "217", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9114]]]}}, {"type": "Feature", "properties": {"sub_div_id": "218", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113]]]}}, {"type": "Feature", "properties": {"sub_div_id": "219", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113]]]}}, {"type": "Feature", "properties": {"sub_div_id": "220", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0936, 60.7307], [11.0936, 60.7307], [11.0937, 60.7307], [11.0937, 60.7307], [11.0937, 60.7306], [11.0937, 60.7306], [11.0937, 60.7306], [11.0936, 60.7306], [11.0936, 60.7306], [11.0936, 60.7306], [11.0936, 60.7307], [11.0936, 60.7307], [11.0936, 60.7307]]]}}, {"type": "Feature", "properties": {"sub_div_id": "221", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2382, 60.4533], [11.2383, 60.4533], [11.2383, 60.4533], [11.2383, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533]]]}}, {"type": "Feature", "properties": {"sub_div_id": "222", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547]]]}}, {"type": "Feature", "properties": {"sub_div_id": "223", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547]]]}}, {"type": "Feature", "properties": {"sub_div_id": "224", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2377, 60.4569], [11.2378, 60.4569], [11.2378, 60.4569], [11.2378, 60.4569], [11.2379, 60.4569], [11.2378, 60.4569], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2377, 60.4568], [11.2377, 60.4568], [11.2377, 60.4568], [11.2377, 60.4569], [11.2377, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "225", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1834, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664]]]}}, {"type": "Feature", "properties": {"sub_div_id": "226", "sub_div_center": [0.0007, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1702, 60.4788], [11.1702, 60.4788], [11.1702, 60.4788], [11.1702, 60.4788], [11.1703, 60.4788], [11.1703, 60.4788], [11.1705, 60.4789], [11.1706, 60.479], [11.1707, 60.479], [11.1708, 60.479], [11.1709, 60.479], [11.1709, 60.479], [11.1708, 60.479], [11.1707, 60.479], [11.1707, 60.4789], [11.1706, 60.4789], [11.1705, 60.4789], [11.1704, 60.4788], [11.1704, 60.4788], [11.1704, 60.4788], [11.1703, 60.4788], [11.1702, 60.4788]]]}}, {"type": "Feature", "properties": {"sub_div_id": "227", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884]]]}}, {"type": "Feature", "properties": {"sub_div_id": "228", "sub_div_center": [0.0007, 0.0009]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1651, 60.487], [11.1651, 60.4871], [11.1651, 60.487], [11.1652, 60.487], [11.1652, 60.487], [11.1653, 60.4869], [11.1654, 60.4868], [11.1655, 60.4866], [11.1656, 60.4865], [11.1657, 60.4864], [11.1657, 60.4864], [11.1657, 60.4863], [11.1657, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4862], [11.1655, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1656, 60.4863], [11.1656, 60.4863], [11.1656, 60.4864], [11.1656, 60.4864], [11.1656, 60.4865], [11.1655, 60.4866], [11.1654, 60.4868], [11.1653, 60.4869], [11.1652, 60.487], [11.1651, 60.487], [11.1651, 60.487], [11.1651, 60.487], [11.1651, 60.487]]]}}, {"type": "Feature", "properties": {"sub_div_id": "229", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.255, 60.5851], [11.255, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.585], [11.2551, 60.585], [11.2551, 60.5851], [11.255, 60.5851], [11.255, 60.585], [11.255, 60.585], [11.255, 60.5851], [11.255, 60.5851]]]}}, {"type": "Feature", "properties": {"sub_div_id": "230", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099]]]}}, {"type": "Feature", "properties": {"sub_div_id": "231", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099]]]}}, {"type": "Feature", "properties": {"sub_div_id": "232", "sub_div_center": [0.0002, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8968, 60.7613], [10.8968, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "233", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8968, 60.7613], [10.8968, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "234", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8965, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "235", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8965, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "236", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906]]]}}, {"type": "Feature", "properties": {"sub_div_id": "237", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062]]]}}, {"type": "Feature", "properties": {"sub_div_id": "238", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062]]]}}, {"type": "Feature", "properties": {"sub_div_id": "239", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061]]]}}, {"type": "Feature", "properties": {"sub_div_id": "240", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061]]]}}, {"type": "Feature", "properties": {"sub_div_id": "241", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7001, 60.9053], [10.7001, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7001, 60.9053], [10.7001, 60.9053]]]}}, {"type": "Feature", "properties": {"sub_div_id": "242", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7001, 60.9053], [10.7001, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7001, 60.9053], [10.7001, 60.9053]]]}}, {"type": "Feature", "properties": {"sub_div_id": "243", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "244", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "245", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6924, 60.9057], [10.6924, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "246", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6924, 60.9057], [10.6924, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "247", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "248", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6926, 60.9057], [10.6926, 60.9057], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "249", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "250", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9057], [10.6926, 60.9057], [10.6926, 60.9057], [10.6926, 60.9057], [10.6927, 60.9057], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "251", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107]]]}}, {"type": "Feature", "properties": {"sub_div_id": "252", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "253", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.692, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "254", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.692, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "255", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911]]]}}, {"type": "Feature", "properties": {"sub_div_id": "256", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911]]]}}, {"type": "Feature", "properties": {"sub_div_id": "257", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "258", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "259", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "260", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "261", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9108], [10.6922, 60.9108], [10.6922, 60.9109], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "262", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9108], [10.6922, 60.9108], [10.6922, 60.9109], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "263", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "264", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "265", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "266", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104]]]}}, {"type": "Feature", "properties": {"sub_div_id": "267", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6887, 60.9211], [10.6887, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.921], [10.6888, 60.921], [10.6888, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211]]]}}, {"type": "Feature", "properties": {"sub_div_id": "268", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6887, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215]]]}}, {"type": "Feature", "properties": {"sub_div_id": "269", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6885, 60.9214], [10.6886, 60.9214], [10.6886, 60.9214], [10.6885, 60.9214], [10.6885, 60.9214]]]}}, {"type": "Feature", "properties": {"sub_div_id": "270", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6885, 60.9214], [10.6886, 60.9214], [10.6886, 60.9214], [10.6885, 60.9214], [10.6885, 60.9214]]]}}, {"type": "Feature", "properties": {"sub_div_id": "271", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "272", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "273", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "274", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "275", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "276", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "277", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "278", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "279", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "280", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "281", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "282", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "283", "sub_div_center": [0.0, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6821, 60.9288], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6821, 60.9288]]]}}, {"type": "Feature", "properties": {"sub_div_id": "284", "sub_div_center": [0.0002, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6816, 60.9292], [10.6816, 60.9292], [10.6816, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6817, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9292]]]}}, {"type": "Feature", "properties": {"sub_div_id": "285", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "286", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "287", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "288", "sub_div_center": [0.0009, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1336, 60.7928], [11.1336, 60.7929], [11.1337, 60.7929], [11.1342, 60.7928], [11.1344, 60.7928], [11.1344, 60.7927], [11.1344, 60.7927], [11.1342, 60.7927], [11.1341, 60.7927], [11.134, 60.7927], [11.134, 60.7926], [11.1338, 60.7927], [11.1338, 60.7927], [11.1337, 60.7927], [11.1337, 60.7927], [11.1336, 60.7927], [11.1336, 60.7927], [11.1336, 60.7928], [11.1336, 60.7928]]]}}, {"type": "Feature", "properties": {"sub_div_id": "289", "sub_div_center": [0.0015, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1349, 60.79], [11.1349, 60.79], [11.1349, 60.7901], [11.1349, 60.7901], [11.1351, 60.7901], [11.1354, 60.7901], [11.1355, 60.79], [11.1357, 60.79], [11.1359, 60.79], [11.136, 60.79], [11.1362, 60.79], [11.1363, 60.7899], [11.1362, 60.7899], [11.1359, 60.7899], [11.1357, 60.7899], [11.1356, 60.7899], [11.1354, 60.7898], [11.135, 60.7899], [11.1348, 60.7899], [11.1348, 60.7899], [11.1349, 60.79]]]}}, {"type": "Feature", "properties": {"sub_div_id": "290", "sub_div_center": [0.0013, 0.0007]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1364, 60.7906], [11.1366, 60.7905], [11.1367, 60.7905], [11.1368, 60.7904], [11.1369, 60.7904], [11.1368, 60.7905], [11.1367, 60.7905], [11.1366, 60.7906], [11.1367, 60.7906], [11.1368, 60.7906], [11.1369, 60.7906], [11.137, 60.7906], [11.1371, 60.7906], [11.1372, 60.7907], [11.1373, 60.7907], [11.1373, 60.7908], [11.1374, 60.7909], [11.1374, 60.7909], [11.1375, 60.7909], [11.1376, 60.7908], [11.1376, 60.7907], [11.1376, 60.7907], [11.1375, 60.7906], [11.1375, 60.7905], [11.1375, 60.7904], [11.1375, 60.7903], [11.1375, 60.7903], [11.1373, 60.7902], [11.1372, 60.7902], [11.137, 60.7902], [11.1369, 60.7902], [11.1368, 60.7903], [11.1365, 60.7903], [11.1364, 60.7903], [11.1364, 60.7904], [11.1364, 60.7904], [11.1364, 60.7905], [11.1363, 60.7906], [11.1364, 60.7906]]]}}, {"type": "Feature", "properties": {"sub_div_id": "291", "sub_div_center": [0.0011, 0.0005]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1361, 60.791], [11.1361, 60.7911], [11.1362, 60.7911], [11.1363, 60.7912], [11.1364, 60.7911], [11.1366, 60.7911], [11.1367, 60.791], [11.1369, 60.791], [11.137, 60.791], [11.1371, 60.7909], [11.137, 60.7908], [11.1369, 60.7907], [11.1368, 60.7907], [11.1366, 60.7907], [11.1364, 60.7907], [11.1363, 60.7907], [11.1362, 60.7908], [11.1361, 60.7909], [11.136, 60.791], [11.1361, 60.791]]]}}, {"type": "Feature", "properties": {"sub_div_id": "292", "sub_div_center": [0.0009, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.139, 60.7914], [11.139, 60.7915], [11.1392, 60.7914], [11.1393, 60.7914], [11.1395, 60.7913], [11.1397, 60.7912], [11.1398, 60.7911], [11.1397, 60.7911], [11.1395, 60.7911], [11.139, 60.7914], [11.1389, 60.7914], [11.139, 60.7914]]]}}, {"type": "Feature", "properties": {"sub_div_id": "293", "sub_div_center": [0.0002, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1144, 60.8015], [11.1145, 60.8015], [11.1145, 60.8014], [11.1145, 60.8014], [11.1145, 60.8014], [11.1144, 60.8013], [11.1144, 60.8014], [11.1144, 60.8014], [11.1144, 60.8015], [11.1144, 60.8015], [11.1144, 60.8015]]]}}, {"type": "Feature", "properties": {"sub_div_id": "294", "sub_div_center": [0.0003, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1058, 60.8017], [11.1059, 60.8017], [11.106, 60.8017], [11.106, 60.8017], [11.1061, 60.8016], [11.1061, 60.8016], [11.1061, 60.8015], [11.1061, 60.8015], [11.106, 60.8015], [11.106, 60.8015], [11.106, 60.8016], [11.1058, 60.8016], [11.1058, 60.8017], [11.1058, 60.8017]]]}}, {"type": "Feature", "properties": {"sub_div_id": "295", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1122, 60.8025], [11.1123, 60.8025], [11.1123, 60.8025], [11.1123, 60.8025], [11.1122, 60.8025], [11.1122, 60.8025], [11.1122, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "296", "sub_div_center": [0.0002, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1087, 60.8023], [11.1087, 60.8023], [11.1088, 60.8023], [11.1088, 60.8023], [11.1089, 60.8023], [11.1088, 60.8022], [11.1087, 60.8022], [11.1087, 60.8023], [11.1086, 60.8023], [11.1087, 60.8023]]]}}, {"type": "Feature", "properties": {"sub_div_id": "297", "sub_div_center": [0.0003, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1103, 60.8025], [11.1103, 60.8025], [11.1104, 60.8025], [11.1104, 60.8025], [11.1105, 60.8025], [11.1105, 60.8025], [11.1106, 60.8024], [11.1105, 60.8024], [11.1105, 60.8024], [11.1105, 60.8024], [11.1104, 60.8024], [11.1103, 60.8024], [11.1103, 60.8024], [11.1103, 60.8024], [11.1103, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "298", "sub_div_center": [0.0009, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1088, 60.8021], [11.1089, 60.8021], [11.109, 60.802], [11.109, 60.802], [11.1092, 60.802], [11.1094, 60.802], [11.1095, 60.802], [11.1095, 60.802], [11.1096, 60.8019], [11.1096, 60.8019], [11.1097, 60.8019], [11.1097, 60.8018], [11.1096, 60.8018], [11.1095, 60.8019], [11.1095, 60.8018], [11.1094, 60.8019], [11.1093, 60.8019], [11.1092, 60.8019], [11.1091, 60.8019], [11.109, 60.8019], [11.1089, 60.8019], [11.1089, 60.802], [11.1088, 60.802], [11.1088, 60.8021], [11.1088, 60.8021]]]}}, {"type": "Feature", "properties": {"sub_div_id": "299", "sub_div_center": [0.0007, 0.0004]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1075, 60.8025], [11.1075, 60.8025], [11.1076, 60.8026], [11.1077, 60.8025], [11.1079, 60.8024], [11.108, 60.8024], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8022], [11.108, 60.8022], [11.1078, 60.8022], [11.1078, 60.8023], [11.1077, 60.8023], [11.1077, 60.8023], [11.1076, 60.8023], [11.1076, 60.8024], [11.1075, 60.8024], [11.1074, 60.8024], [11.1073, 60.8025], [11.1075, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "300", "sub_div_center": [0.0001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2088, 60.592], [11.2088, 60.592], [11.2089, 60.5919], [11.2089, 60.5919], [11.2088, 60.5919], [11.2088, 60.5919], [11.2088, 60.592], [11.2088, 60.592]]]}}, {"type": "Feature", "properties": {"sub_div_id": "301", "sub_div_center": [0.0003, 0.0005]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2086, 60.5919], [11.2087, 60.592], [11.2087, 60.5919], [11.2088, 60.5918], [11.2088, 60.5918], [11.2088, 60.5917], [11.2089, 60.5917], [11.2089, 60.5917], [11.2089, 60.5916], [11.2089, 60.5916], [11.2089, 60.5915], [11.2089, 60.5915], [11.2089, 60.5914], [11.2088, 60.5914], [11.2087, 60.5915], [11.2087, 60.5915], [11.2087, 60.5916], [11.2087, 60.5917], [11.2086, 60.5918], [11.2086, 60.5918], [11.2086, 60.5919]]]}}, {"type": "Feature", "properties": {"sub_div_id": "302", "sub_div_center": [0.0004, 0.0003]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6067, 60.9703], [10.6068, 60.9704], [10.6069, 60.9705], [10.607, 60.9705], [10.607, 60.9704], [10.607, 60.9703], [10.607, 60.9702], [10.607, 60.9701], [10.6069, 60.9701], [10.6067, 60.9701], [10.6067, 60.9702], [10.6067, 60.9703], [10.6067, 60.9703]]]}}, {"type": "Feature", "properties": {"sub_div_id": "303", "sub_div_center": [0.001, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6244, 60.9624], [10.6245, 60.9624], [10.6246, 60.9625], [10.6247, 60.9625], [10.625, 60.9625], [10.6251, 60.9624], [10.6253, 60.9624], [10.6254, 60.9624], [10.6253, 60.9624], [10.6251, 60.9624], [10.625, 60.9624], [10.6249, 60.9624], [10.6248, 60.9624], [10.6246, 60.9624], [10.6245, 60.9623], [10.6244, 60.9623], [10.6244, 60.9624], [10.6244, 60.9624]]]}}, {"type": "Feature", "properties": {"sub_div_id": "304", "sub_div_center": [0.0005, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6781, 60.8876], [10.6782, 60.8876], [10.6784, 60.8876], [10.6785, 60.8876], [10.6785, 60.8876], [10.6785, 60.8876], [10.6784, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "305", "sub_div_center": [0.0004, 0.0001]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6776, 60.8876], [10.6777, 60.8877], [10.6779, 60.8877], [10.6779, 60.8877], [10.678, 60.8877], [10.6779, 60.8877], [10.6778, 60.8876], [10.6777, 60.8876], [10.6776, 60.8876], [10.6776, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "306", "sub_div_center": [0.0001, 0.0]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6776, 60.8876], [10.6777, 60.8877], [10.6779, 60.8877], [10.6779, 60.8877], [10.678, 60.8877], [10.6779, 60.8877], [10.6778, 60.8876], [10.6777, 60.8876], [10.6776, 60.8876], [10.6776, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "307", "sub_div_center": [0.0004, 0.0002]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6073, 60.9698], [10.6073, 60.9698], [10.6074, 60.9699], [10.6075, 60.9699], [10.6076, 60.9699], [10.6077, 60.9699], [10.6077, 60.9699], [10.6077, 60.9699], [10.6075, 60.9698], [10.6074, 60.9698], [10.6074, 60.9697], [10.6073, 60.9697], [10.6073, 60.9697], [10.6073, 60.9698], [10.6073, 60.9698]]]}}], "tile_count": 308} \ No newline at end of file diff --git a/server/map_handler/lake_relations/mjosa.geojson "b/server/map_handler/lake_relations/mj\303\270sa.geojson" similarity index 100% rename from server/map_handler/lake_relations/mjosa.geojson rename to "server/map_handler/lake_relations/mj\303\270sa.geojson" diff --git "a/server/map_handler/lake_relations/mj\303\270sa_div.json" "b/server/map_handler/lake_relations/mj\303\270sa_div.json" new file mode 100644 index 0000000000000000000000000000000000000000..5a9eebaeb99a2feeca1340e3156319484214c114 --- /dev/null +++ "b/server/map_handler/lake_relations/mj\303\270sa_div.json" @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [61.076856, 10.430419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4304, 61.0788], [10.4304, 61.0789], [10.4304, 61.0791], [10.4305, 61.0793], [10.4305, 61.0794], [10.4305, 61.0794], [10.4305, 61.0795], [10.4305, 61.0795], [10.4305, 61.0796], [10.4306, 61.0796], [10.4306, 61.0797], [10.4307, 61.0798], [10.4309, 61.0798], [10.431, 61.0799], [10.4313, 61.0801], [10.4314, 61.0802], [10.4315, 61.0803], [10.4316, 61.0804], [10.4316, 61.0805], [10.4316, 61.0806], [10.4315, 61.0806], [10.4314, 61.0806], [10.4314, 61.0806], [10.4312, 61.0806], [10.4311, 61.0806], [10.431, 61.0806], [10.4309, 61.0806], [10.4309, 61.0807], [10.4309, 61.0808], [10.431, 61.0809], [10.431, 61.081], [10.4311, 61.081], [10.4312, 61.0811], [10.4313, 61.0811], [10.4314, 61.0811], [10.4314, 61.0812], [10.4314, 61.0812], [10.4313, 61.0813], [10.4313, 61.0814], [10.4312, 61.0814], [10.4312, 61.0814], [10.4312, 61.0814], [10.4312, 61.0815], [10.4313, 61.0815], [10.4313, 61.0816], [10.4313, 61.0817], [10.4312, 61.0817], [10.4312, 61.0818], [10.4312, 61.0818], [10.4312, 61.0819], [10.4313, 61.082], [10.4313, 61.082], [10.4313, 61.0821], [10.4314, 61.0821], [10.4315, 61.0822], [10.4315, 61.0822], [10.4315, 61.0823], [10.4315, 61.0824], [10.4315, 61.0824], [10.4314, 61.0824], [10.4314, 61.0825], [10.4314, 61.0825], [10.4314, 61.0827], [10.4314, 61.0828], [10.4315, 61.0828], [10.4315, 61.0829], [10.4315, 61.083], [10.4315, 61.083], [10.4315, 61.0831], [10.4316, 61.0831], [10.4316, 61.0831], [10.4317, 61.0831], [10.4317, 61.0831], [10.4317, 61.0832], [10.4318, 61.0832], [10.4318, 61.0833], [10.4318, 61.0833], [10.4318, 61.0834], [10.4317, 61.0834], [10.4318, 61.0834], [10.4318, 61.0835], [10.4318, 61.0835], [10.4318, 61.0836], [10.4318, 61.0837], [10.4319, 61.0838], [10.432, 61.0838], [10.432, 61.0839], [10.4321, 61.0839], [10.432, 61.084], [10.4321, 61.084], [10.4322, 61.0841], [10.4321, 61.0841], [10.4321, 61.0842], [10.4321, 61.0843], [10.432, 61.0844], [10.4319, 61.0844], [10.4319, 61.0845], [10.4319, 61.0846], [10.4319, 61.0846], [10.4319, 61.0847], [10.432, 61.0849], [10.432, 61.0851], [10.4321, 61.0852], [10.4321, 61.0852], [10.4322, 61.0853], [10.4322, 61.0854], [10.4321, 61.0856], [10.432, 61.0859], [10.432, 61.086], [10.432, 61.0861], [10.4319, 61.0862], [10.4318, 61.0862], [10.4318, 61.0862], [10.4316, 61.0864], [10.4315, 61.0864], [10.4315, 61.0865], [10.4315, 61.0866], [10.4315, 61.0867], [10.4314, 61.0869], [10.4314, 61.087], [10.4314, 61.0871], [10.4314, 61.0871], [10.4315, 61.0872], [10.4316, 61.0873], [10.4316, 61.0873], [10.4317, 61.0874], [10.4316, 61.0875], [10.4315, 61.0876], [10.4314, 61.0877], [10.4313, 61.0878], [10.4312, 61.088], [10.4312, 61.0881], [10.4312, 61.0882], [10.4312, 61.0887], [10.4313, 61.0888], [10.4314, 61.0889], [10.4314, 61.0891], [10.4314, 61.0892], [10.4315, 61.0892], [10.4315, 61.0893], [10.4317, 61.0893], [10.4318, 61.0893], [10.432, 61.0893], [10.4321, 61.0893], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0894], [10.4321, 61.0895], [10.4323, 61.0895], [10.4323, 61.0895], [10.4324, 61.0897], [10.4326, 61.0898], [10.4326, 61.0898], [10.4326, 61.0898], [10.4326, 61.0899], [10.4325, 61.09], [10.4326, 61.0901], [10.4327, 61.0902], [10.4327, 61.0902], [10.4327, 61.0903], [10.4327, 61.0903], [10.4328, 61.0904], [10.4328, 61.0905], [10.4328, 61.0905], [10.4328, 61.0906], [10.4328, 61.0906], [10.4328, 61.0908], [10.4328, 61.0908], [10.4328, 61.0909], [10.4329, 61.0909], [10.4329, 61.0909], [10.433, 61.0909], [10.4331, 61.0911], [10.4332, 61.0912], [10.4333, 61.0913], [10.4334, 61.0914], [10.4334, 61.0915], [10.4335, 61.0916], [10.4337, 61.0917], [10.4339, 61.0917], [10.4341, 61.0917], [10.4342, 61.0917], [10.4343, 61.0918], [10.4343, 61.0918], [10.4344, 61.0918], [10.4344, 61.0919], [10.4344, 61.0919], [10.4345, 61.0919], [10.4345, 61.0919], [10.4346, 61.0919], [10.4347, 61.0919], [10.4347, 61.0919], [10.4347, 61.0919], [10.4347, 61.092], [10.4346, 61.092], [10.4347, 61.092], [10.4349, 61.0921], [10.4349, 61.0921], [10.435, 61.0922], [10.435, 61.0922], [10.4351, 61.0923], [10.4352, 61.0924], [10.4353, 61.0925], [10.4353, 61.0925], [10.4354, 61.0926], [10.4354, 61.0927], [10.4354, 61.0928], [10.4354, 61.093], [10.4356, 61.0931], [10.4357, 61.0932], [10.4357, 61.0933], [10.4356, 61.0934], [10.4357, 61.0934], [10.4357, 61.0935], [10.4356, 61.0936], [10.4355, 61.0937], [10.4355, 61.0938], [10.4354, 61.0938], [10.4353, 61.0939], [10.4353, 61.094], [10.4354, 61.0942], [10.4354, 61.0945], [10.4355, 61.0949], [10.4356, 61.0953], [10.4358, 61.0958], [10.4361, 61.0961], [10.4362, 61.0963], [10.4364, 61.0964], [10.4364, 61.0964], [10.4364, 61.0965], [10.4366, 61.0966], [10.4367, 61.0966], [10.4367, 61.0967], [10.4369, 61.0968], [10.4369, 61.0969], [10.4649, 61.0969], [10.4649, 61.0969], [10.4649, 61.0967], [10.4648, 61.0966], [10.4648, 61.0964], [10.4647, 61.0964], [10.4647, 61.0963], [10.4645, 61.0963], [10.4646, 61.0962], [10.4643, 61.0961], [10.4639, 61.096], [10.4638, 61.096], [10.4638, 61.0959], [10.4637, 61.0958], [10.4637, 61.0957], [10.4636, 61.0956], [10.4636, 61.0955], [10.4635, 61.0953], [10.4635, 61.0951], [10.4635, 61.0949], [10.4634, 61.0947], [10.4634, 61.0944], [10.4634, 61.0942], [10.4634, 61.0941], [10.4633, 61.0939], [10.4633, 61.0937], [10.4632, 61.0936], [10.4632, 61.0935], [10.4632, 61.0935], [10.4633, 61.0934], [10.4631, 61.0934], [10.463, 61.0934], [10.4629, 61.0934], [10.4629, 61.0933], [10.4629, 61.0933], [10.463, 61.0933], [10.4631, 61.0932], [10.463, 61.0932], [10.4631, 61.0932], [10.4631, 61.0931], [10.4631, 61.0931], [10.4631, 61.0931], [10.4631, 61.093], [10.4631, 61.093], [10.4631, 61.093], [10.4631, 61.0929], [10.4632, 61.0928], [10.4631, 61.0928], [10.4631, 61.0927], [10.463, 61.0927], [10.463, 61.0926], [10.4629, 61.0926], [10.4629, 61.0926], [10.463, 61.0926], [10.463, 61.0925], [10.463, 61.0925], [10.4631, 61.0925], [10.4632, 61.0923], [10.4633, 61.0922], [10.4633, 61.0921], [10.4634, 61.092], [10.4633, 61.092], [10.4633, 61.0919], [10.4632, 61.0918], [10.4631, 61.0918], [10.463, 61.0917], [10.4629, 61.0917], [10.4628, 61.0917], [10.4627, 61.0916], [10.4626, 61.0915], [10.4625, 61.0915], [10.4624, 61.0915], [10.4623, 61.0914], [10.4623, 61.0914], [10.4625, 61.0914], [10.4625, 61.0913], [10.4625, 61.0913], [10.4624, 61.0913], [10.4624, 61.0912], [10.4625, 61.0912], [10.4625, 61.0912], [10.4625, 61.0911], [10.4624, 61.0911], [10.4623, 61.091], [10.4622, 61.0909], [10.4621, 61.0908], [10.462, 61.0907], [10.462, 61.0907], [10.462, 61.0906], [10.462, 61.0905], [10.462, 61.0903], [10.462, 61.0902], [10.4619, 61.0901], [10.462, 61.09], [10.4619, 61.0899], [10.4619, 61.0899], [10.4619, 61.0898], [10.462, 61.0898], [10.4619, 61.0897], [10.4618, 61.0896], [10.4618, 61.0896], [10.4617, 61.0896], [10.4617, 61.0895], [10.4617, 61.0895], [10.4617, 61.0895], [10.4616, 61.0894], [10.4615, 61.0894], [10.4615, 61.0894], [10.4615, 61.0893], [10.4615, 61.0893], [10.4615, 61.0893], [10.4615, 61.0892], [10.4614, 61.0892], [10.4614, 61.0892], [10.4615, 61.0892], [10.4614, 61.0891], [10.4614, 61.0891], [10.4615, 61.0891], [10.4615, 61.089], [10.4615, 61.089], [10.4615, 61.089], [10.4614, 61.0889], [10.4614, 61.0889], [10.4614, 61.0888], [10.4614, 61.0888], [10.4614, 61.0888], [10.4615, 61.0888], [10.4616, 61.0887], [10.4615, 61.0887], [10.4616, 61.0887], [10.4616, 61.0886], [10.4616, 61.0886], [10.4615, 61.0886], [10.4615, 61.0886], [10.4615, 61.0886], [10.4616, 61.0886], [10.4616, 61.0885], [10.4616, 61.0885], [10.4616, 61.0885], [10.4615, 61.0884], [10.4615, 61.0884], [10.4614, 61.0883], [10.4614, 61.0883], [10.4614, 61.0883], [10.4615, 61.0883], [10.4614, 61.0882], [10.4614, 61.0882], [10.4614, 61.0881], [10.4614, 61.0881], [10.4614, 61.0881], [10.4614, 61.088], [10.4614, 61.088], [10.4614, 61.088], [10.4615, 61.088], [10.4615, 61.0879], [10.4615, 61.0879], [10.4615, 61.0879], [10.4614, 61.0878], [10.4614, 61.0878], [10.4614, 61.0878], [10.4614, 61.0877], [10.4614, 61.0877], [10.4614, 61.0877], [10.4615, 61.0877], [10.4614, 61.0876], [10.4614, 61.0876], [10.4614, 61.0876], [10.4614, 61.0875], [10.4614, 61.0875], [10.4614, 61.0874], [10.4614, 61.0874], [10.4614, 61.0874], [10.4615, 61.0874], [10.4615, 61.0873], [10.4615, 61.0873], [10.4615, 61.0872], [10.4614, 61.0872], [10.4615, 61.0872], [10.4615, 61.0871], [10.4615, 61.0871], [10.4616, 61.0871], [10.4616, 61.087], [10.4616, 61.0869], [10.4615, 61.0869], [10.4615, 61.0868], [10.4614, 61.0868], [10.4614, 61.0867], [10.4613, 61.0867], [10.4613, 61.0867], [10.4614, 61.0867], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0866], [10.4614, 61.0865], [10.4614, 61.0865], [10.4613, 61.0865], [10.4613, 61.0864], [10.4613, 61.0864], [10.4615, 61.0863], [10.4615, 61.0862], [10.4614, 61.0861], [10.4615, 61.0861], [10.4616, 61.0861], [10.4617, 61.0859], [10.4617, 61.0859], [10.4618, 61.0858], [10.4618, 61.0857], [10.4619, 61.0855], [10.4619, 61.0854], [10.4617, 61.0852], [10.4613, 61.085], [10.4611, 61.0849], [10.461, 61.0847], [10.461, 61.0846], [10.4611, 61.0845], [10.4611, 61.0844], [10.4611, 61.0843], [10.461, 61.0841], [10.461, 61.0841], [10.4609, 61.084], [10.4609, 61.084], [10.4609, 61.084], [10.4609, 61.0839], [10.4609, 61.0839], [10.4609, 61.0839], [10.4609, 61.0838], [10.4608, 61.0838], [10.4608, 61.0838], [10.4609, 61.0838], [10.4609, 61.0837], [10.4609, 61.0836], [10.4609, 61.0835], [10.4609, 61.0834], [10.4608, 61.0834], [10.4608, 61.0834], [10.4608, 61.0833], [10.4606, 61.0832], [10.4606, 61.0831], [10.4605, 61.0831], [10.4604, 61.083], [10.4605, 61.083], [10.4605, 61.083], [10.4605, 61.083], [10.4605, 61.0829], [10.4603, 61.0829], [10.4603, 61.0828], [10.4603, 61.0827], [10.4604, 61.0826], [10.4605, 61.0826], [10.4605, 61.0826], [10.4605, 61.0825], [10.4605, 61.0824], [10.4603, 61.0824], [10.4603, 61.0823], [10.4603, 61.0822], [10.4602, 61.0822], [10.4601, 61.0822], [10.4601, 61.0822], [10.46, 61.0821], [10.4601, 61.0821], [10.46, 61.082], [10.4599, 61.082], [10.4599, 61.082], [10.46, 61.082], [10.46, 61.0819], [10.46, 61.0818], [10.4599, 61.0818], [10.4598, 61.0818], [10.4597, 61.0817], [10.4596, 61.0816], [10.4596, 61.0815], [10.4595, 61.0814], [10.4596, 61.0813], [10.4596, 61.0813], [10.4596, 61.0813], [10.4596, 61.0812], [10.4596, 61.0812], [10.4596, 61.0812], [10.4595, 61.0812], [10.4594, 61.0812], [10.4593, 61.0811], [10.4593, 61.0811], [10.4594, 61.0811], [10.4594, 61.081], [10.4594, 61.0809], [10.4593, 61.0808], [10.4593, 61.0808], [10.4592, 61.0807], [10.4592, 61.0806], [10.4591, 61.0806], [10.4591, 61.0806], [10.4592, 61.0806], [10.4592, 61.0806], [10.4592, 61.0805], [10.4592, 61.0805], [10.4592, 61.0804], [10.4591, 61.0804], [10.4591, 61.0803], [10.4591, 61.08], [10.459, 61.0798], [10.4589, 61.0797], [10.4589, 61.0795], [10.4589, 61.0794], [10.4589, 61.0792], [10.4589, 61.0791], [10.459, 61.0791], [10.459, 61.079], [10.4589, 61.0789], [10.4588, 61.0788], [10.4588, 61.0787], [10.4588, 61.0786], [10.4588, 61.0785], [10.4588, 61.0785], [10.4589, 61.0785], [10.4588, 61.0784], [10.4589, 61.0783], [10.4589, 61.0783], [10.4589, 61.0782], [10.4589, 61.0781], [10.4589, 61.0779], [10.4588, 61.0778], [10.4587, 61.0776], [10.4588, 61.0775], [10.4587, 61.0774], [10.4586, 61.0772], [10.4587, 61.0772], [10.4587, 61.0771], [10.4586, 61.077], [10.4586, 61.0769], [10.4586, 61.0769], [10.431, 61.0769], [10.4309, 61.077], [10.4309, 61.0771], [10.4308, 61.0772], [10.4308, 61.0773], [10.4308, 61.0774], [10.4308, 61.0774], [10.4309, 61.0775], [10.4309, 61.0776], [10.4309, 61.0776], [10.4308, 61.0777], [10.4307, 61.0778], [10.4306, 61.0779], [10.4306, 61.0781], [10.4305, 61.0783], [10.4304, 61.0785], [10.4304, 61.0787], [10.4304, 61.0788]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [61.056856, 10.430961]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4586, 61.0769], [10.4586, 61.0768], [10.4586, 61.0767], [10.4586, 61.0766], [10.4585, 61.0762], [10.4584, 61.0761], [10.4584, 61.076], [10.4584, 61.0758], [10.4584, 61.0756], [10.4584, 61.0754], [10.4583, 61.0753], [10.4583, 61.0751], [10.4582, 61.0747], [10.4581, 61.0746], [10.4579, 61.0745], [10.4579, 61.0744], [10.4578, 61.0742], [10.4576, 61.0743], [10.4575, 61.074], [10.4574, 61.0738], [10.4573, 61.0738], [10.4572, 61.0734], [10.4572, 61.0733], [10.457, 61.0732], [10.457, 61.073], [10.4571, 61.073], [10.4571, 61.0728], [10.457, 61.0726], [10.457, 61.0725], [10.4569, 61.0724], [10.4568, 61.0721], [10.4567, 61.072], [10.4567, 61.0719], [10.4567, 61.0718], [10.4566, 61.0715], [10.4566, 61.0713], [10.4566, 61.0711], [10.4565, 61.071], [10.4566, 61.0709], [10.4565, 61.0708], [10.4565, 61.0706], [10.4564, 61.0704], [10.4564, 61.0703], [10.4565, 61.0702], [10.4564, 61.0702], [10.4564, 61.0701], [10.4565, 61.0701], [10.4565, 61.07], [10.4564, 61.07], [10.4564, 61.0699], [10.4564, 61.0698], [10.4564, 61.0697], [10.4563, 61.0696], [10.4565, 61.0694], [10.4566, 61.0693], [10.4565, 61.0692], [10.4565, 61.0692], [10.4567, 61.0691], [10.4567, 61.0689], [10.4567, 61.0688], [10.4567, 61.0686], [10.4568, 61.0684], [10.4568, 61.0682], [10.4567, 61.068], [10.4567, 61.0679], [10.4567, 61.0677], [10.4565, 61.0677], [10.4565, 61.0677], [10.4565, 61.0676], [10.4566, 61.0676], [10.4567, 61.0674], [10.4568, 61.0672], [10.4568, 61.067], [10.4568, 61.0668], [10.4567, 61.0666], [10.4566, 61.0663], [10.4565, 61.0662], [10.4563, 61.066], [10.4561, 61.0656], [10.456, 61.0654], [10.4558, 61.0651], [10.4554, 61.0646], [10.4553, 61.0645], [10.4552, 61.0644], [10.4551, 61.0643], [10.4549, 61.0641], [10.4549, 61.064], [10.4551, 61.0637], [10.4552, 61.0634], [10.4552, 61.0631], [10.4552, 61.0629], [10.4552, 61.0628], [10.4552, 61.0627], [10.4551, 61.0625], [10.455, 61.0624], [10.4549, 61.0624], [10.4547, 61.0624], [10.4547, 61.0623], [10.4549, 61.0622], [10.455, 61.0621], [10.4549, 61.062], [10.4548, 61.0619], [10.455, 61.0616], [10.455, 61.0615], [10.455, 61.0614], [10.4556, 61.0611], [10.4559, 61.0608], [10.4563, 61.0604], [10.4567, 61.0602], [10.4569, 61.0598], [10.4573, 61.059], [10.4575, 61.0589], [10.4576, 61.0585], [10.4578, 61.0579], [10.4579, 61.0575], [10.458, 61.0574], [10.458, 61.0571], [10.4582, 61.0569], [10.4333, 61.0569], [10.4333, 61.0569], [10.4329, 61.0574], [10.4325, 61.0578], [10.4321, 61.0583], [10.432, 61.0585], [10.432, 61.0587], [10.432, 61.059], [10.432, 61.0592], [10.4319, 61.0593], [10.4319, 61.0594], [10.432, 61.0597], [10.432, 61.0598], [10.432, 61.0599], [10.432, 61.0599], [10.4321, 61.0602], [10.4321, 61.0603], [10.432, 61.0604], [10.4319, 61.0606], [10.4319, 61.0607], [10.4318, 61.0608], [10.4316, 61.061], [10.4316, 61.0611], [10.4315, 61.0612], [10.4314, 61.0613], [10.4314, 61.0614], [10.4313, 61.0615], [10.4313, 61.0616], [10.4313, 61.0618], [10.4313, 61.0619], [10.4313, 61.0619], [10.4312, 61.0621], [10.4312, 61.0622], [10.4312, 61.0624], [10.4312, 61.0625], [10.4313, 61.0627], [10.4313, 61.0628], [10.4313, 61.0629], [10.4313, 61.063], [10.4313, 61.0631], [10.4314, 61.0633], [10.4314, 61.0634], [10.4314, 61.0635], [10.4314, 61.0635], [10.4314, 61.0636], [10.4315, 61.0637], [10.4315, 61.0638], [10.4316, 61.0638], [10.4315, 61.0639], [10.4315, 61.064], [10.4315, 61.064], [10.4316, 61.0641], [10.4316, 61.0641], [10.4315, 61.0641], [10.4315, 61.0642], [10.4314, 61.0643], [10.4314, 61.0645], [10.4313, 61.0646], [10.4312, 61.0647], [10.4312, 61.0648], [10.4311, 61.0649], [10.4311, 61.065], [10.4311, 61.0651], [10.4311, 61.0652], [10.4311, 61.0652], [10.4311, 61.0653], [10.4311, 61.0654], [10.4311, 61.0655], [10.4311, 61.0656], [10.4311, 61.0657], [10.431, 61.0661], [10.431, 61.0662], [10.431, 61.0664], [10.431, 61.0667], [10.431, 61.067], [10.431, 61.0671], [10.4311, 61.0672], [10.4311, 61.0674], [10.4311, 61.0675], [10.4312, 61.0677], [10.4311, 61.0678], [10.4311, 61.0678], [10.4311, 61.0679], [10.4311, 61.0681], [10.4311, 61.0681], [10.4311, 61.0682], [10.4311, 61.0682], [10.4311, 61.0684], [10.4312, 61.0684], [10.4312, 61.0684], [10.4311, 61.0685], [10.4311, 61.0686], [10.431, 61.0687], [10.431, 61.0688], [10.431, 61.0689], [10.4311, 61.0692], [10.4311, 61.0694], [10.4311, 61.0695], [10.4312, 61.0697], [10.4313, 61.0699], [10.4313, 61.0699], [10.4314, 61.07], [10.4313, 61.0701], [10.4313, 61.0702], [10.4314, 61.0704], [10.4315, 61.0707], [10.4315, 61.0708], [10.4316, 61.0709], [10.4316, 61.0709], [10.4316, 61.0711], [10.4316, 61.0711], [10.4316, 61.0713], [10.4316, 61.0714], [10.4317, 61.0715], [10.4317, 61.0716], [10.4318, 61.0717], [10.4318, 61.0717], [10.4319, 61.0718], [10.432, 61.0718], [10.4322, 61.0719], [10.4323, 61.0719], [10.4324, 61.072], [10.4323, 61.0721], [10.4322, 61.0721], [10.4322, 61.0721], [10.4322, 61.0722], [10.4322, 61.0723], [10.4323, 61.0723], [10.4323, 61.0724], [10.4324, 61.0725], [10.4325, 61.0726], [10.4326, 61.0726], [10.4327, 61.0728], [10.4328, 61.0728], [10.4328, 61.0729], [10.4328, 61.0729], [10.433, 61.0729], [10.433, 61.0729], [10.4328, 61.0729], [10.4328, 61.073], [10.4328, 61.0731], [10.4328, 61.0732], [10.4327, 61.0733], [10.4325, 61.0734], [10.4323, 61.0735], [10.4322, 61.0736], [10.4321, 61.0738], [10.4319, 61.0738], [10.4319, 61.0739], [10.4318, 61.074], [10.4318, 61.0741], [10.4318, 61.0742], [10.4318, 61.0743], [10.4318, 61.0744], [10.4318, 61.0745], [10.4317, 61.0746], [10.4317, 61.0747], [10.4317, 61.0749], [10.4317, 61.075], [10.4318, 61.075], [10.4318, 61.075], [10.4318, 61.075], [10.4319, 61.075], [10.4319, 61.075], [10.4318, 61.075], [10.4317, 61.075], [10.4317, 61.0751], [10.4317, 61.0752], [10.4317, 61.0753], [10.4317, 61.0754], [10.4316, 61.0755], [10.4316, 61.0756], [10.4318, 61.0756], [10.4319, 61.0756], [10.432, 61.0756], [10.432, 61.0756], [10.432, 61.0757], [10.4319, 61.0757], [10.4318, 61.0756], [10.4317, 61.0756], [10.4317, 61.0756], [10.4316, 61.0756], [10.4316, 61.0756], [10.4316, 61.0757], [10.4315, 61.0757], [10.4315, 61.0758], [10.4316, 61.0758], [10.4317, 61.0758], [10.4318, 61.0758], [10.4318, 61.0758], [10.4319, 61.0757], [10.4319, 61.0757], [10.432, 61.0757], [10.4319, 61.0758], [10.4319, 61.0758], [10.4319, 61.0758], [10.4318, 61.0758], [10.4318, 61.0758], [10.4317, 61.0758], [10.4315, 61.0758], [10.4315, 61.0759], [10.4315, 61.0759], [10.4315, 61.0759], [10.4314, 61.076], [10.4313, 61.076], [10.4314, 61.0761], [10.4314, 61.0762], [10.4314, 61.0764], [10.4314, 61.0765], [10.4312, 61.0765], [10.4311, 61.0766], [10.4311, 61.0766], [10.431, 61.0767], [10.431, 61.0767], [10.431, 61.0769], [10.4586, 61.0769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [61.036856, 10.43333]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4582, 61.0569], [10.4582, 61.0568], [10.4583, 61.0566], [10.4584, 61.0563], [10.4584, 61.056], [10.4584, 61.0555], [10.4584, 61.0552], [10.4584, 61.0548], [10.4585, 61.0546], [10.4585, 61.0545], [10.4585, 61.0542], [10.4584, 61.0541], [10.4583, 61.0538], [10.4583, 61.0534], [10.4582, 61.0533], [10.458, 61.0532], [10.4579, 61.0531], [10.4576, 61.053], [10.4578, 61.0527], [10.458, 61.0526], [10.4583, 61.0524], [10.4586, 61.0521], [10.4588, 61.0518], [10.4589, 61.0517], [10.4589, 61.0516], [10.4588, 61.0514], [10.4586, 61.0511], [10.4587, 61.051], [10.4589, 61.0509], [10.4591, 61.0508], [10.4593, 61.0507], [10.4594, 61.0505], [10.4594, 61.0504], [10.4595, 61.0503], [10.4595, 61.0502], [10.4595, 61.05], [10.4593, 61.05], [10.4593, 61.05], [10.4594, 61.05], [10.4594, 61.05], [10.4595, 61.05], [10.4595, 61.0499], [10.4593, 61.0498], [10.4593, 61.0496], [10.4592, 61.0496], [10.4592, 61.0496], [10.4593, 61.0495], [10.4594, 61.0495], [10.4597, 61.0494], [10.46, 61.0493], [10.4606, 61.0489], [10.461, 61.0486], [10.4614, 61.0483], [10.4616, 61.048], [10.4617, 61.0476], [10.462, 61.047], [10.4623, 61.0468], [10.4624, 61.0466], [10.4626, 61.0465], [10.4628, 61.0464], [10.463, 61.0463], [10.4633, 61.0462], [10.4636, 61.0461], [10.4639, 61.046], [10.4646, 61.0456], [10.465, 61.0454], [10.4655, 61.0452], [10.466, 61.045], [10.4664, 61.0448], [10.4672, 61.0444], [10.4679, 61.0441], [10.4682, 61.044], [10.4686, 61.0439], [10.4689, 61.0438], [10.4691, 61.0437], [10.4696, 61.0435], [10.4699, 61.0433], [10.4702, 61.0431], [10.4702, 61.0431], [10.4703, 61.043], [10.4704, 61.0429], [10.4704, 61.0428], [10.4704, 61.0369], [10.4416, 61.0369], [10.4416, 61.0369], [10.4415, 61.0369], [10.4415, 61.0371], [10.4415, 61.0372], [10.4414, 61.0373], [10.4413, 61.0375], [10.4412, 61.0376], [10.4411, 61.0376], [10.4411, 61.0377], [10.441, 61.0377], [10.4409, 61.0378], [10.4408, 61.0379], [10.4406, 61.038], [10.4406, 61.0381], [10.4405, 61.0383], [10.4405, 61.0383], [10.4404, 61.0384], [10.4404, 61.0384], [10.4405, 61.0385], [10.4405, 61.0385], [10.4404, 61.0386], [10.4403, 61.0388], [10.4401, 61.0389], [10.4401, 61.0389], [10.4402, 61.039], [10.4401, 61.039], [10.4401, 61.0391], [10.44, 61.0391], [10.44, 61.0391], [10.44, 61.0392], [10.44, 61.0392], [10.4401, 61.0393], [10.4401, 61.0393], [10.4402, 61.0393], [10.4401, 61.0394], [10.4399, 61.0395], [10.4397, 61.0395], [10.4395, 61.0395], [10.4394, 61.0396], [10.4393, 61.0397], [10.4392, 61.0398], [10.4392, 61.0399], [10.4392, 61.0399], [10.4392, 61.04], [10.4391, 61.04], [10.439, 61.04], [10.4389, 61.04], [10.4386, 61.0402], [10.4384, 61.0403], [10.4381, 61.0405], [10.4381, 61.0406], [10.4381, 61.0406], [10.4381, 61.0406], [10.438, 61.0406], [10.438, 61.0406], [10.4379, 61.0407], [10.4378, 61.0408], [10.4377, 61.0408], [10.4376, 61.0409], [10.4376, 61.041], [10.4375, 61.041], [10.4375, 61.0411], [10.4375, 61.0412], [10.4374, 61.0412], [10.4373, 61.0414], [10.4371, 61.0416], [10.4366, 61.0418], [10.4362, 61.042], [10.4358, 61.0423], [10.4354, 61.0426], [10.4355, 61.0427], [10.4354, 61.0428], [10.4352, 61.0429], [10.4351, 61.0429], [10.435, 61.0431], [10.4349, 61.0432], [10.435, 61.0433], [10.4352, 61.0433], [10.4352, 61.0434], [10.4352, 61.0435], [10.4352, 61.0436], [10.4353, 61.0436], [10.4353, 61.0438], [10.4354, 61.0438], [10.4354, 61.0439], [10.4354, 61.044], [10.4353, 61.0443], [10.4352, 61.0445], [10.4354, 61.0446], [10.4356, 61.0446], [10.4358, 61.0445], [10.4359, 61.0444], [10.4362, 61.0443], [10.4364, 61.0442], [10.4365, 61.0441], [10.4366, 61.0441], [10.4367, 61.044], [10.4368, 61.044], [10.4368, 61.0441], [10.4369, 61.0441], [10.437, 61.0441], [10.437, 61.0442], [10.4371, 61.0442], [10.4371, 61.0442], [10.4371, 61.0442], [10.4371, 61.0443], [10.4371, 61.0443], [10.437, 61.0443], [10.4368, 61.0444], [10.4368, 61.0445], [10.4367, 61.0445], [10.4367, 61.0446], [10.4367, 61.0446], [10.4368, 61.0447], [10.4368, 61.0447], [10.4369, 61.0448], [10.437, 61.0449], [10.4371, 61.045], [10.4371, 61.045], [10.4371, 61.045], [10.4371, 61.0451], [10.4371, 61.0451], [10.4372, 61.0452], [10.4372, 61.0452], [10.4373, 61.0452], [10.4373, 61.0453], [10.4374, 61.0453], [10.4375, 61.0453], [10.4376, 61.0453], [10.4377, 61.0453], [10.4378, 61.0453], [10.438, 61.0453], [10.4382, 61.0453], [10.4383, 61.0453], [10.4384, 61.0453], [10.4385, 61.0453], [10.4385, 61.0453], [10.4386, 61.0453], [10.4387, 61.0453], [10.4388, 61.0454], [10.4388, 61.0455], [10.4389, 61.0455], [10.4389, 61.0456], [10.439, 61.0457], [10.439, 61.0457], [10.4391, 61.0457], [10.4391, 61.0458], [10.4391, 61.0458], [10.4391, 61.0458], [10.4391, 61.0459], [10.4391, 61.0459], [10.439, 61.0459], [10.439, 61.0459], [10.439, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.046], [10.4389, 61.0459], [10.4389, 61.0459], [10.4389, 61.0459], [10.4389, 61.0459], [10.439, 61.0459], [10.439, 61.0458], [10.439, 61.0458], [10.439, 61.0458], [10.4389, 61.0457], [10.4389, 61.0457], [10.4388, 61.0456], [10.4388, 61.0455], [10.4387, 61.0455], [10.4386, 61.0454], [10.4386, 61.0454], [10.4385, 61.0453], [10.4385, 61.0453], [10.4384, 61.0453], [10.4383, 61.0453], [10.4382, 61.0453], [10.4379, 61.0454], [10.4377, 61.0454], [10.4375, 61.0454], [10.4375, 61.0454], [10.4374, 61.0455], [10.4374, 61.0455], [10.4374, 61.0455], [10.4373, 61.0455], [10.4373, 61.0456], [10.4373, 61.0456], [10.4374, 61.0456], [10.4374, 61.0457], [10.4375, 61.0457], [10.4375, 61.0457], [10.4376, 61.0457], [10.4377, 61.0458], [10.4378, 61.0458], [10.4378, 61.0458], [10.4379, 61.0458], [10.4379, 61.0458], [10.4379, 61.0458], [10.438, 61.0457], [10.438, 61.0457], [10.438, 61.0457], [10.4381, 61.0457], [10.4382, 61.0457], [10.4382, 61.0457], [10.4383, 61.0457], [10.4384, 61.0457], [10.4384, 61.0456], [10.4384, 61.0456], [10.4385, 61.0456], [10.4385, 61.0456], [10.4386, 61.0457], [10.4386, 61.0457], [10.4387, 61.0457], [10.4387, 61.0457], [10.4387, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4386, 61.0458], [10.4385, 61.0459], [10.4385, 61.0459], [10.4384, 61.0459], [10.4382, 61.0459], [10.438, 61.046], [10.4378, 61.0461], [10.4377, 61.0462], [10.4375, 61.0462], [10.4374, 61.0462], [10.4373, 61.0462], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4373, 61.0463], [10.4374, 61.0464], [10.4375, 61.0464], [10.4376, 61.0464], [10.4377, 61.0465], [10.4378, 61.0465], [10.4379, 61.0465], [10.438, 61.0465], [10.4381, 61.0465], [10.4382, 61.0466], [10.4381, 61.0466], [10.4382, 61.0467], [10.4382, 61.0467], [10.4382, 61.0467], [10.4381, 61.0467], [10.4381, 61.0468], [10.4381, 61.0468], [10.4381, 61.0469], [10.4382, 61.047], [10.4382, 61.047], [10.4382, 61.047], [10.4382, 61.047], [10.4381, 61.047], [10.4381, 61.047], [10.4381, 61.047], [10.438, 61.047], [10.4379, 61.047], [10.4378, 61.047], [10.4378, 61.047], [10.4378, 61.0471], [10.4377, 61.0472], [10.4376, 61.0472], [10.4375, 61.0473], [10.4375, 61.0473], [10.4376, 61.0474], [10.4376, 61.0474], [10.4375, 61.0474], [10.4375, 61.0474], [10.4374, 61.0474], [10.4373, 61.0474], [10.4373, 61.0474], [10.4373, 61.0475], [10.4374, 61.0475], [10.4375, 61.0475], [10.4375, 61.0475], [10.4374, 61.0476], [10.4374, 61.0476], [10.4374, 61.0476], [10.4373, 61.0476], [10.4373, 61.0476], [10.4374, 61.0476], [10.4375, 61.0477], [10.4375, 61.0477], [10.4375, 61.0477], [10.4374, 61.0477], [10.4374, 61.0478], [10.4375, 61.0478], [10.4376, 61.0478], [10.4376, 61.0479], [10.4376, 61.0479], [10.4376, 61.0479], [10.4378, 61.048], [10.4379, 61.048], [10.4379, 61.048], [10.4379, 61.048], [10.4378, 61.048], [10.4378, 61.0481], [10.4377, 61.0481], [10.4377, 61.0481], [10.4376, 61.0481], [10.4375, 61.0481], [10.4375, 61.0481], [10.4375, 61.0482], [10.4374, 61.0483], [10.4374, 61.0483], [10.4373, 61.0483], [10.4373, 61.0483], [10.4373, 61.0483], [10.4373, 61.0484], [10.4373, 61.0484], [10.4373, 61.0484], [10.4372, 61.0484], [10.4372, 61.0484], [10.4371, 61.0485], [10.437, 61.0486], [10.437, 61.0486], [10.437, 61.0486], [10.4369, 61.0487], [10.4369, 61.0487], [10.4368, 61.0489], [10.4368, 61.0491], [10.4367, 61.0492], [10.4367, 61.0493], [10.4367, 61.0493], [10.4367, 61.0493], [10.4367, 61.0494], [10.4367, 61.0495], [10.4368, 61.0495], [10.4369, 61.0496], [10.437, 61.0497], [10.4371, 61.0497], [10.4371, 61.0497], [10.4371, 61.0497], [10.4371, 61.0498], [10.437, 61.0499], [10.437, 61.05], [10.4369, 61.0501], [10.4369, 61.0502], [10.4368, 61.0502], [10.4367, 61.0502], [10.4367, 61.0502], [10.4366, 61.0502], [10.4366, 61.0502], [10.4366, 61.0502], [10.4365, 61.0502], [10.4364, 61.0502], [10.4364, 61.0502], [10.4363, 61.0502], [10.4363, 61.0502], [10.4362, 61.0503], [10.4362, 61.0504], [10.4361, 61.0504], [10.436, 61.0505], [10.4359, 61.0507], [10.4358, 61.0508], [10.4357, 61.0509], [10.4356, 61.0512], [10.4355, 61.0514], [10.4355, 61.0515], [10.4354, 61.0517], [10.4354, 61.0518], [10.4355, 61.0519], [10.4354, 61.052], [10.4355, 61.052], [10.4355, 61.052], [10.4355, 61.052], [10.4354, 61.052], [10.4354, 61.052], [10.4353, 61.0521], [10.4353, 61.0521], [10.4351, 61.0522], [10.4351, 61.0523], [10.4351, 61.0523], [10.4351, 61.0525], [10.4351, 61.0525], [10.4351, 61.0526], [10.435, 61.0526], [10.435, 61.0527], [10.435, 61.053], [10.435, 61.053], [10.4351, 61.053], [10.4351, 61.053], [10.435, 61.0531], [10.435, 61.0531], [10.435, 61.0532], [10.435, 61.0532], [10.4351, 61.0533], [10.4351, 61.0533], [10.435, 61.0534], [10.4351, 61.0534], [10.4351, 61.0534], [10.4352, 61.0535], [10.4352, 61.0535], [10.4351, 61.0535], [10.4351, 61.0535], [10.435, 61.0536], [10.435, 61.0537], [10.435, 61.0538], [10.4351, 61.0539], [10.4351, 61.0539], [10.4351, 61.0539], [10.4351, 61.054], [10.4351, 61.054], [10.4351, 61.0541], [10.435, 61.0541], [10.4349, 61.0542], [10.4349, 61.0544], [10.4349, 61.0544], [10.435, 61.0545], [10.435, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4351, 61.0545], [10.4352, 61.0545], [10.4353, 61.0545], [10.4353, 61.0545], [10.4354, 61.0546], [10.4354, 61.0546], [10.4355, 61.0546], [10.4355, 61.0546], [10.4355, 61.0547], [10.4355, 61.0547], [10.4355, 61.0548], [10.4356, 61.0548], [10.4356, 61.0548], [10.4356, 61.0549], [10.4356, 61.0549], [10.4355, 61.0549], [10.4355, 61.0549], [10.4355, 61.055], [10.4354, 61.055], [10.4354, 61.055], [10.4353, 61.055], [10.4352, 61.0551], [10.435, 61.0551], [10.4348, 61.0552], [10.4347, 61.0552], [10.4346, 61.0552], [10.4344, 61.0553], [10.4343, 61.0554], [10.4342, 61.0556], [10.4342, 61.0556], [10.4342, 61.0557], [10.434, 61.0558], [10.4339, 61.056], [10.4338, 61.0561], [10.4337, 61.0561], [10.4337, 61.0562], [10.4336, 61.0563], [10.4336, 61.0564], [10.4336, 61.0564], [10.4336, 61.0565], [10.4336, 61.0565], [10.4337, 61.0566], [10.4337, 61.0566], [10.4337, 61.0566], [10.4336, 61.0567], [10.4335, 61.0567], [10.4335, 61.0567], [10.4333, 61.0569], [10.4582, 61.0569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [61.096856, 10.436943]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4369, 61.0969], [10.437, 61.0969], [10.4373, 61.097], [10.4375, 61.0971], [10.4376, 61.0971], [10.4378, 61.0972], [10.4379, 61.0972], [10.4379, 61.0973], [10.4379, 61.0974], [10.438, 61.0975], [10.4382, 61.0976], [10.4383, 61.0977], [10.4384, 61.0977], [10.4384, 61.0978], [10.4385, 61.0978], [10.4387, 61.098], [10.4388, 61.0981], [10.4389, 61.0982], [10.4389, 61.0983], [10.4389, 61.0983], [10.439, 61.0985], [10.4391, 61.0986], [10.4392, 61.0987], [10.4394, 61.0989], [10.4394, 61.099], [10.4394, 61.0991], [10.4394, 61.0991], [10.4394, 61.0992], [10.4394, 61.0993], [10.4395, 61.0994], [10.4396, 61.0996], [10.4397, 61.0997], [10.4397, 61.0998], [10.4398, 61.0999], [10.4398, 61.0999], [10.4398, 61.1], [10.4398, 61.1], [10.4397, 61.1001], [10.4397, 61.1002], [10.4397, 61.1003], [10.4397, 61.1004], [10.4398, 61.1004], [10.4398, 61.1004], [10.4399, 61.1004], [10.44, 61.1004], [10.44, 61.1005], [10.4399, 61.1005], [10.4398, 61.1005], [10.4398, 61.1006], [10.4398, 61.1006], [10.44, 61.1007], [10.4399, 61.1008], [10.4399, 61.1011], [10.4398, 61.1013], [10.4398, 61.1015], [10.4398, 61.1017], [10.4399, 61.102], [10.4399, 61.1022], [10.4401, 61.1025], [10.4402, 61.1027], [10.4405, 61.103], [10.4406, 61.1032], [10.4407, 61.1033], [10.4408, 61.1033], [10.4408, 61.1033], [10.4409, 61.1033], [10.441, 61.1034], [10.4411, 61.1034], [10.4413, 61.1034], [10.4416, 61.1034], [10.4419, 61.1035], [10.4425, 61.1035], [10.4427, 61.1035], [10.4428, 61.1035], [10.443, 61.1035], [10.4432, 61.1034], [10.4433, 61.1034], [10.4434, 61.1034], [10.4434, 61.1034], [10.4435, 61.1033], [10.4435, 61.1033], [10.4435, 61.1032], [10.4434, 61.1031], [10.4433, 61.1029], [10.4434, 61.1029], [10.4434, 61.1029], [10.4435, 61.1031], [10.4437, 61.1031], [10.4438, 61.103], [10.4443, 61.103], [10.4445, 61.1029], [10.4446, 61.1029], [10.4447, 61.1029], [10.4448, 61.1029], [10.445, 61.1029], [10.4453, 61.1028], [10.4455, 61.1027], [10.4459, 61.1027], [10.4461, 61.1026], [10.4464, 61.1026], [10.4464, 61.1027], [10.4466, 61.1028], [10.4466, 61.1028], [10.4466, 61.1029], [10.4466, 61.1029], [10.4467, 61.103], [10.4467, 61.103], [10.4469, 61.1031], [10.447, 61.1031], [10.4471, 61.1033], [10.4472, 61.1034], [10.4472, 61.1034], [10.4473, 61.1036], [10.4475, 61.1036], [10.4476, 61.1037], [10.4478, 61.1037], [10.4481, 61.1038], [10.4484, 61.1039], [10.4486, 61.1039], [10.4487, 61.1039], [10.4486, 61.104], [10.4486, 61.104], [10.4486, 61.104], [10.4485, 61.104], [10.4484, 61.104], [10.4483, 61.104], [10.4481, 61.104], [10.4479, 61.104], [10.4478, 61.104], [10.4478, 61.104], [10.4477, 61.104], [10.4476, 61.104], [10.4472, 61.104], [10.4471, 61.104], [10.447, 61.104], [10.4469, 61.1041], [10.4467, 61.1042], [10.4466, 61.1043], [10.4465, 61.1043], [10.4464, 61.1043], [10.4464, 61.1043], [10.4465, 61.1043], [10.4465, 61.1043], [10.4465, 61.1044], [10.4465, 61.1044], [10.4464, 61.1045], [10.4464, 61.1046], [10.4464, 61.1046], [10.4464, 61.1046], [10.4464, 61.1047], [10.4464, 61.105], [10.4464, 61.1051], [10.4463, 61.1052], [10.4463, 61.1052], [10.4463, 61.1053], [10.4464, 61.1053], [10.4464, 61.1053], [10.4465, 61.1054], [10.4467, 61.1055], [10.4468, 61.1057], [10.4471, 61.1059], [10.4471, 61.1059], [10.4473, 61.106], [10.4473, 61.1061], [10.4475, 61.1062], [10.4476, 61.1062], [10.4478, 61.1062], [10.4479, 61.1062], [10.448, 61.1062], [10.4481, 61.1061], [10.4481, 61.1061], [10.4482, 61.106], [10.4482, 61.1059], [10.4483, 61.1057], [10.4483, 61.1056], [10.4484, 61.1055], [10.4484, 61.1054], [10.4484, 61.1053], [10.4484, 61.1053], [10.4484, 61.1053], [10.4485, 61.1053], [10.4485, 61.1053], [10.4485, 61.1055], [10.4485, 61.1056], [10.4485, 61.1056], [10.4484, 61.1057], [10.4483, 61.1061], [10.4482, 61.1062], [10.4481, 61.1063], [10.4479, 61.1064], [10.4478, 61.1064], [10.4476, 61.1064], [10.4475, 61.1064], [10.4474, 61.1065], [10.4474, 61.1065], [10.4473, 61.1066], [10.4471, 61.1067], [10.4468, 61.1068], [10.4467, 61.1069], [10.4467, 61.1069], [10.4466, 61.107], [10.4465, 61.107], [10.4464, 61.1071], [10.4463, 61.1071], [10.4462, 61.1072], [10.446, 61.1072], [10.4458, 61.1072], [10.4454, 61.1073], [10.4449, 61.1073], [10.4443, 61.1073], [10.444, 61.1073], [10.4438, 61.1072], [10.4436, 61.1073], [10.4435, 61.1073], [10.4434, 61.1074], [10.4432, 61.1075], [10.4432, 61.1075], [10.4431, 61.1076], [10.4429, 61.1077], [10.4429, 61.1081], [10.4428, 61.1083], [10.4428, 61.1084], [10.4428, 61.1085], [10.4429, 61.1086], [10.4429, 61.1086], [10.4429, 61.1087], [10.4429, 61.1087], [10.4428, 61.1088], [10.4428, 61.1088], [10.4428, 61.1088], [10.4427, 61.109], [10.4427, 61.1091], [10.4427, 61.1092], [10.4427, 61.1092], [10.4425, 61.1093], [10.4425, 61.1094], [10.4426, 61.1096], [10.4426, 61.1098], [10.4426, 61.1099], [10.4427, 61.1101], [10.4427, 61.1103], [10.4428, 61.1106], [10.4429, 61.1107], [10.443, 61.1109], [10.4431, 61.1111], [10.4432, 61.1113], [10.4434, 61.1116], [10.4436, 61.1119], [10.4447, 61.1133], [10.4448, 61.1134], [10.4449, 61.1135], [10.445, 61.1136], [10.4451, 61.1138], [10.4452, 61.1139], [10.4453, 61.1139], [10.4454, 61.1139], [10.4456, 61.1139], [10.4457, 61.1139], [10.4457, 61.1139], [10.4458, 61.1139], [10.4461, 61.1139], [10.4462, 61.1138], [10.4463, 61.1138], [10.4466, 61.1138], [10.4469, 61.1138], [10.4471, 61.1137], [10.4473, 61.1137], [10.4475, 61.1136], [10.4476, 61.1136], [10.4477, 61.1136], [10.4477, 61.1135], [10.4478, 61.1134], [10.4478, 61.1134], [10.4479, 61.1133], [10.448, 61.1133], [10.448, 61.1133], [10.4481, 61.1132], [10.4482, 61.1131], [10.4483, 61.1131], [10.4483, 61.1131], [10.4484, 61.113], [10.4484, 61.113], [10.4484, 61.113], [10.4484, 61.1129], [10.4484, 61.1129], [10.4484, 61.1129], [10.4486, 61.1128], [10.4486, 61.1128], [10.4486, 61.1127], [10.4487, 61.1127], [10.4487, 61.1127], [10.4489, 61.1127], [10.4491, 61.1126], [10.4492, 61.1126], [10.4493, 61.1126], [10.4494, 61.1126], [10.4494, 61.1125], [10.4495, 61.1125], [10.4496, 61.1124], [10.4498, 61.1124], [10.4499, 61.1123], [10.4501, 61.1123], [10.4503, 61.1123], [10.4505, 61.1122], [10.4506, 61.1123], [10.4507, 61.1122], [10.4509, 61.1122], [10.4511, 61.1122], [10.4512, 61.1121], [10.4513, 61.1121], [10.4515, 61.1121], [10.4516, 61.112], [10.4516, 61.112], [10.4518, 61.112], [10.4518, 61.1119], [10.4519, 61.1119], [10.4521, 61.1118], [10.4523, 61.1117], [10.4524, 61.1117], [10.4526, 61.1117], [10.4528, 61.1118], [10.4529, 61.1118], [10.453, 61.1118], [10.4531, 61.1118], [10.4533, 61.1118], [10.4534, 61.1118], [10.4535, 61.1118], [10.4535, 61.1118], [10.4536, 61.1118], [10.4537, 61.1118], [10.4538, 61.1119], [10.454, 61.1119], [10.4541, 61.1119], [10.4542, 61.1119], [10.4542, 61.1118], [10.4543, 61.1118], [10.4543, 61.1117], [10.4543, 61.1117], [10.4543, 61.1117], [10.4543, 61.1116], [10.4542, 61.1116], [10.4541, 61.1116], [10.454, 61.1115], [10.4539, 61.1115], [10.4537, 61.1115], [10.4537, 61.1115], [10.4536, 61.1116], [10.4535, 61.1116], [10.4535, 61.1117], [10.4533, 61.1117], [10.4533, 61.1118], [10.4531, 61.1118], [10.453, 61.1118], [10.4529, 61.1117], [10.4527, 61.1117], [10.4526, 61.1116], [10.4527, 61.1116], [10.4528, 61.1115], [10.453, 61.1114], [10.4531, 61.1114], [10.4532, 61.1113], [10.4534, 61.1112], [10.4535, 61.1112], [10.4536, 61.1112], [10.4537, 61.1112], [10.4538, 61.1112], [10.4539, 61.1112], [10.454, 61.1112], [10.4541, 61.1113], [10.4542, 61.1113], [10.4543, 61.1113], [10.4544, 61.1113], [10.4545, 61.1113], [10.4546, 61.1113], [10.4547, 61.1113], [10.4547, 61.1113], [10.4549, 61.1113], [10.455, 61.1113], [10.4552, 61.1113], [10.4554, 61.1112], [10.4555, 61.1112], [10.4555, 61.1112], [10.4555, 61.1112], [10.4556, 61.1112], [10.4557, 61.1111], [10.4558, 61.1111], [10.456, 61.111], [10.4561, 61.111], [10.4561, 61.1109], [10.4562, 61.1109], [10.4562, 61.1109], [10.4563, 61.1109], [10.4564, 61.1108], [10.4567, 61.1107], [10.4568, 61.1107], [10.4569, 61.1106], [10.457, 61.1106], [10.4571, 61.1105], [10.4571, 61.1105], [10.4572, 61.1105], [10.4573, 61.1105], [10.4574, 61.1106], [10.4575, 61.1106], [10.4576, 61.1106], [10.4578, 61.1106], [10.4579, 61.1106], [10.458, 61.1106], [10.4581, 61.1106], [10.4582, 61.1106], [10.4584, 61.1105], [10.4586, 61.1105], [10.4588, 61.1103], [10.4589, 61.1103], [10.4589, 61.1102], [10.459, 61.1102], [10.4591, 61.1101], [10.4591, 61.1101], [10.4592, 61.11], [10.4593, 61.11], [10.4594, 61.11], [10.4594, 61.1099], [10.4595, 61.1099], [10.4596, 61.1099], [10.4596, 61.1099], [10.4597, 61.1099], [10.4597, 61.1099], [10.4597, 61.1099], [10.4597, 61.1098], [10.4597, 61.1098], [10.4598, 61.1098], [10.4598, 61.1097], [10.4598, 61.1097], [10.4598, 61.1096], [10.4598, 61.1096], [10.4599, 61.1096], [10.4599, 61.1095], [10.4599, 61.1095], [10.4599, 61.1094], [10.4599, 61.1093], [10.4599, 61.1093], [10.4599, 61.1092], [10.4598, 61.1092], [10.4598, 61.1092], [10.4598, 61.1091], [10.4597, 61.109], [10.4597, 61.109], [10.4596, 61.1089], [10.4596, 61.1088], [10.4596, 61.1088], [10.4596, 61.1088], [10.4596, 61.1087], [10.4596, 61.1087], [10.4595, 61.1087], [10.4595, 61.1087], [10.4594, 61.1087], [10.4594, 61.1087], [10.4594, 61.1087], [10.4593, 61.1087], [10.4593, 61.1086], [10.4593, 61.1086], [10.4593, 61.1086], [10.4592, 61.1086], [10.4592, 61.1086], [10.4592, 61.1085], [10.4592, 61.1085], [10.4592, 61.1085], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1084], [10.4592, 61.1083], [10.4592, 61.1082], [10.4592, 61.1081], [10.4592, 61.108], [10.4592, 61.108], [10.4592, 61.1079], [10.4593, 61.1079], [10.4593, 61.1078], [10.4594, 61.1078], [10.4594, 61.1078], [10.4594, 61.1077], [10.4594, 61.1076], [10.4594, 61.1076], [10.4594, 61.1076], [10.4594, 61.1075], [10.4594, 61.1075], [10.4593, 61.1075], [10.4587, 61.1073], [10.4587, 61.1073], [10.4587, 61.1073], [10.4587, 61.1072], [10.4591, 61.1073], [10.4594, 61.1073], [10.4595, 61.1073], [10.4597, 61.1073], [10.4598, 61.1073], [10.4598, 61.1072], [10.4599, 61.1072], [10.4599, 61.1072], [10.46, 61.1071], [10.4601, 61.1071], [10.4602, 61.1071], [10.4602, 61.1071], [10.4602, 61.107], [10.4603, 61.107], [10.4603, 61.107], [10.4604, 61.107], [10.4605, 61.1071], [10.4606, 61.107], [10.4607, 61.107], [10.4608, 61.1069], [10.4609, 61.1069], [10.4609, 61.1068], [10.4609, 61.1067], [10.4609, 61.1067], [10.4609, 61.1066], [10.4608, 61.1066], [10.4607, 61.1065], [10.4606, 61.1064], [10.4605, 61.1064], [10.4605, 61.1064], [10.4605, 61.1063], [10.4604, 61.1062], [10.4605, 61.1061], [10.4605, 61.1061], [10.4605, 61.106], [10.4605, 61.106], [10.4605, 61.1059], [10.4606, 61.1059], [10.4606, 61.1058], [10.4607, 61.1058], [10.4607, 61.1057], [10.4607, 61.1057], [10.4607, 61.1056], [10.4608, 61.1056], [10.4609, 61.1055], [10.4609, 61.1055], [10.4609, 61.1054], [10.461, 61.1054], [10.461, 61.1054], [10.461, 61.1053], [10.4611, 61.1052], [10.4611, 61.1052], [10.4612, 61.1051], [10.4612, 61.1051], [10.4613, 61.105], [10.4614, 61.105], [10.4614, 61.105], [10.4614, 61.1049], [10.4615, 61.1049], [10.4615, 61.1048], [10.4615, 61.1047], [10.4615, 61.1047], [10.4615, 61.1047], [10.4615, 61.1046], [10.4616, 61.1045], [10.4616, 61.1045], [10.4617, 61.1044], [10.4618, 61.1044], [10.4619, 61.1043], [10.4619, 61.1043], [10.4619, 61.1042], [10.4618, 61.1042], [10.4618, 61.1041], [10.4617, 61.1041], [10.4617, 61.104], [10.4616, 61.1039], [10.4615, 61.1036], [10.4615, 61.1035], [10.4615, 61.1034], [10.4615, 61.1033], [10.4615, 61.1031], [10.4615, 61.103], [10.4615, 61.1029], [10.4615, 61.1026], [10.4615, 61.1025], [10.4615, 61.1024], [10.4615, 61.1022], [10.4615, 61.1021], [10.4615, 61.102], [10.4615, 61.102], [10.4618, 61.1019], [10.4621, 61.1019], [10.4623, 61.1019], [10.4624, 61.1019], [10.4625, 61.1018], [10.4625, 61.1018], [10.4622, 61.1017], [10.462, 61.1017], [10.4618, 61.1016], [10.4617, 61.1016], [10.4616, 61.1016], [10.4616, 61.1015], [10.4615, 61.1015], [10.4614, 61.1015], [10.4614, 61.1014], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1013], [10.4613, 61.1012], [10.4613, 61.1012], [10.4613, 61.1012], [10.4613, 61.1012], [10.4612, 61.1011], [10.4612, 61.1011], [10.4612, 61.101], [10.4612, 61.101], [10.4613, 61.101], [10.4613, 61.101], [10.4613, 61.101], [10.4614, 61.1011], [10.4615, 61.1011], [10.4616, 61.1011], [10.4616, 61.1011], [10.4617, 61.101], [10.4617, 61.101], [10.4617, 61.1009], [10.4617, 61.1009], [10.4617, 61.1008], [10.4616, 61.1008], [10.4615, 61.1008], [10.4614, 61.1007], [10.4613, 61.1008], [10.4613, 61.1008], [10.4613, 61.1007], [10.4613, 61.1006], [10.4614, 61.1006], [10.4615, 61.1005], [10.4616, 61.1005], [10.4617, 61.1005], [10.4616, 61.1004], [10.4617, 61.1004], [10.4619, 61.1003], [10.462, 61.1002], [10.4621, 61.1002], [10.4622, 61.1001], [10.4624, 61.1001], [10.4626, 61.1], [10.4627, 61.1], [10.4629, 61.0999], [10.4631, 61.0997], [10.4632, 61.0996], [10.4633, 61.0994], [10.4633, 61.0993], [10.4634, 61.0992], [10.4635, 61.0991], [10.4636, 61.099], [10.4637, 61.0989], [10.4639, 61.0988], [10.464, 61.0988], [10.4641, 61.0988], [10.4644, 61.0987], [10.4645, 61.0987], [10.4648, 61.0987], [10.4649, 61.0987], [10.465, 61.0986], [10.4651, 61.0986], [10.4652, 61.0985], [10.4652, 61.0985], [10.4653, 61.0983], [10.4654, 61.0982], [10.4654, 61.098], [10.4653, 61.0978], [10.4653, 61.0976], [10.4653, 61.0975], [10.4652, 61.0974], [10.4651, 61.0972], [10.465, 61.097], [10.4649, 61.0969], [10.4369, 61.0969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [61.016856, 10.441122]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0369], [10.4704, 61.0169], [10.4682, 61.0169], [10.468, 61.017], [10.4677, 61.0174], [10.4676, 61.0175], [10.4675, 61.0176], [10.4672, 61.0177], [10.467, 61.0177], [10.4665, 61.0179], [10.4663, 61.018], [10.4661, 61.0181], [10.4655, 61.0184], [10.4639, 61.0188], [10.4629, 61.0192], [10.4616, 61.0198], [10.4611, 61.0201], [10.4599, 61.0208], [10.4596, 61.0212], [10.4596, 61.0213], [10.4594, 61.0213], [10.4591, 61.0216], [10.4591, 61.0218], [10.4593, 61.0219], [10.4595, 61.0218], [10.4595, 61.022], [10.4601, 61.0222], [10.4604, 61.0222], [10.4604, 61.0224], [10.4598, 61.0227], [10.4592, 61.0228], [10.4591, 61.0228], [10.4584, 61.0229], [10.4581, 61.023], [10.4579, 61.0234], [10.4575, 61.0235], [10.4566, 61.0236], [10.4558, 61.0237], [10.4553, 61.0236], [10.455, 61.0236], [10.4541, 61.0239], [10.4538, 61.0242], [10.4539, 61.0245], [10.454, 61.0245], [10.454, 61.0246], [10.4536, 61.0248], [10.4534, 61.0248], [10.4532, 61.0248], [10.4531, 61.0249], [10.4529, 61.025], [10.4528, 61.0253], [10.4528, 61.0254], [10.453, 61.0255], [10.4529, 61.0255], [10.4528, 61.0257], [10.4528, 61.0258], [10.4527, 61.0258], [10.4526, 61.026], [10.4527, 61.026], [10.4528, 61.0261], [10.453, 61.0262], [10.4531, 61.0263], [10.4531, 61.0264], [10.4533, 61.0265], [10.4534, 61.0267], [10.4533, 61.0267], [10.4532, 61.0268], [10.453, 61.0268], [10.4528, 61.0268], [10.4524, 61.0267], [10.4524, 61.0268], [10.4524, 61.0268], [10.4525, 61.0269], [10.4525, 61.0269], [10.4525, 61.027], [10.4524, 61.027], [10.4524, 61.027], [10.4524, 61.027], [10.4523, 61.0271], [10.452, 61.0271], [10.452, 61.0271], [10.4519, 61.0272], [10.4517, 61.0272], [10.4516, 61.0272], [10.4515, 61.0272], [10.4514, 61.0272], [10.4513, 61.0272], [10.4512, 61.0273], [10.4513, 61.0273], [10.4512, 61.0274], [10.4511, 61.0274], [10.4511, 61.0274], [10.4509, 61.0274], [10.4508, 61.0275], [10.4507, 61.0276], [10.4506, 61.0276], [10.4506, 61.0276], [10.4506, 61.0277], [10.4505, 61.0276], [10.4505, 61.0276], [10.4506, 61.0275], [10.4507, 61.0275], [10.4507, 61.0274], [10.4508, 61.0274], [10.4508, 61.0274], [10.4508, 61.0273], [10.4507, 61.0273], [10.4507, 61.0273], [10.4507, 61.0273], [10.4505, 61.0274], [10.4505, 61.0274], [10.4504, 61.0275], [10.4503, 61.0275], [10.4503, 61.0275], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0276], [10.4503, 61.0277], [10.4504, 61.0277], [10.4504, 61.0277], [10.4504, 61.0277], [10.4503, 61.0277], [10.4502, 61.0277], [10.4502, 61.0276], [10.4502, 61.0275], [10.4502, 61.0275], [10.4501, 61.0275], [10.45, 61.0274], [10.4497, 61.0274], [10.4496, 61.0274], [10.4495, 61.0274], [10.4494, 61.0274], [10.4491, 61.0274], [10.4489, 61.0274], [10.4485, 61.0274], [10.4483, 61.0274], [10.4482, 61.0274], [10.4482, 61.0274], [10.4481, 61.0274], [10.4481, 61.0275], [10.448, 61.0277], [10.4478, 61.0278], [10.4477, 61.0279], [10.4477, 61.0279], [10.4476, 61.028], [10.4473, 61.0283], [10.4469, 61.0286], [10.4466, 61.0287], [10.4464, 61.0289], [10.4462, 61.029], [10.4461, 61.0291], [10.4461, 61.0291], [10.4461, 61.0292], [10.4459, 61.0293], [10.4458, 61.0294], [10.4458, 61.0294], [10.4457, 61.0294], [10.4456, 61.0294], [10.4455, 61.0294], [10.4455, 61.0295], [10.4454, 61.0296], [10.4454, 61.0297], [10.4454, 61.0297], [10.4454, 61.0297], [10.4454, 61.0297], [10.4453, 61.0297], [10.4453, 61.0297], [10.4452, 61.0297], [10.4451, 61.0297], [10.4449, 61.0299], [10.4449, 61.0299], [10.4449, 61.0299], [10.445, 61.03], [10.445, 61.03], [10.445, 61.03], [10.445, 61.03], [10.4451, 61.0299], [10.4452, 61.0299], [10.4453, 61.0298], [10.4453, 61.0298], [10.4453, 61.0299], [10.4452, 61.0299], [10.445, 61.03], [10.4449, 61.03], [10.4448, 61.0301], [10.4448, 61.0301], [10.4449, 61.0301], [10.4451, 61.0302], [10.4451, 61.0302], [10.4451, 61.0302], [10.4451, 61.0303], [10.445, 61.0304], [10.4449, 61.0304], [10.4448, 61.0305], [10.4447, 61.0305], [10.4446, 61.0305], [10.4445, 61.0305], [10.4444, 61.0305], [10.4443, 61.0305], [10.444, 61.0306], [10.4438, 61.0307], [10.4437, 61.0308], [10.4437, 61.0309], [10.4436, 61.0309], [10.4435, 61.031], [10.4436, 61.031], [10.4436, 61.0311], [10.4436, 61.0311], [10.4437, 61.0312], [10.4438, 61.0313], [10.4438, 61.0313], [10.4439, 61.0313], [10.4439, 61.0313], [10.4438, 61.0314], [10.4437, 61.0314], [10.4436, 61.0314], [10.4435, 61.0315], [10.4434, 61.0315], [10.4434, 61.0316], [10.4433, 61.0316], [10.4432, 61.0316], [10.4431, 61.0316], [10.443, 61.0317], [10.4429, 61.0318], [10.4427, 61.0321], [10.4426, 61.0324], [10.4424, 61.0327], [10.4423, 61.0328], [10.4423, 61.033], [10.4422, 61.0333], [10.4421, 61.0333], [10.4421, 61.0334], [10.442, 61.0336], [10.4419, 61.0337], [10.4419, 61.0338], [10.442, 61.0338], [10.442, 61.0338], [10.4419, 61.0339], [10.4419, 61.0339], [10.4418, 61.0341], [10.4417, 61.0342], [10.4417, 61.0343], [10.4416, 61.0344], [10.4416, 61.0345], [10.4417, 61.0346], [10.4418, 61.0346], [10.4419, 61.0347], [10.4419, 61.0347], [10.4419, 61.0347], [10.4419, 61.0347], [10.4418, 61.0347], [10.4417, 61.0347], [10.4416, 61.0347], [10.4414, 61.0347], [10.4414, 61.0347], [10.4414, 61.0348], [10.4414, 61.0349], [10.4414, 61.0349], [10.4414, 61.0349], [10.4414, 61.035], [10.4413, 61.035], [10.4413, 61.0351], [10.4414, 61.0351], [10.4415, 61.0351], [10.4416, 61.0351], [10.4416, 61.0351], [10.4417, 61.0351], [10.4417, 61.0351], [10.4418, 61.0351], [10.4418, 61.0351], [10.4418, 61.035], [10.4418, 61.035], [10.4417, 61.035], [10.4417, 61.035], [10.4417, 61.0349], [10.4416, 61.0349], [10.4417, 61.0349], [10.4418, 61.0349], [10.4418, 61.0349], [10.4419, 61.0349], [10.4419, 61.0349], [10.4419, 61.035], [10.4419, 61.035], [10.4419, 61.035], [10.4419, 61.0351], [10.4419, 61.0351], [10.4419, 61.0352], [10.4418, 61.0352], [10.4417, 61.0352], [10.4416, 61.0352], [10.4416, 61.0352], [10.4416, 61.0352], [10.4416, 61.0353], [10.4415, 61.0353], [10.4413, 61.0353], [10.4412, 61.0353], [10.4412, 61.0353], [10.4412, 61.0354], [10.4412, 61.0354], [10.4411, 61.0355], [10.4411, 61.0355], [10.4411, 61.0357], [10.4412, 61.0357], [10.4412, 61.0358], [10.4412, 61.0359], [10.4412, 61.036], [10.4412, 61.0361], [10.4412, 61.0362], [10.4414, 61.0363], [10.4414, 61.0364], [10.4414, 61.0364], [10.4415, 61.0364], [10.4416, 61.0364], [10.4417, 61.0365], [10.4417, 61.0364], [10.4418, 61.0364], [10.4418, 61.0363], [10.4418, 61.0363], [10.4418, 61.0363], [10.4417, 61.0363], [10.4418, 61.0363], [10.4419, 61.0363], [10.4419, 61.0363], [10.4419, 61.0364], [10.4419, 61.0364], [10.4419, 61.0364], [10.4418, 61.0365], [10.4417, 61.0365], [10.4416, 61.0365], [10.4416, 61.0367], [10.4416, 61.0367], [10.4415, 61.0367], [10.4416, 61.0368], [10.4416, 61.0368], [10.4416, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4417, 61.0368], [10.4416, 61.0368], [10.4416, 61.0369], [10.4704, 61.0369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [61.01545, 10.468207]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.4704, 61.0155], [10.4696, 61.0158], [10.4691, 61.0161], [10.4688, 61.0163], [10.4683, 61.0168], [10.4682, 61.0169], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [60.998272, 10.470419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.5104, 61.0169], [10.5104, 60.9983], [10.5102, 60.9983], [10.5101, 60.9984], [10.5098, 60.9984], [10.5096, 60.9984], [10.5092, 60.9985], [10.5091, 60.9985], [10.5086, 60.9986], [10.5081, 60.9987], [10.5077, 60.9988], [10.5072, 60.9989], [10.5069, 60.999], [10.5065, 60.999], [10.5064, 60.9991], [10.5063, 60.999], [10.5062, 60.999], [10.5061, 60.9991], [10.506, 60.9991], [10.5058, 60.9991], [10.5057, 60.9991], [10.5055, 60.9991], [10.5051, 60.9993], [10.505, 60.9993], [10.5049, 60.9994], [10.5047, 60.9996], [10.5047, 60.9998], [10.5044, 60.9999], [10.5042, 61.0], [10.5006, 61.0018], [10.5001, 61.0018], [10.4991, 61.0018], [10.499, 61.0018], [10.4988, 61.0018], [10.4987, 61.0018], [10.4986, 61.0018], [10.4985, 61.0018], [10.4982, 61.0018], [10.4973, 61.0022], [10.4962, 61.0027], [10.4954, 61.0029], [10.4948, 61.0031], [10.4937, 61.0034], [10.4915, 61.0043], [10.4902, 61.0051], [10.4897, 61.0055], [10.4895, 61.0057], [10.4891, 61.006], [10.4891, 61.0061], [10.4885, 61.0063], [10.4873, 61.0067], [10.4859, 61.0077], [10.4846, 61.0083], [10.4837, 61.0089], [10.4829, 61.0093], [10.4822, 61.0096], [10.4816, 61.0099], [10.4813, 61.0102], [10.4808, 61.0106], [10.4803, 61.0108], [10.48, 61.0109], [10.4795, 61.0112], [10.479, 61.0115], [10.4782, 61.0121], [10.4782, 61.0123], [10.4777, 61.0126], [10.4772, 61.0128], [10.4771, 61.0132], [10.4763, 61.0134], [10.475, 61.0135], [10.4744, 61.0137], [10.4741, 61.0139], [10.473, 61.0142], [10.472, 61.0145], [10.4712, 61.0149], [10.4708, 61.0153], [10.4704, 61.0155], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [61.016856, 10.470419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0169], [10.4704, 61.0369], [10.4838, 61.0369], [10.4838, 61.0368], [10.4838, 61.0368], [10.4839, 61.0367], [10.4839, 61.0367], [10.4838, 61.0367], [10.4838, 61.0367], [10.4837, 61.0367], [10.4838, 61.0366], [10.4839, 61.0366], [10.484, 61.0366], [10.4841, 61.0366], [10.4843, 61.0366], [10.4844, 61.0366], [10.4849, 61.0365], [10.4852, 61.0364], [10.4856, 61.0362], [10.4861, 61.036], [10.4862, 61.0359], [10.4864, 61.0359], [10.4866, 61.0358], [10.4867, 61.0357], [10.4869, 61.0357], [10.4871, 61.0356], [10.4872, 61.0356], [10.4879, 61.0354], [10.488, 61.0353], [10.4882, 61.0353], [10.4884, 61.0352], [10.4887, 61.0352], [10.4891, 61.0351], [10.4895, 61.0349], [10.4898, 61.0348], [10.49, 61.0347], [10.4902, 61.0347], [10.4904, 61.0346], [10.4905, 61.0345], [10.4907, 61.0344], [10.4907, 61.0344], [10.4908, 61.0343], [10.4909, 61.0343], [10.4909, 61.0343], [10.4909, 61.0343], [10.491, 61.0342], [10.4911, 61.0342], [10.4913, 61.0342], [10.4914, 61.0342], [10.4914, 61.0342], [10.4915, 61.0342], [10.4916, 61.0341], [10.4917, 61.0341], [10.4918, 61.0341], [10.4918, 61.034], [10.4919, 61.034], [10.492, 61.034], [10.4921, 61.034], [10.4921, 61.0339], [10.4921, 61.0339], [10.4923, 61.0338], [10.4924, 61.0338], [10.4924, 61.0337], [10.4925, 61.0336], [10.4926, 61.0335], [10.4925, 61.0334], [10.4925, 61.0334], [10.4925, 61.0334], [10.4924, 61.0333], [10.4923, 61.0332], [10.4922, 61.0331], [10.4922, 61.033], [10.4921, 61.0329], [10.492, 61.0328], [10.492, 61.0328], [10.4919, 61.0327], [10.4919, 61.0327], [10.4918, 61.0326], [10.4917, 61.0326], [10.4916, 61.0325], [10.4916, 61.0325], [10.4916, 61.0325], [10.4913, 61.0325], [10.4913, 61.0325], [10.4912, 61.0324], [10.491, 61.0324], [10.4909, 61.0324], [10.4909, 61.0324], [10.4908, 61.0324], [10.4905, 61.0323], [10.4902, 61.0323], [10.4901, 61.0323], [10.4901, 61.0323], [10.4895, 61.0323], [10.489, 61.0323], [10.4888, 61.0323], [10.4887, 61.0323], [10.4886, 61.0322], [10.4886, 61.0322], [10.4886, 61.0321], [10.4885, 61.0321], [10.4884, 61.0321], [10.4883, 61.0321], [10.4883, 61.0321], [10.4883, 61.032], [10.4883, 61.0319], [10.4883, 61.0319], [10.4883, 61.0318], [10.4883, 61.0317], [10.4884, 61.0316], [10.4884, 61.0316], [10.4884, 61.0316], [10.4885, 61.0316], [10.4885, 61.0315], [10.4886, 61.0314], [10.4886, 61.0314], [10.4888, 61.0312], [10.489, 61.031], [10.4891, 61.0309], [10.4893, 61.0308], [10.4895, 61.0307], [10.4898, 61.0305], [10.4898, 61.0304], [10.4898, 61.0303], [10.4898, 61.0302], [10.4899, 61.0301], [10.4899, 61.0301], [10.4899, 61.0301], [10.4899, 61.03], [10.49, 61.0299], [10.4901, 61.0299], [10.4901, 61.0299], [10.4902, 61.0298], [10.4901, 61.0297], [10.4898, 61.0294], [10.4898, 61.0292], [10.4898, 61.029], [10.4898, 61.0288], [10.4897, 61.0286], [10.4897, 61.0285], [10.4896, 61.0283], [10.4896, 61.0281], [10.4896, 61.0279], [10.4897, 61.0278], [10.4896, 61.0276], [10.4897, 61.0275], [10.4898, 61.0274], [10.4897, 61.0274], [10.4897, 61.0272], [10.4897, 61.0271], [10.4897, 61.0269], [10.4897, 61.0268], [10.4897, 61.0266], [10.4897, 61.0264], [10.4897, 61.0262], [10.4898, 61.0259], [10.4898, 61.0257], [10.4898, 61.0255], [10.4897, 61.0253], [10.4895, 61.0251], [10.4893, 61.0249], [10.4891, 61.0248], [10.4885, 61.0245], [10.4882, 61.0244], [10.4879, 61.0243], [10.4877, 61.0242], [10.4874, 61.0242], [10.4873, 61.0242], [10.4873, 61.0242], [10.4873, 61.0241], [10.4873, 61.0241], [10.4874, 61.0241], [10.4874, 61.0241], [10.4875, 61.0241], [10.4876, 61.0241], [10.4876, 61.0241], [10.4878, 61.0241], [10.488, 61.0241], [10.4881, 61.024], [10.4881, 61.024], [10.4881, 61.024], [10.4881, 61.024], [10.4883, 61.0239], [10.4883, 61.0239], [10.4882, 61.0239], [10.4882, 61.0239], [10.4882, 61.0239], [10.4883, 61.0238], [10.4885, 61.0238], [10.4887, 61.0238], [10.489, 61.0238], [10.4891, 61.0237], [10.4892, 61.0237], [10.4895, 61.0237], [10.4897, 61.0237], [10.4899, 61.0237], [10.4903, 61.0237], [10.4906, 61.0237], [10.4909, 61.0237], [10.4913, 61.0237], [10.4918, 61.0237], [10.4923, 61.0237], [10.4925, 61.0237], [10.4928, 61.0237], [10.4932, 61.0236], [10.4935, 61.0236], [10.4937, 61.0235], [10.494, 61.0235], [10.4943, 61.0235], [10.4945, 61.0235], [10.4947, 61.0234], [10.495, 61.0234], [10.4953, 61.0234], [10.4953, 61.0234], [10.4955, 61.0234], [10.4956, 61.0233], [10.4959, 61.0233], [10.4962, 61.0233], [10.4966, 61.0232], [10.4971, 61.0232], [10.4973, 61.0231], [10.4976, 61.0231], [10.4978, 61.023], [10.498, 61.023], [10.4981, 61.0229], [10.4981, 61.0229], [10.4983, 61.0228], [10.4984, 61.0228], [10.4985, 61.0227], [10.4985, 61.0226], [10.4986, 61.0225], [10.4987, 61.0223], [10.4988, 61.0222], [10.4988, 61.0221], [10.4989, 61.0221], [10.499, 61.0221], [10.499, 61.0221], [10.4991, 61.0221], [10.499, 61.0221], [10.4992, 61.0219], [10.4993, 61.0218], [10.4994, 61.0217], [10.4995, 61.0217], [10.4995, 61.0216], [10.4995, 61.0216], [10.4995, 61.0215], [10.4995, 61.0215], [10.4996, 61.0215], [10.4996, 61.0214], [10.4996, 61.0214], [10.4996, 61.0214], [10.4995, 61.0213], [10.4995, 61.0213], [10.4996, 61.0213], [10.4996, 61.0212], [10.4995, 61.021], [10.4995, 61.021], [10.4995, 61.021], [10.4994, 61.0209], [10.4994, 61.0209], [10.4994, 61.0208], [10.4994, 61.0207], [10.4994, 61.0207], [10.4994, 61.0207], [10.4994, 61.0206], [10.4993, 61.0206], [10.4992, 61.0205], [10.4992, 61.0205], [10.4992, 61.0205], [10.4991, 61.0205], [10.4991, 61.0205], [10.4991, 61.0205], [10.499, 61.0205], [10.499, 61.0205], [10.499, 61.0204], [10.4991, 61.0204], [10.4991, 61.0204], [10.4991, 61.0204], [10.4992, 61.0204], [10.4993, 61.0204], [10.4994, 61.0203], [10.4994, 61.0203], [10.4995, 61.0203], [10.4996, 61.0203], [10.4996, 61.0203], [10.4997, 61.0203], [10.4998, 61.0202], [10.5, 61.0202], [10.5001, 61.0201], [10.5002, 61.0201], [10.5003, 61.0201], [10.5004, 61.02], [10.5004, 61.02], [10.5004, 61.0199], [10.5005, 61.0199], [10.5005, 61.0199], [10.5006, 61.0198], [10.5006, 61.0197], [10.5006, 61.0196], [10.5007, 61.0195], [10.5006, 61.0195], [10.5006, 61.0195], [10.5005, 61.0195], [10.5005, 61.0195], [10.5005, 61.0194], [10.5005, 61.0194], [10.5007, 61.0193], [10.5008, 61.0193], [10.5008, 61.0193], [10.5009, 61.0192], [10.5011, 61.0191], [10.5012, 61.0191], [10.5013, 61.0191], [10.5015, 61.0191], [10.5016, 61.019], [10.5018, 61.0189], [10.5019, 61.0189], [10.5021, 61.0188], [10.5023, 61.0188], [10.5025, 61.0188], [10.5026, 61.0188], [10.5029, 61.0187], [10.5032, 61.0187], [10.5037, 61.0187], [10.5039, 61.0187], [10.5042, 61.0187], [10.5044, 61.0187], [10.5046, 61.0187], [10.5048, 61.0187], [10.5052, 61.0187], [10.5054, 61.0187], [10.5056, 61.0187], [10.5058, 61.0187], [10.5059, 61.0186], [10.506, 61.0187], [10.5065, 61.0186], [10.5066, 61.0187], [10.5067, 61.0186], [10.5069, 61.0186], [10.507, 61.0186], [10.5073, 61.0186], [10.5074, 61.0184], [10.5075, 61.0183], [10.5076, 61.0182], [10.5078, 61.0181], [10.5082, 61.018], [10.5087, 61.0179], [10.5093, 61.0178], [10.5098, 61.0177], [10.5101, 61.0177], [10.5104, 61.0176], [10.5104, 61.0176], [10.5104, 61.0169], [10.4704, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "8", "sub_div_center": [61.036856, 10.470419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.4704, 61.0369], [10.4704, 61.0428], [10.4707, 61.0427], [10.471, 61.0426], [10.4714, 61.0425], [10.4719, 61.0423], [10.4721, 61.0422], [10.4723, 61.0422], [10.4728, 61.0421], [10.4739, 61.0418], [10.4741, 61.0417], [10.4744, 61.0416], [10.4747, 61.0416], [10.475, 61.0415], [10.4756, 61.0414], [10.4761, 61.0413], [10.4771, 61.0409], [10.4775, 61.0408], [10.4779, 61.0407], [10.4782, 61.0406], [10.4785, 61.0405], [10.4789, 61.0403], [10.4794, 61.0402], [10.4797, 61.04], [10.4799, 61.0399], [10.4801, 61.0398], [10.4804, 61.0397], [10.4808, 61.0396], [10.4812, 61.0395], [10.4814, 61.0394], [10.4816, 61.0393], [10.4817, 61.0391], [10.4816, 61.039], [10.4817, 61.0389], [10.4818, 61.0389], [10.482, 61.0388], [10.4821, 61.0387], [10.4822, 61.0385], [10.4823, 61.0384], [10.4824, 61.0383], [10.4823, 61.0383], [10.4823, 61.0382], [10.4824, 61.0382], [10.4824, 61.0381], [10.4824, 61.0381], [10.4826, 61.0379], [10.4827, 61.0379], [10.4829, 61.0377], [10.483, 61.0376], [10.4831, 61.0376], [10.4833, 61.0374], [10.4835, 61.0373], [10.4835, 61.0372], [10.4835, 61.0372], [10.4837, 61.0371], [10.4838, 61.0371], [10.4838, 61.037], [10.4838, 61.0369], [10.4704, 61.0369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "9", "sub_div_center": [60.996856, 10.510419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5104, 61.0169], [10.5112, 61.0169], [10.5112, 61.0168], [10.5113, 61.0167], [10.5118, 61.0165], [10.512, 61.0164], [10.5123, 61.0163], [10.5126, 61.0163], [10.5131, 61.0162], [10.5134, 61.016], [10.5137, 61.0159], [10.5137, 61.0158], [10.5137, 61.0157], [10.5137, 61.0156], [10.5136, 61.0155], [10.5137, 61.0154], [10.5137, 61.0154], [10.5137, 61.0153], [10.5139, 61.0153], [10.5146, 61.0153], [10.5149, 61.0153], [10.5151, 61.0152], [10.5154, 61.0152], [10.5155, 61.0151], [10.5162, 61.0148], [10.5163, 61.0147], [10.5164, 61.0146], [10.5165, 61.0145], [10.5166, 61.0144], [10.5167, 61.0144], [10.5169, 61.0143], [10.517, 61.0143], [10.517, 61.0141], [10.5171, 61.014], [10.5171, 61.0139], [10.517, 61.0138], [10.517, 61.0136], [10.5169, 61.0134], [10.5167, 61.0132], [10.5166, 61.013], [10.5165, 61.013], [10.5164, 61.0128], [10.5163, 61.0128], [10.5163, 61.0127], [10.5163, 61.0126], [10.5162, 61.0125], [10.5162, 61.0124], [10.5162, 61.0124], [10.5162, 61.0121], [10.5161, 61.012], [10.5161, 61.012], [10.5161, 61.0119], [10.5161, 61.0118], [10.5162, 61.0116], [10.5163, 61.0116], [10.5163, 61.0115], [10.5163, 61.0114], [10.5163, 61.0113], [10.5164, 61.0111], [10.5165, 61.011], [10.5165, 61.0109], [10.5165, 61.0109], [10.5165, 61.0109], [10.5166, 61.0108], [10.5168, 61.0107], [10.5168, 61.0107], [10.5169, 61.0107], [10.5169, 61.0106], [10.5169, 61.0106], [10.517, 61.0106], [10.517, 61.0106], [10.5171, 61.0106], [10.5171, 61.0106], [10.5172, 61.0106], [10.5173, 61.0106], [10.5174, 61.0106], [10.5175, 61.0106], [10.5175, 61.0106], [10.5174, 61.0104], [10.5174, 61.0104], [10.5175, 61.0104], [10.5175, 61.0104], [10.5176, 61.0106], [10.5177, 61.0106], [10.5178, 61.0106], [10.5182, 61.0105], [10.5184, 61.0105], [10.5185, 61.0105], [10.5187, 61.0104], [10.5189, 61.0104], [10.519, 61.0104], [10.5192, 61.0104], [10.5198, 61.0103], [10.5205, 61.0103], [10.5212, 61.0103], [10.5217, 61.0102], [10.5222, 61.0101], [10.5229, 61.01], [10.5236, 61.0099], [10.5242, 61.0098], [10.5248, 61.0097], [10.5251, 61.0097], [10.5254, 61.0096], [10.5259, 61.0096], [10.5262, 61.0096], [10.5266, 61.0095], [10.5267, 61.0094], [10.5267, 61.0093], [10.5267, 61.0094], [10.5268, 61.0094], [10.5268, 61.0094], [10.5269, 61.0094], [10.5269, 61.0094], [10.5271, 61.0094], [10.5274, 61.0093], [10.5279, 61.0093], [10.5285, 61.0092], [10.529, 61.0091], [10.5295, 61.009], [10.5299, 61.0088], [10.53, 61.0088], [10.5302, 61.0088], [10.5311, 61.0087], [10.5315, 61.0087], [10.5319, 61.0087], [10.5325, 61.0087], [10.5331, 61.0087], [10.5338, 61.0087], [10.5341, 61.0087], [10.5345, 61.0086], [10.5352, 61.0085], [10.5355, 61.0084], [10.5358, 61.0084], [10.5361, 61.0083], [10.5364, 61.0083], [10.5367, 61.0083], [10.537, 61.0082], [10.5374, 61.0082], [10.5376, 61.0081], [10.5377, 61.0081], [10.5381, 61.0081], [10.5384, 61.0079], [10.5388, 61.0079], [10.5391, 61.0079], [10.5392, 61.0078], [10.5393, 61.0078], [10.5395, 61.0078], [10.5397, 61.0078], [10.54, 61.0078], [10.5402, 61.0078], [10.5405, 61.0079], [10.5407, 61.0079], [10.5409, 61.0079], [10.5412, 61.0079], [10.5414, 61.0078], [10.5416, 61.0078], [10.5419, 61.0077], [10.5422, 61.0075], [10.5424, 61.0073], [10.5426, 61.0072], [10.5428, 61.007], [10.5431, 61.0068], [10.5432, 61.0067], [10.5434, 61.0065], [10.5437, 61.0064], [10.5439, 61.0063], [10.544, 61.0062], [10.5442, 61.0062], [10.5444, 61.0061], [10.5449, 61.0061], [10.5454, 61.0061], [10.5458, 61.0061], [10.5461, 61.0061], [10.5464, 61.0061], [10.5466, 61.0061], [10.5467, 61.0061], [10.5467, 61.0061], [10.5468, 61.0062], [10.5469, 61.0062], [10.5471, 61.0062], [10.5472, 61.0061], [10.5474, 61.0062], [10.5475, 61.0062], [10.5477, 61.0062], [10.5479, 61.0062], [10.5481, 61.0062], [10.5486, 61.0063], [10.5489, 61.0063], [10.5491, 61.0063], [10.5493, 61.0063], [10.5496, 61.0063], [10.5496, 61.0064], [10.5497, 61.0064], [10.5499, 61.0064], [10.5499, 61.0065], [10.5499, 61.0065], [10.5498, 61.0065], [10.5497, 61.0065], [10.5497, 61.0066], [10.5495, 61.0066], [10.5492, 61.0067], [10.5486, 61.0068], [10.5482, 61.0068], [10.5478, 61.0069], [10.5477, 61.007], [10.5476, 61.0071], [10.5475, 61.0072], [10.5475, 61.0074], [10.5474, 61.0074], [10.5474, 61.0075], [10.5474, 61.0075], [10.5473, 61.0076], [10.5473, 61.0077], [10.5474, 61.0078], [10.5474, 61.0078], [10.5476, 61.0079], [10.5477, 61.008], [10.548, 61.0082], [10.5482, 61.0084], [10.5486, 61.0086], [10.5489, 61.0087], [10.5491, 61.0088], [10.5493, 61.0088], [10.5494, 61.0089], [10.5495, 61.009], [10.5495, 61.009], [10.5495, 61.0091], [10.5496, 61.0091], [10.5497, 61.009], [10.5497, 61.009], [10.5498, 61.009], [10.55, 61.009], [10.5503, 61.009], [10.5504, 61.009], [10.5504, 60.9969], [10.5143, 60.9969], [10.5143, 60.9969], [10.5141, 60.997], [10.5139, 60.9971], [10.5136, 60.9972], [10.5132, 60.9973], [10.5131, 60.9974], [10.5127, 60.9976], [10.5126, 60.9977], [10.5125, 60.9978], [10.5122, 60.9978], [10.512, 60.9979], [10.5113, 60.998], [10.5111, 60.998], [10.5109, 60.9981], [10.5105, 60.9982], [10.5104, 60.9983], [10.5104, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "10", "sub_div_center": [61.016856, 10.510419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5104, 61.0169], [10.5104, 61.0176], [10.5106, 61.0175], [10.5108, 61.0174], [10.5109, 61.0173], [10.511, 61.0171], [10.5111, 61.0169], [10.5112, 61.0169], [10.5104, 61.0169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "11", "sub_div_center": [60.989516, 10.514341]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5504, 60.9895], [10.55, 60.9896], [10.5499, 60.9896], [10.5495, 60.9898], [10.5493, 60.9898], [10.5489, 60.99], [10.5487, 60.99], [10.5485, 60.9901], [10.5479, 60.9902], [10.5473, 60.9904], [10.5471, 60.9904], [10.5468, 60.9905], [10.5461, 60.9906], [10.5458, 60.9906], [10.5454, 60.9907], [10.5452, 60.9907], [10.5447, 60.9908], [10.5446, 60.9908], [10.5442, 60.9908], [10.5442, 60.9908], [10.5435, 60.9909], [10.5431, 60.9909], [10.5425, 60.991], [10.5422, 60.9911], [10.5415, 60.9912], [10.5414, 60.9912], [10.541, 60.9912], [10.5406, 60.9912], [10.5403, 60.9912], [10.5396, 60.9912], [10.5392, 60.9912], [10.5385, 60.9912], [10.5378, 60.9912], [10.5373, 60.9912], [10.5368, 60.9912], [10.5365, 60.9912], [10.536, 60.9912], [10.5358, 60.9913], [10.5354, 60.9913], [10.5352, 60.9913], [10.5348, 60.9913], [10.5345, 60.9914], [10.5342, 60.9914], [10.5336, 60.9915], [10.5333, 60.9915], [10.5331, 60.9915], [10.5328, 60.9915], [10.5325, 60.9916], [10.532, 60.9916], [10.5314, 60.9918], [10.5312, 60.9918], [10.531, 60.9918], [10.5304, 60.9918], [10.5301, 60.9918], [10.5296, 60.9918], [10.5291, 60.9918], [10.5289, 60.9919], [10.5286, 60.992], [10.5282, 60.992], [10.528, 60.9921], [10.5277, 60.9922], [10.5274, 60.9923], [10.5271, 60.9924], [10.527, 60.9925], [10.527, 60.9925], [10.5269, 60.9925], [10.5266, 60.9926], [10.5265, 60.9926], [10.5262, 60.9926], [10.5258, 60.9926], [10.5256, 60.9926], [10.5255, 60.9927], [10.5253, 60.9928], [10.525, 60.9929], [10.5249, 60.993], [10.5248, 60.993], [10.5247, 60.9931], [10.5244, 60.9931], [10.5241, 60.9932], [10.524, 60.9933], [10.5238, 60.9933], [10.5235, 60.9933], [10.5233, 60.9933], [10.5224, 60.9933], [10.5221, 60.9934], [10.5219, 60.9935], [10.5215, 60.9936], [10.5213, 60.9937], [10.5212, 60.9937], [10.5211, 60.9938], [10.5207, 60.9942], [10.5206, 60.9943], [10.5203, 60.9944], [10.5201, 60.9946], [10.5197, 60.9947], [10.5194, 60.9948], [10.5192, 60.9949], [10.5189, 60.995], [10.5183, 60.9951], [10.5177, 60.9953], [10.5174, 60.9954], [10.5171, 60.9955], [10.5168, 60.9956], [10.5165, 60.9957], [10.516, 60.9959], [10.5156, 60.996], [10.5155, 60.996], [10.5153, 60.9962], [10.5148, 60.9964], [10.5147, 60.9965], [10.5146, 60.9965], [10.5144, 60.9968], [10.5143, 60.9969], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "12", "sub_div_center": [60.97958, 10.550419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5892, 60.9969], [10.5892, 60.9968], [10.5894, 60.9969], [10.5894, 60.9968], [10.5897, 60.9968], [10.5899, 60.9967], [10.5901, 60.9967], [10.5902, 60.9967], [10.5902, 60.9967], [10.5904, 60.9966], [10.5904, 60.9966], [10.5904, 60.9796], [10.5903, 60.9796], [10.5901, 60.9796], [10.5899, 60.9797], [10.5897, 60.9798], [10.5896, 60.9798], [10.5892, 60.98], [10.5891, 60.98], [10.589, 60.98], [10.5883, 60.98], [10.5879, 60.9801], [10.5878, 60.9801], [10.5876, 60.9801], [10.5876, 60.9801], [10.5876, 60.9802], [10.5876, 60.9804], [10.5875, 60.9805], [10.5875, 60.9805], [10.5875, 60.9806], [10.5877, 60.9806], [10.5877, 60.9807], [10.5876, 60.9807], [10.5876, 60.981], [10.5875, 60.9811], [10.5873, 60.9812], [10.5872, 60.9812], [10.5871, 60.9813], [10.5868, 60.9813], [10.5866, 60.9813], [10.5863, 60.9813], [10.5863, 60.9814], [10.5863, 60.9814], [10.5861, 60.9815], [10.5861, 60.9816], [10.5861, 60.9818], [10.586, 60.982], [10.586, 60.982], [10.5857, 60.982], [10.5857, 60.9821], [10.5856, 60.9821], [10.5856, 60.9823], [10.5856, 60.9823], [10.5855, 60.9823], [10.5854, 60.9823], [10.5855, 60.9824], [10.5855, 60.9825], [10.5855, 60.9826], [10.5854, 60.9826], [10.5854, 60.9826], [10.5853, 60.9826], [10.5852, 60.9827], [10.585, 60.9827], [10.5849, 60.9827], [10.5848, 60.9826], [10.5847, 60.9826], [10.5847, 60.9826], [10.5844, 60.9826], [10.5843, 60.9826], [10.5841, 60.9827], [10.5841, 60.9827], [10.584, 60.9828], [10.5839, 60.9827], [10.5838, 60.9827], [10.5835, 60.9827], [10.5834, 60.9826], [10.5834, 60.9826], [10.5832, 60.9826], [10.5831, 60.9827], [10.5831, 60.9827], [10.5831, 60.9829], [10.5831, 60.983], [10.5831, 60.9831], [10.5829, 60.9832], [10.5829, 60.9833], [10.5829, 60.9836], [10.5828, 60.9836], [10.5827, 60.9837], [10.5825, 60.9836], [10.5819, 60.9836], [10.5818, 60.9835], [10.5816, 60.9835], [10.5815, 60.9835], [10.5812, 60.9835], [10.581, 60.9835], [10.5806, 60.9835], [10.5804, 60.9835], [10.5803, 60.9835], [10.5802, 60.9835], [10.5801, 60.9835], [10.5801, 60.9834], [10.5797, 60.9833], [10.5796, 60.9832], [10.5794, 60.9832], [10.5792, 60.9833], [10.5791, 60.9833], [10.5789, 60.9833], [10.5782, 60.9833], [10.5781, 60.9833], [10.5777, 60.9831], [10.5776, 60.983], [10.5775, 60.9829], [10.5773, 60.9829], [10.5771, 60.9828], [10.5765, 60.9826], [10.5763, 60.9826], [10.5763, 60.9825], [10.5761, 60.9825], [10.5756, 60.9825], [10.5754, 60.9825], [10.5751, 60.9826], [10.5746, 60.9828], [10.5742, 60.9828], [10.5737, 60.9829], [10.5734, 60.9829], [10.5729, 60.9831], [10.5726, 60.9832], [10.5725, 60.9833], [10.5723, 60.9833], [10.5722, 60.9834], [10.5719, 60.9834], [10.5718, 60.9835], [10.5715, 60.9836], [10.5713, 60.9837], [10.571, 60.9839], [10.5709, 60.984], [10.5709, 60.984], [10.5708, 60.984], [10.5707, 60.984], [10.5705, 60.984], [10.57, 60.984], [10.5698, 60.984], [10.5693, 60.9841], [10.5691, 60.9841], [10.5689, 60.9842], [10.5686, 60.9843], [10.5686, 60.9843], [10.5684, 60.9844], [10.5683, 60.9845], [10.5682, 60.9845], [10.5682, 60.9848], [10.5681, 60.9849], [10.5678, 60.985], [10.5674, 60.9852], [10.5672, 60.9852], [10.5666, 60.9854], [10.566, 60.9856], [10.5659, 60.9856], [10.5658, 60.9857], [10.5656, 60.9857], [10.5655, 60.9857], [10.5654, 60.9857], [10.5653, 60.9857], [10.5651, 60.9857], [10.565, 60.9858], [10.5647, 60.9858], [10.5646, 60.9858], [10.5643, 60.9859], [10.5639, 60.9859], [10.5635, 60.986], [10.5633, 60.9861], [10.5628, 60.9862], [10.5622, 60.9864], [10.5622, 60.9864], [10.5622, 60.9865], [10.5621, 60.9865], [10.562, 60.9866], [10.5617, 60.9866], [10.5613, 60.9867], [10.5608, 60.9868], [10.5606, 60.9869], [10.5599, 60.9871], [10.5593, 60.9873], [10.5588, 60.9875], [10.5587, 60.9875], [10.5586, 60.9875], [10.5586, 60.9876], [10.5585, 60.9877], [10.5583, 60.9879], [10.5583, 60.9879], [10.5581, 60.9879], [10.5578, 60.988], [10.5575, 60.9881], [10.5574, 60.9881], [10.5573, 60.9882], [10.5572, 60.9882], [10.557, 60.9885], [10.5569, 60.9885], [10.5567, 60.9886], [10.5565, 60.9886], [10.5563, 60.9887], [10.5563, 60.9887], [10.5563, 60.9885], [10.5561, 60.9885], [10.5557, 60.9886], [10.5555, 60.9886], [10.5554, 60.9886], [10.5552, 60.9886], [10.5549, 60.9886], [10.5548, 60.9887], [10.5542, 60.9888], [10.5536, 60.989], [10.5533, 60.989], [10.553, 60.9891], [10.5527, 60.9891], [10.5525, 60.9892], [10.5523, 60.9892], [10.5521, 60.9892], [10.5514, 60.9894], [10.5513, 60.9894], [10.5511, 60.9895], [10.551, 60.9895], [10.5509, 60.9895], [10.5505, 60.9895], [10.5504, 60.9895], [10.5504, 60.9895], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "13", "sub_div_center": [60.996856, 10.550419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5504, 60.9969], [10.5504, 61.009], [10.5507, 61.0091], [10.5508, 61.0091], [10.551, 61.0091], [10.5511, 61.009], [10.5512, 61.0089], [10.5514, 61.0088], [10.5515, 61.0087], [10.5515, 61.0087], [10.5515, 61.0086], [10.5514, 61.0085], [10.5513, 61.0085], [10.5513, 61.0084], [10.5513, 61.0083], [10.5513, 61.0083], [10.5514, 61.0082], [10.5515, 61.0082], [10.5519, 61.0081], [10.5523, 61.0081], [10.5525, 61.0081], [10.5528, 61.0082], [10.553, 61.0082], [10.5533, 61.0082], [10.5536, 61.0082], [10.5538, 61.0082], [10.5539, 61.0081], [10.554, 61.0081], [10.5541, 61.0081], [10.5541, 61.0081], [10.5542, 61.0081], [10.5543, 61.0081], [10.5545, 61.0081], [10.5544, 61.008], [10.5544, 61.008], [10.5545, 61.008], [10.5546, 61.0081], [10.5548, 61.0081], [10.5547, 61.0081], [10.5548, 61.008], [10.5548, 61.008], [10.5547, 61.008], [10.5548, 61.0079], [10.5548, 61.008], [10.5549, 61.008], [10.555, 61.008], [10.5551, 61.008], [10.5551, 61.008], [10.5552, 61.008], [10.5553, 61.008], [10.5553, 61.008], [10.5554, 61.008], [10.5555, 61.008], [10.5557, 61.0082], [10.5558, 61.0082], [10.5558, 61.0082], [10.5559, 61.0082], [10.556, 61.0082], [10.5561, 61.0082], [10.5565, 61.0082], [10.5569, 61.0081], [10.5571, 61.008], [10.5573, 61.008], [10.5574, 61.0079], [10.5576, 61.0078], [10.5577, 61.0078], [10.5578, 61.0077], [10.5578, 61.0077], [10.5578, 61.0077], [10.5578, 61.0076], [10.558, 61.0076], [10.5583, 61.0075], [10.5598, 61.0073], [10.5601, 61.0072], [10.5602, 61.0072], [10.5603, 61.0071], [10.5604, 61.0071], [10.5606, 61.0071], [10.5608, 61.007], [10.5609, 61.0069], [10.5613, 61.0067], [10.5614, 61.0066], [10.5614, 61.0066], [10.5614, 61.0066], [10.5613, 61.0066], [10.5613, 61.0065], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5611, 61.0066], [10.5613, 61.0065], [10.5614, 61.0065], [10.5614, 61.0065], [10.5616, 61.0064], [10.5617, 61.0064], [10.5617, 61.0064], [10.5617, 61.0063], [10.5618, 61.0063], [10.5618, 61.0063], [10.5619, 61.0063], [10.562, 61.0062], [10.5621, 61.0062], [10.5622, 61.006], [10.5623, 61.006], [10.5627, 61.0057], [10.5629, 61.0056], [10.5627, 61.0055], [10.5627, 61.0055], [10.5626, 61.0056], [10.5624, 61.0057], [10.5623, 61.0056], [10.5626, 61.0055], [10.5626, 61.0055], [10.5627, 61.0054], [10.5629, 61.0055], [10.5631, 61.0056], [10.5633, 61.0056], [10.5635, 61.0055], [10.5636, 61.0055], [10.5638, 61.0053], [10.5642, 61.0051], [10.5645, 61.005], [10.5648, 61.0049], [10.565, 61.0048], [10.5651, 61.0048], [10.5653, 61.0047], [10.5655, 61.0045], [10.5657, 61.0044], [10.5661, 61.0043], [10.5663, 61.0042], [10.5666, 61.0042], [10.5669, 61.0042], [10.5671, 61.0042], [10.5673, 61.0041], [10.5674, 61.0041], [10.5675, 61.004], [10.5676, 61.0039], [10.5678, 61.0039], [10.5681, 61.0039], [10.5683, 61.0038], [10.5684, 61.0038], [10.5686, 61.0038], [10.5687, 61.0037], [10.569, 61.0037], [10.5693, 61.0036], [10.5693, 61.0037], [10.5694, 61.0037], [10.5696, 61.0037], [10.5696, 61.0037], [10.5708, 61.0034], [10.5716, 61.0032], [10.5717, 61.0032], [10.5719, 61.0032], [10.572, 61.0031], [10.5721, 61.003], [10.5722, 61.003], [10.5724, 61.003], [10.5725, 61.0029], [10.5728, 61.0028], [10.5731, 61.0028], [10.5734, 61.0028], [10.5737, 61.0028], [10.5742, 61.0026], [10.5746, 61.0025], [10.5748, 61.0024], [10.575, 61.0024], [10.5753, 61.0023], [10.5756, 61.0023], [10.5763, 61.0021], [10.5768, 61.0019], [10.5769, 61.0019], [10.5775, 61.0017], [10.5776, 61.0016], [10.578, 61.0014], [10.5783, 61.0013], [10.5787, 61.0012], [10.5792, 61.0011], [10.5795, 61.0009], [10.5799, 61.0008], [10.5803, 61.0005], [10.5807, 61.0004], [10.5811, 61.0003], [10.5817, 61.0001], [10.5825, 60.9997], [10.5829, 60.9996], [10.583, 60.9996], [10.5836, 60.9995], [10.5842, 60.9994], [10.5848, 60.9992], [10.5851, 60.9991], [10.5854, 60.999], [10.5855, 60.9989], [10.5857, 60.9989], [10.5861, 60.9988], [10.5864, 60.9987], [10.5866, 60.9986], [10.5867, 60.9985], [10.5869, 60.9984], [10.5871, 60.9982], [10.5872, 60.9981], [10.5874, 60.998], [10.5875, 60.9979], [10.5878, 60.9977], [10.5879, 60.9976], [10.588, 60.9975], [10.5881, 60.9975], [10.5882, 60.9974], [10.5884, 60.9974], [10.5886, 60.9972], [10.5886, 60.9972], [10.5886, 60.9971], [10.5887, 60.997], [10.5889, 60.997], [10.589, 60.997], [10.5891, 60.997], [10.5892, 60.9969], [10.5893, 60.9969], [10.5892, 60.9969], [10.5892, 60.9969], [10.5504, 60.9969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "14", "sub_div_center": [60.976856, 10.590419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5904, 60.9966], [10.5905, 60.9966], [10.5906, 60.9966], [10.5912, 60.9964], [10.5917, 60.9962], [10.592, 60.996], [10.5922, 60.996], [10.5925, 60.9958], [10.5933, 60.9955], [10.5937, 60.9954], [10.594, 60.9954], [10.5943, 60.9953], [10.5949, 60.9951], [10.5953, 60.9949], [10.5956, 60.9948], [10.5958, 60.9947], [10.596, 60.9946], [10.5964, 60.9945], [10.5967, 60.9944], [10.597, 60.9944], [10.5974, 60.9944], [10.5976, 60.9944], [10.5978, 60.9943], [10.5982, 60.9942], [10.5982, 60.9941], [10.598, 60.994], [10.598, 60.994], [10.598, 60.9939], [10.598, 60.9938], [10.5981, 60.9937], [10.5983, 60.9937], [10.5984, 60.9937], [10.5985, 60.9937], [10.5987, 60.9937], [10.5988, 60.9937], [10.5989, 60.9936], [10.5989, 60.9935], [10.5989, 60.9934], [10.5989, 60.9933], [10.5987, 60.9933], [10.5986, 60.9932], [10.5985, 60.9932], [10.5983, 60.9929], [10.5981, 60.9927], [10.598, 60.9926], [10.598, 60.9925], [10.598, 60.9924], [10.598, 60.9924], [10.5982, 60.9923], [10.5983, 60.9922], [10.5985, 60.9921], [10.5986, 60.9921], [10.599, 60.9921], [10.5994, 60.992], [10.5994, 60.992], [10.5996, 60.992], [10.5997, 60.9919], [10.6, 60.9918], [10.6001, 60.9917], [10.6002, 60.9915], [10.6003, 60.9914], [10.6004, 60.9913], [10.6005, 60.9912], [10.6006, 60.9911], [10.6005, 60.9911], [10.6006, 60.991], [10.6007, 60.991], [10.6007, 60.9909], [10.6008, 60.9908], [10.6008, 60.9907], [10.6008, 60.9906], [10.6007, 60.9904], [10.6006, 60.9903], [10.6004, 60.9902], [10.6006, 60.9902], [10.6009, 60.9902], [10.6012, 60.9901], [10.6013, 60.9899], [10.6013, 60.9898], [10.6014, 60.9898], [10.6018, 60.9896], [10.602, 60.9895], [10.6021, 60.9895], [10.6024, 60.9894], [10.6026, 60.9894], [10.6029, 60.9892], [10.6033, 60.9891], [10.6037, 60.9889], [10.6044, 60.9886], [10.6045, 60.9885], [10.6051, 60.9884], [10.6058, 60.9882], [10.6065, 60.988], [10.6068, 60.9879], [10.607, 60.9878], [10.6071, 60.9879], [10.6071, 60.9878], [10.6072, 60.9878], [10.6075, 60.9878], [10.6078, 60.9877], [10.608, 60.9876], [10.6081, 60.9875], [10.6081, 60.9875], [10.6082, 60.9874], [10.6085, 60.9874], [10.6085, 60.9874], [10.6086, 60.9874], [10.6088, 60.9873], [10.609, 60.9873], [10.6093, 60.9873], [10.6096, 60.9872], [10.6101, 60.9872], [10.6102, 60.9871], [10.6104, 60.9871], [10.6105, 60.9872], [10.6108, 60.9871], [10.611, 60.9872], [10.6113, 60.9871], [10.6116, 60.9872], [10.6119, 60.9871], [10.6125, 60.9871], [10.6131, 60.987], [10.6136, 60.9869], [10.614, 60.9868], [10.6144, 60.9867], [10.6149, 60.9866], [10.6152, 60.9865], [10.6158, 60.9863], [10.6159, 60.9862], [10.6159, 60.986], [10.616, 60.9857], [10.616, 60.9856], [10.6162, 60.9856], [10.6163, 60.9855], [10.6165, 60.9854], [10.6168, 60.9853], [10.6172, 60.9852], [10.6174, 60.9852], [10.6177, 60.9853], [10.618, 60.9855], [10.6182, 60.9856], [10.6184, 60.9856], [10.6188, 60.9858], [10.6192, 60.9859], [10.6194, 60.9859], [10.6201, 60.9859], [10.6207, 60.9858], [10.6212, 60.9857], [10.6219, 60.9857], [10.6225, 60.9856], [10.6227, 60.9856], [10.6229, 60.9856], [10.6231, 60.9855], [10.6243, 60.9853], [10.6247, 60.9852], [10.6251, 60.9851], [10.6252, 60.985], [10.6254, 60.9849], [10.6255, 60.9848], [10.6256, 60.9848], [10.6259, 60.9847], [10.6264, 60.9847], [10.6267, 60.9846], [10.6271, 60.9845], [10.6278, 60.9843], [10.6285, 60.9841], [10.6288, 60.9839], [10.6291, 60.9837], [10.6295, 60.9835], [10.6297, 60.9835], [10.6298, 60.9834], [10.6299, 60.9833], [10.6302, 60.9831], [10.6303, 60.9829], [10.6304, 60.9828], [10.6304, 60.9828], [10.6304, 60.9769], [10.5964, 60.9769], [10.5964, 60.9769], [10.5963, 60.9769], [10.5958, 60.9769], [10.5952, 60.9771], [10.5949, 60.9772], [10.5946, 60.9772], [10.594, 60.9774], [10.5934, 60.9775], [10.5932, 60.9775], [10.593, 60.9775], [10.5929, 60.9776], [10.5928, 60.9776], [10.5926, 60.9778], [10.5925, 60.9778], [10.5924, 60.9779], [10.5924, 60.9779], [10.5924, 60.978], [10.5925, 60.9781], [10.5926, 60.9781], [10.5926, 60.9782], [10.5926, 60.9783], [10.5926, 60.9784], [10.5925, 60.9785], [10.5923, 60.9787], [10.5919, 60.9789], [10.5916, 60.9791], [10.5914, 60.9792], [10.5912, 60.9793], [10.5909, 60.9794], [10.5908, 60.9795], [10.5905, 60.9796], [10.5904, 60.9796], [10.5904, 60.9966]]]}}, {"type": "Feature", "properties": {"sub_div_id": "15", "sub_div_center": [60.958672, 10.596374]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6304, 60.9587], [10.6304, 60.9587], [10.63, 60.9589], [10.6298, 60.959], [10.6297, 60.9591], [10.6297, 60.9592], [10.6297, 60.9594], [10.6297, 60.9594], [10.6297, 60.9595], [10.6296, 60.9595], [10.6294, 60.9596], [10.6289, 60.9599], [10.6285, 60.9601], [10.628, 60.9604], [10.6279, 60.9605], [10.6277, 60.9606], [10.6275, 60.9607], [10.6273, 60.9609], [10.6273, 60.9611], [10.6272, 60.9615], [10.6272, 60.9615], [10.6271, 60.9615], [10.6269, 60.9615], [10.6268, 60.9615], [10.6267, 60.9615], [10.6266, 60.9614], [10.6266, 60.9613], [10.6266, 60.9613], [10.6265, 60.9613], [10.6264, 60.9613], [10.6262, 60.9612], [10.6261, 60.9612], [10.626, 60.9613], [10.6258, 60.9613], [10.6256, 60.9614], [10.6254, 60.9614], [10.6253, 60.9615], [10.6253, 60.9615], [10.6251, 60.9616], [10.625, 60.9616], [10.6247, 60.9617], [10.6245, 60.9618], [10.6244, 60.9618], [10.6243, 60.9618], [10.6243, 60.9619], [10.6242, 60.962], [10.624, 60.9622], [10.624, 60.9622], [10.624, 60.9623], [10.6241, 60.9623], [10.6241, 60.9624], [10.624, 60.9624], [10.6239, 60.9624], [10.6238, 60.9624], [10.6236, 60.9623], [10.6235, 60.9622], [10.6235, 60.9622], [10.6235, 60.9621], [10.6235, 60.9621], [10.6235, 60.962], [10.6236, 60.962], [10.6235, 60.9619], [10.6234, 60.9618], [10.6233, 60.9615], [10.6233, 60.9614], [10.6232, 60.9614], [10.6232, 60.9614], [10.6231, 60.9614], [10.6231, 60.9615], [10.6231, 60.9616], [10.6231, 60.9617], [10.6232, 60.9617], [10.6232, 60.9618], [10.6231, 60.9619], [10.6231, 60.9619], [10.6228, 60.9619], [10.6227, 60.9619], [10.6228, 60.9619], [10.6231, 60.9621], [10.6232, 60.9621], [10.6234, 60.9624], [10.6234, 60.9625], [10.6235, 60.9626], [10.6234, 60.9626], [10.623, 60.9626], [10.6229, 60.9627], [10.6229, 60.9627], [10.6227, 60.9628], [10.6224, 60.9631], [10.6223, 60.9632], [10.6222, 60.9633], [10.6221, 60.9633], [10.6219, 60.9634], [10.6218, 60.9634], [10.6217, 60.9634], [10.6216, 60.9634], [10.6216, 60.9635], [10.6216, 60.9636], [10.6216, 60.9636], [10.6212, 60.9636], [10.6212, 60.9637], [10.6211, 60.9638], [10.621, 60.9638], [10.6208, 60.9637], [10.6207, 60.9637], [10.6207, 60.9637], [10.6206, 60.9637], [10.6206, 60.9638], [10.6207, 60.9639], [10.6209, 60.964], [10.621, 60.964], [10.6211, 60.9641], [10.6211, 60.9642], [10.6211, 60.9642], [10.621, 60.9642], [10.621, 60.9643], [10.6209, 60.9643], [10.6209, 60.9642], [10.6207, 60.9642], [10.6207, 60.9643], [10.6206, 60.9643], [10.6205, 60.9644], [10.6205, 60.9646], [10.6204, 60.9646], [10.6197, 60.9648], [10.6195, 60.9648], [10.6191, 60.9648], [10.6191, 60.9648], [10.619, 60.9649], [10.619, 60.9649], [10.619, 60.965], [10.6191, 60.9652], [10.6191, 60.9654], [10.6191, 60.9655], [10.619, 60.9656], [10.6187, 60.9656], [10.6187, 60.9657], [10.6187, 60.9657], [10.6187, 60.9658], [10.6187, 60.9658], [10.6187, 60.9659], [10.6188, 60.966], [10.6189, 60.966], [10.6189, 60.966], [10.6189, 60.966], [10.6188, 60.966], [10.6187, 60.966], [10.6186, 60.966], [10.6185, 60.966], [10.6183, 60.9659], [10.618, 60.9659], [10.6178, 60.9659], [10.6174, 60.966], [10.6172, 60.9661], [10.6171, 60.9661], [10.617, 60.9662], [10.6169, 60.9662], [10.6168, 60.9663], [10.6168, 60.9664], [10.6168, 60.9665], [10.6167, 60.9666], [10.6166, 60.9666], [10.6165, 60.9666], [10.6164, 60.9666], [10.6164, 60.9665], [10.6164, 60.9664], [10.6163, 60.9664], [10.6162, 60.9664], [10.6162, 60.9665], [10.6162, 60.9666], [10.6162, 60.9666], [10.6159, 60.9666], [10.6156, 60.9667], [10.6154, 60.9668], [10.6152, 60.9668], [10.6151, 60.9668], [10.615, 60.9668], [10.6148, 60.9668], [10.6146, 60.9668], [10.6146, 60.967], [10.6146, 60.967], [10.6146, 60.9671], [10.6145, 60.9671], [10.6144, 60.9671], [10.6143, 60.9671], [10.6136, 60.9672], [10.6135, 60.9672], [10.6135, 60.9672], [10.6134, 60.9672], [10.6133, 60.9672], [10.6133, 60.9672], [10.6131, 60.9672], [10.6131, 60.9671], [10.6131, 60.967], [10.613, 60.967], [10.6129, 60.967], [10.6128, 60.967], [10.6128, 60.9672], [10.6128, 60.9672], [10.6122, 60.9672], [10.6121, 60.9673], [10.612, 60.9673], [10.6119, 60.9673], [10.6118, 60.9673], [10.6116, 60.9673], [10.6115, 60.9673], [10.6115, 60.9673], [10.6117, 60.9675], [10.6117, 60.9675], [10.6118, 60.9675], [10.6119, 60.9676], [10.6121, 60.9677], [10.612, 60.9677], [10.6119, 60.9677], [10.6117, 60.9677], [10.6116, 60.9677], [10.6116, 60.9677], [10.6115, 60.9678], [10.6116, 60.9679], [10.6116, 60.9679], [10.6115, 60.968], [10.6114, 60.9679], [10.6113, 60.9679], [10.6112, 60.9676], [10.6111, 60.9675], [10.611, 60.9675], [10.6109, 60.9675], [10.6109, 60.9675], [10.6109, 60.9676], [10.611, 60.9677], [10.6111, 60.9678], [10.6111, 60.9679], [10.6112, 60.968], [10.6112, 60.968], [10.6112, 60.9681], [10.6112, 60.9681], [10.6111, 60.9681], [10.6111, 60.9681], [10.6111, 60.968], [10.611, 60.968], [10.6109, 60.968], [10.6107, 60.9681], [10.6107, 60.9681], [10.6106, 60.9681], [10.6104, 60.968], [10.6103, 60.968], [10.6102, 60.968], [10.6102, 60.9681], [10.6101, 60.9681], [10.6099, 60.9681], [10.6099, 60.9681], [10.6098, 60.9682], [10.6099, 60.9682], [10.6099, 60.9682], [10.61, 60.9683], [10.6102, 60.9683], [10.6103, 60.9684], [10.6103, 60.9684], [10.6103, 60.9684], [10.6101, 60.9684], [10.61, 60.9684], [10.61, 60.9685], [10.6098, 60.9686], [10.6097, 60.9686], [10.6092, 60.9687], [10.609, 60.9687], [10.6089, 60.9687], [10.6088, 60.9687], [10.6087, 60.9686], [10.6086, 60.9686], [10.6085, 60.9686], [10.6084, 60.9686], [10.6084, 60.9687], [10.6084, 60.9687], [10.6086, 60.9687], [10.6086, 60.9688], [10.6086, 60.9688], [10.6086, 60.9688], [10.6084, 60.9688], [10.6083, 60.9688], [10.6083, 60.969], [10.6082, 60.969], [10.6081, 60.969], [10.6081, 60.969], [10.6081, 60.9691], [10.608, 60.9691], [10.608, 60.9692], [10.6081, 60.9693], [10.6081, 60.9693], [10.6081, 60.9694], [10.608, 60.9694], [10.6078, 60.9695], [10.6077, 60.9695], [10.6073, 60.9695], [10.6073, 60.9696], [10.6073, 60.9696], [10.6072, 60.9696], [10.607, 60.9697], [10.607, 60.9697], [10.6069, 60.9697], [10.6069, 60.9699], [10.6069, 60.9699], [10.6068, 60.97], [10.6068, 60.97], [10.6067, 60.97], [10.6066, 60.97], [10.6066, 60.97], [10.6064, 60.9701], [10.6061, 60.9701], [10.606, 60.9702], [10.606, 60.9703], [10.6059, 60.9704], [10.6059, 60.9705], [10.6058, 60.9706], [10.6057, 60.9707], [10.6056, 60.9709], [10.6055, 60.9711], [10.6053, 60.9713], [10.6052, 60.9714], [10.6049, 60.9715], [10.6044, 60.9717], [10.6041, 60.9717], [10.6039, 60.9717], [10.6037, 60.9718], [10.6034, 60.9718], [10.6033, 60.9719], [10.6032, 60.9719], [10.6031, 60.972], [10.6031, 60.972], [10.6031, 60.9721], [10.6029, 60.9721], [10.6029, 60.9722], [10.603, 60.9722], [10.603, 60.9723], [10.603, 60.9725], [10.603, 60.9726], [10.603, 60.9727], [10.6032, 60.9727], [10.6033, 60.9728], [10.6034, 60.9728], [10.6036, 60.9729], [10.6038, 60.9729], [10.604, 60.9729], [10.6041, 60.9729], [10.6044, 60.9729], [10.6046, 60.973], [10.6047, 60.973], [10.6048, 60.973], [10.6048, 60.973], [10.6047, 60.9731], [10.6047, 60.9731], [10.6044, 60.9731], [10.6042, 60.9731], [10.6041, 60.9732], [10.6037, 60.9733], [10.6034, 60.9733], [10.6034, 60.9734], [10.6034, 60.9734], [10.6034, 60.9734], [10.6034, 60.9736], [10.6034, 60.9737], [10.6031, 60.9737], [10.6027, 60.9738], [10.6023, 60.9738], [10.6022, 60.9739], [10.602, 60.974], [10.6018, 60.9741], [10.6017, 60.9742], [10.6015, 60.9743], [10.6015, 60.9745], [10.6014, 60.9746], [10.6014, 60.9747], [10.6015, 60.9747], [10.6016, 60.9748], [10.6017, 60.9748], [10.6017, 60.9748], [10.6017, 60.9748], [10.6014, 60.9748], [10.6013, 60.9748], [10.6012, 60.9748], [10.6008, 60.9751], [10.6007, 60.9751], [10.6004, 60.9752], [10.6001, 60.9752], [10.6, 60.9753], [10.5998, 60.9753], [10.5997, 60.9754], [10.5995, 60.9755], [10.5994, 60.9756], [10.5989, 60.9758], [10.5988, 60.9758], [10.5988, 60.9759], [10.5988, 60.9759], [10.5989, 60.9761], [10.5989, 60.9761], [10.5988, 60.9762], [10.5987, 60.9762], [10.5985, 60.9763], [10.5985, 60.9764], [10.5984, 60.9766], [10.5983, 60.9767], [10.5982, 60.9767], [10.598, 60.9767], [10.5979, 60.9767], [10.5977, 60.9766], [10.5975, 60.9766], [10.597, 60.9767], [10.5968, 60.9768], [10.5967, 60.9768], [10.5966, 60.9768], [10.5966, 60.9768], [10.5966, 60.9767], [10.5965, 60.9766], [10.5964, 60.9766], [10.5964, 60.9767], [10.5964, 60.9768], [10.5964, 60.9769], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "16", "sub_div_center": [60.936856, 10.630419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.954], [10.6306, 60.9542], [10.6308, 60.9543], [10.6311, 60.9545], [10.6311, 60.9547], [10.6311, 60.9549], [10.6311, 60.9551], [10.6309, 60.9554], [10.6308, 60.9555], [10.6308, 60.9557], [10.6308, 60.9557], [10.6309, 60.9558], [10.6309, 60.956], [10.631, 60.9561], [10.631, 60.9561], [10.631, 60.9561], [10.6309, 60.9561], [10.6308, 60.956], [10.6308, 60.956], [10.6308, 60.956], [10.6308, 60.9561], [10.6308, 60.9567], [10.6309, 60.9568], [10.6309, 60.9569], [10.6668, 60.9569], [10.667, 60.9567], [10.6672, 60.9566], [10.6674, 60.9566], [10.6675, 60.9565], [10.6676, 60.9565], [10.6678, 60.9564], [10.6681, 60.9563], [10.6684, 60.9559], [10.6687, 60.9555], [10.669, 60.955], [10.6691, 60.9549], [10.6691, 60.9549], [10.669, 60.9548], [10.669, 60.9547], [10.6692, 60.9546], [10.6692, 60.9545], [10.6692, 60.9545], [10.6692, 60.9545], [10.6694, 60.9545], [10.6695, 60.9544], [10.6698, 60.9543], [10.67, 60.9542], [10.6702, 60.9541], [10.6704, 60.954], [10.6704, 60.9508], [10.6702, 60.9509], [10.6702, 60.9509], [10.6701, 60.9509], [10.6701, 60.9509], [10.67, 60.9509], [10.6698, 60.9509], [10.6697, 60.951], [10.6695, 60.951], [10.6693, 60.9509], [10.6692, 60.9508], [10.6691, 60.9508], [10.669, 60.9507], [10.6689, 60.9507], [10.6688, 60.9506], [10.6687, 60.9505], [10.6687, 60.9505], [10.6687, 60.9504], [10.6687, 60.9504], [10.6687, 60.9503], [10.6687, 60.9503], [10.6688, 60.9503], [10.6688, 60.9502], [10.6688, 60.9502], [10.6687, 60.9502], [10.6687, 60.9501], [10.6687, 60.9499], [10.6688, 60.9499], [10.6691, 60.9499], [10.6693, 60.9498], [10.6696, 60.9498], [10.6698, 60.9498], [10.6699, 60.9498], [10.6699, 60.9497], [10.6698, 60.9497], [10.6697, 60.9496], [10.6697, 60.9495], [10.6697, 60.9494], [10.6699, 60.9494], [10.67, 60.9494], [10.67, 60.9493], [10.67, 60.9493], [10.67, 60.9492], [10.67, 60.9491], [10.6699, 60.949], [10.6698, 60.9489], [10.6697, 60.9488], [10.6695, 60.9488], [10.6693, 60.9487], [10.6691, 60.9486], [10.6692, 60.9485], [10.6691, 60.9484], [10.669, 60.9484], [10.669, 60.9484], [10.669, 60.9483], [10.669, 60.9483], [10.6691, 60.9482], [10.669, 60.9482], [10.6687, 60.9481], [10.6686, 60.9481], [10.6687, 60.948], [10.6688, 60.948], [10.6688, 60.9479], [10.6687, 60.9479], [10.6688, 60.9478], [10.669, 60.9478], [10.6691, 60.9477], [10.6693, 60.9477], [10.6696, 60.9476], [10.6697, 60.9476], [10.6699, 60.9476], [10.6702, 60.9476], [10.6704, 60.9476], [10.6704, 60.9369], [10.6482, 60.9369], [10.6479, 60.9371], [10.6476, 60.9374], [10.6475, 60.9376], [10.6473, 60.9377], [10.647, 60.9379], [10.6467, 60.9382], [10.6464, 60.9383], [10.6461, 60.9386], [10.6458, 60.9389], [10.6456, 60.9391], [10.6454, 60.9394], [10.6451, 60.9397], [10.645, 60.9398], [10.6446, 60.9403], [10.6444, 60.9406], [10.6442, 60.9407], [10.644, 60.941], [10.644, 60.9411], [10.644, 60.9415], [10.6439, 60.9416], [10.6439, 60.9418], [10.6438, 60.9418], [10.6437, 60.9419], [10.6435, 60.942], [10.6432, 60.9423], [10.6429, 60.9426], [10.6428, 60.9429], [10.6426, 60.9432], [10.6425, 60.9434], [10.6422, 60.944], [10.6419, 60.945], [10.6419, 60.945], [10.6418, 60.945], [10.6418, 60.9453], [10.6417, 60.9456], [10.6416, 60.9457], [10.6416, 60.946], [10.6415, 60.9463], [10.6415, 60.9464], [10.6415, 60.947], [10.6416, 60.9474], [10.6416, 60.9475], [10.6416, 60.9476], [10.6417, 60.9477], [10.6418, 60.9477], [10.642, 60.9478], [10.6422, 60.9478], [10.6424, 60.9479], [10.6426, 60.9478], [10.6429, 60.9479], [10.643, 60.9479], [10.6431, 60.948], [10.6434, 60.948], [10.6437, 60.9481], [10.6438, 60.9481], [10.6439, 60.9482], [10.644, 60.9482], [10.644, 60.9483], [10.644, 60.9483], [10.6439, 60.9483], [10.6438, 60.9483], [10.6435, 60.9483], [10.6433, 60.9483], [10.643, 60.9483], [10.6427, 60.9483], [10.6426, 60.9483], [10.6425, 60.9485], [10.6425, 60.9485], [10.6422, 60.9486], [10.6421, 60.9487], [10.6421, 60.9488], [10.6421, 60.9489], [10.6421, 60.9491], [10.6421, 60.9491], [10.6421, 60.9492], [10.6424, 60.9494], [10.6425, 60.9495], [10.6424, 60.9495], [10.6424, 60.9496], [10.6423, 60.9496], [10.6422, 60.9495], [10.642, 60.9495], [10.6418, 60.9496], [10.6412, 60.9496], [10.6409, 60.9495], [10.6407, 60.9495], [10.6403, 60.9496], [10.64, 60.9496], [10.6398, 60.9497], [10.6397, 60.9497], [10.6395, 60.9498], [10.6391, 60.95], [10.6386, 60.9502], [10.6382, 60.9503], [10.638, 60.9504], [10.6375, 60.9506], [10.637, 60.9508], [10.6364, 60.9509], [10.6358, 60.9511], [10.6353, 60.9511], [10.6347, 60.9512], [10.6345, 60.9513], [10.6334, 60.9514], [10.6331, 60.9515], [10.6329, 60.9516], [10.6325, 60.9516], [10.6319, 60.9517], [10.6312, 60.9519], [10.6306, 60.952], [10.6304, 60.952], [10.6304, 60.954]]]}}, {"type": "Feature", "properties": {"sub_div_id": "17", "sub_div_center": [60.952045, 10.627537]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.952], [10.6299, 60.9522], [10.6295, 60.9523], [10.6293, 60.9524], [10.6288, 60.9525], [10.6285, 60.9527], [10.6284, 60.9528], [10.6284, 60.9528], [10.628, 60.9529], [10.6279, 60.953], [10.6278, 60.953], [10.6277, 60.9532], [10.6277, 60.9534], [10.6278, 60.9536], [10.6278, 60.9537], [10.6278, 60.9538], [10.6278, 60.9538], [10.6278, 60.9538], [10.6277, 60.9539], [10.6278, 60.9539], [10.6279, 60.954], [10.628, 60.954], [10.6281, 60.954], [10.6283, 60.9541], [10.6284, 60.954], [10.6286, 60.954], [10.6289, 60.9539], [10.6291, 60.9539], [10.6291, 60.9539], [10.6292, 60.9539], [10.6292, 60.9539], [10.6291, 60.9539], [10.6291, 60.954], [10.6283, 60.9542], [10.6282, 60.9543], [10.6281, 60.9544], [10.6281, 60.9545], [10.628, 60.9545], [10.6279, 60.9545], [10.6277, 60.9545], [10.6276, 60.9546], [10.6275, 60.9546], [10.6275, 60.9548], [10.6276, 60.9548], [10.6276, 60.9549], [10.6278, 60.9549], [10.6288, 60.9549], [10.629, 60.9549], [10.6297, 60.9549], [10.6304, 60.9549], [10.6304, 60.9542], [10.6304, 60.9542], [10.6303, 60.9541], [10.6301, 60.954], [10.63, 60.9539], [10.63, 60.9538], [10.63, 60.9538], [10.6301, 60.9538], [10.6302, 60.9538], [10.6303, 60.9539], [10.6304, 60.954], [10.6304, 60.952]]]}}, {"type": "Feature", "properties": {"sub_div_id": "18", "sub_div_center": [60.954218, 10.630419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9549], [10.6305, 60.9549], [10.6307, 60.9549], [10.6307, 60.9549], [10.6307, 60.9548], [10.6307, 60.9545], [10.6306, 60.9544], [10.6306, 60.9543], [10.6304, 60.9542], [10.6304, 60.9549], [10.6304, 60.9549]]]}}, {"type": "Feature", "properties": {"sub_div_id": "19", "sub_div_center": [60.956856, 10.630419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6519, 60.9769], [10.652, 60.9767], [10.652, 60.9764], [10.6521, 60.9762], [10.6521, 60.976], [10.6522, 60.9757], [10.6522, 60.9755], [10.6522, 60.9752], [10.6522, 60.975], [10.6522, 60.9749], [10.6522, 60.9748], [10.6523, 60.9748], [10.6524, 60.9747], [10.6524, 60.9745], [10.6526, 60.974], [10.6527, 60.9739], [10.6528, 60.9737], [10.653, 60.9735], [10.6532, 60.9733], [10.6535, 60.973], [10.6535, 60.9728], [10.6537, 60.9726], [10.6539, 60.9722], [10.6539, 60.9719], [10.6538, 60.9716], [10.6538, 60.9715], [10.6537, 60.9714], [10.6536, 60.9712], [10.6534, 60.971], [10.6532, 60.9708], [10.6529, 60.9706], [10.6528, 60.9704], [10.6529, 60.9702], [10.6528, 60.97], [10.6528, 60.97], [10.6528, 60.9698], [10.6529, 60.9698], [10.653, 60.9697], [10.653, 60.9696], [10.6531, 60.9694], [10.6533, 60.9693], [10.6534, 60.9692], [10.6535, 60.9691], [10.6536, 60.9691], [10.6537, 60.969], [10.6538, 60.9689], [10.654, 60.9689], [10.6541, 60.9689], [10.6541, 60.9689], [10.6542, 60.9688], [10.6543, 60.9688], [10.6544, 60.9688], [10.6545, 60.9686], [10.6546, 60.9685], [10.6547, 60.9684], [10.6548, 60.9683], [10.6548, 60.9681], [10.6547, 60.9681], [10.6548, 60.9681], [10.6548, 60.968], [10.6548, 60.968], [10.6548, 60.968], [10.655, 60.968], [10.655, 60.9679], [10.6553, 60.9679], [10.6556, 60.9677], [10.6558, 60.9676], [10.656, 60.9674], [10.6562, 60.9673], [10.6564, 60.9672], [10.6566, 60.967], [10.6568, 60.9669], [10.657, 60.9667], [10.6571, 60.9666], [10.6573, 60.9666], [10.6573, 60.9665], [10.6573, 60.9664], [10.6574, 60.9663], [10.6575, 60.9663], [10.6575, 60.9663], [10.6577, 60.9662], [10.6578, 60.9661], [10.6578, 60.9661], [10.658, 60.9659], [10.6581, 60.9659], [10.6581, 60.9658], [10.6582, 60.9657], [10.6582, 60.9657], [10.6583, 60.9656], [10.6581, 60.9655], [10.658, 60.9653], [10.6579, 60.9652], [10.6578, 60.965], [10.6583, 60.9648], [10.6585, 60.9647], [10.6589, 60.9646], [10.659, 60.9646], [10.659, 60.9645], [10.6592, 60.9644], [10.6594, 60.9644], [10.6596, 60.9643], [10.6599, 60.9642], [10.6602, 60.9641], [10.6605, 60.9641], [10.6608, 60.964], [10.6611, 60.9638], [10.6617, 60.9636], [10.6625, 60.9634], [10.6628, 60.9634], [10.663, 60.9633], [10.6631, 60.9632], [10.6631, 60.9632], [10.6632, 60.9632], [10.6634, 60.963], [10.6636, 60.9629], [10.6639, 60.9629], [10.664, 60.9628], [10.6641, 60.9627], [10.6643, 60.9623], [10.6643, 60.9621], [10.6643, 60.9619], [10.6642, 60.9618], [10.6642, 60.9616], [10.6642, 60.9615], [10.6641, 60.9614], [10.664, 60.9613], [10.6638, 60.9611], [10.6638, 60.9609], [10.6636, 60.9608], [10.6636, 60.9606], [10.6635, 60.9605], [10.6632, 60.9603], [10.663, 60.9601], [10.6626, 60.9599], [10.6625, 60.9598], [10.6624, 60.9598], [10.6625, 60.9597], [10.6627, 60.9595], [10.6629, 60.9593], [10.6633, 60.9592], [10.6635, 60.9591], [10.6638, 60.9589], [10.6642, 60.9584], [10.6644, 60.9583], [10.6648, 60.9581], [10.6649, 60.958], [10.6651, 60.958], [10.6655, 60.9577], [10.6656, 60.9576], [10.6657, 60.9575], [10.6657, 60.9574], [10.6656, 60.9573], [10.6657, 60.9573], [10.6659, 60.9574], [10.6661, 60.9573], [10.6662, 60.9572], [10.6664, 60.9571], [10.6668, 60.9569], [10.6668, 60.9569], [10.6309, 60.9569], [10.6309, 60.9569], [10.6309, 60.957], [10.6309, 60.9573], [10.6309, 60.9575], [10.6309, 60.9576], [10.631, 60.9579], [10.631, 60.9583], [10.6309, 60.9584], [10.6309, 60.9584], [10.6308, 60.9585], [10.6305, 60.9586], [10.6304, 60.9587], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "20", "sub_div_center": [60.976856, 10.630419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6304, 60.9769], [10.6304, 60.9828], [10.6306, 60.9827], [10.6308, 60.9826], [10.631, 60.9824], [10.6314, 60.9821], [10.6315, 60.9819], [10.6317, 60.9817], [10.6326, 60.9813], [10.6329, 60.9812], [10.6333, 60.9812], [10.6334, 60.9811], [10.6339, 60.981], [10.6344, 60.981], [10.6346, 60.981], [10.635, 60.981], [10.6352, 60.9809], [10.6363, 60.9809], [10.6373, 60.9811], [10.6374, 60.9811], [10.6377, 60.9811], [10.6378, 60.9811], [10.6379, 60.9812], [10.6382, 60.9812], [10.6385, 60.9813], [10.6387, 60.9814], [10.6388, 60.9815], [10.639, 60.9816], [10.6392, 60.9819], [10.6393, 60.982], [10.6395, 60.9821], [10.6397, 60.9821], [10.6403, 60.9821], [10.6408, 60.9821], [10.6411, 60.982], [10.6414, 60.9819], [10.6415, 60.9818], [10.6416, 60.9818], [10.6416, 60.9818], [10.6417, 60.9817], [10.6417, 60.9817], [10.6418, 60.9817], [10.6418, 60.9817], [10.6419, 60.9817], [10.6419, 60.9817], [10.6419, 60.9817], [10.6419, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.642, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6421, 60.9816], [10.6424, 60.9815], [10.6424, 60.9815], [10.6424, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6425, 60.9815], [10.6426, 60.9815], [10.6426, 60.9815], [10.6426, 60.9815], [10.6427, 60.9815], [10.6428, 60.9816], [10.6429, 60.9816], [10.6429, 60.9816], [10.643, 60.9816], [10.6431, 60.9817], [10.6432, 60.9817], [10.6433, 60.9817], [10.6433, 60.9816], [10.6433, 60.9816], [10.6433, 60.9816], [10.6433, 60.9816], [10.6435, 60.9816], [10.6436, 60.9816], [10.6436, 60.9816], [10.6437, 60.9816], [10.6437, 60.9816], [10.6437, 60.9816], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6437, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6438, 60.9815], [10.6443, 60.9815], [10.6446, 60.9814], [10.6447, 60.9813], [10.6447, 60.9813], [10.6448, 60.9813], [10.6448, 60.9813], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9812], [10.6449, 60.9813], [10.645, 60.9813], [10.645, 60.9813], [10.645, 60.9813], [10.6451, 60.9813], [10.6451, 60.9813], [10.6451, 60.9812], [10.6452, 60.9812], [10.6452, 60.9812], [10.6452, 60.9812], [10.6453, 60.9812], [10.6454, 60.9812], [10.6455, 60.9812], [10.6456, 60.9811], [10.6456, 60.9811], [10.6456, 60.9811], [10.6457, 60.9811], [10.6458, 60.9811], [10.646, 60.9811], [10.6462, 60.9811], [10.6463, 60.9811], [10.6468, 60.9809], [10.6469, 60.9809], [10.6469, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.647, 60.9809], [10.6471, 60.9809], [10.6471, 60.9809], [10.6471, 60.9809], [10.6472, 60.9809], [10.6476, 60.9808], [10.6477, 60.9808], [10.6477, 60.9807], [10.6478, 60.9807], [10.6478, 60.9807], [10.6479, 60.9807], [10.6479, 60.9807], [10.648, 60.9806], [10.648, 60.9806], [10.6481, 60.9806], [10.6481, 60.9806], [10.6483, 60.9805], [10.6486, 60.9804], [10.6487, 60.9804], [10.6487, 60.9804], [10.6487, 60.9803], [10.6487, 60.9803], [10.6488, 60.9803], [10.6487, 60.9803], [10.6487, 60.9802], [10.6486, 60.9802], [10.6486, 60.9802], [10.6486, 60.9802], [10.6485, 60.9802], [10.6485, 60.9802], [10.6486, 60.9801], [10.6487, 60.98], [10.649, 60.9799], [10.6495, 60.9798], [10.6495, 60.9797], [10.6495, 60.9796], [10.6496, 60.9796], [10.6496, 60.9795], [10.6496, 60.9794], [10.6497, 60.9794], [10.6496, 60.9794], [10.6497, 60.9794], [10.6497, 60.9793], [10.6497, 60.9793], [10.6498, 60.9793], [10.6499, 60.9793], [10.6499, 60.9792], [10.6499, 60.9792], [10.6499, 60.9791], [10.6499, 60.979], [10.6501, 60.979], [10.6502, 60.9788], [10.6505, 60.9787], [10.6507, 60.9785], [10.6511, 60.9781], [10.6516, 60.9775], [10.6517, 60.9772], [10.6519, 60.977], [10.6519, 60.9769], [10.6304, 60.9769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "21", "sub_div_center": [60.916856, 10.64822]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9369], [10.6704, 60.9169], [10.6643, 60.9169], [10.6644, 60.9169], [10.6645, 60.917], [10.6646, 60.9171], [10.6647, 60.9171], [10.6647, 60.9172], [10.6647, 60.9172], [10.6649, 60.9173], [10.665, 60.9174], [10.6651, 60.9175], [10.6651, 60.9176], [10.6651, 60.9177], [10.6651, 60.9178], [10.6651, 60.9178], [10.6653, 60.918], [10.6656, 60.9181], [10.6656, 60.9181], [10.6656, 60.9181], [10.6655, 60.9182], [10.6653, 60.9183], [10.6652, 60.9184], [10.6652, 60.9184], [10.6651, 60.9184], [10.6649, 60.9184], [10.6647, 60.9184], [10.6646, 60.9183], [10.6643, 60.9183], [10.6642, 60.9184], [10.6639, 60.9184], [10.6636, 60.9185], [10.6633, 60.9185], [10.6632, 60.9185], [10.6631, 60.9186], [10.6629, 60.9187], [10.6627, 60.9189], [10.6619, 60.9196], [10.6615, 60.9199], [10.6614, 60.9201], [10.6611, 60.9202], [10.661, 60.9203], [10.6607, 60.9203], [10.6603, 60.9205], [10.6602, 60.9206], [10.6594, 60.9213], [10.6593, 60.9214], [10.6592, 60.9216], [10.6592, 60.9217], [10.6592, 60.9218], [10.6592, 60.9218], [10.6593, 60.9219], [10.6594, 60.922], [10.6596, 60.9221], [10.6597, 60.9221], [10.6599, 60.9222], [10.66, 60.9222], [10.66, 60.9222], [10.6603, 60.9224], [10.6604, 60.9225], [10.6605, 60.9227], [10.6606, 60.9227], [10.6606, 60.9228], [10.6605, 60.9229], [10.6604, 60.9229], [10.6602, 60.923], [10.6601, 60.923], [10.66, 60.9231], [10.6598, 60.9231], [10.6598, 60.9231], [10.6596, 60.923], [10.6595, 60.923], [10.6592, 60.923], [10.6591, 60.9231], [10.6589, 60.9232], [10.6588, 60.9232], [10.6585, 60.9234], [10.6584, 60.9235], [10.6583, 60.9236], [10.6583, 60.9237], [10.6583, 60.9237], [10.6584, 60.9237], [10.6584, 60.9238], [10.6586, 60.9238], [10.6587, 60.9238], [10.6589, 60.924], [10.6589, 60.9241], [10.6588, 60.9241], [10.6585, 60.9242], [10.6584, 60.9243], [10.6582, 60.9243], [10.658, 60.9244], [10.6578, 60.9244], [10.6578, 60.9245], [10.6575, 60.9246], [10.6573, 60.9247], [10.6569, 60.9249], [10.6568, 60.9249], [10.6566, 60.9251], [10.6565, 60.9254], [10.6563, 60.9257], [10.6561, 60.926], [10.6557, 60.9269], [10.6555, 60.9272], [10.6556, 60.9272], [10.6556, 60.9273], [10.6556, 60.9273], [10.6556, 60.9274], [10.6557, 60.9274], [10.6558, 60.9274], [10.6561, 60.9274], [10.6562, 60.9275], [10.6562, 60.9276], [10.6561, 60.9277], [10.656, 60.9278], [10.6559, 60.928], [10.6559, 60.9283], [10.6559, 60.9286], [10.6559, 60.9288], [10.6559, 60.9289], [10.656, 60.9289], [10.6561, 60.929], [10.6562, 60.929], [10.6563, 60.929], [10.6566, 60.929], [10.6573, 60.9289], [10.6578, 60.9289], [10.6582, 60.9289], [10.6582, 60.9289], [10.6582, 60.929], [10.6582, 60.929], [10.6581, 60.9291], [10.6581, 60.9291], [10.6578, 60.9291], [10.6575, 60.9292], [10.6571, 60.9292], [10.6568, 60.9292], [10.6565, 60.9293], [10.6558, 60.9295], [10.6557, 60.9295], [10.6556, 60.9295], [10.6555, 60.9296], [10.6554, 60.9297], [10.6552, 60.9299], [10.655, 60.9302], [10.6549, 60.9303], [10.6548, 60.9305], [10.6547, 60.9308], [10.6546, 60.9311], [10.6545, 60.9314], [10.6543, 60.9317], [10.654, 60.9324], [10.654, 60.9327], [10.6539, 60.9328], [10.6539, 60.9328], [10.6539, 60.933], [10.654, 60.933], [10.6541, 60.9331], [10.6543, 60.9332], [10.6543, 60.9333], [10.6543, 60.9334], [10.6542, 60.9335], [10.6541, 60.9336], [10.654, 60.9337], [10.6534, 60.934], [10.6529, 60.9342], [10.6523, 60.9344], [10.6519, 60.9345], [10.6516, 60.9347], [10.6511, 60.9349], [10.6507, 60.9352], [10.6498, 60.9357], [10.6494, 60.936], [10.649, 60.9363], [10.6483, 60.9368], [10.6482, 60.9369], [10.6704, 60.9369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "22", "sub_div_center": [60.896856, 10.662429]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9169], [10.6704, 60.8969], [10.6644, 60.8969], [10.6644, 60.8969], [10.6643, 60.8969], [10.6642, 60.897], [10.664, 60.8971], [10.664, 60.8971], [10.6639, 60.8972], [10.6638, 60.8972], [10.6637, 60.8973], [10.6636, 60.8973], [10.6635, 60.8974], [10.6634, 60.8974], [10.6634, 60.8975], [10.6633, 60.8976], [10.6633, 60.8976], [10.6633, 60.8978], [10.6632, 60.8978], [10.6632, 60.8979], [10.6631, 60.8981], [10.6631, 60.8982], [10.6631, 60.8984], [10.6631, 60.8987], [10.6631, 60.8991], [10.6631, 60.8992], [10.6632, 60.8994], [10.6632, 60.8995], [10.6633, 60.8996], [10.6634, 60.8998], [10.6635, 60.8998], [10.6636, 60.8999], [10.6636, 60.9], [10.6636, 60.9001], [10.6637, 60.9002], [10.664, 60.9005], [10.6643, 60.9007], [10.6644, 60.9008], [10.6649, 60.901], [10.6653, 60.9012], [10.6653, 60.9012], [10.6653, 60.9013], [10.6654, 60.9014], [10.6655, 60.9015], [10.6658, 60.9016], [10.6658, 60.9017], [10.6659, 60.9018], [10.6658, 60.902], [10.6658, 60.9021], [10.6657, 60.9022], [10.6654, 60.9025], [10.6653, 60.9026], [10.6652, 60.9027], [10.6651, 60.9028], [10.6651, 60.9028], [10.6651, 60.9029], [10.6651, 60.9031], [10.6651, 60.9031], [10.6652, 60.9032], [10.6654, 60.9033], [10.6655, 60.9034], [10.6656, 60.9035], [10.6656, 60.9035], [10.6655, 60.9036], [10.6654, 60.9037], [10.6654, 60.9037], [10.6654, 60.9038], [10.6654, 60.9039], [10.6654, 60.9039], [10.6652, 60.904], [10.6651, 60.9041], [10.6649, 60.9041], [10.6648, 60.9042], [10.6647, 60.9045], [10.6646, 60.9046], [10.6646, 60.9048], [10.6648, 60.905], [10.6648, 60.9051], [10.6646, 60.9053], [10.6645, 60.9053], [10.6645, 60.9053], [10.6644, 60.9054], [10.6643, 60.9056], [10.6642, 60.9057], [10.6641, 60.9058], [10.664, 60.9058], [10.664, 60.9059], [10.6639, 60.906], [10.6639, 60.9062], [10.664, 60.9063], [10.6639, 60.9064], [10.664, 60.9065], [10.6639, 60.9065], [10.6638, 60.9066], [10.6636, 60.9068], [10.6636, 60.9068], [10.6636, 60.907], [10.6638, 60.9071], [10.6638, 60.9072], [10.6638, 60.9072], [10.6637, 60.9073], [10.6635, 60.9074], [10.6635, 60.9075], [10.6635, 60.9077], [10.6635, 60.9081], [10.6635, 60.9082], [10.6636, 60.9083], [10.6638, 60.9087], [10.6638, 60.9088], [10.6638, 60.9089], [10.664, 60.909], [10.6641, 60.9091], [10.6641, 60.9091], [10.6642, 60.9091], [10.6645, 60.9092], [10.6646, 60.9092], [10.6646, 60.9092], [10.6646, 60.9093], [10.6646, 60.9093], [10.6644, 60.9092], [10.6643, 60.9092], [10.6641, 60.9092], [10.6641, 60.9093], [10.6641, 60.9094], [10.6642, 60.9095], [10.6642, 60.9096], [10.6642, 60.9097], [10.664, 60.9098], [10.664, 60.91], [10.664, 60.91], [10.664, 60.9102], [10.664, 60.9103], [10.6639, 60.9103], [10.6639, 60.9104], [10.6639, 60.9105], [10.6638, 60.9105], [10.6638, 60.9106], [10.6639, 60.9107], [10.6639, 60.9108], [10.6638, 60.9109], [10.6637, 60.911], [10.6631, 60.9113], [10.6629, 60.9113], [10.6628, 60.9114], [10.6627, 60.9115], [10.6626, 60.9115], [10.6625, 60.9116], [10.6625, 60.9117], [10.6624, 60.9118], [10.6624, 60.9119], [10.6625, 60.912], [10.6625, 60.9121], [10.6626, 60.9122], [10.6628, 60.9123], [10.663, 60.9124], [10.6631, 60.9125], [10.6633, 60.9125], [10.6634, 60.9125], [10.6637, 60.9125], [10.6639, 60.9125], [10.664, 60.9126], [10.6639, 60.9126], [10.6637, 60.9126], [10.6636, 60.9126], [10.6635, 60.9127], [10.6634, 60.9127], [10.6635, 60.9127], [10.6635, 60.9127], [10.6636, 60.9127], [10.6643, 60.9126], [10.6646, 60.9126], [10.6647, 60.9125], [10.6648, 60.9125], [10.6648, 60.9124], [10.6648, 60.9123], [10.6648, 60.9123], [10.6649, 60.9123], [10.6649, 60.9123], [10.665, 60.9123], [10.665, 60.9124], [10.6649, 60.9125], [10.6649, 60.9125], [10.6647, 60.9126], [10.6645, 60.9126], [10.6639, 60.9127], [10.6639, 60.9128], [10.6639, 60.9128], [10.664, 60.9128], [10.6642, 60.9129], [10.6643, 60.9129], [10.6643, 60.913], [10.6643, 60.913], [10.6643, 60.9131], [10.664, 60.9132], [10.6639, 60.9133], [10.664, 60.9133], [10.664, 60.9133], [10.6641, 60.9133], [10.6643, 60.9133], [10.6644, 60.9132], [10.6645, 60.9132], [10.6646, 60.9133], [10.6646, 60.9133], [10.6646, 60.9134], [10.6644, 60.9138], [10.6644, 60.9142], [10.6643, 60.9145], [10.6642, 60.9146], [10.6642, 60.9149], [10.6641, 60.9151], [10.6639, 60.9152], [10.6639, 60.9153], [10.6637, 60.9154], [10.6637, 60.9154], [10.6636, 60.9156], [10.6635, 60.9157], [10.6633, 60.9158], [10.6631, 60.9159], [10.6631, 60.9162], [10.6632, 60.9163], [10.6633, 60.9164], [10.6633, 60.9165], [10.6634, 60.9165], [10.6637, 60.9166], [10.6641, 60.9167], [10.6643, 60.9168], [10.6643, 60.9169], [10.6704, 60.9169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "23", "sub_div_center": [60.892181, 10.66439]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.6704, 60.8922], [10.6704, 60.8922], [10.6702, 60.8922], [10.6701, 60.8922], [10.6699, 60.8922], [10.6698, 60.8923], [10.6696, 60.8923], [10.6696, 60.8923], [10.6695, 60.8924], [10.6694, 60.8926], [10.6695, 60.8927], [10.6694, 60.8929], [10.6694, 60.8931], [10.6694, 60.8932], [10.6695, 60.8932], [10.6695, 60.8933], [10.6695, 60.8933], [10.6693, 60.8934], [10.6691, 60.8935], [10.6689, 60.8936], [10.6689, 60.8937], [10.6688, 60.8937], [10.6686, 60.8938], [10.6685, 60.8938], [10.6682, 60.8939], [10.668, 60.894], [10.6675, 60.8941], [10.6675, 60.8941], [10.6674, 60.8941], [10.6672, 60.8942], [10.6667, 60.8945], [10.6663, 60.8948], [10.6662, 60.8949], [10.6662, 60.895], [10.6661, 60.8953], [10.666, 60.8954], [10.666, 60.8954], [10.666, 60.8954], [10.6659, 60.8954], [10.6657, 60.8955], [10.6657, 60.8955], [10.6656, 60.8956], [10.6655, 60.8957], [10.6654, 60.8957], [10.6654, 60.8958], [10.6653, 60.896], [10.6652, 60.8961], [10.665, 60.8962], [10.665, 60.8962], [10.6649, 60.8963], [10.6648, 60.8963], [10.6647, 60.8965], [10.6646, 60.8966], [10.6645, 60.8966], [10.6645, 60.8967], [10.6645, 60.8968], [10.6645, 60.8968], [10.6644, 60.8969], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "24", "sub_div_center": [60.876856, 10.670419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.7104, 60.8969], [10.7104, 60.8769], [10.695, 60.8769], [10.695, 60.8769], [10.6948, 60.8771], [10.6948, 60.8773], [10.6947, 60.8774], [10.6946, 60.8775], [10.6945, 60.8776], [10.6944, 60.8778], [10.6944, 60.8778], [10.6943, 60.8778], [10.6943, 60.8779], [10.6943, 60.8779], [10.6943, 60.8779], [10.6944, 60.878], [10.6944, 60.878], [10.6943, 60.8782], [10.6943, 60.8782], [10.6943, 60.8782], [10.6943, 60.8783], [10.6943, 60.8783], [10.6944, 60.8783], [10.6945, 60.8784], [10.6946, 60.8784], [10.6946, 60.8784], [10.6946, 60.8785], [10.6944, 60.8785], [10.6941, 60.8785], [10.6939, 60.8785], [10.6937, 60.8786], [10.6935, 60.8786], [10.6934, 60.8787], [10.6934, 60.8787], [10.6933, 60.8788], [10.6933, 60.8788], [10.6932, 60.8789], [10.6932, 60.8789], [10.693, 60.8789], [10.693, 60.8789], [10.6927, 60.8791], [10.6927, 60.8792], [10.6927, 60.8793], [10.6925, 60.8794], [10.6924, 60.8795], [10.6923, 60.8796], [10.6922, 60.8797], [10.6922, 60.8797], [10.6922, 60.8798], [10.6922, 60.8799], [10.6922, 60.88], [10.6921, 60.8802], [10.6921, 60.8803], [10.692, 60.8804], [10.692, 60.8806], [10.692, 60.8807], [10.692, 60.8808], [10.6918, 60.8809], [10.6917, 60.881], [10.6916, 60.8811], [10.6915, 60.8813], [10.6912, 60.8815], [10.691, 60.8817], [10.6908, 60.8818], [10.6906, 60.8819], [10.6905, 60.882], [10.6904, 60.882], [10.6903, 60.8821], [10.69, 60.8822], [10.69, 60.8822], [10.69, 60.8823], [10.6897, 60.8823], [10.6896, 60.8823], [10.6896, 60.8823], [10.6897, 60.8824], [10.6897, 60.8824], [10.6897, 60.8824], [10.6895, 60.8824], [10.6894, 60.8824], [10.6893, 60.8825], [10.6892, 60.8825], [10.6892, 60.8826], [10.6892, 60.8826], [10.6891, 60.8826], [10.6889, 60.8826], [10.6888, 60.8827], [10.6885, 60.8828], [10.6884, 60.8828], [10.6879, 60.883], [10.6877, 60.8831], [10.6876, 60.8831], [10.6874, 60.8832], [10.6871, 60.8833], [10.6869, 60.8834], [10.6866, 60.8835], [10.6864, 60.8836], [10.6863, 60.8836], [10.686, 60.8837], [10.686, 60.8837], [10.686, 60.8838], [10.686, 60.8838], [10.6862, 60.8839], [10.6866, 60.8839], [10.6866, 60.8839], [10.6865, 60.8839], [10.6864, 60.8839], [10.6861, 60.8839], [10.6858, 60.8839], [10.6857, 60.884], [10.6855, 60.884], [10.6854, 60.884], [10.6852, 60.8842], [10.6851, 60.8842], [10.6849, 60.8843], [10.6847, 60.8843], [10.6845, 60.8844], [10.6843, 60.8845], [10.6839, 60.8846], [10.6837, 60.8846], [10.6834, 60.8846], [10.6831, 60.8847], [10.6829, 60.8847], [10.6825, 60.8847], [10.6819, 60.8849], [10.6815, 60.885], [10.6814, 60.8851], [10.6813, 60.8851], [10.6813, 60.8852], [10.6813, 60.8856], [10.6813, 60.8857], [10.6814, 60.8857], [10.6816, 60.8858], [10.6817, 60.8859], [10.6817, 60.8859], [10.6817, 60.886], [10.6817, 60.8861], [10.6815, 60.8863], [10.6814, 60.8863], [10.681, 60.8866], [10.6809, 60.8866], [10.6808, 60.8866], [10.6806, 60.8866], [10.6804, 60.8867], [10.6799, 60.8867], [10.6794, 60.8868], [10.679, 60.8869], [10.6789, 60.8869], [10.6786, 60.8869], [10.6783, 60.887], [10.6779, 60.8871], [10.6778, 60.8871], [10.6777, 60.8871], [10.6774, 60.8871], [10.677, 60.8871], [10.6766, 60.8872], [10.6764, 60.8872], [10.6762, 60.8872], [10.6753, 60.8871], [10.6752, 60.8871], [10.6752, 60.8872], [10.6751, 60.8873], [10.6757, 60.8874], [10.6764, 60.8874], [10.6768, 60.8875], [10.6771, 60.8876], [10.6773, 60.8876], [10.6774, 60.8877], [10.6775, 60.8877], [10.6775, 60.8878], [10.6775, 60.8879], [10.6774, 60.888], [10.6774, 60.8882], [10.6774, 60.8883], [10.6773, 60.8883], [10.6772, 60.8884], [10.6769, 60.8884], [10.6766, 60.8884], [10.6765, 60.8884], [10.6763, 60.8885], [10.6763, 60.8885], [10.6763, 60.8886], [10.6765, 60.8888], [10.6766, 60.8888], [10.6768, 60.8888], [10.6769, 60.8887], [10.6771, 60.8886], [10.6771, 60.8886], [10.6772, 60.8886], [10.6773, 60.8886], [10.6772, 60.8887], [10.6769, 60.8889], [10.6769, 60.889], [10.6769, 60.889], [10.677, 60.8891], [10.6771, 60.8891], [10.6772, 60.8891], [10.6774, 60.8891], [10.6775, 60.889], [10.6776, 60.8889], [10.6776, 60.8889], [10.6776, 60.8888], [10.6777, 60.8886], [10.6777, 60.8886], [10.6777, 60.8886], [10.6778, 60.8886], [10.6779, 60.8886], [10.6778, 60.8887], [10.6778, 60.8889], [10.6778, 60.8889], [10.6779, 60.889], [10.6779, 60.889], [10.678, 60.889], [10.6779, 60.889], [10.6776, 60.8891], [10.6771, 60.8892], [10.6771, 60.8893], [10.6771, 60.8893], [10.6772, 60.8894], [10.6772, 60.8895], [10.6773, 60.8896], [10.6773, 60.8896], [10.6774, 60.8896], [10.6775, 60.8896], [10.6777, 60.8896], [10.6781, 60.8894], [10.6781, 60.8894], [10.6782, 60.8894], [10.6782, 60.8895], [10.6779, 60.8896], [10.6776, 60.8897], [10.6772, 60.8898], [10.6772, 60.8898], [10.6771, 60.8898], [10.6771, 60.8898], [10.6768, 60.8895], [10.6767, 60.8894], [10.6767, 60.8892], [10.6767, 60.8892], [10.6764, 60.8892], [10.6763, 60.8892], [10.6763, 60.8893], [10.6763, 60.8894], [10.6763, 60.8894], [10.6764, 60.8895], [10.6768, 60.8897], [10.6769, 60.8898], [10.6769, 60.8899], [10.6769, 60.8901], [10.6769, 60.8901], [10.677, 60.8901], [10.6771, 60.8902], [10.6774, 60.8902], [10.6774, 60.8903], [10.6774, 60.8903], [10.6774, 60.8903], [10.6774, 60.8903], [10.6773, 60.8903], [10.6771, 60.8903], [10.6767, 60.8903], [10.6765, 60.8903], [10.6764, 60.8903], [10.6762, 60.8903], [10.6761, 60.8904], [10.676, 60.8904], [10.6758, 60.8905], [10.6756, 60.8906], [10.6755, 60.8907], [10.6754, 60.8907], [10.6755, 60.8908], [10.6755, 60.8908], [10.6756, 60.8909], [10.6756, 60.8909], [10.6756, 60.891], [10.6757, 60.891], [10.6758, 60.891], [10.6757, 60.8911], [10.6757, 60.8911], [10.6756, 60.8911], [10.6754, 60.8911], [10.675, 60.8911], [10.6749, 60.8911], [10.6747, 60.8911], [10.6747, 60.8911], [10.6745, 60.891], [10.6744, 60.891], [10.6742, 60.891], [10.6741, 60.891], [10.6739, 60.891], [10.6736, 60.8911], [10.6734, 60.8912], [10.6734, 60.8912], [10.6732, 60.8914], [10.6732, 60.8915], [10.6731, 60.8915], [10.6731, 60.8916], [10.673, 60.8916], [10.6728, 60.8916], [10.6728, 60.8917], [10.6728, 60.8918], [10.6727, 60.8918], [10.6727, 60.8918], [10.6726, 60.8919], [10.6724, 60.8919], [10.6723, 60.8919], [10.6721, 60.892], [10.6718, 60.892], [10.6715, 60.892], [10.6713, 60.892], [10.6707, 60.8921], [10.6704, 60.8922], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "25", "sub_div_center": [60.896856, 10.670419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.8969], [10.6704, 60.9169], [10.696, 60.9169], [10.696, 60.9168], [10.6962, 60.9168], [10.6963, 60.9167], [10.6964, 60.9167], [10.6965, 60.9166], [10.6966, 60.9166], [10.6967, 60.9165], [10.6968, 60.9165], [10.697, 60.9164], [10.6969, 60.9164], [10.697, 60.9163], [10.6971, 60.9163], [10.6971, 60.9163], [10.6973, 60.9162], [10.6976, 60.9162], [10.6978, 60.9162], [10.698, 60.9161], [10.6981, 60.9162], [10.6981, 60.9162], [10.6983, 60.9162], [10.6985, 60.9161], [10.6988, 60.916], [10.699, 60.916], [10.6992, 60.9159], [10.6995, 60.9158], [10.6995, 60.9159], [10.6996, 60.9159], [10.6997, 60.9158], [10.7, 60.9158], [10.6999, 60.9157], [10.6999, 60.9157], [10.7, 60.9157], [10.7, 60.9157], [10.7001, 60.9156], [10.7001, 60.9156], [10.7003, 60.9156], [10.7003, 60.9156], [10.7004, 60.9156], [10.7004, 60.9156], [10.7005, 60.9156], [10.7005, 60.9156], [10.7006, 60.9157], [10.7006, 60.9157], [10.7006, 60.9157], [10.7008, 60.9157], [10.7008, 60.9156], [10.7009, 60.9155], [10.7009, 60.9155], [10.7009, 60.9155], [10.7009, 60.9155], [10.701, 60.9155], [10.701, 60.9155], [10.7011, 60.9154], [10.7012, 60.9154], [10.7013, 60.9153], [10.7015, 60.9152], [10.7018, 60.9152], [10.702, 60.9151], [10.7021, 60.9151], [10.7023, 60.915], [10.7024, 60.915], [10.7025, 60.915], [10.7027, 60.915], [10.7027, 60.915], [10.7028, 60.915], [10.7029, 60.915], [10.7031, 60.9149], [10.7032, 60.9149], [10.7033, 60.9149], [10.7034, 60.915], [10.7035, 60.915], [10.7035, 60.9151], [10.7035, 60.9151], [10.7034, 60.9151], [10.7033, 60.9151], [10.7028, 60.9152], [10.7028, 60.9151], [10.7027, 60.9152], [10.7027, 60.9152], [10.7028, 60.9153], [10.7028, 60.9154], [10.7029, 60.9154], [10.7029, 60.9154], [10.703, 60.9154], [10.703, 60.9155], [10.7029, 60.9155], [10.703, 60.9156], [10.7032, 60.9157], [10.7033, 60.9157], [10.7034, 60.9157], [10.7035, 60.9157], [10.7035, 60.9157], [10.7037, 60.9157], [10.7039, 60.9156], [10.704, 60.9156], [10.7041, 60.9156], [10.7042, 60.9156], [10.7043, 60.9156], [10.7045, 60.9155], [10.7047, 60.9155], [10.7048, 60.9155], [10.7049, 60.9155], [10.7051, 60.9154], [10.7052, 60.9154], [10.7053, 60.9154], [10.7053, 60.9154], [10.7053, 60.9153], [10.7053, 60.9153], [10.7053, 60.9153], [10.7054, 60.9153], [10.7054, 60.9153], [10.7055, 60.9152], [10.7056, 60.9152], [10.7057, 60.9152], [10.7057, 60.9152], [10.7058, 60.9153], [10.7059, 60.9153], [10.706, 60.9153], [10.7062, 60.9154], [10.7063, 60.9154], [10.7063, 60.9154], [10.7064, 60.9154], [10.7064, 60.9154], [10.7065, 60.9154], [10.7066, 60.9154], [10.7068, 60.9154], [10.7069, 60.9155], [10.7071, 60.9155], [10.7072, 60.9155], [10.7073, 60.9155], [10.7073, 60.9155], [10.7074, 60.9156], [10.7074, 60.9156], [10.7074, 60.9155], [10.7075, 60.9155], [10.7075, 60.9155], [10.7076, 60.9155], [10.7078, 60.9154], [10.708, 60.9153], [10.7081, 60.9152], [10.7081, 60.9152], [10.7081, 60.9151], [10.708, 60.915], [10.708, 60.915], [10.708, 60.9149], [10.7079, 60.9149], [10.7079, 60.9149], [10.708, 60.9149], [10.7079, 60.9148], [10.7079, 60.9147], [10.7079, 60.9147], [10.7078, 60.9146], [10.7077, 60.9145], [10.7075, 60.9145], [10.7074, 60.9145], [10.7073, 60.9145], [10.7072, 60.9144], [10.7071, 60.9143], [10.7069, 60.9143], [10.7069, 60.9142], [10.7068, 60.9142], [10.7068, 60.9142], [10.7068, 60.9142], [10.7067, 60.9141], [10.707, 60.9137], [10.7071, 60.9135], [10.7071, 60.9135], [10.7072, 60.9134], [10.7072, 60.9134], [10.7072, 60.9133], [10.7072, 60.9132], [10.7073, 60.9132], [10.7073, 60.9131], [10.7073, 60.913], [10.7072, 60.9129], [10.7071, 60.9128], [10.7071, 60.9127], [10.707, 60.9127], [10.7068, 60.9126], [10.7066, 60.9126], [10.7065, 60.9126], [10.7063, 60.9127], [10.7062, 60.9127], [10.7062, 60.9127], [10.7062, 60.9127], [10.706, 60.9128], [10.7059, 60.9127], [10.7058, 60.9127], [10.706, 60.9126], [10.706, 60.9126], [10.7059, 60.9125], [10.7058, 60.9124], [10.7058, 60.9124], [10.7058, 60.9123], [10.7057, 60.9123], [10.7055, 60.9122], [10.7049, 60.9121], [10.7046, 60.912], [10.7045, 60.9119], [10.7043, 60.9119], [10.7042, 60.9118], [10.704, 60.9118], [10.7038, 60.9118], [10.7036, 60.9118], [10.7034, 60.9118], [10.7034, 60.9118], [10.7032, 60.9118], [10.703, 60.9118], [10.7027, 60.9118], [10.7027, 60.9118], [10.7026, 60.9118], [10.7025, 60.9118], [10.7024, 60.9117], [10.7023, 60.9117], [10.7022, 60.9118], [10.7022, 60.9117], [10.7021, 60.9117], [10.7021, 60.9117], [10.702, 60.9118], [10.702, 60.9118], [10.7019, 60.9118], [10.7018, 60.9119], [10.7018, 60.9119], [10.7018, 60.912], [10.7017, 60.912], [10.7017, 60.9121], [10.7016, 60.9121], [10.7016, 60.9121], [10.7015, 60.9122], [10.7015, 60.9122], [10.7014, 60.9122], [10.7014, 60.9123], [10.7014, 60.9123], [10.7013, 60.9124], [10.7013, 60.9124], [10.7013, 60.9125], [10.7013, 60.9125], [10.7013, 60.9125], [10.7012, 60.9125], [10.7012, 60.9126], [10.701, 60.9126], [10.7007, 60.9126], [10.7004, 60.9127], [10.7003, 60.9128], [10.7001, 60.9128], [10.7001, 60.9128], [10.7, 60.9128], [10.6999, 60.9128], [10.6997, 60.9127], [10.6996, 60.9127], [10.6995, 60.9127], [10.6995, 60.9127], [10.6993, 60.9127], [10.6992, 60.9127], [10.6989, 60.9126], [10.6986, 60.9127], [10.6985, 60.9127], [10.6983, 60.9127], [10.6982, 60.9127], [10.698, 60.9127], [10.6979, 60.9126], [10.6977, 60.9126], [10.6976, 60.9126], [10.6974, 60.9127], [10.6974, 60.9127], [10.6973, 60.9127], [10.6973, 60.9127], [10.6969, 60.9126], [10.6967, 60.9126], [10.6966, 60.9126], [10.6966, 60.9127], [10.6965, 60.9127], [10.6964, 60.9127], [10.6964, 60.9127], [10.6963, 60.9127], [10.6962, 60.9127], [10.6962, 60.9126], [10.6962, 60.9126], [10.6961, 60.9126], [10.6961, 60.9126], [10.6961, 60.9126], [10.696, 60.9126], [10.6959, 60.9126], [10.6959, 60.9126], [10.6958, 60.9126], [10.6958, 60.9126], [10.6958, 60.9126], [10.6957, 60.9126], [10.6957, 60.9126], [10.6957, 60.9125], [10.6957, 60.9125], [10.6957, 60.9125], [10.6957, 60.9125], [10.6956, 60.9124], [10.6955, 60.9124], [10.6955, 60.9124], [10.6955, 60.9124], [10.6954, 60.9124], [10.6954, 60.9124], [10.6954, 60.9125], [10.6954, 60.9126], [10.6953, 60.9126], [10.6952, 60.9126], [10.6951, 60.9126], [10.6949, 60.9125], [10.6949, 60.9125], [10.6948, 60.9125], [10.6948, 60.9125], [10.6948, 60.9125], [10.6947, 60.9125], [10.6946, 60.9125], [10.6946, 60.9125], [10.6945, 60.9125], [10.6945, 60.9125], [10.6943, 60.9124], [10.6943, 60.9124], [10.6942, 60.9124], [10.6942, 60.9124], [10.6942, 60.9124], [10.6941, 60.9124], [10.6942, 60.9123], [10.6941, 60.9123], [10.6941, 60.9123], [10.6941, 60.9123], [10.694, 60.9123], [10.694, 60.9122], [10.694, 60.9122], [10.694, 60.9122], [10.694, 60.9122], [10.6939, 60.9122], [10.6939, 60.9121], [10.6939, 60.9121], [10.6939, 60.9121], [10.6939, 60.9121], [10.6938, 60.9121], [10.6938, 60.912], [10.6937, 60.912], [10.6937, 60.9121], [10.6937, 60.9121], [10.6936, 60.9121], [10.6936, 60.912], [10.6936, 60.912], [10.6936, 60.912], [10.6935, 60.9119], [10.6935, 60.9119], [10.6935, 60.9119], [10.6934, 60.9118], [10.6934, 60.9118], [10.6934, 60.9118], [10.6934, 60.9118], [10.6933, 60.9117], [10.6933, 60.9117], [10.6933, 60.9117], [10.6933, 60.9117], [10.6934, 60.9117], [10.6934, 60.9117], [10.6934, 60.9116], [10.6934, 60.9116], [10.6933, 60.9116], [10.6933, 60.9116], [10.6931, 60.9115], [10.693, 60.9115], [10.693, 60.9115], [10.6929, 60.9115], [10.6929, 60.9115], [10.6927, 60.9115], [10.6927, 60.9115], [10.6927, 60.9114], [10.6926, 60.9114], [10.6926, 60.9114], [10.6926, 60.9114], [10.6925, 60.9113], [10.6925, 60.9113], [10.6924, 60.9114], [10.6924, 60.9114], [10.6924, 60.9114], [10.6924, 60.9114], [10.6923, 60.9114], [10.6923, 60.9114], [10.6921, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.6921, 60.9113], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.692, 60.9112], [10.692, 60.9112], [10.692, 60.9112], [10.6922, 60.9112], [10.6922, 60.9112], [10.6923, 60.9112], [10.6923, 60.9112], [10.6923, 60.9111], [10.6924, 60.9111], [10.6925, 60.9111], [10.6926, 60.911], [10.6926, 60.911], [10.6926, 60.9109], [10.6926, 60.9109], [10.6926, 60.9109], [10.6927, 60.9108], [10.6927, 60.9108], [10.6927, 60.9107], [10.6927, 60.9107], [10.6927, 60.9106], [10.6926, 60.9106], [10.6926, 60.9106], [10.6927, 60.9106], [10.6927, 60.9105], [10.6927, 60.9104], [10.6928, 60.9104], [10.6928, 60.9104], [10.6929, 60.9104], [10.6929, 60.9104], [10.6929, 60.9104], [10.693, 60.9104], [10.6932, 60.9103], [10.6932, 60.9103], [10.6933, 60.9103], [10.6934, 60.9103], [10.6934, 60.9102], [10.6935, 60.9102], [10.6934, 60.9102], [10.6934, 60.9101], [10.6936, 60.9101], [10.6937, 60.9101], [10.6938, 60.9101], [10.6938, 60.9102], [10.6938, 60.9102], [10.6939, 60.9102], [10.6941, 60.9102], [10.6941, 60.9101], [10.6942, 60.9101], [10.6942, 60.9101], [10.6943, 60.9101], [10.6944, 60.9101], [10.6945, 60.9101], [10.6945, 60.9101], [10.6947, 60.9102], [10.6949, 60.9102], [10.695, 60.9102], [10.6951, 60.9101], [10.6954, 60.9101], [10.6956, 60.91], [10.6957, 60.91], [10.6957, 60.9099], [10.6958, 60.9098], [10.6959, 60.9098], [10.6959, 60.9097], [10.696, 60.9095], [10.696, 60.9094], [10.696, 60.9094], [10.6961, 60.9093], [10.6962, 60.9091], [10.6963, 60.9091], [10.6964, 60.909], [10.6966, 60.9089], [10.6967, 60.9089], [10.6968, 60.9089], [10.6969, 60.9089], [10.6969, 60.9089], [10.6969, 60.9088], [10.697, 60.9088], [10.697, 60.9088], [10.697, 60.9088], [10.6971, 60.9087], [10.6972, 60.9086], [10.6973, 60.9086], [10.6973, 60.9086], [10.6974, 60.9086], [10.6974, 60.9086], [10.6975, 60.9086], [10.6975, 60.9086], [10.6976, 60.9086], [10.6977, 60.9087], [10.6978, 60.9087], [10.6979, 60.9087], [10.698, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6981, 60.9088], [10.6982, 60.9087], [10.6982, 60.9087], [10.6981, 60.9087], [10.6981, 60.9086], [10.6981, 60.9086], [10.6981, 60.9086], [10.6981, 60.9085], [10.6982, 60.9085], [10.6982, 60.9085], [10.6982, 60.9085], [10.6982, 60.9084], [10.6981, 60.9084], [10.6979, 60.9083], [10.6978, 60.9083], [10.6978, 60.9083], [10.6977, 60.9082], [10.6976, 60.9081], [10.6975, 60.9079], [10.6974, 60.9079], [10.6973, 60.9078], [10.6972, 60.9078], [10.697, 60.9078], [10.6969, 60.9078], [10.6968, 60.9079], [10.6967, 60.9079], [10.6966, 60.9079], [10.6966, 60.9079], [10.6965, 60.9079], [10.6965, 60.9079], [10.6964, 60.9079], [10.6963, 60.9079], [10.6961, 60.9079], [10.696, 60.9079], [10.696, 60.908], [10.6959, 60.908], [10.6958, 60.908], [10.6956, 60.908], [10.6954, 60.908], [10.6951, 60.9081], [10.6949, 60.9081], [10.6947, 60.9081], [10.6945, 60.9081], [10.6944, 60.9082], [10.6943, 60.9082], [10.6942, 60.9082], [10.6942, 60.9082], [10.6941, 60.9083], [10.694, 60.9083], [10.694, 60.9084], [10.6939, 60.9084], [10.6938, 60.9084], [10.6938, 60.9084], [10.6937, 60.9083], [10.6937, 60.9083], [10.6936, 60.9083], [10.6935, 60.9083], [10.6934, 60.9083], [10.6933, 60.9083], [10.6932, 60.9082], [10.6931, 60.9082], [10.693, 60.9082], [10.693, 60.9081], [10.6931, 60.9081], [10.6931, 60.908], [10.6931, 60.908], [10.693, 60.9079], [10.6928, 60.9079], [10.6927, 60.9078], [10.6926, 60.9078], [10.6926, 60.9078], [10.6926, 60.9077], [10.6926, 60.9077], [10.6926, 60.9077], [10.6925, 60.9077], [10.6925, 60.9077], [10.6924, 60.9077], [10.6924, 60.9077], [10.6924, 60.9076], [10.6923, 60.9076], [10.6924, 60.9076], [10.6923, 60.9075], [10.6923, 60.9075], [10.6924, 60.9075], [10.6924, 60.9075], [10.6924, 60.9074], [10.6925, 60.9074], [10.6925, 60.9074], [10.6926, 60.9073], [10.6927, 60.9073], [10.6929, 60.9073], [10.693, 60.9073], [10.6931, 60.9073], [10.6933, 60.9073], [10.6936, 60.9074], [10.6937, 60.9073], [10.6937, 60.9073], [10.6938, 60.9073], [10.6939, 60.9073], [10.6941, 60.9072], [10.6942, 60.9072], [10.6945, 60.9072], [10.6948, 60.9071], [10.6949, 60.9071], [10.695, 60.9071], [10.695, 60.9071], [10.6951, 60.9071], [10.6953, 60.907], [10.6953, 60.907], [10.6953, 60.907], [10.6954, 60.9069], [10.6954, 60.9068], [10.6954, 60.9067], [10.6954, 60.9067], [10.6955, 60.9066], [10.6954, 60.9066], [10.6954, 60.9065], [10.6955, 60.9065], [10.6956, 60.9064], [10.6956, 60.9063], [10.6956, 60.9062], [10.6957, 60.9061], [10.6957, 60.906], [10.6957, 60.906], [10.6957, 60.9059], [10.6958, 60.9059], [10.6958, 60.9058], [10.6958, 60.9058], [10.6959, 60.9057], [10.6959, 60.9057], [10.696, 60.9057], [10.6961, 60.9056], [10.6964, 60.9056], [10.6965, 60.9055], [10.6967, 60.9055], [10.6968, 60.9055], [10.6971, 60.9054], [10.6972, 60.9054], [10.6973, 60.9054], [10.6974, 60.9054], [10.6975, 60.9054], [10.6977, 60.9055], [10.6978, 60.9055], [10.698, 60.9056], [10.6981, 60.9056], [10.6983, 60.9057], [10.6984, 60.9057], [10.6985, 60.9057], [10.6985, 60.9058], [10.6987, 60.9058], [10.6988, 60.9059], [10.6988, 60.9059], [10.6988, 60.906], [10.6988, 60.906], [10.6988, 60.9061], [10.6989, 60.9061], [10.699, 60.9062], [10.699, 60.9062], [10.6991, 60.9062], [10.6992, 60.9063], [10.6993, 60.9064], [10.6993, 60.9064], [10.6994, 60.9064], [10.6995, 60.9065], [10.6996, 60.9066], [10.6996, 60.9066], [10.6997, 60.9067], [10.6998, 60.9067], [10.6998, 60.9068], [10.6999, 60.9068], [10.7, 60.9067], [10.7, 60.9067], [10.7001, 60.9067], [10.7002, 60.9066], [10.7002, 60.9066], [10.7001, 60.9065], [10.7001, 60.9065], [10.7002, 60.9065], [10.7003, 60.9064], [10.7003, 60.9064], [10.7003, 60.9064], [10.7004, 60.9064], [10.7004, 60.9064], [10.7006, 60.9062], [10.7007, 60.9063], [10.7009, 60.9062], [10.701, 60.9062], [10.7011, 60.9062], [10.7012, 60.9061], [10.7013, 60.906], [10.7013, 60.906], [10.7014, 60.9059], [10.7017, 60.9059], [10.7018, 60.9058], [10.7019, 60.9058], [10.7021, 60.9058], [10.7022, 60.9058], [10.7024, 60.9059], [10.7025, 60.9059], [10.7025, 60.9059], [10.7028, 60.906], [10.7029, 60.906], [10.7031, 60.9061], [10.7032, 60.9062], [10.7034, 60.9062], [10.7035, 60.9063], [10.7035, 60.9063], [10.7036, 60.9063], [10.7036, 60.9063], [10.7038, 60.9064], [10.7039, 60.9064], [10.704, 60.9064], [10.7041, 60.9064], [10.7043, 60.9064], [10.7044, 60.9064], [10.705, 60.9065], [10.7054, 60.9065], [10.7057, 60.9065], [10.7062, 60.9065], [10.7064, 60.9065], [10.7065, 60.9065], [10.7066, 60.9065], [10.7068, 60.9065], [10.7069, 60.9065], [10.7073, 60.9064], [10.7075, 60.9063], [10.7075, 60.9063], [10.7076, 60.9063], [10.7076, 60.9063], [10.7077, 60.9063], [10.7077, 60.9063], [10.7078, 60.9063], [10.7079, 60.9062], [10.708, 60.9062], [10.7081, 60.9062], [10.7081, 60.9062], [10.7082, 60.9062], [10.7082, 60.9062], [10.7084, 60.9062], [10.7085, 60.9061], [10.7086, 60.9061], [10.7087, 60.9061], [10.7088, 60.906], [10.7088, 60.906], [10.709, 60.906], [10.7091, 60.906], [10.7091, 60.906], [10.7091, 60.9059], [10.709, 60.9059], [10.7089, 60.9059], [10.7089, 60.9059], [10.7088, 60.9058], [10.7088, 60.9058], [10.7088, 60.9058], [10.7088, 60.9058], [10.7085, 60.9057], [10.7084, 60.9056], [10.7083, 60.9056], [10.7083, 60.9056], [10.7082, 60.9056], [10.7082, 60.9055], [10.7082, 60.9055], [10.7082, 60.9054], [10.7082, 60.9053], [10.7082, 60.9053], [10.7083, 60.9052], [10.7085, 60.9051], [10.7087, 60.9049], [10.7088, 60.9048], [10.7088, 60.9048], [10.7089, 60.9047], [10.709, 60.9047], [10.709, 60.9046], [10.7091, 60.9045], [10.7091, 60.9045], [10.7092, 60.9044], [10.7093, 60.9043], [10.7093, 60.9043], [10.7093, 60.9043], [10.7094, 60.9042], [10.7096, 60.9042], [10.7103, 60.9039], [10.7104, 60.9039], [10.7104, 60.8969], [10.6704, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "26", "sub_div_center": [60.916856, 10.670419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9169], [10.6704, 60.9369], [10.6781, 60.9369], [10.6781, 60.9368], [10.6782, 60.9367], [10.6784, 60.9366], [10.6784, 60.9366], [10.6785, 60.9366], [10.6786, 60.9365], [10.6786, 60.9364], [10.6787, 60.9364], [10.6789, 60.9363], [10.679, 60.9362], [10.6788, 60.9362], [10.6788, 60.9361], [10.6789, 60.9361], [10.679, 60.936], [10.679, 60.936], [10.679, 60.936], [10.6792, 60.936], [10.6792, 60.936], [10.6793, 60.936], [10.6795, 60.9359], [10.6796, 60.9358], [10.6796, 60.9357], [10.6796, 60.9357], [10.6793, 60.9356], [10.6791, 60.9355], [10.679, 60.9355], [10.679, 60.9354], [10.679, 60.9354], [10.6789, 60.9353], [10.679, 60.9353], [10.679, 60.9353], [10.6791, 60.9352], [10.6792, 60.9352], [10.6792, 60.9352], [10.6792, 60.9351], [10.6792, 60.9351], [10.6792, 60.9351], [10.6792, 60.935], [10.6792, 60.9349], [10.6793, 60.9349], [10.6793, 60.9349], [10.6794, 60.9349], [10.6794, 60.9349], [10.6795, 60.9349], [10.6795, 60.9349], [10.6796, 60.9348], [10.6796, 60.9348], [10.6795, 60.9348], [10.6796, 60.9347], [10.6798, 60.9347], [10.6798, 60.9347], [10.6799, 60.9347], [10.68, 60.9347], [10.6801, 60.9347], [10.6803, 60.9347], [10.6804, 60.9346], [10.6806, 60.9345], [10.6806, 60.9345], [10.6809, 60.9345], [10.681, 60.9344], [10.681, 60.9344], [10.6811, 60.9343], [10.6812, 60.9342], [10.6812, 60.9342], [10.6813, 60.9341], [10.6812, 60.934], [10.6813, 60.9338], [10.6812, 60.9337], [10.6811, 60.9334], [10.6811, 60.9333], [10.6811, 60.9332], [10.6812, 60.933], [10.6811, 60.9329], [10.6812, 60.9329], [10.6812, 60.9328], [10.6812, 60.9327], [10.6812, 60.9326], [10.6811, 60.9325], [10.6811, 60.9325], [10.681, 60.9324], [10.681, 60.9324], [10.6809, 60.9322], [10.681, 60.932], [10.6811, 60.9318], [10.6811, 60.9318], [10.6812, 60.9316], [10.6815, 60.9314], [10.6818, 60.9312], [10.6822, 60.931], [10.6823, 60.9309], [10.6824, 60.9308], [10.6824, 60.9307], [10.6823, 60.9306], [10.6822, 60.9305], [10.6818, 60.9303], [10.6817, 60.9303], [10.6815, 60.9303], [10.6815, 60.9303], [10.6815, 60.9302], [10.6815, 60.9301], [10.6815, 60.9301], [10.6816, 60.9301], [10.6817, 60.93], [10.6818, 60.93], [10.6818, 60.93], [10.6819, 60.9299], [10.682, 60.9299], [10.6821, 60.9299], [10.6825, 60.9296], [10.6826, 60.9296], [10.683, 60.9293], [10.6833, 60.9292], [10.6835, 60.9291], [10.6836, 60.929], [10.6838, 60.9289], [10.684, 60.9287], [10.684, 60.9287], [10.6841, 60.9286], [10.6843, 60.9286], [10.6845, 60.9285], [10.6844, 60.9283], [10.6843, 60.9282], [10.6842, 60.9281], [10.6841, 60.928], [10.684, 60.9279], [10.6838, 60.9279], [10.6838, 60.9278], [10.6839, 60.9278], [10.6839, 60.9277], [10.6839, 60.9276], [10.6839, 60.9275], [10.6839, 60.9275], [10.6838, 60.9274], [10.6839, 60.9273], [10.6838, 60.9273], [10.6838, 60.9271], [10.6838, 60.9271], [10.6836, 60.9269], [10.6835, 60.9269], [10.6835, 60.9268], [10.6835, 60.9267], [10.6835, 60.9267], [10.6835, 60.9266], [10.6835, 60.9265], [10.6836, 60.9265], [10.6836, 60.9264], [10.6836, 60.9263], [10.6838, 60.9262], [10.6839, 60.9262], [10.6841, 60.9262], [10.6844, 60.9261], [10.6846, 60.9261], [10.6847, 60.9261], [10.6849, 60.9261], [10.6851, 60.926], [10.6853, 60.9259], [10.6853, 60.9257], [10.6854, 60.9257], [10.6854, 60.9257], [10.6855, 60.9256], [10.6854, 60.9255], [10.6853, 60.9254], [10.6853, 60.9254], [10.6852, 60.9253], [10.6852, 60.9252], [10.6852, 60.9251], [10.6852, 60.9251], [10.6853, 60.9251], [10.6853, 60.925], [10.6853, 60.925], [10.6853, 60.9249], [10.6853, 60.9249], [10.6853, 60.9248], [10.6853, 60.9248], [10.6853, 60.9248], [10.6852, 60.9247], [10.6852, 60.9247], [10.6851, 60.9247], [10.685, 60.9246], [10.685, 60.9246], [10.6852, 60.9246], [10.6854, 60.9246], [10.6855, 60.9246], [10.6856, 60.9245], [10.6857, 60.9245], [10.6858, 60.9245], [10.6858, 60.9244], [10.6856, 60.9244], [10.6856, 60.9244], [10.6856, 60.9244], [10.6858, 60.9244], [10.6858, 60.9244], [10.6859, 60.9244], [10.686, 60.9244], [10.686, 60.9243], [10.686, 60.9243], [10.6861, 60.9243], [10.6861, 60.9243], [10.6862, 60.9243], [10.6861, 60.9243], [10.6863, 60.9242], [10.6863, 60.9242], [10.6863, 60.9242], [10.6864, 60.9242], [10.6865, 60.9241], [10.6865, 60.9241], [10.6866, 60.9241], [10.6866, 60.9241], [10.6866, 60.924], [10.6866, 60.924], [10.6866, 60.924], [10.6866, 60.924], [10.6867, 60.924], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9239], [10.6867, 60.9238], [10.6867, 60.9238], [10.6867, 60.9238], [10.6868, 60.9238], [10.6868, 60.9238], [10.6868, 60.9237], [10.6869, 60.9237], [10.6869, 60.9236], [10.687, 60.9235], [10.6871, 60.9234], [10.6871, 60.9233], [10.6871, 60.9232], [10.6872, 60.9232], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.9231], [10.6873, 60.923], [10.6873, 60.923], [10.6873, 60.923], [10.6874, 60.9229], [10.6875, 60.9228], [10.6876, 60.9227], [10.6877, 60.9226], [10.6878, 60.9225], [10.6878, 60.9225], [10.6879, 60.9224], [10.6879, 60.9224], [10.6879, 60.9224], [10.688, 60.9223], [10.688, 60.9223], [10.6881, 60.9224], [10.6881, 60.9224], [10.6882, 60.9224], [10.6882, 60.9224], [10.6881, 60.9224], [10.6876, 60.9229], [10.6875, 60.923], [10.6875, 60.923], [10.6875, 60.9231], [10.6876, 60.9231], [10.6878, 60.9232], [10.6879, 60.9232], [10.6883, 60.9233], [10.6883, 60.9233], [10.6883, 60.9233], [10.6887, 60.9233], [10.6889, 60.9233], [10.6889, 60.9233], [10.6895, 60.9233], [10.6896, 60.9233], [10.6896, 60.9233], [10.6896, 60.9233], [10.6897, 60.9233], [10.6898, 60.9233], [10.6899, 60.9233], [10.6903, 60.9231], [10.6903, 60.9231], [10.6904, 60.9231], [10.6905, 60.9231], [10.6905, 60.9231], [10.6905, 60.923], [10.6905, 60.923], [10.6906, 60.923], [10.6906, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6907, 60.923], [10.6908, 60.923], [10.6909, 60.9229], [10.6909, 60.9229], [10.6909, 60.9229], [10.691, 60.9229], [10.6907, 60.9228], [10.6907, 60.9228], [10.6909, 60.9228], [10.6909, 60.9228], [10.6909, 60.9228], [10.691, 60.9228], [10.6911, 60.9227], [10.6911, 60.9226], [10.6912, 60.9226], [10.6912, 60.9226], [10.6912, 60.9226], [10.6913, 60.9225], [10.6914, 60.9225], [10.6913, 60.9224], [10.6915, 60.9223], [10.6915, 60.9223], [10.6916, 60.9222], [10.6918, 60.9223], [10.6918, 60.9223], [10.6918, 60.9222], [10.6915, 60.9222], [10.6915, 60.922], [10.6915, 60.922], [10.6915, 60.9219], [10.6915, 60.9219], [10.6915, 60.9219], [10.6915, 60.9218], [10.6914, 60.9217], [10.6914, 60.9217], [10.6912, 60.9216], [10.6911, 60.9216], [10.6911, 60.9215], [10.691, 60.9214], [10.6908, 60.9214], [10.6907, 60.9213], [10.6907, 60.9213], [10.6906, 60.9212], [10.6905, 60.9212], [10.6904, 60.9212], [10.6903, 60.9212], [10.6901, 60.9212], [10.6901, 60.9212], [10.6899, 60.9213], [10.6898, 60.9213], [10.6897, 60.9213], [10.6896, 60.9214], [10.6895, 60.9214], [10.6895, 60.9214], [10.6894, 60.9215], [10.6894, 60.9215], [10.6894, 60.9215], [10.6892, 60.9216], [10.6891, 60.9217], [10.6891, 60.9217], [10.6891, 60.9218], [10.689, 60.9218], [10.6888, 60.9219], [10.6887, 60.9219], [10.6886, 60.9218], [10.6886, 60.9218], [10.6886, 60.9217], [10.6886, 60.9217], [10.6885, 60.9217], [10.6885, 60.9217], [10.6884, 60.9217], [10.6884, 60.9217], [10.6885, 60.9216], [10.6886, 60.9216], [10.6887, 60.9216], [10.6887, 60.9216], [10.6887, 60.9215], [10.6887, 60.9214], [10.6887, 60.9214], [10.6887, 60.9213], [10.6888, 60.9213], [10.6889, 60.9213], [10.6889, 60.9212], [10.689, 60.9212], [10.689, 60.9212], [10.689, 60.9212], [10.6889, 60.9211], [10.6889, 60.9211], [10.6889, 60.921], [10.6888, 60.921], [10.6887, 60.9209], [10.6886, 60.921], [10.6884, 60.921], [10.6881, 60.921], [10.6879, 60.9209], [10.6879, 60.9209], [10.6878, 60.9208], [10.6877, 60.9208], [10.6877, 60.9208], [10.6876, 60.9208], [10.6876, 60.9207], [10.6876, 60.9207], [10.6877, 60.9207], [10.6876, 60.9206], [10.6877, 60.9206], [10.6877, 60.9206], [10.6878, 60.9206], [10.6878, 60.9205], [10.6878, 60.9205], [10.6879, 60.9205], [10.688, 60.9205], [10.6881, 60.9205], [10.6881, 60.9205], [10.6883, 60.9204], [10.6884, 60.9204], [10.6885, 60.9205], [10.6885, 60.9204], [10.6886, 60.9204], [10.6886, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6887, 60.9204], [10.6888, 60.9204], [10.6889, 60.9204], [10.6889, 60.9204], [10.689, 60.9205], [10.689, 60.9205], [10.6891, 60.9206], [10.6891, 60.9206], [10.6892, 60.9207], [10.6892, 60.9207], [10.6892, 60.9208], [10.6892, 60.9208], [10.6893, 60.9208], [10.6893, 60.9208], [10.6894, 60.9208], [10.6895, 60.9208], [10.6896, 60.9208], [10.6897, 60.9208], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9207], [10.6899, 60.9206], [10.6898, 60.9206], [10.6897, 60.9205], [10.6897, 60.9205], [10.6897, 60.9204], [10.6897, 60.9204], [10.6898, 60.9204], [10.6898, 60.9203], [10.6899, 60.9203], [10.69, 60.9203], [10.69, 60.9203], [10.6901, 60.9202], [10.6901, 60.9201], [10.6901, 60.9201], [10.69, 60.92], [10.69, 60.92], [10.69, 60.92], [10.6899, 60.9199], [10.6898, 60.9199], [10.6898, 60.9199], [10.6897, 60.9198], [10.6897, 60.9198], [10.6897, 60.9198], [10.6897, 60.9198], [10.6898, 60.9197], [10.6898, 60.9197], [10.6897, 60.9197], [10.6897, 60.9196], [10.6898, 60.9196], [10.6898, 60.9196], [10.6898, 60.9196], [10.6898, 60.9195], [10.6899, 60.9195], [10.6899, 60.9195], [10.6899, 60.9195], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9194], [10.6899, 60.9193], [10.6899, 60.9193], [10.6899, 60.9192], [10.6899, 60.9192], [10.6898, 60.9192], [10.6898, 60.9192], [10.6897, 60.9192], [10.6897, 60.9192], [10.6897, 60.9191], [10.6897, 60.9191], [10.6896, 60.9191], [10.6896, 60.9191], [10.6897, 60.919], [10.6897, 60.919], [10.6898, 60.919], [10.6898, 60.919], [10.69, 60.919], [10.69, 60.9189], [10.6901, 60.9189], [10.6902, 60.9189], [10.6902, 60.9189], [10.6904, 60.9189], [10.6905, 60.9189], [10.6905, 60.9188], [10.6905, 60.9188], [10.6905, 60.9188], [10.6905, 60.9187], [10.6906, 60.9187], [10.6907, 60.9187], [10.6906, 60.9187], [10.6907, 60.9187], [10.6908, 60.9187], [10.6909, 60.9187], [10.6912, 60.9187], [10.6912, 60.9186], [10.6912, 60.9186], [10.6913, 60.9186], [10.6914, 60.9186], [10.6916, 60.9186], [10.6917, 60.9186], [10.6918, 60.9185], [10.6919, 60.9185], [10.692, 60.9184], [10.692, 60.9183], [10.6921, 60.9183], [10.6921, 60.9182], [10.6922, 60.9182], [10.6922, 60.9181], [10.6923, 60.9181], [10.6923, 60.9181], [10.6923, 60.918], [10.6923, 60.918], [10.6924, 60.918], [10.6924, 60.918], [10.6925, 60.918], [10.6926, 60.9179], [10.6927, 60.9178], [10.6928, 60.9178], [10.6929, 60.9178], [10.6929, 60.9177], [10.6929, 60.9177], [10.693, 60.9177], [10.693, 60.9177], [10.6931, 60.9177], [10.6931, 60.9176], [10.6932, 60.9176], [10.6933, 60.9176], [10.6934, 60.9175], [10.6935, 60.9175], [10.6935, 60.9174], [10.6936, 60.9173], [10.6937, 60.9173], [10.6937, 60.9173], [10.6938, 60.9172], [10.6939, 60.9172], [10.6941, 60.9172], [10.6941, 60.9172], [10.6943, 60.9172], [10.6943, 60.9172], [10.6944, 60.9171], [10.6944, 60.9171], [10.6945, 60.9172], [10.6945, 60.9171], [10.6946, 60.9171], [10.6947, 60.9171], [10.6948, 60.9171], [10.6949, 60.9171], [10.695, 60.9171], [10.6954, 60.917], [10.6954, 60.917], [10.6955, 60.917], [10.6956, 60.917], [10.6957, 60.917], [10.6958, 60.9169], [10.6959, 60.9169], [10.696, 60.9169], [10.6704, 60.9169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "27", "sub_div_center": [60.936856, 10.670419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.9369], [10.6704, 60.9476], [10.6705, 60.9476], [10.6706, 60.9477], [10.6707, 60.9477], [10.6708, 60.9477], [10.6709, 60.9477], [10.671, 60.9477], [10.6711, 60.9477], [10.6713, 60.9478], [10.6715, 60.9478], [10.6716, 60.9479], [10.6717, 60.9479], [10.6717, 60.9479], [10.6718, 60.9479], [10.6719, 60.9479], [10.672, 60.948], [10.6721, 60.948], [10.6722, 60.9481], [10.6723, 60.9481], [10.6725, 60.9481], [10.6727, 60.9482], [10.673, 60.9482], [10.6732, 60.9481], [10.6734, 60.9481], [10.6736, 60.9481], [10.6738, 60.9481], [10.6738, 60.948], [10.6739, 60.948], [10.674, 60.948], [10.6741, 60.948], [10.6746, 60.9479], [10.675, 60.9478], [10.6751, 60.9478], [10.6752, 60.9479], [10.6753, 60.9479], [10.6757, 60.9479], [10.676, 60.9478], [10.6762, 60.9478], [10.6763, 60.9478], [10.6765, 60.9477], [10.6766, 60.9476], [10.6766, 60.9475], [10.6765, 60.9473], [10.6765, 60.9472], [10.6765, 60.9472], [10.6765, 60.9471], [10.6765, 60.9471], [10.6766, 60.9472], [10.6769, 60.9471], [10.677, 60.9471], [10.6771, 60.9471], [10.6772, 60.9471], [10.6773, 60.947], [10.6775, 60.947], [10.6775, 60.947], [10.6775, 60.947], [10.6775, 60.9469], [10.6775, 60.9469], [10.6774, 60.9469], [10.6775, 60.9468], [10.6776, 60.9468], [10.6777, 60.9468], [10.6777, 60.9468], [10.6778, 60.9468], [10.6779, 60.9468], [10.6781, 60.9467], [10.6783, 60.9466], [10.6785, 60.9465], [10.6788, 60.9464], [10.6788, 60.9464], [10.6787, 60.9463], [10.6787, 60.9463], [10.6788, 60.9463], [10.6789, 60.9464], [10.679, 60.9464], [10.6792, 60.9464], [10.6793, 60.9463], [10.6797, 60.9462], [10.6799, 60.9462], [10.6802, 60.9461], [10.6805, 60.9461], [10.6808, 60.946], [10.681, 60.9459], [10.6812, 60.9458], [10.6814, 60.9457], [10.6815, 60.9456], [10.6817, 60.9456], [10.6819, 60.9455], [10.6821, 60.9455], [10.6822, 60.9455], [10.6825, 60.9455], [10.6826, 60.9455], [10.6826, 60.9455], [10.6827, 60.9454], [10.6827, 60.9454], [10.6827, 60.9453], [10.6826, 60.9453], [10.6825, 60.9452], [10.6824, 60.945], [10.6824, 60.9449], [10.6823, 60.9448], [10.6822, 60.9448], [10.6822, 60.9448], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9447], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9446], [10.6823, 60.9445], [10.6823, 60.9445], [10.6823, 60.9444], [10.6823, 60.9444], [10.6823, 60.9443], [10.6823, 60.9443], [10.6822, 60.9441], [10.6822, 60.9441], [10.6822, 60.944], [10.6821, 60.944], [10.6821, 60.944], [10.6819, 60.944], [10.6814, 60.944], [10.6811, 60.944], [10.6806, 60.944], [10.6804, 60.944], [10.6804, 60.944], [10.6804, 60.944], [10.6805, 60.944], [10.6807, 60.9439], [10.6806, 60.9439], [10.6804, 60.9439], [10.6804, 60.9439], [10.6806, 60.9438], [10.6804, 60.9438], [10.6803, 60.9438], [10.6803, 60.9438], [10.6803, 60.9437], [10.6804, 60.9435], [10.6804, 60.9435], [10.6804, 60.9434], [10.6806, 60.9435], [10.6806, 60.9434], [10.6806, 60.9433], [10.6808, 60.9432], [10.681, 60.9431], [10.6813, 60.943], [10.6815, 60.9429], [10.6816, 60.9429], [10.6818, 60.9428], [10.6819, 60.9427], [10.6821, 60.9427], [10.6821, 60.9426], [10.6822, 60.9426], [10.6824, 60.9424], [10.6824, 60.9423], [10.6825, 60.9422], [10.6825, 60.942], [10.6824, 60.9419], [10.6824, 60.9419], [10.6824, 60.9418], [10.6824, 60.9418], [10.6824, 60.9417], [10.6824, 60.9416], [10.6824, 60.9415], [10.6825, 60.9414], [10.6826, 60.9414], [10.6829, 60.9413], [10.6828, 60.9413], [10.683, 60.9412], [10.6832, 60.9412], [10.6832, 60.9411], [10.6833, 60.9411], [10.6832, 60.9411], [10.6833, 60.941], [10.6835, 60.9409], [10.6836, 60.9409], [10.6836, 60.9408], [10.6837, 60.9407], [10.6835, 60.9407], [10.6833, 60.9404], [10.6831, 60.9403], [10.683, 60.9403], [10.683, 60.9402], [10.683, 60.9402], [10.6831, 60.9401], [10.6832, 60.9401], [10.6833, 60.94], [10.6833, 60.94], [10.6834, 60.94], [10.6834, 60.94], [10.6834, 60.94], [10.6834, 60.9401], [10.6834, 60.9401], [10.6833, 60.9402], [10.6832, 60.9402], [10.6832, 60.9402], [10.6833, 60.9403], [10.6834, 60.9404], [10.6835, 60.9404], [10.6835, 60.9404], [10.6835, 60.9404], [10.6838, 60.9406], [10.6838, 60.9406], [10.6838, 60.9406], [10.6839, 60.9407], [10.6839, 60.9407], [10.6844, 60.9406], [10.6848, 60.9405], [10.6849, 60.9405], [10.685, 60.9405], [10.685, 60.9405], [10.685, 60.9405], [10.685, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6851, 60.9404], [10.6852, 60.9404], [10.6852, 60.9404], [10.6853, 60.9404], [10.6853, 60.9403], [10.6854, 60.9403], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9402], [10.6854, 60.9401], [10.6854, 60.9401], [10.6854, 60.9401], [10.6854, 60.94], [10.6853, 60.94], [10.6853, 60.94], [10.6853, 60.9399], [10.6853, 60.9399], [10.6853, 60.9399], [10.6854, 60.9399], [10.6855, 60.9399], [10.6855, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9399], [10.6856, 60.9398], [10.6856, 60.9398], [10.6856, 60.9397], [10.6855, 60.9397], [10.6855, 60.9397], [10.6854, 60.9396], [10.6854, 60.9395], [10.6853, 60.9394], [10.6852, 60.9394], [10.6851, 60.9393], [10.6849, 60.9393], [10.6846, 60.9393], [10.6843, 60.9392], [10.6837, 60.9391], [10.6835, 60.9391], [10.6834, 60.9391], [10.6832, 60.9391], [10.683, 60.9391], [10.6827, 60.9391], [10.6826, 60.9391], [10.6826, 60.9391], [10.6826, 60.9391], [10.6824, 60.9391], [10.6822, 60.9391], [10.6821, 60.9391], [10.6819, 60.9391], [10.6817, 60.9391], [10.6813, 60.9391], [10.6812, 60.9391], [10.6811, 60.939], [10.6809, 60.9389], [10.6807, 60.9389], [10.6805, 60.9389], [10.6801, 60.939], [10.6799, 60.9391], [10.6797, 60.9391], [10.6795, 60.9391], [10.6796, 60.939], [10.6793, 60.939], [10.6792, 60.939], [10.6793, 60.9389], [10.6793, 60.9389], [10.6792, 60.9388], [10.6793, 60.9387], [10.6795, 60.9387], [10.6796, 60.9387], [10.6796, 60.9386], [10.6797, 60.9386], [10.6797, 60.9386], [10.6798, 60.9386], [10.6798, 60.9386], [10.6799, 60.9385], [10.6799, 60.9385], [10.68, 60.9384], [10.68, 60.9383], [10.6801, 60.9383], [10.6801, 60.9383], [10.6802, 60.9382], [10.6803, 60.9383], [10.6803, 60.9382], [10.6804, 60.9382], [10.6804, 60.9382], [10.6805, 60.9382], [10.6805, 60.9382], [10.6806, 60.9382], [10.6806, 60.9382], [10.6807, 60.9382], [10.6807, 60.9382], [10.6807, 60.9382], [10.6807, 60.9381], [10.6806, 60.9381], [10.6805, 60.9381], [10.6805, 60.9381], [10.6805, 60.9381], [10.6806, 60.938], [10.6808, 60.938], [10.6809, 60.938], [10.6809, 60.938], [10.681, 60.938], [10.6811, 60.938], [10.6813, 60.938], [10.6814, 60.9379], [10.6814, 60.9379], [10.6814, 60.9378], [10.6814, 60.9377], [10.6814, 60.9377], [10.6813, 60.9376], [10.6813, 60.9375], [10.6813, 60.9375], [10.6811, 60.9374], [10.6809, 60.9374], [10.6808, 60.9374], [10.6807, 60.9374], [10.6806, 60.9374], [10.6804, 60.9374], [10.6804, 60.9373], [10.6802, 60.9372], [10.68, 60.9372], [10.6799, 60.9371], [10.6797, 60.9371], [10.6793, 60.937], [10.6792, 60.937], [10.679, 60.937], [10.6788, 60.937], [10.6787, 60.937], [10.6785, 60.937], [10.6785, 60.937], [10.6783, 60.9369], [10.6783, 60.9369], [10.6782, 60.9369], [10.6781, 60.9369], [10.6781, 60.9369], [10.6704, 60.9369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "28", "sub_div_center": [60.949119, 10.670419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6704, 60.954], [10.6705, 60.954], [10.6705, 60.954], [10.6707, 60.9539], [10.6708, 60.9539], [10.671, 60.9538], [10.6712, 60.9537], [10.6713, 60.9536], [10.6717, 60.9534], [10.6717, 60.9533], [10.6719, 60.9534], [10.6721, 60.9534], [10.6723, 60.9533], [10.6724, 60.9532], [10.6725, 60.9532], [10.6729, 60.9531], [10.6733, 60.9529], [10.6734, 60.9528], [10.6736, 60.9528], [10.6736, 60.9528], [10.6737, 60.9526], [10.6738, 60.9525], [10.6738, 60.9525], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6738, 60.9524], [10.6739, 60.9525], [10.6739, 60.9525], [10.674, 60.9525], [10.6741, 60.9525], [10.6742, 60.9525], [10.6743, 60.9525], [10.6747, 60.9524], [10.6749, 60.9524], [10.6751, 60.9523], [10.6755, 60.9521], [10.6756, 60.9521], [10.6757, 60.952], [10.6758, 60.9518], [10.6759, 60.9517], [10.676, 60.9515], [10.676, 60.9514], [10.6759, 60.9514], [10.6759, 60.9513], [10.6758, 60.9513], [10.6757, 60.9511], [10.6757, 60.951], [10.6757, 60.951], [10.6759, 60.9509], [10.6762, 60.951], [10.6763, 60.951], [10.6765, 60.9509], [10.6768, 60.9508], [10.677, 60.9507], [10.6772, 60.9506], [10.6774, 60.9504], [10.6776, 60.9503], [10.6776, 60.9503], [10.6777, 60.9501], [10.6777, 60.95], [10.6776, 60.9497], [10.6776, 60.9496], [10.6775, 60.9495], [10.6774, 60.9494], [10.6772, 60.9493], [10.6771, 60.9492], [10.6769, 60.9492], [10.6768, 60.9491], [10.6767, 60.9491], [10.6764, 60.9491], [10.6762, 60.9491], [10.6761, 60.9491], [10.676, 60.9492], [10.6759, 60.9492], [10.6757, 60.9492], [10.6756, 60.9492], [10.6754, 60.9493], [10.6753, 60.9493], [10.6751, 60.9495], [10.675, 60.9496], [10.675, 60.9498], [10.675, 60.9501], [10.675, 60.9502], [10.6748, 60.9502], [10.6746, 60.9503], [10.6742, 60.9504], [10.674, 60.9505], [10.6738, 60.9506], [10.6735, 60.9507], [10.6734, 60.9507], [10.6732, 60.9507], [10.6729, 60.9506], [10.6727, 60.9507], [10.6726, 60.9507], [10.6726, 60.9507], [10.6725, 60.9508], [10.6724, 60.9508], [10.6724, 60.9509], [10.6723, 60.9509], [10.6722, 60.9508], [10.672, 60.9508], [10.6718, 60.9508], [10.6714, 60.9509], [10.6711, 60.9509], [10.6709, 60.9508], [10.6708, 60.9508], [10.6706, 60.9508], [10.6704, 60.9508], [10.6704, 60.9508], [10.6704, 60.954]]]}}, {"type": "Feature", "properties": {"sub_div_id": "29", "sub_div_center": [60.796856, 10.678587]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8169], [10.7104, 60.7969], [10.7012, 60.7969], [10.7012, 60.7969], [10.7008, 60.7972], [10.7007, 60.7972], [10.7007, 60.7973], [10.7004, 60.7975], [10.7001, 60.7978], [10.7001, 60.7979], [10.7, 60.798], [10.6999, 60.798], [10.6998, 60.798], [10.6997, 60.798], [10.6995, 60.7981], [10.6989, 60.7982], [10.6984, 60.7983], [10.6983, 60.7983], [10.6982, 60.7983], [10.6982, 60.7983], [10.6981, 60.7983], [10.6981, 60.7983], [10.6984, 60.7982], [10.6987, 60.7981], [10.699, 60.7981], [10.6991, 60.798], [10.6991, 60.798], [10.6988, 60.7979], [10.6985, 60.7978], [10.6979, 60.7978], [10.6975, 60.7977], [10.6974, 60.7977], [10.697, 60.7977], [10.6969, 60.7977], [10.6968, 60.7977], [10.6967, 60.7978], [10.6967, 60.7978], [10.6967, 60.7979], [10.6969, 60.798], [10.6975, 60.7982], [10.6976, 60.7983], [10.6977, 60.7984], [10.6977, 60.7984], [10.6975, 60.7985], [10.6974, 60.7985], [10.6972, 60.7984], [10.6967, 60.7981], [10.6967, 60.7981], [10.6966, 60.7981], [10.6966, 60.7981], [10.6966, 60.7983], [10.6968, 60.7985], [10.697, 60.7985], [10.6972, 60.7986], [10.6974, 60.7988], [10.6974, 60.7988], [10.6974, 60.7988], [10.6972, 60.799], [10.6972, 60.799], [10.6969, 60.7993], [10.6967, 60.7994], [10.6963, 60.7996], [10.6959, 60.7997], [10.6954, 60.7999], [10.6951, 60.8002], [10.695, 60.8003], [10.6946, 60.8005], [10.6942, 60.8007], [10.6937, 60.801], [10.6935, 60.8011], [10.6933, 60.8011], [10.6933, 60.8012], [10.6929, 60.8012], [10.6928, 60.8012], [10.6927, 60.8012], [10.6925, 60.8014], [10.6924, 60.8014], [10.6922, 60.8014], [10.6921, 60.8014], [10.6919, 60.8015], [10.6918, 60.8015], [10.6916, 60.8015], [10.6915, 60.8016], [10.6915, 60.8016], [10.6914, 60.8016], [10.6912, 60.8016], [10.6911, 60.8016], [10.6903, 60.8017], [10.6902, 60.8017], [10.6902, 60.8017], [10.6898, 60.8018], [10.6893, 60.8019], [10.689, 60.802], [10.6884, 60.8022], [10.6883, 60.8022], [10.6878, 60.8025], [10.6874, 60.8027], [10.687, 60.803], [10.6869, 60.8031], [10.6868, 60.8033], [10.6866, 60.8036], [10.6865, 60.8038], [10.6863, 60.8042], [10.6863, 60.8044], [10.6865, 60.8046], [10.6865, 60.8048], [10.6865, 60.8049], [10.6865, 60.805], [10.6866, 60.8051], [10.6868, 60.8054], [10.6867, 60.8059], [10.6868, 60.806], [10.6869, 60.8062], [10.6869, 60.8064], [10.687, 60.8065], [10.6871, 60.8068], [10.6871, 60.807], [10.687, 60.8071], [10.6869, 60.8074], [10.6868, 60.8074], [10.6867, 60.8075], [10.6866, 60.8076], [10.6865, 60.8077], [10.6863, 60.8078], [10.6861, 60.8079], [10.6861, 60.8079], [10.6857, 60.8079], [10.6857, 60.8079], [10.6856, 60.808], [10.6856, 60.808], [10.6855, 60.8081], [10.6855, 60.8082], [10.6856, 60.8082], [10.6857, 60.8082], [10.6857, 60.8083], [10.6856, 60.8084], [10.6854, 60.8085], [10.685, 60.8088], [10.6846, 60.8091], [10.6843, 60.8092], [10.6838, 60.8095], [10.6833, 60.8097], [10.6828, 60.8099], [10.6826, 60.81], [10.6815, 60.8107], [10.6813, 60.8108], [10.681, 60.8111], [10.6808, 60.8113], [10.6805, 60.8116], [10.6804, 60.8117], [10.6803, 60.812], [10.6803, 60.8122], [10.6803, 60.8123], [10.6803, 60.8124], [10.6803, 60.8125], [10.6803, 60.8132], [10.6802, 60.8133], [10.68, 60.8136], [10.68, 60.8137], [10.68, 60.8138], [10.68, 60.8139], [10.6802, 60.814], [10.6802, 60.814], [10.6801, 60.8141], [10.68, 60.8141], [10.6799, 60.8142], [10.6798, 60.8143], [10.6797, 60.8144], [10.6795, 60.8145], [10.6793, 60.8147], [10.6788, 60.8149], [10.6788, 60.815], [10.6787, 60.8151], [10.6787, 60.8152], [10.6786, 60.8155], [10.6786, 60.8158], [10.6787, 60.8158], [10.6787, 60.8159], [10.6788, 60.8159], [10.6789, 60.8159], [10.679, 60.8159], [10.6791, 60.8159], [10.6792, 60.8159], [10.6792, 60.816], [10.6791, 60.816], [10.679, 60.8161], [10.6788, 60.8162], [10.6788, 60.8162], [10.6787, 60.8163], [10.6787, 60.8164], [10.6786, 60.8166], [10.6786, 60.8168], [10.6786, 60.8169], [10.7104, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "30", "sub_div_center": [60.816856, 10.677029]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6786, 60.8169], [10.6786, 60.8169], [10.6784, 60.817], [10.6783, 60.8171], [10.6783, 60.8172], [10.6783, 60.8172], [10.6784, 60.8173], [10.6785, 60.8174], [10.6786, 60.8174], [10.6788, 60.8175], [10.6788, 60.8175], [10.6788, 60.8175], [10.6787, 60.8176], [10.6786, 60.8177], [10.6785, 60.8177], [10.6785, 60.8178], [10.6786, 60.8179], [10.6786, 60.818], [10.6787, 60.8181], [10.6787, 60.8181], [10.6785, 60.8181], [10.6785, 60.8182], [10.6784, 60.8182], [10.6782, 60.8183], [10.6781, 60.8184], [10.678, 60.8184], [10.678, 60.8184], [10.678, 60.8185], [10.6781, 60.8185], [10.6783, 60.8185], [10.6784, 60.8185], [10.6785, 60.8185], [10.6785, 60.8185], [10.6785, 60.8185], [10.6783, 60.8186], [10.6781, 60.8186], [10.678, 60.8185], [10.6779, 60.8186], [10.6779, 60.8186], [10.678, 60.8186], [10.678, 60.8187], [10.678, 60.8187], [10.6779, 60.8187], [10.6779, 60.8188], [10.6779, 60.8189], [10.6778, 60.8189], [10.6775, 60.8189], [10.6774, 60.8189], [10.6774, 60.8189], [10.677, 60.8193], [10.677, 60.8198], [10.677, 60.8199], [10.6772, 60.8201], [10.6773, 60.8202], [10.6773, 60.8202], [10.6774, 60.8202], [10.6777, 60.8201], [10.6778, 60.8201], [10.6779, 60.8201], [10.6779, 60.8201], [10.6778, 60.8202], [10.6775, 60.8202], [10.6775, 60.8203], [10.6775, 60.8203], [10.6777, 60.8205], [10.6783, 60.8208], [10.6785, 60.821], [10.6789, 60.8213], [10.679, 60.8215], [10.679, 60.8215], [10.6789, 60.8216], [10.6789, 60.8216], [10.6788, 60.8216], [10.6787, 60.8216], [10.6787, 60.8216], [10.6787, 60.8217], [10.6788, 60.8218], [10.6788, 60.8218], [10.6789, 60.8219], [10.6791, 60.8219], [10.6793, 60.8219], [10.6793, 60.8219], [10.6793, 60.8219], [10.6794, 60.822], [10.6794, 60.822], [10.6795, 60.822], [10.6795, 60.822], [10.6794, 60.8221], [10.679, 60.8221], [10.6789, 60.8222], [10.6789, 60.8222], [10.6788, 60.8223], [10.6788, 60.8223], [10.6789, 60.8223], [10.6789, 60.8224], [10.6784, 60.8224], [10.6777, 60.8224], [10.6777, 60.8224], [10.6777, 60.8224], [10.6782, 60.8224], [10.6785, 60.8225], [10.6787, 60.8225], [10.6789, 60.8225], [10.679, 60.8225], [10.679, 60.8226], [10.6789, 60.8226], [10.6788, 60.8227], [10.6788, 60.8228], [10.6788, 60.8229], [10.6788, 60.823], [10.679, 60.8231], [10.679, 60.8231], [10.6789, 60.8231], [10.6787, 60.823], [10.6787, 60.823], [10.6786, 60.823], [10.6786, 60.823], [10.6786, 60.8231], [10.6786, 60.8231], [10.6787, 60.8232], [10.6788, 60.8233], [10.6789, 60.8234], [10.6789, 60.8235], [10.6788, 60.8236], [10.6785, 60.8237], [10.6784, 60.8238], [10.6784, 60.8238], [10.6784, 60.8241], [10.6786, 60.8242], [10.6785, 60.8243], [10.6786, 60.8244], [10.6786, 60.8244], [10.6787, 60.8245], [10.6787, 60.8245], [10.6786, 60.8246], [10.6786, 60.8247], [10.6786, 60.8248], [10.6786, 60.825], [10.6786, 60.825], [10.6784, 60.8252], [10.6783, 60.8254], [10.6783, 60.8255], [10.6782, 60.8256], [10.6782, 60.8256], [10.6781, 60.8257], [10.6781, 60.8258], [10.6781, 60.8258], [10.6781, 60.826], [10.6781, 60.826], [10.6781, 60.8262], [10.6781, 60.8264], [10.6781, 60.8264], [10.6781, 60.8265], [10.6781, 60.8266], [10.6784, 60.8268], [10.6785, 60.8269], [10.6787, 60.827], [10.6788, 60.827], [10.6789, 60.8271], [10.679, 60.8271], [10.679, 60.8272], [10.679, 60.8272], [10.6791, 60.8273], [10.6792, 60.8273], [10.6793, 60.8274], [10.6794, 60.8274], [10.6795, 60.8274], [10.6796, 60.8274], [10.6797, 60.8275], [10.6797, 60.8276], [10.6798, 60.8277], [10.6802, 60.8279], [10.6804, 60.828], [10.6805, 60.8281], [10.6805, 60.8282], [10.6805, 60.8283], [10.6805, 60.8284], [10.6807, 60.8285], [10.6808, 60.8285], [10.681, 60.8287], [10.6811, 60.8288], [10.6811, 60.8288], [10.6811, 60.8289], [10.6811, 60.8291], [10.6812, 60.8291], [10.6812, 60.8291], [10.6812, 60.8293], [10.6812, 60.8294], [10.6812, 60.8297], [10.6812, 60.8297], [10.6814, 60.83], [10.6814, 60.8301], [10.6816, 60.8302], [10.6817, 60.8304], [10.682, 60.8307], [10.6822, 60.8308], [10.6823, 60.8308], [10.6823, 60.831], [10.6824, 60.8311], [10.6825, 60.8312], [10.6825, 60.8313], [10.6828, 60.8316], [10.6829, 60.8317], [10.6829, 60.8318], [10.6831, 60.832], [10.6832, 60.8321], [10.6832, 60.8322], [10.6833, 60.8323], [10.6835, 60.8325], [10.6837, 60.8326], [10.6839, 60.8327], [10.684, 60.8328], [10.6842, 60.8328], [10.6842, 60.8328], [10.6843, 60.8329], [10.6843, 60.833], [10.6843, 60.833], [10.6844, 60.833], [10.6844, 60.8331], [10.6844, 60.8333], [10.6845, 60.8333], [10.6846, 60.8335], [10.6847, 60.8336], [10.6847, 60.8338], [10.6849, 60.8339], [10.6849, 60.834], [10.6849, 60.8341], [10.6848, 60.8343], [10.6848, 60.8344], [10.6849, 60.8346], [10.6849, 60.8347], [10.6848, 60.8348], [10.6848, 60.8349], [10.6849, 60.835], [10.685, 60.8352], [10.685, 60.8352], [10.685, 60.8354], [10.685, 60.8355], [10.6851, 60.8359], [10.6851, 60.8361], [10.6852, 60.8362], [10.6852, 60.8362], [10.6854, 60.8364], [10.6855, 60.8365], [10.6856, 60.8366], [10.6858, 60.8367], [10.6861, 60.8368], [10.6861, 60.8368], [10.6862, 60.8368], [10.6863, 60.8368], [10.6863, 60.8369], [10.7104, 60.8369], [10.7104, 60.8346], [10.7103, 60.8344], [10.7102, 60.8343], [10.7102, 60.8343], [10.7101, 60.8341], [10.7101, 60.834], [10.7101, 60.8339], [10.7102, 60.8338], [10.7102, 60.8337], [10.7102, 60.8337], [10.7102, 60.8335], [10.7102, 60.8334], [10.7102, 60.8334], [10.7102, 60.8332], [10.7102, 60.8331], [10.7101, 60.833], [10.71, 60.8329], [10.71, 60.8327], [10.71, 60.8326], [10.7099, 60.8324], [10.7097, 60.8321], [10.7096, 60.832], [10.7094, 60.8319], [10.7095, 60.8319], [10.7094, 60.8318], [10.7094, 60.8317], [10.7093, 60.8315], [10.7093, 60.8315], [10.7092, 60.8314], [10.7091, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.709, 60.8315], [10.7091, 60.8314], [10.7091, 60.8313], [10.7091, 60.8313], [10.709, 60.8312], [10.709, 60.8312], [10.709, 60.8311], [10.7088, 60.8311], [10.7087, 60.8311], [10.7086, 60.8311], [10.7086, 60.8311], [10.7086, 60.8311], [10.7086, 60.831], [10.7087, 60.831], [10.7089, 60.831], [10.709, 60.831], [10.709, 60.831], [10.709, 60.831], [10.7091, 60.831], [10.7091, 60.831], [10.7092, 60.831], [10.7091, 60.8309], [10.7092, 60.8309], [10.7092, 60.8309], [10.7093, 60.8308], [10.7093, 60.8308], [10.7094, 60.8307], [10.7095, 60.8306], [10.7095, 60.8305], [10.7097, 60.8304], [10.7098, 60.8303], [10.7098, 60.8303], [10.7099, 60.8303], [10.7099, 60.8302], [10.71, 60.8302], [10.71, 60.8301], [10.7101, 60.8301], [10.7101, 60.8301], [10.71, 60.83], [10.7098, 60.83], [10.7096, 60.83], [10.7095, 60.83], [10.7094, 60.8299], [10.7094, 60.8299], [10.7093, 60.8299], [10.7094, 60.8298], [10.7093, 60.8298], [10.7094, 60.8297], [10.7095, 60.8297], [10.7095, 60.8297], [10.7096, 60.8297], [10.7097, 60.8297], [10.7097, 60.8297], [10.7098, 60.8297], [10.7098, 60.8297], [10.7098, 60.8296], [10.71, 60.8296], [10.71, 60.8296], [10.71, 60.8296], [10.7101, 60.8295], [10.71, 60.8295], [10.71, 60.8294], [10.7099, 60.8294], [10.7097, 60.8294], [10.7098, 60.8294], [10.7099, 60.8294], [10.7101, 60.8294], [10.7101, 60.8293], [10.7101, 60.8293], [10.7102, 60.8293], [10.7102, 60.8292], [10.7102, 60.8292], [10.71, 60.8292], [10.7101, 60.8291], [10.7103, 60.8292], [10.7103, 60.8291], [10.7102, 60.8291], [10.7102, 60.8291], [10.7102, 60.8291], [10.7103, 60.8291], [10.7103, 60.8291], [10.7104, 60.829], [10.7104, 60.829], [10.7104, 60.829], [10.7104, 60.829], [10.7103, 60.829], [10.7103, 60.8289], [10.7102, 60.8289], [10.7102, 60.8288], [10.7101, 60.8288], [10.7101, 60.8288], [10.7101, 60.8287], [10.7101, 60.8287], [10.7101, 60.8287], [10.71, 60.8287], [10.71, 60.8287], [10.71, 60.8286], [10.71, 60.8286], [10.7101, 60.8286], [10.7101, 60.8286], [10.7101, 60.8287], [10.7101, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7102, 60.8287], [10.7103, 60.8287], [10.7103, 60.8287], [10.7103, 60.8287], [10.7104, 60.8287], [10.7104, 60.8284], [10.7104, 60.8284], [10.7104, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8284], [10.7103, 60.8283], [10.7103, 60.8283], [10.7103, 60.8283], [10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8281], [10.7103, 60.8281], [10.7103, 60.8281], [10.7103, 60.828], [10.7103, 60.828], [10.7103, 60.8279], [10.7102, 60.8279], [10.7102, 60.8278], [10.7102, 60.8278], [10.7102, 60.8277], [10.7102, 60.8277], [10.7103, 60.8276], [10.7103, 60.8276], [10.7103, 60.8275], [10.7102, 60.8275], [10.7102, 60.8275], [10.7102, 60.8274], [10.7101, 60.8274], [10.71, 60.8274], [10.7098, 60.8274], [10.7098, 60.8273], [10.7098, 60.8272], [10.7098, 60.8272], [10.7097, 60.8271], [10.7097, 60.8271], [10.7097, 60.827], [10.7097, 60.8269], [10.7098, 60.8269], [10.7098, 60.8269], [10.7098, 60.8268], [10.7098, 60.8268], [10.7098, 60.8268], [10.7098, 60.8267], [10.7097, 60.8267], [10.7097, 60.8266], [10.7097, 60.8265], [10.7096, 60.8265], [10.7095, 60.8265], [10.7094, 60.8265], [10.7094, 60.8264], [10.7096, 60.8264], [10.7096, 60.8264], [10.7096, 60.8263], [10.7096, 60.8263], [10.7097, 60.8263], [10.7096, 60.8263], [10.7096, 60.8262], [10.7095, 60.8262], [10.7095, 60.8261], [10.7094, 60.826], [10.7094, 60.826], [10.7094, 60.826], [10.7093, 60.8259], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8258], [10.7092, 60.8257], [10.7092, 60.8257], [10.7091, 60.8257], [10.7091, 60.8256], [10.7092, 60.8256], [10.7092, 60.8256], [10.7091, 60.8255], [10.7091, 60.8254], [10.7091, 60.8254], [10.7091, 60.8253], [10.709, 60.8252], [10.709, 60.8252], [10.7089, 60.8251], [10.7089, 60.8251], [10.709, 60.825], [10.709, 60.825], [10.709, 60.8249], [10.709, 60.8248], [10.709, 60.8247], [10.709, 60.8247], [10.709, 60.8246], [10.7091, 60.8245], [10.7092, 60.8245], [10.7092, 60.8244], [10.7093, 60.8243], [10.7094, 60.8242], [10.7095, 60.8241], [10.7096, 60.824], [10.7097, 60.824], [10.7098, 60.8239], [10.7099, 60.8238], [10.7099, 60.8238], [10.7099, 60.8237], [10.71, 60.8236], [10.71, 60.8236], [10.71, 60.8235], [10.7101, 60.8235], [10.7102, 60.8234], [10.7103, 60.8233], [10.7104, 60.8232], [10.7104, 60.8232], [10.7104, 60.8169], [10.6786, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "31", "sub_div_center": [60.836856, 10.684954]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6863, 60.8369], [10.6863, 60.8369], [10.6863, 60.837], [10.6862, 60.837], [10.6862, 60.8371], [10.6863, 60.8372], [10.6863, 60.8373], [10.6863, 60.8374], [10.6863, 60.8376], [10.6862, 60.8377], [10.6861, 60.8379], [10.6861, 60.8379], [10.686, 60.8381], [10.6859, 60.8382], [10.6858, 60.8384], [10.6858, 60.8384], [10.6856, 60.8386], [10.6856, 60.8386], [10.6855, 60.8386], [10.6854, 60.8387], [10.6854, 60.8388], [10.6851, 60.8391], [10.685, 60.8392], [10.685, 60.8394], [10.685, 60.8396], [10.685, 60.8399], [10.685, 60.8401], [10.685, 60.8403], [10.6851, 60.8404], [10.6852, 60.8405], [10.6853, 60.8407], [10.6854, 60.8409], [10.6854, 60.8409], [10.6855, 60.8411], [10.6856, 60.8413], [10.6856, 60.8414], [10.6858, 60.8415], [10.6859, 60.8416], [10.686, 60.8418], [10.6863, 60.8419], [10.6865, 60.842], [10.6869, 60.8423], [10.6871, 60.8424], [10.6875, 60.8425], [10.688, 60.8427], [10.6883, 60.8428], [10.6888, 60.843], [10.6892, 60.8431], [10.6893, 60.8432], [10.6893, 60.8432], [10.6894, 60.8433], [10.6895, 60.8433], [10.6896, 60.8434], [10.6899, 60.8437], [10.6899, 60.8437], [10.69, 60.8439], [10.6902, 60.8441], [10.6903, 60.8442], [10.6905, 60.8444], [10.6905, 60.8445], [10.6907, 60.8447], [10.6908, 60.845], [10.691, 60.8452], [10.691, 60.8452], [10.691, 60.8453], [10.691, 60.8456], [10.6911, 60.8457], [10.6914, 60.8459], [10.6918, 60.8462], [10.6923, 60.8465], [10.6924, 60.8466], [10.6926, 60.8467], [10.6926, 60.8467], [10.6929, 60.8467], [10.693, 60.8468], [10.6931, 60.8468], [10.6931, 60.8469], [10.6932, 60.8469], [10.6933, 60.847], [10.6934, 60.847], [10.6935, 60.8471], [10.6936, 60.8472], [10.6936, 60.8473], [10.6936, 60.8473], [10.6942, 60.8475], [10.6943, 60.8475], [10.6946, 60.8476], [10.695, 60.8477], [10.6952, 60.8477], [10.6954, 60.8478], [10.6955, 60.8478], [10.6956, 60.8478], [10.6956, 60.8479], [10.6957, 60.848], [10.6958, 60.8481], [10.696, 60.8482], [10.6967, 60.8487], [10.6967, 60.8488], [10.6968, 60.8489], [10.6968, 60.849], [10.6969, 60.849], [10.6968, 60.8491], [10.6968, 60.8492], [10.6968, 60.8492], [10.697, 60.8495], [10.6971, 60.8496], [10.6972, 60.8497], [10.6972, 60.8497], [10.6971, 60.8498], [10.6971, 60.8498], [10.6971, 60.8499], [10.6972, 60.8499], [10.6972, 60.85], [10.6972, 60.85], [10.6971, 60.8501], [10.6971, 60.8503], [10.697, 60.8504], [10.697, 60.8505], [10.6971, 60.8509], [10.6972, 60.8512], [10.6973, 60.8515], [10.6974, 60.8516], [10.6974, 60.8517], [10.6973, 60.8518], [10.6973, 60.8519], [10.6973, 60.8519], [10.6972, 60.8521], [10.6972, 60.8522], [10.6972, 60.8525], [10.6972, 60.8526], [10.6972, 60.8527], [10.6973, 60.8528], [10.6973, 60.853], [10.6974, 60.8532], [10.6974, 60.8532], [10.6976, 60.8532], [10.6976, 60.8532], [10.6977, 60.8533], [10.6978, 60.8533], [10.6978, 60.8533], [10.6977, 60.8533], [10.6976, 60.8534], [10.6977, 60.8534], [10.6976, 60.8536], [10.6976, 60.8537], [10.6978, 60.8539], [10.698, 60.8542], [10.6981, 60.8543], [10.6983, 60.8545], [10.6984, 60.8546], [10.6986, 60.8547], [10.6987, 60.8549], [10.6988, 60.855], [10.699, 60.8553], [10.6992, 60.8555], [10.6993, 60.8556], [10.6994, 60.8556], [10.6995, 60.8556], [10.6996, 60.8557], [10.7, 60.8559], [10.7002, 60.856], [10.7003, 60.856], [10.7004, 60.8562], [10.7006, 60.8563], [10.7007, 60.8563], [10.7008, 60.8563], [10.7009, 60.8564], [10.701, 60.8565], [10.7011, 60.8566], [10.7013, 60.8567], [10.7016, 60.8568], [10.7016, 60.8569], [10.7104, 60.8569], [10.7104, 60.8369], [10.6863, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "32", "sub_div_center": [60.856856, 10.695012]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8769], [10.7104, 60.8569], [10.7016, 60.8569], [10.7018, 60.8569], [10.7019, 60.857], [10.7021, 60.8571], [10.7022, 60.8571], [10.7025, 60.8572], [10.7028, 60.8573], [10.7029, 60.8574], [10.7032, 60.8574], [10.7033, 60.8575], [10.7034, 60.8575], [10.7035, 60.8575], [10.7035, 60.8576], [10.7036, 60.8576], [10.7036, 60.8577], [10.7036, 60.8577], [10.7036, 60.8578], [10.7036, 60.8578], [10.7036, 60.8579], [10.7036, 60.8579], [10.7037, 60.8579], [10.7038, 60.8579], [10.7038, 60.858], [10.7038, 60.858], [10.7038, 60.858], [10.7037, 60.858], [10.7035, 60.8581], [10.7035, 60.8582], [10.7035, 60.8582], [10.7035, 60.8583], [10.7035, 60.8584], [10.7036, 60.8584], [10.7038, 60.8585], [10.7038, 60.8586], [10.7039, 60.8587], [10.7039, 60.8587], [10.7038, 60.8587], [10.7038, 60.8588], [10.7038, 60.8589], [10.7036, 60.859], [10.7035, 60.8591], [10.7035, 60.8592], [10.7035, 60.8593], [10.7034, 60.8595], [10.7033, 60.8597], [10.7033, 60.8597], [10.7033, 60.86], [10.7034, 60.8602], [10.7034, 60.8605], [10.7033, 60.8606], [10.7032, 60.8607], [10.703, 60.8609], [10.703, 60.8609], [10.7028, 60.861], [10.7026, 60.8611], [10.7024, 60.8612], [10.7021, 60.8613], [10.702, 60.8614], [10.7017, 60.8615], [10.7016, 60.8616], [10.7016, 60.8616], [10.7016, 60.8617], [10.7016, 60.8619], [10.7016, 60.862], [10.7014, 60.8623], [10.7013, 60.8626], [10.7013, 60.8628], [10.7012, 60.8631], [10.7012, 60.8636], [10.7013, 60.8637], [10.7015, 60.8637], [10.7014, 60.8637], [10.7013, 60.8637], [10.7012, 60.8637], [10.7012, 60.864], [10.7012, 60.8641], [10.7012, 60.8643], [10.7012, 60.8643], [10.7013, 60.8644], [10.7014, 60.8644], [10.7016, 60.8645], [10.7017, 60.8645], [10.7017, 60.8645], [10.7016, 60.8646], [10.7014, 60.8646], [10.7013, 60.8646], [10.701, 60.8647], [10.7007, 60.8648], [10.7003, 60.865], [10.7002, 60.865], [10.7002, 60.8651], [10.7001, 60.8652], [10.7001, 60.8654], [10.7001, 60.8656], [10.7001, 60.8656], [10.7002, 60.8657], [10.7004, 60.8658], [10.7004, 60.8659], [10.7004, 60.866], [10.7003, 60.8661], [10.7001, 60.8662], [10.7, 60.8662], [10.6999, 60.8663], [10.6998, 60.8664], [10.6997, 60.8664], [10.6995, 60.8664], [10.6994, 60.8664], [10.6993, 60.8664], [10.6992, 60.8665], [10.699, 60.8668], [10.6989, 60.867], [10.6987, 60.8672], [10.6987, 60.8672], [10.6988, 60.8673], [10.6987, 60.8674], [10.6987, 60.8675], [10.6987, 60.8675], [10.6986, 60.8676], [10.6985, 60.8677], [10.6983, 60.8679], [10.6982, 60.8679], [10.6982, 60.868], [10.6982, 60.8681], [10.6982, 60.8683], [10.6983, 60.8684], [10.6984, 60.8686], [10.6985, 60.8686], [10.6987, 60.8687], [10.6988, 60.8687], [10.6988, 60.8688], [10.6987, 60.8688], [10.6986, 60.8689], [10.6984, 60.8689], [10.6982, 60.869], [10.6981, 60.8691], [10.698, 60.8691], [10.698, 60.8692], [10.6979, 60.8693], [10.6979, 60.87], [10.698, 60.8701], [10.6982, 60.8704], [10.6982, 60.8705], [10.6983, 60.8707], [10.6983, 60.8708], [10.6983, 60.8708], [10.6984, 60.8708], [10.6985, 60.8709], [10.6988, 60.8709], [10.6989, 60.8709], [10.699, 60.871], [10.699, 60.8711], [10.6991, 60.8712], [10.6992, 60.8713], [10.6992, 60.8713], [10.6993, 60.8714], [10.6993, 60.8715], [10.6994, 60.8715], [10.6994, 60.8716], [10.6993, 60.8717], [10.6992, 60.8717], [10.6987, 60.8719], [10.6985, 60.8719], [10.6983, 60.872], [10.6982, 60.8721], [10.6981, 60.8722], [10.6981, 60.8722], [10.698, 60.8723], [10.6981, 60.8723], [10.698, 60.8723], [10.698, 60.8725], [10.6981, 60.8726], [10.6981, 60.8726], [10.6982, 60.8726], [10.6983, 60.8727], [10.6988, 60.8727], [10.6989, 60.8727], [10.699, 60.8728], [10.699, 60.8728], [10.699, 60.8728], [10.6989, 60.8728], [10.6986, 60.8728], [10.6984, 60.8728], [10.6983, 60.8728], [10.6978, 60.8729], [10.6975, 60.873], [10.6974, 60.873], [10.697, 60.8732], [10.6969, 60.8732], [10.6967, 60.8734], [10.6967, 60.8735], [10.6967, 60.8735], [10.6967, 60.8737], [10.6967, 60.8738], [10.6968, 60.8739], [10.6968, 60.874], [10.6968, 60.8741], [10.6967, 60.8743], [10.6967, 60.8746], [10.6968, 60.8747], [10.6968, 60.8748], [10.6968, 60.8748], [10.6968, 60.875], [10.6968, 60.875], [10.6967, 60.8751], [10.6966, 60.8752], [10.6966, 60.8752], [10.6963, 60.8753], [10.696, 60.8754], [10.6959, 60.8755], [10.6958, 60.8756], [10.6957, 60.8756], [10.6956, 60.8759], [10.6956, 60.8759], [10.6954, 60.876], [10.6954, 60.8761], [10.6954, 60.8762], [10.6952, 60.8763], [10.6951, 60.8764], [10.6951, 60.8765], [10.6951, 60.8766], [10.6951, 60.8767], [10.695, 60.8768], [10.695, 60.8769], [10.7104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "33", "sub_div_center": [60.776856, 10.698341]}, "geometry": {"type": "Polygon", "coordinates": [[[10.701, 60.7969], [10.7011, 60.7968], [10.7012, 60.7967], [10.7013, 60.7966], [10.7013, 60.7967], [10.7013, 60.7968], [10.7012, 60.7969], [10.7104, 60.7969], [10.7104, 60.7769], [10.7072, 60.7769], [10.7071, 60.7769], [10.7068, 60.777], [10.7066, 60.7771], [10.7062, 60.7771], [10.7061, 60.7772], [10.706, 60.7772], [10.7057, 60.7772], [10.7056, 60.7772], [10.7052, 60.7773], [10.7051, 60.7773], [10.7051, 60.7774], [10.7051, 60.7774], [10.7051, 60.7774], [10.7053, 60.7777], [10.7053, 60.7778], [10.7053, 60.7778], [10.7052, 60.7779], [10.7051, 60.778], [10.7049, 60.7782], [10.7049, 60.7782], [10.7049, 60.7784], [10.7048, 60.7789], [10.7048, 60.7791], [10.7047, 60.7794], [10.7044, 60.7797], [10.7044, 60.7797], [10.7043, 60.7798], [10.704, 60.7798], [10.704, 60.7799], [10.7039, 60.78], [10.7039, 60.7799], [10.7039, 60.7798], [10.7039, 60.7798], [10.7041, 60.7797], [10.7042, 60.7797], [10.7043, 60.7796], [10.7044, 60.7795], [10.7046, 60.7792], [10.7046, 60.779], [10.7047, 60.7786], [10.7047, 60.7783], [10.7046, 60.7781], [10.7046, 60.778], [10.7046, 60.778], [10.7043, 60.778], [10.7042, 60.7781], [10.7041, 60.7781], [10.7038, 60.7781], [10.7037, 60.7781], [10.7037, 60.7779], [10.7036, 60.7779], [10.7035, 60.778], [10.7032, 60.7781], [10.7026, 60.7783], [10.7023, 60.7784], [10.7022, 60.7785], [10.702, 60.7786], [10.7019, 60.7788], [10.7019, 60.7789], [10.7017, 60.7792], [10.7017, 60.7793], [10.7017, 60.7795], [10.7017, 60.7796], [10.7017, 60.7796], [10.7016, 60.7796], [10.7016, 60.7796], [10.7016, 60.7797], [10.7017, 60.7798], [10.7017, 60.7799], [10.7018, 60.78], [10.7019, 60.78], [10.702, 60.78], [10.7027, 60.78], [10.7028, 60.78], [10.7032, 60.7799], [10.7034, 60.7799], [10.7034, 60.78], [10.7032, 60.78], [10.7028, 60.78], [10.7025, 60.7801], [10.7018, 60.7801], [10.7016, 60.7801], [10.7016, 60.7801], [10.7016, 60.7802], [10.7015, 60.7802], [10.7015, 60.7803], [10.7015, 60.7805], [10.7016, 60.7807], [10.7017, 60.7809], [10.7017, 60.7813], [10.7019, 60.7817], [10.7021, 60.782], [10.7024, 60.7823], [10.7025, 60.7824], [10.7027, 60.7825], [10.7028, 60.7826], [10.7029, 60.7827], [10.7031, 60.7828], [10.7033, 60.7829], [10.7034, 60.783], [10.7038, 60.7831], [10.7042, 60.7833], [10.7044, 60.7834], [10.7045, 60.7834], [10.7046, 60.7835], [10.7049, 60.7835], [10.705, 60.7835], [10.7051, 60.7836], [10.7054, 60.7839], [10.7055, 60.784], [10.7058, 60.7843], [10.7059, 60.7844], [10.706, 60.7845], [10.7061, 60.7846], [10.7061, 60.7846], [10.706, 60.7847], [10.706, 60.7848], [10.7059, 60.7849], [10.7058, 60.785], [10.7056, 60.7852], [10.7054, 60.7853], [10.7053, 60.7854], [10.7052, 60.7856], [10.7052, 60.7856], [10.705, 60.7857], [10.7049, 60.7857], [10.7047, 60.786], [10.7044, 60.7863], [10.7041, 60.7866], [10.704, 60.7866], [10.7039, 60.7867], [10.7037, 60.787], [10.7035, 60.7873], [10.7034, 60.7875], [10.7033, 60.7876], [10.7033, 60.7877], [10.7031, 60.7878], [10.703, 60.788], [10.703, 60.788], [10.7028, 60.7881], [10.7025, 60.7883], [10.7024, 60.7884], [10.7023, 60.7888], [10.7021, 60.7891], [10.702, 60.7892], [10.7019, 60.7893], [10.7019, 60.7893], [10.7018, 60.7893], [10.7017, 60.7893], [10.7017, 60.7892], [10.7017, 60.7892], [10.7017, 60.7892], [10.7017, 60.7892], [10.7015, 60.7892], [10.7014, 60.7892], [10.7013, 60.7892], [10.7013, 60.7893], [10.7012, 60.7894], [10.7013, 60.7897], [10.7013, 60.7897], [10.7013, 60.7898], [10.7015, 60.7898], [10.7016, 60.7897], [10.7016, 60.7897], [10.7017, 60.7897], [10.7018, 60.7895], [10.7018, 60.7895], [10.7019, 60.7895], [10.7019, 60.7895], [10.702, 60.7896], [10.702, 60.7896], [10.7019, 60.7898], [10.7019, 60.7899], [10.7021, 60.79], [10.7022, 60.79], [10.7022, 60.7901], [10.7022, 60.7901], [10.7021, 60.7902], [10.702, 60.7902], [10.7017, 60.7901], [10.7015, 60.7901], [10.7011, 60.79], [10.7009, 60.79], [10.7004, 60.79], [10.7002, 60.79], [10.6996, 60.7899], [10.6994, 60.7899], [10.6993, 60.7899], [10.6988, 60.7901], [10.6985, 60.7903], [10.6984, 60.7904], [10.6983, 60.7904], [10.6984, 60.7905], [10.6984, 60.7906], [10.6985, 60.7907], [10.6986, 60.7907], [10.6987, 60.7908], [10.6989, 60.7908], [10.6991, 60.7908], [10.6994, 60.7909], [10.6995, 60.7909], [10.6998, 60.7909], [10.7, 60.7909], [10.7002, 60.7908], [10.7002, 60.7908], [10.7004, 60.7908], [10.7004, 60.7908], [10.7006, 60.7908], [10.7011, 60.7909], [10.7013, 60.7909], [10.7013, 60.7909], [10.7014, 60.7909], [10.7014, 60.7908], [10.7014, 60.7907], [10.7015, 60.7905], [10.7015, 60.7903], [10.7016, 60.7903], [10.7016, 60.7903], [10.7018, 60.7903], [10.7018, 60.7903], [10.7018, 60.7903], [10.7018, 60.7904], [10.7017, 60.7905], [10.7017, 60.7905], [10.7016, 60.7906], [10.7016, 60.7907], [10.7017, 60.7908], [10.7019, 60.7909], [10.7021, 60.7911], [10.7022, 60.7912], [10.7022, 60.7913], [10.7022, 60.7914], [10.7022, 60.7915], [10.7021, 60.7917], [10.7021, 60.7918], [10.7021, 60.792], [10.7021, 60.7921], [10.7023, 60.7923], [10.7024, 60.7923], [10.7024, 60.7924], [10.7024, 60.7925], [10.7023, 60.7925], [10.7022, 60.7926], [10.7021, 60.7927], [10.7018, 60.7927], [10.7018, 60.7927], [10.7017, 60.7928], [10.7016, 60.7928], [10.7016, 60.7929], [10.7016, 60.793], [10.7016, 60.793], [10.7017, 60.793], [10.7017, 60.793], [10.7018, 60.793], [10.7018, 60.7929], [10.702, 60.7929], [10.7021, 60.793], [10.7022, 60.7931], [10.7023, 60.7932], [10.7023, 60.7932], [10.7023, 60.7935], [10.7022, 60.7935], [10.7021, 60.7937], [10.7021, 60.7938], [10.7021, 60.794], [10.7021, 60.7941], [10.7022, 60.7942], [10.7022, 60.7943], [10.7022, 60.7945], [10.7022, 60.7946], [10.7021, 60.7946], [10.702, 60.7947], [10.7018, 60.7947], [10.7016, 60.7948], [10.7012, 60.7948], [10.7009, 60.7947], [10.7007, 60.7947], [10.7005, 60.7947], [10.7001, 60.7946], [10.6999, 60.7945], [10.6999, 60.7945], [10.6998, 60.7947], [10.6995, 60.795], [10.6998, 60.7951], [10.7005, 60.7953], [10.7012, 60.7954], [10.7014, 60.7954], [10.7017, 60.7954], [10.7018, 60.7955], [10.702, 60.7955], [10.7021, 60.7956], [10.7022, 60.7956], [10.7022, 60.7957], [10.7022, 60.7958], [10.7021, 60.7958], [10.702, 60.7958], [10.702, 60.7958], [10.7021, 60.7959], [10.7024, 60.7959], [10.7025, 60.796], [10.7024, 60.796], [10.7019, 60.7959], [10.7015, 60.7958], [10.7013, 60.7958], [10.7012, 60.7958], [10.7012, 60.7959], [10.7011, 60.7959], [10.7011, 60.796], [10.7011, 60.796], [10.7011, 60.7961], [10.7012, 60.7961], [10.7011, 60.7962], [10.701, 60.7962], [10.7009, 60.7962], [10.7008, 60.7962], [10.7007, 60.7963], [10.7006, 60.7964], [10.7005, 60.7964], [10.7001, 60.7967], [10.7, 60.7969], [10.701, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "34", "sub_div_center": [60.796856, 10.699238]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7, 60.7969], [10.6999, 60.797], [10.6995, 60.7973], [10.6993, 60.7975], [10.6992, 60.7975], [10.6992, 60.7976], [10.6993, 60.7976], [10.6997, 60.7977], [10.6999, 60.7978], [10.7, 60.7977], [10.7004, 60.7974], [10.7007, 60.7971], [10.701, 60.7969], [10.7, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "35", "sub_div_center": [60.775317, 10.707155]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7104, 60.7753], [10.7103, 60.7754], [10.7102, 60.7754], [10.71, 60.7756], [10.7099, 60.7757], [10.7098, 60.7757], [10.7097, 60.7758], [10.7095, 60.7759], [10.7094, 60.7759], [10.7093, 60.776], [10.7092, 60.776], [10.709, 60.776], [10.7089, 60.7761], [10.7087, 60.7761], [10.7085, 60.7762], [10.7084, 60.7762], [10.7082, 60.7763], [10.7081, 60.7764], [10.708, 60.7765], [10.7079, 60.7766], [10.7076, 60.7766], [10.7076, 60.7766], [10.7073, 60.7768], [10.7072, 60.7769], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "36", "sub_div_center": [60.756856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7504, 60.7769], [10.7504, 60.7569], [10.7486, 60.7569], [10.7482, 60.7572], [10.7479, 60.7572], [10.7467, 60.7573], [10.7462, 60.7576], [10.7456, 60.758], [10.7448, 60.7582], [10.744, 60.7583], [10.7434, 60.7586], [10.7426, 60.7587], [10.7425, 60.7588], [10.7421, 60.7589], [10.74, 60.7597], [10.7391, 60.7605], [10.7384, 60.7611], [10.7378, 60.7616], [10.7368, 60.7621], [10.7352, 60.7628], [10.7345, 60.7633], [10.7333, 60.7638], [10.7318, 60.7641], [10.7313, 60.7643], [10.7309, 60.7643], [10.7308, 60.7643], [10.7306, 60.7642], [10.7303, 60.7642], [10.7301, 60.7642], [10.7298, 60.7643], [10.7297, 60.7644], [10.7297, 60.7644], [10.7297, 60.7645], [10.7295, 60.7644], [10.7294, 60.7644], [10.7292, 60.7645], [10.7291, 60.7647], [10.7293, 60.7648], [10.7294, 60.7648], [10.7296, 60.7648], [10.7296, 60.7648], [10.7295, 60.7649], [10.7293, 60.7649], [10.7292, 60.7648], [10.729, 60.7647], [10.7288, 60.7648], [10.7285, 60.7649], [10.7285, 60.7649], [10.7282, 60.765], [10.7278, 60.7651], [10.7262, 60.7656], [10.7249, 60.766], [10.7237, 60.7664], [10.7231, 60.7666], [10.7216, 60.7674], [10.721, 60.7676], [10.7203, 60.7681], [10.7199, 60.7685], [10.7197, 60.7691], [10.7195, 60.7694], [10.7193, 60.7695], [10.7191, 60.7697], [10.719, 60.7698], [10.7187, 60.7701], [10.7185, 60.7705], [10.7183, 60.7706], [10.7182, 60.7707], [10.7181, 60.7708], [10.7181, 60.7708], [10.718, 60.7709], [10.7179, 60.771], [10.7178, 60.7711], [10.7177, 60.7712], [10.7173, 60.7715], [10.7172, 60.7716], [10.7168, 60.7717], [10.7165, 60.7718], [10.7163, 60.7719], [10.7163, 60.7719], [10.7162, 60.7719], [10.7161, 60.772], [10.716, 60.772], [10.7159, 60.7721], [10.7159, 60.7722], [10.7159, 60.7722], [10.7158, 60.7723], [10.7157, 60.7723], [10.7154, 60.7723], [10.7153, 60.7723], [10.7152, 60.7723], [10.7152, 60.7724], [10.7151, 60.7724], [10.715, 60.7725], [10.7148, 60.7726], [10.7147, 60.7726], [10.7147, 60.7727], [10.7147, 60.7727], [10.7148, 60.7728], [10.7148, 60.7728], [10.7148, 60.7729], [10.7146, 60.773], [10.7146, 60.773], [10.7146, 60.773], [10.7147, 60.7729], [10.7147, 60.7729], [10.7147, 60.7728], [10.7146, 60.7728], [10.7146, 60.7728], [10.7145, 60.7728], [10.7143, 60.7729], [10.7141, 60.773], [10.7138, 60.7731], [10.7138, 60.7732], [10.7137, 60.7732], [10.7137, 60.7733], [10.7138, 60.7734], [10.7138, 60.7734], [10.7139, 60.7735], [10.7138, 60.7736], [10.7137, 60.7737], [10.7135, 60.7739], [10.7134, 60.7739], [10.7134, 60.7738], [10.7134, 60.7738], [10.7136, 60.7737], [10.7136, 60.7736], [10.7135, 60.7736], [10.7134, 60.7736], [10.7132, 60.7737], [10.7131, 60.7737], [10.713, 60.7738], [10.713, 60.7738], [10.713, 60.7738], [10.7132, 60.7739], [10.7132, 60.774], [10.7132, 60.774], [10.7131, 60.774], [10.7128, 60.7738], [10.7127, 60.7738], [10.7124, 60.7741], [10.7122, 60.7742], [10.7121, 60.7742], [10.7118, 60.7743], [10.7118, 60.7744], [10.7117, 60.7745], [10.7117, 60.7745], [10.7115, 60.7747], [10.7113, 60.7748], [10.7112, 60.7749], [10.711, 60.7749], [10.7109, 60.7751], [10.7106, 60.7752], [10.7104, 60.7753], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "37", "sub_div_center": [60.776856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7769], [10.7104, 60.7969], [10.7441, 60.7969], [10.7441, 60.7968], [10.7443, 60.7967], [10.7444, 60.7967], [10.7446, 60.7966], [10.7447, 60.7965], [10.7448, 60.7964], [10.7449, 60.7963], [10.7453, 60.796], [10.7458, 60.7956], [10.7459, 60.7955], [10.746, 60.7955], [10.746, 60.7954], [10.7461, 60.7953], [10.7462, 60.7952], [10.7463, 60.7951], [10.7463, 60.7951], [10.7463, 60.795], [10.7462, 60.795], [10.7462, 60.7949], [10.7463, 60.7949], [10.7463, 60.7949], [10.7465, 60.7949], [10.7466, 60.7949], [10.7466, 60.7949], [10.7468, 60.7947], [10.7468, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7946], [10.7469, 60.7945], [10.7467, 60.7944], [10.7467, 60.7944], [10.7466, 60.7944], [10.7465, 60.7945], [10.7465, 60.7946], [10.7465, 60.7946], [10.7464, 60.7947], [10.7465, 60.7947], [10.7465, 60.7947], [10.7466, 60.7947], [10.7465, 60.7947], [10.7465, 60.7947], [10.7464, 60.7947], [10.7464, 60.7947], [10.7464, 60.7947], [10.7464, 60.7946], [10.7465, 60.7944], [10.7466, 60.7944], [10.7467, 60.7944], [10.7467, 60.7944], [10.7468, 60.7943], [10.7468, 60.7943], [10.7468, 60.7942], [10.7469, 60.7942], [10.7469, 60.7941], [10.747, 60.794], [10.747, 60.7938], [10.7469, 60.7936], [10.7469, 60.7935], [10.7469, 60.7934], [10.7469, 60.7933], [10.747, 60.7933], [10.747, 60.7932], [10.747, 60.7931], [10.747, 60.7931], [10.747, 60.793], [10.7471, 60.7929], [10.7471, 60.7929], [10.7471, 60.7929], [10.7471, 60.7928], [10.7472, 60.7927], [10.7473, 60.7925], [10.7473, 60.7925], [10.7474, 60.7924], [10.7474, 60.7924], [10.7475, 60.7923], [10.7475, 60.7923], [10.7474, 60.7922], [10.7476, 60.7921], [10.7476, 60.7921], [10.7477, 60.792], [10.7477, 60.792], [10.7477, 60.7919], [10.7477, 60.7919], [10.7477, 60.7919], [10.7477, 60.7918], [10.7478, 60.7918], [10.7478, 60.7918], [10.7479, 60.7918], [10.7478, 60.7917], [10.7478, 60.7917], [10.7474, 60.7918], [10.7474, 60.7917], [10.7474, 60.7917], [10.7475, 60.7916], [10.7478, 60.7916], [10.7478, 60.7916], [10.7478, 60.7916], [10.7478, 60.7915], [10.7479, 60.7915], [10.7479, 60.7915], [10.7485, 60.7915], [10.7485, 60.7915], [10.7485, 60.7915], [10.7486, 60.7915], [10.7486, 60.7915], [10.7486, 60.7915], [10.7486, 60.7914], [10.7486, 60.7914], [10.7485, 60.7914], [10.7485, 60.7914], [10.7485, 60.7914], [10.7486, 60.7913], [10.7486, 60.7913], [10.7486, 60.7913], [10.7486, 60.7913], [10.7485, 60.7913], [10.7484, 60.7913], [10.7484, 60.7912], [10.7484, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7912], [10.7483, 60.7911], [10.7483, 60.7911], [10.7483, 60.7911], [10.7483, 60.7911], [10.7485, 60.791], [10.7486, 60.7909], [10.7486, 60.7909], [10.7486, 60.7909], [10.7486, 60.791], [10.7486, 60.791], [10.7486, 60.791], [10.7486, 60.791], [10.7484, 60.7911], [10.7484, 60.7912], [10.7486, 60.7912], [10.7487, 60.7912], [10.7487, 60.7912], [10.7488, 60.7911], [10.7489, 60.7911], [10.7489, 60.791], [10.7489, 60.791], [10.749, 60.791], [10.749, 60.791], [10.7491, 60.791], [10.7491, 60.791], [10.7491, 60.791], [10.7492, 60.791], [10.7492, 60.7909], [10.7493, 60.7909], [10.7493, 60.7908], [10.7493, 60.7908], [10.7493, 60.7908], [10.7494, 60.7907], [10.7493, 60.7906], [10.7493, 60.7906], [10.7493, 60.7906], [10.7493, 60.7906], [10.7494, 60.7905], [10.7495, 60.7905], [10.7495, 60.7905], [10.7495, 60.7904], [10.7495, 60.7904], [10.7495, 60.7904], [10.7494, 60.7904], [10.7494, 60.7904], [10.7493, 60.7904], [10.7493, 60.7903], [10.7493, 60.7903], [10.7491, 60.7904], [10.7491, 60.7905], [10.7491, 60.7905], [10.749, 60.7905], [10.749, 60.7905], [10.749, 60.7905], [10.749, 60.7904], [10.749, 60.7904], [10.749, 60.7904], [10.749, 60.7903], [10.7491, 60.7903], [10.7491, 60.7903], [10.7492, 60.7902], [10.7492, 60.7902], [10.7493, 60.7902], [10.7494, 60.7902], [10.7494, 60.7902], [10.7495, 60.7902], [10.7495, 60.7902], [10.7495, 60.7902], [10.7496, 60.7901], [10.7496, 60.7901], [10.7496, 60.79], [10.7497, 60.79], [10.7497, 60.79], [10.7498, 60.79], [10.7498, 60.7899], [10.7498, 60.7898], [10.7498, 60.7898], [10.7497, 60.7898], [10.7497, 60.7897], [10.7497, 60.7897], [10.7497, 60.7897], [10.7497, 60.7897], [10.7498, 60.7897], [10.7499, 60.7897], [10.7499, 60.7897], [10.7499, 60.7897], [10.75, 60.7896], [10.7501, 60.7895], [10.7501, 60.7894], [10.7502, 60.7894], [10.7503, 60.7894], [10.7504, 60.7893], [10.7504, 60.7769], [10.7104, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "38", "sub_div_center": [60.796856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.7969], [10.7104, 60.8169], [10.7238, 60.8169], [10.7238, 60.8168], [10.7238, 60.8169], [10.7239, 60.8169], [10.724, 60.8168], [10.724, 60.8168], [10.7241, 60.8168], [10.7241, 60.8168], [10.7241, 60.8168], [10.7242, 60.8168], [10.7241, 60.8167], [10.7241, 60.8167], [10.7241, 60.8166], [10.7241, 60.8166], [10.7241, 60.8166], [10.724, 60.8165], [10.724, 60.8165], [10.7238, 60.8165], [10.7237, 60.8166], [10.7237, 60.8166], [10.7236, 60.8166], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8165], [10.7237, 60.8164], [10.7236, 60.8164], [10.7235, 60.8164], [10.7233, 60.8164], [10.7231, 60.8164], [10.723, 60.8163], [10.7229, 60.8163], [10.7228, 60.8163], [10.7228, 60.8162], [10.7228, 60.8162], [10.7229, 60.8162], [10.7229, 60.8161], [10.7229, 60.8161], [10.723, 60.8161], [10.723, 60.8161], [10.7231, 60.8161], [10.7231, 60.8161], [10.7232, 60.8162], [10.7234, 60.8162], [10.7235, 60.8163], [10.7237, 60.8163], [10.7239, 60.8164], [10.7241, 60.8164], [10.7241, 60.8164], [10.7242, 60.8164], [10.7242, 60.8164], [10.7242, 60.8164], [10.7243, 60.8164], [10.7243, 60.8164], [10.7244, 60.8164], [10.7245, 60.8163], [10.7245, 60.8162], [10.7246, 60.8162], [10.7246, 60.8161], [10.7246, 60.816], [10.7246, 60.816], [10.7246, 60.816], [10.7247, 60.816], [10.7247, 60.816], [10.7247, 60.8159], [10.7247, 60.8159], [10.7247, 60.8159], [10.7245, 60.8159], [10.7244, 60.8159], [10.7243, 60.8159], [10.7243, 60.8159], [10.7243, 60.8159], [10.7243, 60.8158], [10.7244, 60.8158], [10.7244, 60.8158], [10.7245, 60.8158], [10.7245, 60.8158], [10.7246, 60.8158], [10.7246, 60.8158], [10.7246, 60.8158], [10.7247, 60.8158], [10.7247, 60.8157], [10.7247, 60.8157], [10.7245, 60.8157], [10.7246, 60.8156], [10.7247, 60.8156], [10.7247, 60.8156], [10.7248, 60.8156], [10.7249, 60.8156], [10.7249, 60.8156], [10.7249, 60.8156], [10.725, 60.8156], [10.725, 60.8155], [10.7251, 60.8155], [10.7251, 60.8155], [10.7252, 60.8154], [10.7253, 60.8153], [10.7254, 60.8152], [10.7254, 60.8152], [10.7255, 60.8152], [10.7255, 60.8152], [10.7256, 60.8151], [10.7257, 60.815], [10.7258, 60.815], [10.7259, 60.8149], [10.7259, 60.8148], [10.726, 60.8147], [10.726, 60.8147], [10.7261, 60.8146], [10.7262, 60.8146], [10.7262, 60.8145], [10.7263, 60.8145], [10.7263, 60.8144], [10.7264, 60.8144], [10.7264, 60.8143], [10.7265, 60.8143], [10.7265, 60.8143], [10.7264, 60.8142], [10.7263, 60.8142], [10.7261, 60.8141], [10.7259, 60.814], [10.7258, 60.8139], [10.7258, 60.8139], [10.7258, 60.8138], [10.7259, 60.8137], [10.7261, 60.8135], [10.7262, 60.8135], [10.7262, 60.8136], [10.7262, 60.8136], [10.7262, 60.8137], [10.7262, 60.8138], [10.7261, 60.8138], [10.7261, 60.8139], [10.7266, 60.8141], [10.7267, 60.8141], [10.7268, 60.814], [10.7268, 60.814], [10.7269, 60.814], [10.7269, 60.8139], [10.7273, 60.8135], [10.7273, 60.8134], [10.7273, 60.8134], [10.7273, 60.8134], [10.7272, 60.8134], [10.727, 60.8133], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8134], [10.7265, 60.8133], [10.7266, 60.8133], [10.7267, 60.8132], [10.7268, 60.8132], [10.7269, 60.8132], [10.7269, 60.8132], [10.7273, 60.8132], [10.7274, 60.8133], [10.7275, 60.8133], [10.7275, 60.8132], [10.7276, 60.8132], [10.7276, 60.8131], [10.7276, 60.813], [10.7277, 60.813], [10.7277, 60.8129], [10.7277, 60.8129], [10.7277, 60.8128], [10.7278, 60.8127], [10.7278, 60.8127], [10.7278, 60.8126], [10.7278, 60.8125], [10.7278, 60.8125], [10.7277, 60.8125], [10.7276, 60.8124], [10.7275, 60.8124], [10.7275, 60.8123], [10.7275, 60.8123], [10.7275, 60.8122], [10.7276, 60.8122], [10.7277, 60.8121], [10.7278, 60.8121], [10.7279, 60.8121], [10.728, 60.8121], [10.728, 60.812], [10.728, 60.812], [10.728, 60.812], [10.7281, 60.8119], [10.7281, 60.8119], [10.7281, 60.8119], [10.7281, 60.8118], [10.7281, 60.8118], [10.728, 60.8117], [10.7279, 60.8117], [10.7278, 60.8117], [10.7277, 60.8117], [10.7276, 60.8117], [10.7276, 60.8117], [10.7275, 60.8118], [10.7275, 60.8118], [10.7274, 60.8118], [10.7274, 60.8117], [10.7274, 60.8117], [10.7275, 60.8117], [10.7276, 60.8116], [10.7277, 60.8116], [10.7277, 60.8116], [10.7278, 60.8115], [10.728, 60.8116], [10.7281, 60.8116], [10.7282, 60.8116], [10.7282, 60.8116], [10.7283, 60.8115], [10.7283, 60.8115], [10.7284, 60.8114], [10.7284, 60.8113], [10.7285, 60.8112], [10.7286, 60.8111], [10.7286, 60.8111], [10.7287, 60.811], [10.7287, 60.8109], [10.7288, 60.8108], [10.7286, 60.8108], [10.7287, 60.8108], [10.7288, 60.8108], [10.7288, 60.8108], [10.7289, 60.8107], [10.729, 60.8108], [10.7291, 60.8107], [10.7291, 60.8107], [10.7293, 60.8106], [10.7295, 60.8105], [10.7299, 60.8104], [10.7302, 60.8103], [10.7303, 60.8103], [10.7304, 60.8103], [10.7305, 60.8102], [10.7305, 60.8102], [10.7304, 60.8101], [10.7305, 60.8101], [10.7305, 60.81], [10.7306, 60.8099], [10.7307, 60.8099], [10.7308, 60.8098], [10.731, 60.8098], [10.7311, 60.8098], [10.7313, 60.8097], [10.7316, 60.8096], [10.732, 60.8093], [10.7322, 60.8092], [10.7326, 60.809], [10.7327, 60.8089], [10.7328, 60.8088], [10.7329, 60.8088], [10.733, 60.8088], [10.7331, 60.8087], [10.7333, 60.8086], [10.7333, 60.8087], [10.7334, 60.8087], [10.7334, 60.8087], [10.7335, 60.8087], [10.7336, 60.8087], [10.7337, 60.8087], [10.7338, 60.8086], [10.7339, 60.8086], [10.734, 60.8085], [10.7341, 60.8085], [10.7342, 60.8085], [10.7343, 60.8084], [10.7343, 60.8084], [10.7343, 60.8084], [10.7344, 60.8084], [10.7344, 60.8084], [10.7344, 60.8084], [10.7345, 60.8084], [10.7345, 60.8085], [10.7348, 60.8084], [10.7348, 60.8084], [10.7349, 60.8084], [10.735, 60.8084], [10.7351, 60.8083], [10.7352, 60.8083], [10.7352, 60.8082], [10.7353, 60.8082], [10.7354, 60.8081], [10.7355, 60.808], [10.7356, 60.808], [10.7357, 60.8079], [10.7357, 60.8079], [10.7357, 60.8078], [10.7357, 60.8078], [10.7357, 60.8078], [10.7357, 60.8077], [10.7357, 60.8077], [10.7358, 60.8076], [10.7358, 60.8076], [10.7359, 60.8075], [10.7359, 60.8074], [10.7359, 60.8073], [10.736, 60.8071], [10.7361, 60.807], [10.7361, 60.8069], [10.7361, 60.8068], [10.7361, 60.8067], [10.7361, 60.8066], [10.736, 60.8064], [10.736, 60.8063], [10.7359, 60.8062], [10.736, 60.8061], [10.7361, 60.8059], [10.7361, 60.8059], [10.7362, 60.8058], [10.7362, 60.8057], [10.7362, 60.8056], [10.7362, 60.8055], [10.7362, 60.8054], [10.7361, 60.8053], [10.736, 60.8052], [10.7359, 60.8051], [10.7359, 60.805], [10.7359, 60.8049], [10.7358, 60.8049], [10.7358, 60.8048], [10.7358, 60.8047], [10.7359, 60.8047], [10.7359, 60.8046], [10.7359, 60.8046], [10.7361, 60.8045], [10.7362, 60.8045], [10.7363, 60.8044], [10.7364, 60.8044], [10.7365, 60.8043], [10.7365, 60.8043], [10.7365, 60.8042], [10.7366, 60.8042], [10.7368, 60.8041], [10.7369, 60.8041], [10.737, 60.804], [10.7371, 60.8038], [10.7372, 60.8038], [10.7373, 60.8037], [10.7374, 60.8036], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8035], [10.7374, 60.8034], [10.7374, 60.8034], [10.7373, 60.8034], [10.7374, 60.8034], [10.7374, 60.8034], [10.7374, 60.8033], [10.7375, 60.8033], [10.7374, 60.8032], [10.7374, 60.8032], [10.7374, 60.8032], [10.7374, 60.8031], [10.7374, 60.8031], [10.7375, 60.8031], [10.7375, 60.8031], [10.7376, 60.803], [10.7376, 60.803], [10.7377, 60.8029], [10.7379, 60.8028], [10.7379, 60.8028], [10.738, 60.8027], [10.7381, 60.8026], [10.7382, 60.8026], [10.7382, 60.8025], [10.7383, 60.8024], [10.7383, 60.8023], [10.7383, 60.8023], [10.7383, 60.8022], [10.7383, 60.8022], [10.7383, 60.8021], [10.7384, 60.8021], [10.7385, 60.8019], [10.7386, 60.8018], [10.7386, 60.8018], [10.7387, 60.8017], [10.7387, 60.8017], [10.7388, 60.8016], [10.7388, 60.8015], [10.739, 60.8015], [10.739, 60.8014], [10.7391, 60.8012], [10.7392, 60.8012], [10.7393, 60.8012], [10.7394, 60.8011], [10.7395, 60.8011], [10.7396, 60.8011], [10.7397, 60.801], [10.7398, 60.801], [10.7398, 60.8009], [10.7399, 60.8009], [10.74, 60.8008], [10.7401, 60.8008], [10.7401, 60.8007], [10.7402, 60.8006], [10.7403, 60.8004], [10.7405, 60.8003], [10.7406, 60.8002], [10.7407, 60.8001], [10.7407, 60.8], [10.7407, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7406, 60.8], [10.7407, 60.8], [10.7407, 60.8], [10.7408, 60.8], [10.7409, 60.7999], [10.7409, 60.7999], [10.741, 60.7997], [10.741, 60.7997], [10.741, 60.7997], [10.7411, 60.7997], [10.7411, 60.7997], [10.7412, 60.7996], [10.7414, 60.7995], [10.7415, 60.7994], [10.7415, 60.7994], [10.7416, 60.7994], [10.7416, 60.7993], [10.7418, 60.7991], [10.742, 60.7989], [10.7422, 60.7987], [10.7423, 60.7986], [10.7424, 60.7985], [10.7424, 60.7984], [10.7425, 60.7984], [10.7426, 60.7983], [10.7427, 60.7982], [10.7427, 60.7982], [10.7429, 60.798], [10.743, 60.798], [10.743, 60.7979], [10.743, 60.7977], [10.7431, 60.7976], [10.7433, 60.7974], [10.7434, 60.7973], [10.7437, 60.7971], [10.7441, 60.7969], [10.7104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "39", "sub_div_center": [60.816856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8169], [10.7104, 60.8232], [10.7105, 60.8231], [10.7106, 60.823], [10.7107, 60.8228], [10.7108, 60.8226], [10.7109, 60.8224], [10.7109, 60.8224], [10.711, 60.8223], [10.711, 60.8223], [10.711, 60.8222], [10.711, 60.8221], [10.711, 60.8221], [10.7111, 60.8219], [10.7111, 60.8219], [10.7112, 60.8218], [10.7112, 60.8217], [10.7113, 60.8216], [10.7114, 60.8215], [10.7115, 60.8214], [10.7116, 60.8213], [10.7117, 60.8212], [10.7118, 60.8211], [10.7118, 60.8211], [10.7119, 60.8211], [10.7119, 60.821], [10.712, 60.8207], [10.7121, 60.8207], [10.7122, 60.8206], [10.7123, 60.8205], [10.7124, 60.8204], [10.7125, 60.8204], [10.7126, 60.8203], [10.7128, 60.8201], [10.713, 60.8199], [10.713, 60.8198], [10.7131, 60.8198], [10.7132, 60.8197], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8196], [10.7132, 60.8195], [10.7132, 60.8195], [10.7133, 60.8195], [10.7133, 60.8195], [10.7134, 60.8195], [10.7134, 60.8195], [10.7135, 60.8194], [10.7134, 60.8194], [10.7134, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7133, 60.8194], [10.7134, 60.8193], [10.7134, 60.8193], [10.7135, 60.8193], [10.7135, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8193], [10.7136, 60.8192], [10.7136, 60.8192], [10.7137, 60.8192], [10.7137, 60.8191], [10.7138, 60.8191], [10.7139, 60.819], [10.7139, 60.819], [10.714, 60.819], [10.714, 60.8189], [10.7141, 60.8189], [10.7141, 60.8189], [10.7142, 60.8188], [10.7144, 60.8187], [10.7145, 60.8186], [10.7146, 60.8184], [10.7147, 60.8184], [10.7147, 60.8183], [10.7148, 60.8183], [10.7148, 60.8183], [10.7149, 60.8183], [10.7149, 60.8182], [10.715, 60.8182], [10.7151, 60.8183], [10.7151, 60.8183], [10.7152, 60.8183], [10.7153, 60.8183], [10.7153, 60.8183], [10.7153, 60.8183], [10.7152, 60.8183], [10.7151, 60.8183], [10.7151, 60.8183], [10.715, 60.8184], [10.715, 60.8184], [10.7152, 60.8184], [10.7153, 60.8185], [10.7153, 60.8185], [10.7153, 60.8185], [10.7153, 60.8186], [10.7153, 60.8186], [10.7153, 60.8186], [10.7154, 60.8186], [10.7154, 60.8187], [10.7154, 60.8187], [10.7155, 60.8187], [10.7156, 60.8187], [10.7156, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7157, 60.8187], [10.7156, 60.8187], [10.7156, 60.8188], [10.7155, 60.8188], [10.7155, 60.8188], [10.7155, 60.8189], [10.7155, 60.819], [10.7156, 60.8191], [10.7156, 60.8192], [10.7156, 60.8194], [10.7157, 60.8195], [10.7156, 60.8195], [10.7156, 60.8195], [10.7156, 60.8195], [10.7156, 60.8196], [10.7157, 60.8197], [10.7157, 60.8198], [10.7158, 60.8198], [10.7158, 60.8198], [10.7158, 60.8199], [10.7159, 60.82], [10.7159, 60.82], [10.716, 60.82], [10.716, 60.8201], [10.716, 60.8201], [10.716, 60.8202], [10.7161, 60.8202], [10.7161, 60.8201], [10.7162, 60.8201], [10.7163, 60.8201], [10.7163, 60.8201], [10.7164, 60.8201], [10.7166, 60.82], [10.7167, 60.82], [10.7168, 60.8199], [10.7168, 60.8199], [10.7169, 60.8198], [10.7171, 60.8198], [10.7173, 60.8197], [10.7174, 60.8196], [10.7176, 60.8195], [10.7178, 60.8194], [10.7179, 60.8194], [10.718, 60.8193], [10.7181, 60.8192], [10.7183, 60.8191], [10.7184, 60.8191], [10.7185, 60.819], [10.7186, 60.819], [10.7187, 60.819], [10.7187, 60.8189], [10.7188, 60.8188], [10.7189, 60.8188], [10.7189, 60.8187], [10.7189, 60.8187], [10.7193, 60.8185], [10.7193, 60.8185], [10.7192, 60.8184], [10.7191, 60.8184], [10.7189, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7182, 60.8184], [10.7183, 60.8184], [10.7183, 60.8184], [10.7183, 60.8183], [10.7184, 60.8183], [10.7185, 60.8183], [10.7186, 60.8183], [10.7187, 60.8183], [10.7188, 60.8183], [10.7189, 60.8183], [10.7191, 60.8183], [10.7192, 60.8183], [10.7193, 60.8183], [10.7193, 60.8183], [10.7194, 60.8183], [10.7194, 60.8183], [10.7195, 60.8183], [10.7196, 60.8183], [10.7196, 60.8183], [10.7197, 60.8183], [10.7197, 60.8183], [10.7199, 60.8183], [10.72, 60.8183], [10.72, 60.8183], [10.7201, 60.8182], [10.7201, 60.8182], [10.7201, 60.8182], [10.7201, 60.8181], [10.7201, 60.8181], [10.7202, 60.8181], [10.7202, 60.8181], [10.7204, 60.818], [10.7204, 60.818], [10.7205, 60.818], [10.7206, 60.8179], [10.7207, 60.8179], [10.7208, 60.8179], [10.721, 60.818], [10.7211, 60.8179], [10.7212, 60.8179], [10.7212, 60.8179], [10.7213, 60.8179], [10.7214, 60.8179], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7214, 60.8178], [10.7213, 60.8177], [10.7213, 60.8177], [10.7214, 60.8177], [10.7215, 60.8176], [10.7216, 60.8176], [10.7216, 60.8176], [10.7216, 60.8176], [10.7215, 60.8177], [10.7214, 60.8177], [10.7214, 60.8178], [10.7215, 60.8178], [10.7215, 60.8178], [10.7215, 60.8178], [10.7216, 60.8178], [10.7217, 60.8178], [10.7217, 60.8178], [10.7218, 60.8177], [10.7218, 60.8178], [10.722, 60.8178], [10.7222, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7223, 60.8177], [10.7222, 60.8177], [10.7222, 60.8176], [10.7222, 60.8176], [10.7222, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7223, 60.8176], [10.7224, 60.8176], [10.7224, 60.8176], [10.7225, 60.8177], [10.7226, 60.8176], [10.7226, 60.8176], [10.7226, 60.8176], [10.7227, 60.8176], [10.7227, 60.8176], [10.7227, 60.8176], [10.7228, 60.8176], [10.7228, 60.8176], [10.7229, 60.8176], [10.7229, 60.8176], [10.7229, 60.8175], [10.7228, 60.8175], [10.7227, 60.8175], [10.7226, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8175], [10.7225, 60.8174], [10.7226, 60.8174], [10.7226, 60.8174], [10.7226, 60.8174], [10.7227, 60.8174], [10.7228, 60.8174], [10.7229, 60.8174], [10.7229, 60.8174], [10.723, 60.8174], [10.7231, 60.8173], [10.7231, 60.8173], [10.7233, 60.8172], [10.7233, 60.8173], [10.7234, 60.8173], [10.7234, 60.8173], [10.7234, 60.8173], [10.7235, 60.8173], [10.7235, 60.8172], [10.7235, 60.8172], [10.7235, 60.8172], [10.7234, 60.8172], [10.7235, 60.8171], [10.7235, 60.8171], [10.7236, 60.8171], [10.7236, 60.8171], [10.7237, 60.8171], [10.7237, 60.8171], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.817], [10.7238, 60.8169], [10.7238, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7235, 60.8169], [10.7235, 60.8169], [10.7235, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7236, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7237, 60.8169], [10.7238, 60.8169], [10.7238, 60.8169], [10.7239, 60.8169], [10.7239, 60.8169], [10.724, 60.8169], [10.724, 60.8169], [10.7238, 60.8169], [10.7238, 60.8169], [10.7104, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "40", "sub_div_center": [60.828206, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8283], [10.7104, 60.8283], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8282], [10.7104, 60.8283], [10.7104, 60.8283]]]}}, {"type": "Feature", "properties": {"sub_div_id": "41", "sub_div_center": [60.828346, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8287], [10.7105, 60.8287], [10.7105, 60.8287], [10.7105, 60.8287], [10.7105, 60.8286], [10.7105, 60.8286], [10.7104, 60.8286], [10.7104, 60.8286], [10.7105, 60.8286], [10.7105, 60.8286], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8285], [10.7105, 60.8284], [10.7105, 60.8284], [10.7106, 60.8284], [10.7106, 60.8284], [10.7106, 60.8284], [10.7105, 60.8283], [10.7105, 60.8283], [10.7105, 60.8284], [10.7104, 60.8284], [10.7104, 60.8287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "42", "sub_div_center": [60.834606, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7126, 60.8368], [10.7126, 60.8368], [10.7126, 60.8368], [10.7125, 60.8367], [10.7124, 60.8366], [10.7121, 60.8367], [10.7119, 60.8367], [10.7118, 60.8367], [10.7117, 60.8367], [10.7117, 60.8366], [10.7116, 60.8366], [10.7116, 60.8366], [10.7117, 60.8366], [10.7118, 60.8365], [10.7118, 60.8365], [10.7119, 60.8365], [10.712, 60.8365], [10.712, 60.8365], [10.7121, 60.8365], [10.7122, 60.8365], [10.7122, 60.8365], [10.7122, 60.8364], [10.7122, 60.8364], [10.7121, 60.8364], [10.712, 60.8364], [10.712, 60.8364], [10.712, 60.8364], [10.7121, 60.8364], [10.7122, 60.8363], [10.7122, 60.8363], [10.7122, 60.8363], [10.7121, 60.8361], [10.712, 60.836], [10.712, 60.836], [10.7119, 60.836], [10.7118, 60.836], [10.7118, 60.836], [10.7117, 60.836], [10.7117, 60.836], [10.7117, 60.8359], [10.7117, 60.8359], [10.7118, 60.8359], [10.7118, 60.8359], [10.7118, 60.8358], [10.7118, 60.8358], [10.7118, 60.8358], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8357], [10.7117, 60.8356], [10.7117, 60.8356], [10.7116, 60.8355], [10.7115, 60.8355], [10.7114, 60.8354], [10.7113, 60.8354], [10.7112, 60.8353], [10.7111, 60.8352], [10.7107, 60.8349], [10.7106, 60.8348], [10.7105, 60.8347], [10.7104, 60.8346], [10.7104, 60.8369], [10.7126, 60.8369], [10.7126, 60.8368]]]}}, {"type": "Feature", "properties": {"sub_div_id": "43", "sub_div_center": [60.836856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8369], [10.7104, 60.8569], [10.7351, 60.8569], [10.7351, 60.8568], [10.7351, 60.8568], [10.7351, 60.8566], [10.7351, 60.8565], [10.735, 60.8563], [10.735, 60.8562], [10.735, 60.8561], [10.7351, 60.8561], [10.7351, 60.856], [10.735, 60.8559], [10.7351, 60.8557], [10.735, 60.8556], [10.7349, 60.8555], [10.7349, 60.8554], [10.7349, 60.8553], [10.7348, 60.8551], [10.7348, 60.855], [10.7348, 60.8549], [10.7349, 60.8548], [10.7349, 60.8547], [10.7348, 60.8547], [10.7348, 60.8546], [10.7347, 60.8546], [10.7346, 60.8546], [10.7346, 60.8545], [10.7346, 60.8545], [10.7345, 60.8545], [10.7345, 60.8544], [10.7346, 60.8544], [10.7346, 60.8544], [10.7347, 60.8544], [10.7347, 60.8544], [10.7349, 60.8544], [10.7352, 60.8545], [10.7352, 60.8544], [10.7353, 60.8544], [10.7353, 60.8544], [10.7354, 60.8543], [10.7353, 60.8542], [10.7353, 60.8542], [10.7353, 60.8542], [10.7353, 60.8541], [10.7353, 60.8541], [10.7353, 60.854], [10.7353, 60.854], [10.7352, 60.8539], [10.7352, 60.8539], [10.7351, 60.8539], [10.7351, 60.8539], [10.7351, 60.8538], [10.7351, 60.8538], [10.7351, 60.8538], [10.7352, 60.8537], [10.7351, 60.8537], [10.735, 60.8537], [10.735, 60.8536], [10.735, 60.8535], [10.7351, 60.8535], [10.7351, 60.8534], [10.735, 60.8534], [10.7351, 60.8533], [10.7351, 60.8533], [10.7351, 60.8533], [10.735, 60.8533], [10.735, 60.8532], [10.735, 60.8531], [10.735, 60.853], [10.7351, 60.8529], [10.7351, 60.8528], [10.7351, 60.8528], [10.7351, 60.8527], [10.7352, 60.8526], [10.7352, 60.8526], [10.7351, 60.8526], [10.7351, 60.8525], [10.7351, 60.8525], [10.7351, 60.8524], [10.7351, 60.8524], [10.7351, 60.8524], [10.7351, 60.8523], [10.735, 60.8523], [10.7349, 60.8523], [10.7348, 60.8523], [10.7347, 60.8523], [10.7346, 60.8523], [10.7346, 60.8523], [10.7347, 60.8522], [10.7348, 60.8522], [10.7349, 60.8522], [10.7349, 60.8522], [10.7348, 60.8521], [10.7347, 60.8521], [10.7347, 60.8521], [10.7346, 60.8521], [10.7346, 60.8521], [10.7346, 60.8521], [10.7346, 60.852], [10.7346, 60.852], [10.7346, 60.852], [10.7345, 60.8519], [10.7345, 60.8519], [10.7344, 60.8519], [10.7344, 60.8519], [10.7342, 60.852], [10.7342, 60.8519], [10.7343, 60.8519], [10.7344, 60.8519], [10.7344, 60.8518], [10.7345, 60.8518], [10.7344, 60.8518], [10.7343, 60.8517], [10.7341, 60.8517], [10.7341, 60.8516], [10.734, 60.8516], [10.7339, 60.8515], [10.7338, 60.8516], [10.7337, 60.8515], [10.7338, 60.8515], [10.7337, 60.8515], [10.7336, 60.8514], [10.7334, 60.8514], [10.7332, 60.8513], [10.733, 60.8512], [10.733, 60.8512], [10.733, 60.8511], [10.7329, 60.8511], [10.7329, 60.8511], [10.7328, 60.8511], [10.7327, 60.851], [10.7325, 60.8509], [10.7325, 60.8509], [10.7324, 60.8508], [10.7324, 60.8508], [10.7323, 60.8507], [10.7321, 60.8506], [10.7318, 60.8505], [10.7318, 60.8505], [10.7317, 60.8504], [10.7316, 60.8504], [10.7315, 60.8503], [10.7314, 60.8503], [10.7313, 60.8503], [10.7313, 60.8503], [10.7311, 60.8502], [10.7309, 60.8501], [10.7307, 60.85], [10.7307, 60.8499], [10.7306, 60.8499], [10.7305, 60.8498], [10.7304, 60.8497], [10.7303, 60.8496], [10.7302, 60.8495], [10.73, 60.8494], [10.73, 60.8494], [10.73, 60.8493], [10.7299, 60.8492], [10.7299, 60.8492], [10.7299, 60.8491], [10.7298, 60.849], [10.7297, 60.8489], [10.7297, 60.8489], [10.7296, 60.8488], [10.7296, 60.8487], [10.7296, 60.8487], [10.7296, 60.8487], [10.7295, 60.8487], [10.7294, 60.8486], [10.7295, 60.8486], [10.7296, 60.8486], [10.7296, 60.8485], [10.7296, 60.8485], [10.7296, 60.8484], [10.7294, 60.848], [10.7293, 60.8479], [10.7292, 60.8479], [10.7292, 60.8479], [10.7291, 60.8479], [10.7291, 60.8478], [10.7291, 60.8478], [10.7291, 60.8478], [10.7292, 60.8477], [10.7291, 60.8477], [10.729, 60.8477], [10.7289, 60.8476], [10.7289, 60.8476], [10.7288, 60.8475], [10.7288, 60.8474], [10.7287, 60.8474], [10.7286, 60.8475], [10.7286, 60.8475], [10.7285, 60.8475], [10.7287, 60.8474], [10.7287, 60.8474], [10.7286, 60.8473], [10.7285, 60.8473], [10.7284, 60.8473], [10.7284, 60.8473], [10.7283, 60.8473], [10.7282, 60.8473], [10.7283, 60.8473], [10.7283, 60.8473], [10.7284, 60.8472], [10.7284, 60.8472], [10.7283, 60.8472], [10.7282, 60.8471], [10.7282, 60.8471], [10.7282, 60.847], [10.7282, 60.847], [10.728, 60.8469], [10.7279, 60.8468], [10.7277, 60.8467], [10.7274, 60.8464], [10.7272, 60.8463], [10.727, 60.8462], [10.7269, 60.8461], [10.7269, 60.846], [10.7268, 60.846], [10.7268, 60.846], [10.7267, 60.846], [10.7267, 60.846], [10.7266, 60.8459], [10.7265, 60.8459], [10.7264, 60.8458], [10.7264, 60.8458], [10.7263, 60.8458], [10.726, 60.846], [10.7259, 60.846], [10.7258, 60.8459], [10.7258, 60.8459], [10.7257, 60.8458], [10.7257, 60.8458], [10.7258, 60.8458], [10.7258, 60.8459], [10.7259, 60.8459], [10.726, 60.8459], [10.726, 60.8459], [10.7261, 60.8459], [10.7261, 60.8458], [10.7263, 60.8458], [10.7263, 60.8458], [10.7263, 60.8457], [10.7262, 60.8457], [10.7261, 60.8457], [10.726, 60.8456], [10.7259, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7258, 60.8456], [10.7256, 60.8457], [10.7256, 60.8457], [10.7256, 60.8456], [10.7256, 60.8456], [10.7256, 60.8456], [10.7257, 60.8455], [10.7257, 60.8455], [10.7256, 60.8455], [10.7254, 60.8455], [10.7253, 60.8454], [10.7253, 60.8453], [10.7252, 60.8451], [10.7253, 60.8451], [10.7253, 60.8451], [10.7252, 60.845], [10.7252, 60.845], [10.7252, 60.845], [10.7251, 60.8449], [10.725, 60.8448], [10.7247, 60.8447], [10.7244, 60.8446], [10.7242, 60.8445], [10.7239, 60.8443], [10.7236, 60.8443], [10.723, 60.8441], [10.723, 60.8441], [10.7229, 60.8441], [10.7224, 60.844], [10.7222, 60.8439], [10.7219, 60.8438], [10.7217, 60.8437], [10.7215, 60.8436], [10.721, 60.8434], [10.7209, 60.8433], [10.7207, 60.8432], [10.7206, 60.8431], [10.7203, 60.8428], [10.7199, 60.8425], [10.7195, 60.8423], [10.7192, 60.8422], [10.7188, 60.8421], [10.7186, 60.842], [10.7183, 60.8418], [10.7181, 60.8417], [10.718, 60.8416], [10.7178, 60.8415], [10.7175, 60.8413], [10.7172, 60.8411], [10.7168, 60.8408], [10.7165, 60.8406], [10.7163, 60.8404], [10.716, 60.8401], [10.7156, 60.8399], [10.7155, 60.8398], [10.7155, 60.8397], [10.7153, 60.8396], [10.7151, 60.8395], [10.715, 60.8395], [10.7148, 60.8395], [10.7147, 60.8395], [10.7147, 60.8394], [10.7147, 60.8394], [10.7148, 60.8393], [10.7147, 60.8391], [10.7146, 60.839], [10.7145, 60.8389], [10.7143, 60.8388], [10.7142, 60.8387], [10.7142, 60.8386], [10.7141, 60.8386], [10.7141, 60.8386], [10.714, 60.8385], [10.714, 60.8384], [10.7137, 60.8382], [10.7136, 60.838], [10.7135, 60.838], [10.7134, 60.838], [10.7134, 60.8379], [10.7133, 60.8378], [10.7133, 60.8378], [10.7132, 60.8377], [10.7131, 60.8376], [10.713, 60.8374], [10.713, 60.8374], [10.713, 60.8374], [10.7129, 60.8373], [10.7128, 60.8373], [10.7128, 60.8372], [10.7127, 60.8371], [10.7127, 60.8371], [10.7125, 60.8371], [10.7125, 60.837], [10.7124, 60.837], [10.7124, 60.837], [10.7124, 60.8369], [10.7124, 60.8369], [10.7125, 60.8369], [10.7126, 60.8369], [10.7126, 60.8369], [10.7104, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "44", "sub_div_center": [60.856856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8569], [10.7104, 60.8769], [10.735, 60.8769], [10.735, 60.8768], [10.7351, 60.8767], [10.7352, 60.8767], [10.7354, 60.8767], [10.7355, 60.8767], [10.7355, 60.8767], [10.7356, 60.8767], [10.7356, 60.8766], [10.7356, 60.8766], [10.7356, 60.8766], [10.7356, 60.8765], [10.7356, 60.8765], [10.7357, 60.8764], [10.7358, 60.8763], [10.7359, 60.8763], [10.7362, 60.8761], [10.7362, 60.8761], [10.7363, 60.8761], [10.7362, 60.876], [10.7363, 60.876], [10.7364, 60.8761], [10.7365, 60.876], [10.7368, 60.8759], [10.7371, 60.8758], [10.7373, 60.8757], [10.7375, 60.8756], [10.7378, 60.8754], [10.738, 60.8753], [10.7386, 60.8751], [10.7388, 60.875], [10.739, 60.875], [10.7393, 60.875], [10.7394, 60.875], [10.7396, 60.8749], [10.7398, 60.8749], [10.7399, 60.8749], [10.74, 60.8749], [10.74, 60.8748], [10.7401, 60.8748], [10.7402, 60.8748], [10.7402, 60.8748], [10.7403, 60.8749], [10.7406, 60.8749], [10.7408, 60.8749], [10.741, 60.8749], [10.7412, 60.8749], [10.7413, 60.8749], [10.7414, 60.875], [10.7416, 60.875], [10.7417, 60.8751], [10.7419, 60.8751], [10.7419, 60.8752], [10.7419, 60.8752], [10.7421, 60.8753], [10.7421, 60.8753], [10.7422, 60.8753], [10.7422, 60.8753], [10.7423, 60.8754], [10.7424, 60.8754], [10.7427, 60.8754], [10.7427, 60.8755], [10.7428, 60.8754], [10.7429, 60.8754], [10.7431, 60.8754], [10.7432, 60.8753], [10.7434, 60.8753], [10.7437, 60.8752], [10.7438, 60.8752], [10.7439, 60.8751], [10.744, 60.875], [10.7441, 60.8749], [10.7442, 60.8749], [10.7443, 60.8748], [10.7445, 60.8747], [10.7446, 60.8747], [10.7447, 60.8746], [10.7447, 60.8745], [10.7448, 60.8745], [10.7449, 60.8744], [10.7449, 60.8744], [10.7451, 60.8743], [10.7452, 60.8742], [10.7453, 60.8742], [10.7454, 60.874], [10.7455, 60.8739], [10.7455, 60.8739], [10.7456, 60.8739], [10.7457, 60.8738], [10.7457, 60.8737], [10.7458, 60.8737], [10.7458, 60.8737], [10.7459, 60.8736], [10.7459, 60.8736], [10.746, 60.8736], [10.746, 60.8735], [10.746, 60.8735], [10.746, 60.8735], [10.7461, 60.8734], [10.7461, 60.8734], [10.7461, 60.8733], [10.7461, 60.8733], [10.7462, 60.8732], [10.7461, 60.8732], [10.7461, 60.8732], [10.7461, 60.8732], [10.7459, 60.8731], [10.7458, 60.8731], [10.7458, 60.8731], [10.7458, 60.873], [10.7458, 60.873], [10.7459, 60.873], [10.7459, 60.873], [10.7458, 60.8729], [10.7458, 60.8729], [10.7459, 60.8729], [10.7459, 60.8729], [10.746, 60.8729], [10.746, 60.8729], [10.7461, 60.8729], [10.7462, 60.8728], [10.7462, 60.8727], [10.7462, 60.8727], [10.7462, 60.8726], [10.7462, 60.8726], [10.7463, 60.8726], [10.7463, 60.8725], [10.7463, 60.8725], [10.7463, 60.8725], [10.7463, 60.8724], [10.7463, 60.8723], [10.7463, 60.8722], [10.7462, 60.8722], [10.7462, 60.8721], [10.7461, 60.8721], [10.7461, 60.8721], [10.7461, 60.872], [10.7462, 60.872], [10.7461, 60.8718], [10.7461, 60.8718], [10.746, 60.8717], [10.746, 60.8717], [10.7459, 60.8717], [10.7458, 60.8717], [10.7457, 60.8717], [10.7458, 60.8716], [10.7458, 60.8715], [10.7458, 60.8715], [10.7458, 60.8714], [10.7458, 60.8714], [10.7458, 60.8713], [10.7459, 60.8712], [10.746, 60.8712], [10.7459, 60.8711], [10.7459, 60.8711], [10.7459, 60.871], [10.7459, 60.871], [10.7459, 60.8709], [10.7458, 60.8707], [10.7458, 60.8706], [10.7459, 60.8706], [10.7459, 60.8706], [10.7459, 60.8705], [10.7459, 60.8704], [10.7459, 60.8703], [10.7459, 60.8703], [10.7458, 60.8702], [10.7458, 60.87], [10.7458, 60.8699], [10.7458, 60.8699], [10.7459, 60.8698], [10.7459, 60.8697], [10.746, 60.8696], [10.7458, 60.8695], [10.7457, 60.8694], [10.7456, 60.8693], [10.7456, 60.8691], [10.7456, 60.869], [10.7456, 60.869], [10.7456, 60.8689], [10.7455, 60.8688], [10.7454, 60.8687], [10.7454, 60.8687], [10.7454, 60.8686], [10.7455, 60.8685], [10.7454, 60.8684], [10.7454, 60.8683], [10.7452, 60.8681], [10.7452, 60.8681], [10.7451, 60.8681], [10.745, 60.8682], [10.745, 60.8681], [10.7451, 60.8681], [10.7451, 60.8681], [10.745, 60.8681], [10.7449, 60.868], [10.7448, 60.8679], [10.7447, 60.8679], [10.7446, 60.8678], [10.7446, 60.8678], [10.7447, 60.8677], [10.7447, 60.8677], [10.7447, 60.8676], [10.7447, 60.8676], [10.7447, 60.8676], [10.7447, 60.8675], [10.7446, 60.8675], [10.7446, 60.8675], [10.7445, 60.8675], [10.7446, 60.8674], [10.7446, 60.8674], [10.7446, 60.8674], [10.7445, 60.8673], [10.7444, 60.8672], [10.7443, 60.8671], [10.7442, 60.8671], [10.7442, 60.867], [10.7441, 60.8669], [10.7441, 60.8669], [10.7441, 60.8668], [10.744, 60.8667], [10.7439, 60.8667], [10.7438, 60.8666], [10.7438, 60.8666], [10.7439, 60.8665], [10.7438, 60.8664], [10.7438, 60.8664], [10.7438, 60.8663], [10.7438, 60.8662], [10.7437, 60.866], [10.7437, 60.8659], [10.7436, 60.8658], [10.7434, 60.8657], [10.7432, 60.8655], [10.743, 60.8655], [10.7428, 60.8654], [10.7427, 60.8654], [10.7426, 60.8654], [10.7424, 60.8654], [10.7424, 60.8655], [10.7423, 60.8654], [10.7422, 60.8654], [10.7421, 60.8654], [10.742, 60.8653], [10.742, 60.8653], [10.7419, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8653], [10.7418, 60.8652], [10.7418, 60.8652], [10.7419, 60.8652], [10.7418, 60.8651], [10.7418, 60.8651], [10.7417, 60.8651], [10.7417, 60.8651], [10.7414, 60.865], [10.7412, 60.8649], [10.7411, 60.8649], [10.741, 60.8648], [10.7409, 60.8648], [10.7407, 60.8647], [10.7405, 60.8647], [10.7404, 60.8646], [10.7402, 60.8645], [10.7401, 60.8643], [10.74, 60.8641], [10.7398, 60.864], [10.7397, 60.864], [10.7397, 60.8639], [10.7397, 60.8638], [10.7397, 60.8638], [10.7397, 60.8637], [10.7397, 60.8636], [10.7396, 60.8636], [10.7396, 60.8636], [10.7397, 60.8636], [10.7397, 60.8635], [10.7397, 60.8633], [10.7396, 60.8633], [10.7395, 60.8632], [10.7395, 60.8631], [10.7396, 60.863], [10.7395, 60.8629], [10.7395, 60.8628], [10.7394, 60.8627], [10.7393, 60.8626], [10.7392, 60.8626], [10.7392, 60.8625], [10.7392, 60.8625], [10.7392, 60.8625], [10.7391, 60.8624], [10.739, 60.8623], [10.739, 60.8622], [10.7389, 60.8622], [10.7388, 60.862], [10.7386, 60.8619], [10.7385, 60.8617], [10.7384, 60.8616], [10.7382, 60.8614], [10.7381, 60.8612], [10.738, 60.8611], [10.7378, 60.8608], [10.7378, 60.8607], [10.7377, 60.8607], [10.7376, 60.8607], [10.7375, 60.8607], [10.7375, 60.8606], [10.7375, 60.8606], [10.7373, 60.8606], [10.7371, 60.8606], [10.7371, 60.8605], [10.737, 60.8604], [10.7369, 60.8603], [10.7369, 60.8603], [10.7369, 60.8602], [10.7369, 60.8601], [10.7369, 60.8601], [10.7369, 60.86], [10.7368, 60.8599], [10.7367, 60.8598], [10.7367, 60.8598], [10.7366, 60.8596], [10.7365, 60.8596], [10.7364, 60.8595], [10.7364, 60.8594], [10.7365, 60.8594], [10.7365, 60.8593], [10.7365, 60.8592], [10.7365, 60.8591], [10.7364, 60.859], [10.7363, 60.8588], [10.7363, 60.8587], [10.7362, 60.8587], [10.7361, 60.8585], [10.736, 60.8585], [10.736, 60.8584], [10.7359, 60.8583], [10.7358, 60.8583], [10.7358, 60.8582], [10.7358, 60.8582], [10.7356, 60.858], [10.7355, 60.8579], [10.7353, 60.8579], [10.7353, 60.8578], [10.7353, 60.8577], [10.7352, 60.8577], [10.7351, 60.8576], [10.735, 60.8576], [10.7349, 60.8575], [10.735, 60.8575], [10.7351, 60.8575], [10.7352, 60.8575], [10.7351, 60.8574], [10.7351, 60.8573], [10.7351, 60.8571], [10.7351, 60.857], [10.7351, 60.8569], [10.7351, 60.8569], [10.7104, 60.8569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "45", "sub_div_center": [60.876856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8769], [10.7104, 60.8969], [10.7268, 60.8969], [10.7268, 60.8968], [10.7267, 60.8968], [10.7267, 60.8968], [10.7266, 60.8967], [10.7265, 60.8967], [10.7265, 60.8966], [10.7265, 60.8966], [10.7265, 60.8965], [10.7265, 60.8965], [10.7265, 60.8965], [10.7265, 60.8964], [10.7265, 60.8964], [10.7265, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7263, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7264, 60.8963], [10.7265, 60.8963], [10.7265, 60.8963], [10.7265, 60.8963], [10.7265, 60.8962], [10.7265, 60.8962], [10.7265, 60.8961], [10.7265, 60.8961], [10.7264, 60.896], [10.7264, 60.8959], [10.7264, 60.8959], [10.7265, 60.8959], [10.7264, 60.8958], [10.7264, 60.8958], [10.7264, 60.8957], [10.7263, 60.8956], [10.7263, 60.8955], [10.7262, 60.8954], [10.7262, 60.8954], [10.7262, 60.8954], [10.7261, 60.8953], [10.7262, 60.8953], [10.7262, 60.8953], [10.7261, 60.8952], [10.7261, 60.8952], [10.7261, 60.8951], [10.726, 60.895], [10.7259, 60.895], [10.7258, 60.8949], [10.7258, 60.8949], [10.7257, 60.8949], [10.7256, 60.8949], [10.7255, 60.8949], [10.7255, 60.8949], [10.7254, 60.8949], [10.7253, 60.8949], [10.7252, 60.8949], [10.7252, 60.8949], [10.7252, 60.8949], [10.7251, 60.8949], [10.725, 60.8949], [10.725, 60.8949], [10.7249, 60.8949], [10.7249, 60.8949], [10.7248, 60.8949], [10.7248, 60.8949], [10.7248, 60.8948], [10.7248, 60.8948], [10.7247, 60.8948], [10.7247, 60.8948], [10.7247, 60.8947], [10.7247, 60.8947], [10.7247, 60.8947], [10.7247, 60.8947], [10.7248, 60.8947], [10.7248, 60.8947], [10.7249, 60.8947], [10.7249, 60.8947], [10.725, 60.8947], [10.7251, 60.8948], [10.7251, 60.8948], [10.7252, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7253, 60.8948], [10.7254, 60.8948], [10.7254, 60.8948], [10.7254, 60.8948], [10.7256, 60.8948], [10.7256, 60.8948], [10.7257, 60.8948], [10.7258, 60.8948], [10.7259, 60.8947], [10.726, 60.8947], [10.7261, 60.8947], [10.7262, 60.8946], [10.7263, 60.8946], [10.7264, 60.8945], [10.7265, 60.8945], [10.7265, 60.8944], [10.7266, 60.8944], [10.7267, 60.8943], [10.7268, 60.8942], [10.7268, 60.8942], [10.7269, 60.8942], [10.7268, 60.894], [10.7268, 60.8939], [10.7268, 60.8939], [10.7268, 60.8938], [10.7268, 60.8935], [10.7267, 60.8933], [10.7267, 60.8931], [10.7266, 60.893], [10.7266, 60.8929], [10.7265, 60.8929], [10.7265, 60.8929], [10.7265, 60.8928], [10.7265, 60.8927], [10.7265, 60.8927], [10.7265, 60.8927], [10.7266, 60.8926], [10.7266, 60.8925], [10.7267, 60.8924], [10.7267, 60.8924], [10.7267, 60.8923], [10.7268, 60.8922], [10.7269, 60.8922], [10.727, 60.8921], [10.7272, 60.892], [10.7273, 60.8919], [10.7274, 60.8918], [10.7276, 60.8917], [10.7278, 60.8917], [10.7279, 60.8916], [10.728, 60.8916], [10.7281, 60.8915], [10.7281, 60.8915], [10.7282, 60.8915], [10.7283, 60.8914], [10.7285, 60.8913], [10.7286, 60.8913], [10.7287, 60.8913], [10.7288, 60.8913], [10.7289, 60.8912], [10.729, 60.8911], [10.7291, 60.8911], [10.7292, 60.891], [10.7292, 60.8909], [10.7293, 60.8909], [10.7293, 60.8908], [10.7293, 60.8908], [10.7293, 60.8908], [10.7294, 60.8908], [10.7294, 60.8907], [10.7294, 60.8907], [10.7294, 60.8907], [10.7294, 60.8906], [10.7294, 60.8906], [10.7293, 60.8905], [10.7293, 60.8905], [10.7293, 60.8905], [10.7292, 60.8905], [10.7292, 60.8905], [10.7291, 60.8905], [10.7291, 60.8905], [10.7291, 60.8906], [10.7291, 60.8906], [10.7291, 60.8905], [10.7291, 60.8905], [10.7291, 60.8904], [10.7291, 60.8904], [10.7291, 60.8904], [10.7291, 60.8903], [10.7291, 60.8903], [10.7292, 60.8902], [10.7292, 60.8902], [10.7293, 60.8901], [10.7293, 60.89], [10.7294, 60.8899], [10.7293, 60.8899], [10.7293, 60.8899], [10.7293, 60.8899], [10.7293, 60.8898], [10.7294, 60.8898], [10.7296, 60.8897], [10.7296, 60.8897], [10.7297, 60.8897], [10.7297, 60.8897], [10.7297, 60.8897], [10.7298, 60.8897], [10.7298, 60.8896], [10.7298, 60.8895], [10.7298, 60.8895], [10.7298, 60.8894], [10.7298, 60.8894], [10.7298, 60.8894], [10.7298, 60.8893], [10.7298, 60.8893], [10.7298, 60.8892], [10.7299, 60.8892], [10.7299, 60.8892], [10.73, 60.8892], [10.73, 60.8891], [10.7301, 60.8891], [10.7301, 60.8891], [10.7301, 60.8891], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.73, 60.8889], [10.73, 60.8888], [10.73, 60.8888], [10.73, 60.8888], [10.7301, 60.8888], [10.7301, 60.8889], [10.7301, 60.8889], [10.7301, 60.8889], [10.7302, 60.8889], [10.7302, 60.8889], [10.7302, 60.8888], [10.7302, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8888], [10.7303, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8887], [10.7302, 60.8886], [10.7302, 60.8886], [10.7301, 60.8886], [10.7301, 60.8886], [10.7301, 60.8885], [10.7301, 60.8885], [10.7301, 60.8885], [10.7301, 60.8884], [10.7301, 60.8884], [10.7301, 60.8884], [10.7301, 60.8883], [10.7302, 60.8883], [10.7301, 60.8883], [10.7302, 60.8883], [10.7302, 60.8883], [10.7304, 60.8882], [10.7304, 60.8882], [10.7305, 60.8882], [10.7306, 60.8881], [10.7307, 60.8881], [10.7308, 60.888], [10.731, 60.888], [10.731, 60.888], [10.731, 60.8879], [10.7312, 60.8879], [10.7314, 60.8879], [10.7316, 60.8878], [10.7317, 60.8878], [10.7318, 60.8878], [10.7319, 60.8877], [10.732, 60.8876], [10.7321, 60.8876], [10.7321, 60.8876], [10.7322, 60.8875], [10.7323, 60.8875], [10.7323, 60.8875], [10.7324, 60.8875], [10.7325, 60.8874], [10.7325, 60.8874], [10.7326, 60.8874], [10.7327, 60.8873], [10.7328, 60.8873], [10.7329, 60.8873], [10.7329, 60.8872], [10.733, 60.8872], [10.733, 60.8872], [10.7332, 60.8871], [10.7333, 60.8871], [10.7334, 60.887], [10.7335, 60.887], [10.7336, 60.887], [10.7336, 60.8869], [10.7337, 60.8869], [10.7338, 60.8868], [10.7338, 60.8868], [10.7339, 60.8867], [10.7341, 60.8867], [10.7343, 60.8866], [10.7345, 60.8866], [10.7346, 60.8865], [10.7346, 60.8865], [10.7347, 60.8865], [10.7347, 60.8864], [10.7347, 60.8864], [10.7347, 60.8864], [10.7349, 60.8863], [10.735, 60.8863], [10.735, 60.8862], [10.735, 60.8861], [10.7351, 60.8861], [10.7351, 60.886], [10.7352, 60.8859], [10.7351, 60.8859], [10.7351, 60.8859], [10.7351, 60.8858], [10.7351, 60.8859], [10.7352, 60.8859], [10.7352, 60.8859], [10.7352, 60.8859], [10.7353, 60.8859], [10.7354, 60.8859], [10.7354, 60.8859], [10.7357, 60.8857], [10.7359, 60.8856], [10.7361, 60.8856], [10.7362, 60.8855], [10.7363, 60.8854], [10.7364, 60.8854], [10.7365, 60.8853], [10.7366, 60.8853], [10.7367, 60.8852], [10.737, 60.8852], [10.7373, 60.8852], [10.7375, 60.8852], [10.7376, 60.885], [10.7377, 60.885], [10.7378, 60.885], [10.738, 60.8849], [10.7381, 60.8849], [10.7382, 60.8849], [10.7383, 60.8848], [10.7385, 60.8847], [10.7386, 60.8846], [10.7388, 60.8846], [10.739, 60.8844], [10.7394, 60.8843], [10.7395, 60.8842], [10.7397, 60.8841], [10.7398, 60.884], [10.7399, 60.884], [10.7399, 60.884], [10.7401, 60.8838], [10.7402, 60.8836], [10.7404, 60.8836], [10.7405, 60.8835], [10.7405, 60.8835], [10.7405, 60.8835], [10.7404, 60.8835], [10.7403, 60.8835], [10.7402, 60.8835], [10.7402, 60.8834], [10.7403, 60.8834], [10.7404, 60.8834], [10.7405, 60.8834], [10.7405, 60.8834], [10.7405, 60.8834], [10.7404, 60.8834], [10.7404, 60.8833], [10.7405, 60.8833], [10.7406, 60.8833], [10.7407, 60.8832], [10.7409, 60.8831], [10.741, 60.883], [10.7411, 60.8829], [10.7412, 60.8828], [10.7412, 60.8827], [10.7412, 60.8827], [10.7412, 60.8825], [10.7411, 60.8824], [10.741, 60.8823], [10.7409, 60.8822], [10.7408, 60.8822], [10.7406, 60.8821], [10.7405, 60.8821], [10.7404, 60.8821], [10.7401, 60.8821], [10.7398, 60.8821], [10.7395, 60.8821], [10.7392, 60.8821], [10.739, 60.8822], [10.7388, 60.8823], [10.7387, 60.8823], [10.7384, 60.8824], [10.7383, 60.8824], [10.7382, 60.8824], [10.7381, 60.8823], [10.7379, 60.8823], [10.7377, 60.8824], [10.7372, 60.8824], [10.7368, 60.8824], [10.7363, 60.8825], [10.7359, 60.8825], [10.7357, 60.8825], [10.7355, 60.8825], [10.7353, 60.8825], [10.7352, 60.8824], [10.7347, 60.8823], [10.7342, 60.8822], [10.734, 60.8822], [10.7338, 60.8821], [10.7338, 60.8821], [10.7338, 60.882], [10.7338, 60.882], [10.7338, 60.8819], [10.7338, 60.8819], [10.7337, 60.8818], [10.7335, 60.8817], [10.7335, 60.8817], [10.7335, 60.8816], [10.7335, 60.8816], [10.7335, 60.8815], [10.7335, 60.8815], [10.7334, 60.8814], [10.7333, 60.8814], [10.7333, 60.8813], [10.7332, 60.8813], [10.7331, 60.8813], [10.7329, 60.8812], [10.7328, 60.8811], [10.7326, 60.881], [10.7326, 60.8809], [10.7327, 60.8809], [10.7328, 60.8809], [10.7328, 60.8808], [10.7328, 60.8808], [10.7329, 60.8808], [10.733, 60.8808], [10.7332, 60.8807], [10.7333, 60.8807], [10.7336, 60.8806], [10.7339, 60.8804], [10.734, 60.8803], [10.7343, 60.8801], [10.7343, 60.88], [10.7343, 60.88], [10.7343, 60.88], [10.7343, 60.88], [10.7344, 60.88], [10.7345, 60.8799], [10.7347, 60.8797], [10.7348, 60.8795], [10.7349, 60.8794], [10.735, 60.8793], [10.735, 60.8791], [10.7351, 60.879], [10.7351, 60.8788], [10.7351, 60.8786], [10.7352, 60.8785], [10.7352, 60.8783], [10.7353, 60.8783], [10.7353, 60.8782], [10.7353, 60.8782], [10.7353, 60.8782], [10.7352, 60.8782], [10.7352, 60.8781], [10.7353, 60.8781], [10.7353, 60.8781], [10.7352, 60.8781], [10.7352, 60.878], [10.7352, 60.878], [10.7351, 60.878], [10.7351, 60.878], [10.7351, 60.8779], [10.735, 60.8779], [10.735, 60.8778], [10.735, 60.8778], [10.735, 60.8777], [10.735, 60.8777], [10.7351, 60.8777], [10.7352, 60.8776], [10.7352, 60.8776], [10.7353, 60.8776], [10.7352, 60.8776], [10.7352, 60.8775], [10.7352, 60.8775], [10.7351, 60.8775], [10.7352, 60.8774], [10.7352, 60.8774], [10.7354, 60.8773], [10.7354, 60.8772], [10.7354, 60.8771], [10.7354, 60.877], [10.7353, 60.877], [10.7353, 60.877], [10.7351, 60.877], [10.735, 60.8769], [10.735, 60.8769], [10.7104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "46", "sub_div_center": [60.896856, 10.710419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8969], [10.7104, 60.9039], [10.7106, 60.9038], [10.7107, 60.9038], [10.7109, 60.9038], [10.7109, 60.9038], [10.7111, 60.9037], [10.7113, 60.9036], [10.7118, 60.9033], [10.7121, 60.9032], [10.7121, 60.9032], [10.7122, 60.9032], [10.7124, 60.9032], [10.7125, 60.9031], [10.7126, 60.9031], [10.7127, 60.903], [10.7128, 60.903], [10.7129, 60.9029], [10.7131, 60.9028], [10.7133, 60.9027], [10.7135, 60.9026], [10.7136, 60.9025], [10.7139, 60.9024], [10.7142, 60.9023], [10.7144, 60.9022], [10.7146, 60.9021], [10.7148, 60.902], [10.715, 60.9019], [10.7153, 60.9018], [10.7155, 60.9017], [10.7156, 60.9017], [10.7157, 60.9016], [10.7158, 60.9016], [10.716, 60.9015], [10.7162, 60.9015], [10.7164, 60.9015], [10.7168, 60.9014], [10.7169, 60.9014], [10.7171, 60.9014], [10.7171, 60.9014], [10.7176, 60.9013], [10.7178, 60.9013], [10.718, 60.9013], [10.7183, 60.9012], [10.7184, 60.9012], [10.7186, 60.9012], [10.7187, 60.9011], [10.7187, 60.9011], [10.7188, 60.9011], [10.7189, 60.9011], [10.719, 60.9011], [10.719, 60.9011], [10.719, 60.901], [10.719, 60.901], [10.719, 60.9009], [10.7191, 60.9009], [10.7191, 60.9008], [10.7192, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7193, 60.901], [10.7193, 60.901], [10.7194, 60.901], [10.7195, 60.901], [10.7196, 60.9009], [10.7197, 60.9009], [10.7198, 60.9009], [10.7198, 60.9009], [10.7199, 60.9008], [10.72, 60.9008], [10.72, 60.9008], [10.7201, 60.9007], [10.7202, 60.9006], [10.7203, 60.9006], [10.7204, 60.9006], [10.7205, 60.9005], [10.7206, 60.9004], [10.7208, 60.9004], [10.7208, 60.9004], [10.7209, 60.9003], [10.721, 60.9003], [10.721, 60.9002], [10.721, 60.9002], [10.7211, 60.9002], [10.7212, 60.9002], [10.7213, 60.9001], [10.7213, 60.9001], [10.7214, 60.9], [10.7214, 60.9], [10.7215, 60.9], [10.7215, 60.9], [10.7216, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8998], [10.7217, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8997], [10.7219, 60.8997], [10.722, 60.8997], [10.722, 60.8997], [10.7221, 60.8996], [10.7222, 60.8996], [10.7223, 60.8996], [10.7224, 60.8995], [10.7225, 60.8995], [10.7226, 60.8995], [10.7226, 60.8995], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7229, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7233, 60.8994], [10.7233, 60.8994], [10.7234, 60.8994], [10.7235, 60.8994], [10.7236, 60.8994], [10.7237, 60.8993], [10.7237, 60.8993], [10.7238, 60.8992], [10.7238, 60.8992], [10.7239, 60.8992], [10.724, 60.8991], [10.724, 60.899], [10.7241, 60.899], [10.7241, 60.899], [10.7241, 60.8989], [10.7241, 60.8989], [10.7241, 60.8989], [10.7242, 60.8988], [10.7242, 60.8988], [10.7241, 60.8987], [10.7241, 60.8987], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.7239, 60.8984], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7238, 60.8982], [10.7238, 60.8982], [10.7238, 60.8982], [10.7237, 60.8982], [10.7236, 60.8981], [10.7235, 60.8981], [10.7234, 60.8981], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7235, 60.8979], [10.7235, 60.8979], [10.7236, 60.8979], [10.7237, 60.8979], [10.7238, 60.8978], [10.7239, 60.8978], [10.7239, 60.8978], [10.724, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.724, 60.8978], [10.724, 60.8978], [10.7239, 60.8978], [10.7238, 60.8978], [10.7237, 60.8979], [10.7236, 60.8979], [10.7235, 60.8979], [10.7235, 60.898], [10.7235, 60.898], [10.7235, 60.8981], [10.7236, 60.8981], [10.7236, 60.8981], [10.7237, 60.8981], [10.7237, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7239, 60.8982], [10.724, 60.8982], [10.724, 60.8982], [10.7241, 60.8982], [10.7242, 60.8982], [10.7243, 60.8983], [10.7243, 60.8983], [10.7245, 60.8983], [10.7247, 60.8984], [10.7247, 60.8984], [10.7248, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.725, 60.8983], [10.7251, 60.8983], [10.7252, 60.8983], [10.7253, 60.8983], [10.7255, 60.8983], [10.7256, 60.8982], [10.7257, 60.8982], [10.7259, 60.8981], [10.7259, 60.8981], [10.726, 60.8981], [10.7261, 60.8981], [10.7262, 60.898], [10.7264, 60.8979], [10.7265, 60.8979], [10.7266, 60.8979], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7268, 60.8977], [10.7269, 60.8976], [10.727, 60.8975], [10.727, 60.8975], [10.7271, 60.8974], [10.7271, 60.8973], [10.7272, 60.8973], [10.7272, 60.8973], [10.7272, 60.8972], [10.7273, 60.8972], [10.7272, 60.8972], [10.7272, 60.8971], [10.7271, 60.8971], [10.7271, 60.8971], [10.727, 60.897], [10.7269, 60.897], [10.7268, 60.8969], [10.7268, 60.8969], [10.7104, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "47", "sub_div_center": [60.816848, 10.723823]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7104, 60.8969], [10.7104, 60.9039], [10.7106, 60.9038], [10.7107, 60.9038], [10.7109, 60.9038], [10.7109, 60.9038], [10.7111, 60.9037], [10.7113, 60.9036], [10.7118, 60.9033], [10.7121, 60.9032], [10.7121, 60.9032], [10.7122, 60.9032], [10.7124, 60.9032], [10.7125, 60.9031], [10.7126, 60.9031], [10.7127, 60.903], [10.7128, 60.903], [10.7129, 60.9029], [10.7131, 60.9028], [10.7133, 60.9027], [10.7135, 60.9026], [10.7136, 60.9025], [10.7139, 60.9024], [10.7142, 60.9023], [10.7144, 60.9022], [10.7146, 60.9021], [10.7148, 60.902], [10.715, 60.9019], [10.7153, 60.9018], [10.7155, 60.9017], [10.7156, 60.9017], [10.7157, 60.9016], [10.7158, 60.9016], [10.716, 60.9015], [10.7162, 60.9015], [10.7164, 60.9015], [10.7168, 60.9014], [10.7169, 60.9014], [10.7171, 60.9014], [10.7171, 60.9014], [10.7176, 60.9013], [10.7178, 60.9013], [10.718, 60.9013], [10.7183, 60.9012], [10.7184, 60.9012], [10.7186, 60.9012], [10.7187, 60.9011], [10.7187, 60.9011], [10.7188, 60.9011], [10.7189, 60.9011], [10.719, 60.9011], [10.719, 60.9011], [10.719, 60.901], [10.719, 60.901], [10.719, 60.9009], [10.7191, 60.9009], [10.7191, 60.9008], [10.7192, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9008], [10.7193, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7192, 60.9009], [10.7193, 60.901], [10.7193, 60.901], [10.7194, 60.901], [10.7195, 60.901], [10.7196, 60.9009], [10.7197, 60.9009], [10.7198, 60.9009], [10.7198, 60.9009], [10.7199, 60.9008], [10.72, 60.9008], [10.72, 60.9008], [10.7201, 60.9007], [10.7202, 60.9006], [10.7203, 60.9006], [10.7204, 60.9006], [10.7205, 60.9005], [10.7206, 60.9004], [10.7208, 60.9004], [10.7208, 60.9004], [10.7209, 60.9003], [10.721, 60.9003], [10.721, 60.9002], [10.721, 60.9002], [10.7211, 60.9002], [10.7212, 60.9002], [10.7213, 60.9001], [10.7213, 60.9001], [10.7214, 60.9], [10.7214, 60.9], [10.7215, 60.9], [10.7215, 60.9], [10.7216, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8999], [10.7217, 60.8998], [10.7217, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7218, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8998], [10.7219, 60.8997], [10.7219, 60.8997], [10.722, 60.8997], [10.722, 60.8997], [10.7221, 60.8996], [10.7222, 60.8996], [10.7223, 60.8996], [10.7224, 60.8995], [10.7225, 60.8995], [10.7226, 60.8995], [10.7226, 60.8995], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7226, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7227, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7228, 60.8994], [10.7229, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.723, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7231, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7232, 60.8994], [10.7233, 60.8994], [10.7233, 60.8994], [10.7234, 60.8994], [10.7235, 60.8994], [10.7236, 60.8994], [10.7237, 60.8993], [10.7237, 60.8993], [10.7238, 60.8992], [10.7238, 60.8992], [10.7239, 60.8992], [10.724, 60.8991], [10.724, 60.899], [10.7241, 60.899], [10.7241, 60.899], [10.7241, 60.8989], [10.7241, 60.8989], [10.7241, 60.8989], [10.7242, 60.8988], [10.7242, 60.8988], [10.7241, 60.8987], [10.7241, 60.8987], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.7241, 60.8986], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.724, 60.8985], [10.7239, 60.8984], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7239, 60.8983], [10.7238, 60.8982], [10.7238, 60.8982], [10.7238, 60.8982], [10.7237, 60.8982], [10.7236, 60.8981], [10.7235, 60.8981], [10.7234, 60.8981], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7234, 60.898], [10.7235, 60.8979], [10.7235, 60.8979], [10.7236, 60.8979], [10.7237, 60.8979], [10.7238, 60.8978], [10.7239, 60.8978], [10.7239, 60.8978], [10.724, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7243, 60.8978], [10.7242, 60.8978], [10.7242, 60.8978], [10.7241, 60.8978], [10.7241, 60.8978], [10.724, 60.8978], [10.724, 60.8978], [10.7239, 60.8978], [10.7238, 60.8978], [10.7237, 60.8979], [10.7236, 60.8979], [10.7235, 60.8979], [10.7235, 60.898], [10.7235, 60.898], [10.7235, 60.8981], [10.7236, 60.8981], [10.7236, 60.8981], [10.7237, 60.8981], [10.7237, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7238, 60.8981], [10.7239, 60.8982], [10.724, 60.8982], [10.724, 60.8982], [10.7241, 60.8982], [10.7242, 60.8982], [10.7243, 60.8983], [10.7243, 60.8983], [10.7245, 60.8983], [10.7247, 60.8984], [10.7247, 60.8984], [10.7248, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.7249, 60.8984], [10.725, 60.8983], [10.7251, 60.8983], [10.7252, 60.8983], [10.7253, 60.8983], [10.7255, 60.8983], [10.7256, 60.8982], [10.7257, 60.8982], [10.7259, 60.8981], [10.7259, 60.8981], [10.726, 60.8981], [10.7261, 60.8981], [10.7262, 60.898], [10.7264, 60.8979], [10.7265, 60.8979], [10.7266, 60.8979], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7267, 60.8978], [10.7268, 60.8977], [10.7269, 60.8976], [10.727, 60.8975], [10.727, 60.8975], [10.7271, 60.8974], [10.7271, 60.8973], [10.7272, 60.8973], [10.7272, 60.8973], [10.7272, 60.8972], [10.7273, 60.8972], [10.7272, 60.8972], [10.7272, 60.8971], [10.7271, 60.8971], [10.7271, 60.8971], [10.727, 60.897], [10.7269, 60.897], [10.7268, 60.8969], [10.7268, 60.8969], [10.7104, 60.8969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "48", "sub_div_center": [60.816856, 10.723847]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7238, 60.8169], [10.7239, 60.8169], [10.7239, 60.8169], [10.7238, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "49", "sub_div_center": [60.756169, 10.748616]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7504, 60.7562], [10.75, 60.7562], [10.7499, 60.7563], [10.7491, 60.7565], [10.7486, 60.7569], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "50", "sub_div_center": [60.748433, 10.750419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7904, 60.7569], [10.7904, 60.7485], [10.7891, 60.7485], [10.7884, 60.7485], [10.7882, 60.7484], [10.788, 60.7484], [10.787, 60.7484], [10.7869, 60.7485], [10.7868, 60.7485], [10.7868, 60.7485], [10.7867, 60.7486], [10.7867, 60.7486], [10.7866, 60.7486], [10.7864, 60.7486], [10.7864, 60.7486], [10.7863, 60.7485], [10.7861, 60.7485], [10.786, 60.7485], [10.7858, 60.7485], [10.7857, 60.7485], [10.7857, 60.7485], [10.7856, 60.7486], [10.7854, 60.7486], [10.7851, 60.7487], [10.7848, 60.7487], [10.7837, 60.7488], [10.7834, 60.7489], [10.7831, 60.7489], [10.7829, 60.7489], [10.7828, 60.7489], [10.7827, 60.7489], [10.7826, 60.7489], [10.7825, 60.7489], [10.7819, 60.749], [10.7812, 60.7492], [10.7808, 60.7493], [10.7807, 60.7493], [10.7806, 60.7494], [10.7806, 60.7494], [10.7805, 60.7495], [10.7804, 60.7495], [10.7797, 60.7496], [10.7793, 60.7496], [10.779, 60.7497], [10.7784, 60.7498], [10.7777, 60.7498], [10.7769, 60.7498], [10.776, 60.75], [10.7759, 60.75], [10.7738, 60.7503], [10.7733, 60.7504], [10.7725, 60.7505], [10.7717, 60.7504], [10.7703, 60.7506], [10.7701, 60.7506], [10.7697, 60.7507], [10.7691, 60.7507], [10.7684, 60.7509], [10.7678, 60.7509], [10.7671, 60.7512], [10.7666, 60.7514], [10.7663, 60.7517], [10.7655, 60.7523], [10.7645, 60.7527], [10.764, 60.7529], [10.7624, 60.7532], [10.7623, 60.7532], [10.761, 60.7534], [10.7594, 60.7539], [10.7586, 60.7541], [10.7575, 60.7544], [10.7566, 60.7548], [10.7561, 60.7551], [10.7547, 60.7553], [10.7536, 60.7556], [10.752, 60.7561], [10.7514, 60.7562], [10.7506, 60.7561], [10.7504, 60.7562], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "51", "sub_div_center": [60.756856, 10.750419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7569], [10.7504, 60.7769], [10.7904, 60.7769], [10.7904, 60.7569], [10.7504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "52", "sub_div_center": [60.776856, 10.750419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7504, 60.7769], [10.7504, 60.7893], [10.7505, 60.7892], [10.7507, 60.7892], [10.7508, 60.7891], [10.7508, 60.789], [10.7509, 60.7889], [10.751, 60.7888], [10.7511, 60.7888], [10.7512, 60.7888], [10.7513, 60.7887], [10.7513, 60.7887], [10.7514, 60.7886], [10.7515, 60.7886], [10.7515, 60.7885], [10.7516, 60.7885], [10.7516, 60.7884], [10.7516, 60.7884], [10.7517, 60.7883], [10.7517, 60.7883], [10.7517, 60.7883], [10.7517, 60.7883], [10.7518, 60.7882], [10.7518, 60.7882], [10.7519, 60.7881], [10.7521, 60.788], [10.7522, 60.788], [10.7523, 60.7879], [10.7524, 60.7878], [10.7525, 60.7878], [10.7526, 60.7877], [10.7526, 60.7877], [10.7527, 60.7876], [10.753, 60.7875], [10.7531, 60.7874], [10.7533, 60.7873], [10.7536, 60.7872], [10.7536, 60.7871], [10.7535, 60.7871], [10.7536, 60.7871], [10.7536, 60.7871], [10.7537, 60.7871], [10.7538, 60.7871], [10.7538, 60.787], [10.7539, 60.787], [10.7539, 60.787], [10.7538, 60.787], [10.7539, 60.7869], [10.7539, 60.7869], [10.7541, 60.7868], [10.7541, 60.7868], [10.7542, 60.7868], [10.7543, 60.7867], [10.7543, 60.7866], [10.7545, 60.7865], [10.7546, 60.7865], [10.7546, 60.7864], [10.7546, 60.7864], [10.7547, 60.7864], [10.7547, 60.7864], [10.7548, 60.7863], [10.7549, 60.7862], [10.755, 60.7861], [10.755, 60.786], [10.7548, 60.786], [10.7547, 60.7859], [10.7547, 60.7859], [10.7546, 60.7858], [10.7547, 60.7857], [10.7548, 60.7857], [10.7548, 60.7857], [10.7548, 60.7857], [10.7547, 60.7858], [10.7548, 60.7859], [10.7549, 60.7859], [10.755, 60.7859], [10.755, 60.786], [10.7551, 60.7859], [10.7552, 60.7859], [10.7553, 60.7858], [10.7554, 60.7858], [10.7554, 60.7857], [10.7555, 60.7857], [10.7555, 60.7857], [10.7555, 60.7856], [10.7553, 60.7856], [10.7552, 60.7856], [10.7552, 60.7856], [10.7551, 60.7856], [10.7551, 60.7856], [10.755, 60.7856], [10.755, 60.7856], [10.7549, 60.7856], [10.7549, 60.7856], [10.7549, 60.7856], [10.7549, 60.7855], [10.755, 60.7855], [10.7551, 60.7855], [10.7551, 60.7855], [10.7553, 60.7855], [10.7554, 60.7855], [10.7555, 60.7856], [10.7556, 60.7856], [10.7557, 60.7856], [10.7558, 60.7856], [10.7559, 60.7856], [10.7561, 60.7856], [10.7562, 60.7855], [10.7563, 60.7855], [10.7563, 60.7854], [10.7563, 60.7854], [10.7564, 60.7853], [10.7564, 60.7853], [10.7565, 60.7853], [10.7565, 60.7852], [10.7566, 60.7852], [10.7567, 60.7851], [10.7568, 60.785], [10.7569, 60.7849], [10.757, 60.7849], [10.757, 60.7848], [10.7571, 60.7848], [10.7572, 60.7848], [10.7573, 60.7848], [10.7574, 60.7848], [10.7575, 60.7847], [10.7575, 60.7847], [10.7575, 60.7847], [10.7574, 60.7846], [10.7574, 60.7846], [10.7574, 60.7846], [10.7575, 60.7847], [10.7576, 60.7847], [10.7577, 60.7847], [10.7577, 60.7846], [10.7577, 60.7846], [10.7577, 60.7845], [10.7577, 60.7845], [10.7576, 60.7844], [10.7576, 60.7843], [10.7577, 60.7843], [10.7577, 60.7843], [10.7578, 60.7843], [10.7579, 60.7843], [10.7579, 60.7843], [10.7579, 60.7844], [10.758, 60.7845], [10.758, 60.7845], [10.758, 60.7846], [10.7582, 60.7845], [10.7584, 60.7845], [10.7586, 60.7843], [10.7586, 60.7843], [10.7586, 60.7843], [10.7586, 60.7842], [10.7586, 60.7842], [10.7587, 60.7842], [10.7588, 60.7842], [10.7589, 60.7842], [10.7589, 60.7842], [10.7591, 60.7842], [10.7591, 60.7842], [10.7591, 60.7841], [10.7592, 60.7841], [10.7594, 60.7841], [10.7598, 60.7839], [10.7603, 60.7838], [10.7605, 60.7836], [10.7608, 60.7836], [10.7613, 60.7835], [10.7614, 60.7834], [10.7614, 60.7834], [10.7614, 60.7833], [10.7613, 60.7832], [10.7613, 60.7832], [10.7613, 60.7832], [10.7614, 60.7832], [10.7614, 60.7832], [10.7615, 60.7833], [10.7616, 60.7834], [10.7617, 60.7834], [10.7618, 60.7834], [10.7619, 60.7834], [10.762, 60.7834], [10.7621, 60.7834], [10.7622, 60.7833], [10.7624, 60.7832], [10.7627, 60.7831], [10.7629, 60.783], [10.7631, 60.7828], [10.7632, 60.7827], [10.7634, 60.7826], [10.7636, 60.7825], [10.7638, 60.7824], [10.764, 60.7823], [10.7643, 60.7823], [10.7645, 60.7823], [10.7648, 60.7822], [10.7653, 60.7823], [10.7655, 60.7822], [10.7656, 60.7822], [10.7657, 60.7822], [10.7658, 60.7822], [10.7659, 60.7822], [10.7663, 60.7823], [10.7666, 60.7823], [10.7668, 60.7823], [10.7671, 60.7824], [10.7673, 60.7825], [10.7674, 60.7825], [10.7675, 60.7824], [10.7677, 60.7824], [10.7679, 60.7825], [10.768, 60.7825], [10.7681, 60.7826], [10.7682, 60.7827], [10.7683, 60.7828], [10.7684, 60.7828], [10.7684, 60.7828], [10.7685, 60.7829], [10.7686, 60.7829], [10.7687, 60.783], [10.7687, 60.7831], [10.7687, 60.7831], [10.7689, 60.7831], [10.7689, 60.7832], [10.7691, 60.7832], [10.7693, 60.7832], [10.7693, 60.7832], [10.7694, 60.7833], [10.7695, 60.7833], [10.7696, 60.7833], [10.7696, 60.7834], [10.7697, 60.7834], [10.7699, 60.7835], [10.7701, 60.7835], [10.7703, 60.7836], [10.7707, 60.7837], [10.7709, 60.7837], [10.7709, 60.7837], [10.7709, 60.7836], [10.771, 60.7836], [10.771, 60.7836], [10.771, 60.7836], [10.7711, 60.7835], [10.7711, 60.7835], [10.7712, 60.7836], [10.7712, 60.7836], [10.7713, 60.7837], [10.7715, 60.7837], [10.7718, 60.7837], [10.772, 60.7837], [10.7721, 60.7837], [10.7722, 60.7837], [10.7723, 60.7837], [10.7724, 60.7837], [10.7725, 60.7837], [10.7726, 60.7836], [10.7727, 60.7836], [10.7727, 60.7836], [10.7727, 60.7835], [10.7727, 60.7834], [10.7726, 60.7833], [10.7725, 60.7832], [10.7723, 60.7829], [10.7723, 60.7828], [10.7723, 60.7827], [10.7722, 60.7826], [10.7722, 60.7826], [10.7722, 60.7825], [10.7722, 60.7825], [10.7723, 60.7824], [10.7723, 60.7824], [10.7725, 60.7824], [10.7726, 60.7824], [10.7727, 60.7824], [10.7727, 60.7824], [10.7728, 60.7823], [10.7729, 60.7823], [10.7731, 60.7824], [10.7733, 60.7824], [10.7737, 60.7825], [10.7738, 60.7825], [10.774, 60.7826], [10.7741, 60.7826], [10.7741, 60.7825], [10.7741, 60.7825], [10.7742, 60.7825], [10.7742, 60.7826], [10.7743, 60.7826], [10.7744, 60.7826], [10.7745, 60.7826], [10.7745, 60.7826], [10.7745, 60.7826], [10.7745, 60.7825], [10.7745, 60.7825], [10.7745, 60.7827], [10.7747, 60.7827], [10.7749, 60.7827], [10.7751, 60.7828], [10.7752, 60.7828], [10.7752, 60.7828], [10.7753, 60.7828], [10.7754, 60.7828], [10.7755, 60.7828], [10.7756, 60.7828], [10.7757, 60.7828], [10.7757, 60.7828], [10.7758, 60.7828], [10.7758, 60.7828], [10.7759, 60.7828], [10.7758, 60.7829], [10.7758, 60.7829], [10.7759, 60.7829], [10.7759, 60.7829], [10.776, 60.7829], [10.7761, 60.7829], [10.7761, 60.7829], [10.7763, 60.7829], [10.7764, 60.7829], [10.7766, 60.7829], [10.7767, 60.7828], [10.7768, 60.7828], [10.7767, 60.7827], [10.7767, 60.7827], [10.7767, 60.7826], [10.7767, 60.7826], [10.7768, 60.7827], [10.7769, 60.7828], [10.777, 60.7828], [10.777, 60.7828], [10.7771, 60.7828], [10.7773, 60.7829], [10.7774, 60.7828], [10.7774, 60.7828], [10.7774, 60.7828], [10.7773, 60.7828], [10.7773, 60.7827], [10.7772, 60.7827], [10.7771, 60.7827], [10.7771, 60.7827], [10.777, 60.7827], [10.777, 60.7827], [10.7771, 60.7826], [10.7772, 60.7825], [10.7772, 60.7825], [10.7772, 60.7825], [10.7772, 60.7824], [10.7772, 60.7824], [10.7772, 60.7823], [10.7772, 60.7822], [10.7771, 60.7822], [10.7771, 60.7822], [10.7771, 60.7822], [10.7771, 60.7821], [10.7771, 60.782], [10.7771, 60.7819], [10.777, 60.7818], [10.7769, 60.7816], [10.7769, 60.7816], [10.7769, 60.7815], [10.777, 60.7815], [10.7772, 60.7815], [10.7773, 60.7814], [10.7773, 60.7814], [10.7772, 60.7814], [10.7774, 60.7814], [10.7776, 60.7813], [10.7778, 60.7813], [10.7781, 60.7812], [10.7784, 60.7812], [10.7783, 60.781], [10.7784, 60.781], [10.7784, 60.781], [10.7785, 60.7812], [10.7786, 60.7812], [10.7787, 60.7811], [10.7788, 60.7811], [10.7788, 60.7811], [10.7787, 60.7809], [10.7788, 60.7809], [10.7789, 60.7811], [10.7789, 60.7811], [10.779, 60.7811], [10.779, 60.781], [10.779, 60.781], [10.7791, 60.7811], [10.7791, 60.7811], [10.7791, 60.7811], [10.7792, 60.7811], [10.7794, 60.7811], [10.7795, 60.7811], [10.7796, 60.7811], [10.7797, 60.7811], [10.7797, 60.7811], [10.7798, 60.7811], [10.7799, 60.7811], [10.7798, 60.781], [10.78, 60.781], [10.78, 60.781], [10.7801, 60.781], [10.7801, 60.781], [10.7802, 60.781], [10.7802, 60.781], [10.7802, 60.781], [10.7803, 60.781], [10.7803, 60.781], [10.7803, 60.781], [10.7804, 60.7809], [10.7804, 60.7809], [10.7805, 60.7809], [10.7804, 60.781], [10.7804, 60.781], [10.7804, 60.781], [10.7805, 60.781], [10.7808, 60.7811], [10.781, 60.7811], [10.7811, 60.781], [10.7812, 60.781], [10.7813, 60.781], [10.7815, 60.781], [10.7818, 60.7809], [10.7819, 60.7809], [10.7821, 60.7807], [10.7822, 60.7807], [10.7822, 60.7807], [10.7823, 60.7806], [10.7824, 60.7806], [10.7825, 60.7806], [10.7826, 60.7806], [10.7826, 60.7806], [10.7826, 60.7807], [10.7827, 60.7807], [10.7828, 60.7807], [10.783, 60.7807], [10.7831, 60.7807], [10.7833, 60.7806], [10.7834, 60.7806], [10.7835, 60.7806], [10.7835, 60.7805], [10.7834, 60.7804], [10.7834, 60.7803], [10.7834, 60.7802], [10.7834, 60.78], [10.7835, 60.7799], [10.7836, 60.7799], [10.7836, 60.7799], [10.7836, 60.7798], [10.7834, 60.7797], [10.7834, 60.7797], [10.7835, 60.7797], [10.7837, 60.7798], [10.7837, 60.7798], [10.7838, 60.7798], [10.784, 60.7797], [10.7841, 60.7797], [10.7841, 60.7796], [10.7842, 60.7796], [10.7843, 60.7795], [10.7844, 60.7795], [10.7845, 60.7796], [10.7845, 60.7796], [10.7845, 60.7795], [10.7846, 60.7795], [10.7846, 60.7796], [10.7849, 60.7798], [10.7854, 60.7799], [10.7855, 60.78], [10.7857, 60.7801], [10.7859, 60.7801], [10.7861, 60.7801], [10.7862, 60.7801], [10.7864, 60.78], [10.7865, 60.7799], [10.7866, 60.7799], [10.7865, 60.7798], [10.7865, 60.7798], [10.7865, 60.7797], [10.7865, 60.7796], [10.7865, 60.7795], [10.7865, 60.7795], [10.7865, 60.7795], [10.7865, 60.7794], [10.7865, 60.7794], [10.7862, 60.7794], [10.7862, 60.7794], [10.7863, 60.7794], [10.7864, 60.7793], [10.7864, 60.7793], [10.7864, 60.7792], [10.7863, 60.7791], [10.7863, 60.779], [10.7863, 60.779], [10.7863, 60.7788], [10.7863, 60.7788], [10.7864, 60.7787], [10.7865, 60.7787], [10.7866, 60.7787], [10.7867, 60.7787], [10.7869, 60.7787], [10.7871, 60.7788], [10.7873, 60.7788], [10.7875, 60.7788], [10.7876, 60.7789], [10.7878, 60.7789], [10.788, 60.779], [10.7882, 60.779], [10.7883, 60.779], [10.7883, 60.7791], [10.7885, 60.7791], [10.7886, 60.7791], [10.7887, 60.7791], [10.7887, 60.7792], [10.7888, 60.7791], [10.7891, 60.7791], [10.7891, 60.7791], [10.7891, 60.779], [10.7891, 60.779], [10.7892, 60.7789], [10.7894, 60.7788], [10.7895, 60.7787], [10.7895, 60.7786], [10.7896, 60.7787], [10.7897, 60.7787], [10.7901, 60.7786], [10.7902, 60.7786], [10.7902, 60.7786], [10.7904, 60.7786], [10.7904, 60.7786], [10.7904, 60.7769], [10.7504, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "53", "sub_div_center": [60.740076, 10.790419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7401], [10.8304, 60.7402], [10.8303, 60.7404], [10.8302, 60.7406], [10.8302, 60.7407], [10.8303, 60.7408], [10.8302, 60.741], [10.8302, 60.7411], [10.8301, 60.7414], [10.83, 60.7415], [10.8299, 60.7418], [10.8297, 60.7419], [10.8297, 60.742], [10.8294, 60.7423], [10.8293, 60.7424], [10.8292, 60.7425], [10.8292, 60.7425], [10.8293, 60.7425], [10.8293, 60.7426], [10.8294, 60.7426], [10.8294, 60.7427], [10.8293, 60.7427], [10.8291, 60.7428], [10.8291, 60.7427], [10.8291, 60.7427], [10.829, 60.7427], [10.829, 60.7426], [10.8289, 60.7426], [10.8288, 60.7427], [10.8287, 60.7427], [10.8286, 60.7428], [10.8281, 60.7431], [10.8279, 60.7433], [10.8276, 60.7435], [10.8275, 60.7437], [10.8274, 60.7437], [10.8274, 60.7438], [10.8275, 60.7438], [10.8275, 60.7439], [10.8275, 60.744], [10.8275, 60.744], [10.8274, 60.7441], [10.8273, 60.7441], [10.8273, 60.7441], [10.8273, 60.744], [10.8273, 60.7439], [10.8273, 60.7439], [10.8272, 60.7438], [10.827, 60.7438], [10.827, 60.7438], [10.8269, 60.7439], [10.8269, 60.7439], [10.8269, 60.7439], [10.8271, 60.744], [10.8271, 60.744], [10.8271, 60.744], [10.8271, 60.7441], [10.8271, 60.7441], [10.827, 60.7441], [10.8269, 60.744], [10.8268, 60.744], [10.8267, 60.744], [10.8266, 60.744], [10.8265, 60.7441], [10.8264, 60.7442], [10.8262, 60.7444], [10.8259, 60.7445], [10.8257, 60.7447], [10.8257, 60.7448], [10.8256, 60.7448], [10.8252, 60.745], [10.8251, 60.7451], [10.825, 60.7451], [10.8248, 60.7451], [10.8246, 60.7451], [10.824, 60.7452], [10.8239, 60.7452], [10.8234, 60.7452], [10.8233, 60.7451], [10.8231, 60.7451], [10.8229, 60.745], [10.8227, 60.745], [10.8226, 60.745], [10.822, 60.745], [10.8218, 60.745], [10.8216, 60.745], [10.8214, 60.7451], [10.8212, 60.7451], [10.821, 60.7453], [10.8207, 60.7454], [10.8205, 60.7455], [10.8204, 60.7455], [10.8202, 60.7456], [10.8199, 60.7456], [10.8197, 60.7457], [10.8195, 60.7457], [10.8193, 60.7457], [10.8191, 60.7456], [10.8185, 60.7456], [10.8183, 60.7456], [10.8182, 60.7456], [10.8181, 60.7455], [10.8179, 60.7456], [10.8179, 60.7456], [10.8178, 60.7456], [10.8173, 60.7456], [10.8173, 60.7456], [10.8172, 60.7457], [10.8171, 60.7457], [10.8168, 60.7458], [10.8167, 60.7458], [10.8165, 60.7459], [10.8164, 60.746], [10.8163, 60.746], [10.816, 60.7461], [10.816, 60.7461], [10.816, 60.7462], [10.8161, 60.7462], [10.8161, 60.7463], [10.8161, 60.7463], [10.816, 60.7463], [10.8159, 60.7462], [10.8158, 60.7462], [10.8157, 60.7461], [10.8157, 60.7461], [10.8155, 60.7461], [10.8153, 60.7461], [10.815, 60.7461], [10.8149, 60.7461], [10.8149, 60.7461], [10.8148, 60.7461], [10.8147, 60.746], [10.8146, 60.746], [10.8145, 60.746], [10.8144, 60.7459], [10.8142, 60.7458], [10.8141, 60.7457], [10.8138, 60.7457], [10.8138, 60.7458], [10.8138, 60.7458], [10.8138, 60.7458], [10.8138, 60.7459], [10.8137, 60.746], [10.8136, 60.7461], [10.8135, 60.7462], [10.8134, 60.7463], [10.8131, 60.7464], [10.8129, 60.7464], [10.8127, 60.7463], [10.8127, 60.7463], [10.8125, 60.7462], [10.8125, 60.7462], [10.8124, 60.746], [10.8124, 60.746], [10.8122, 60.7458], [10.8121, 60.7458], [10.8121, 60.7458], [10.812, 60.7458], [10.8119, 60.7458], [10.8117, 60.7459], [10.8116, 60.746], [10.8114, 60.746], [10.8112, 60.7461], [10.8111, 60.7461], [10.8111, 60.7461], [10.8108, 60.7461], [10.8107, 60.7462], [10.8105, 60.7462], [10.8104, 60.7462], [10.8104, 60.7463], [10.8103, 60.7464], [10.8102, 60.7464], [10.8096, 60.7466], [10.8094, 60.7466], [10.809, 60.7467], [10.8089, 60.7467], [10.8084, 60.7468], [10.8083, 60.7468], [10.8083, 60.7469], [10.8083, 60.7469], [10.8085, 60.7471], [10.8087, 60.7472], [10.8087, 60.7472], [10.8086, 60.7473], [10.8086, 60.7473], [10.8083, 60.7472], [10.8083, 60.7472], [10.8082, 60.7473], [10.808, 60.7474], [10.8078, 60.7475], [10.8075, 60.7476], [10.8074, 60.7477], [10.8073, 60.7477], [10.8069, 60.7477], [10.8067, 60.7478], [10.8061, 60.7479], [10.8058, 60.7479], [10.8049, 60.7481], [10.8043, 60.7482], [10.8037, 60.7483], [10.803, 60.7484], [10.8029, 60.7484], [10.8028, 60.7485], [10.8027, 60.7485], [10.8023, 60.7485], [10.802, 60.7485], [10.8018, 60.7485], [10.8018, 60.7485], [10.8017, 60.7486], [10.8017, 60.7486], [10.8016, 60.7487], [10.8016, 60.7487], [10.8014, 60.7487], [10.8013, 60.7487], [10.8011, 60.7487], [10.8011, 60.7487], [10.801, 60.7487], [10.8009, 60.7487], [10.8006, 60.7486], [10.8006, 60.7486], [10.8004, 60.7486], [10.8003, 60.7486], [10.7991, 60.7488], [10.7988, 60.7489], [10.7983, 60.749], [10.7978, 60.749], [10.7971, 60.7491], [10.7964, 60.7491], [10.7963, 60.749], [10.796, 60.749], [10.7959, 60.7489], [10.7956, 60.7489], [10.7952, 60.7487], [10.7949, 60.7486], [10.7943, 60.7485], [10.7941, 60.7485], [10.7937, 60.7484], [10.7935, 60.7484], [10.7935, 60.7484], [10.7934, 60.7485], [10.7933, 60.7485], [10.7932, 60.7486], [10.7932, 60.7487], [10.7931, 60.7488], [10.7931, 60.7488], [10.793, 60.7488], [10.793, 60.7487], [10.793, 60.7486], [10.793, 60.7485], [10.7929, 60.7485], [10.7926, 60.7485], [10.7925, 60.7485], [10.7925, 60.7485], [10.7925, 60.7486], [10.7925, 60.7487], [10.7924, 60.7487], [10.7924, 60.7487], [10.7923, 60.7487], [10.7923, 60.7487], [10.7923, 60.7486], [10.7922, 60.7485], [10.7922, 60.7485], [10.7921, 60.7485], [10.7916, 60.7485], [10.7915, 60.7485], [10.7913, 60.7485], [10.7911, 60.7485], [10.7909, 60.7485], [10.7906, 60.7485], [10.7905, 60.7485], [10.7904, 60.7485], [10.7904, 60.7569], [10.8304, 60.7569], [10.8304, 60.7401], [10.8304, 60.7401]]]}}, {"type": "Feature", "properties": {"sub_div_id": "54", "sub_div_center": [60.756856, 10.790419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7904, 60.7569], [10.7904, 60.7769], [10.7966, 60.7769], [10.7966, 60.7769], [10.7967, 60.7767], [10.7969, 60.7766], [10.7971, 60.7765], [10.7973, 60.7764], [10.7975, 60.7763], [10.7976, 60.7762], [10.7976, 60.7762], [10.7978, 60.7761], [10.7979, 60.776], [10.7979, 60.7759], [10.7979, 60.7758], [10.7981, 60.7756], [10.7983, 60.7755], [10.7985, 60.7754], [10.7987, 60.7752], [10.7989, 60.775], [10.7991, 60.7749], [10.7992, 60.7747], [10.7992, 60.7747], [10.7993, 60.7747], [10.7994, 60.7747], [10.7996, 60.7745], [10.7997, 60.7744], [10.7998, 60.7743], [10.8, 60.774], [10.8001, 60.7739], [10.8003, 60.7738], [10.8004, 60.7736], [10.8005, 60.7735], [10.8005, 60.7734], [10.8005, 60.7733], [10.8005, 60.7733], [10.8005, 60.7732], [10.8006, 60.7732], [10.8007, 60.7731], [10.8007, 60.773], [10.8008, 60.773], [10.8008, 60.773], [10.8008, 60.7729], [10.8008, 60.7729], [10.8009, 60.7728], [10.8009, 60.7728], [10.8009, 60.7728], [10.8008, 60.7727], [10.8007, 60.7727], [10.8006, 60.7727], [10.8006, 60.7727], [10.8006, 60.7727], [10.8007, 60.7726], [10.8008, 60.7726], [10.8007, 60.7726], [10.8007, 60.7726], [10.8006, 60.7726], [10.8006, 60.7726], [10.8005, 60.7726], [10.8004, 60.7726], [10.8004, 60.7726], [10.8004, 60.7726], [10.8005, 60.7726], [10.8005, 60.7726], [10.8006, 60.7725], [10.8007, 60.7725], [10.8007, 60.7725], [10.8008, 60.7725], [10.8009, 60.7726], [10.8009, 60.7726], [10.801, 60.7726], [10.8011, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7726], [10.8012, 60.7727], [10.8013, 60.7727], [10.8013, 60.7727], [10.8014, 60.7727], [10.8016, 60.7727], [10.8017, 60.7727], [10.8017, 60.7727], [10.8017, 60.7726], [10.8017, 60.7725], [10.8017, 60.7724], [10.8017, 60.7723], [10.8017, 60.7723], [10.8017, 60.7723], [10.8018, 60.7723], [10.8018, 60.7723], [10.8018, 60.7724], [10.8018, 60.7724], [10.8018, 60.7725], [10.8018, 60.7726], [10.8019, 60.7727], [10.8019, 60.7727], [10.802, 60.7727], [10.802, 60.7727], [10.802, 60.7728], [10.8022, 60.7727], [10.8022, 60.7727], [10.8022, 60.7727], [10.8024, 60.7727], [10.8025, 60.7726], [10.8025, 60.7726], [10.8025, 60.7725], [10.8025, 60.7724], [10.8024, 60.7723], [10.8024, 60.7723], [10.8024, 60.7723], [10.8023, 60.7723], [10.802, 60.7723], [10.802, 60.7723], [10.8021, 60.7722], [10.8022, 60.7722], [10.8024, 60.7722], [10.8025, 60.7722], [10.8026, 60.7723], [10.8026, 60.7723], [10.8026, 60.7723], [10.8026, 60.7724], [10.8027, 60.7725], [10.8027, 60.7725], [10.8028, 60.7726], [10.8029, 60.7726], [10.803, 60.7726], [10.8031, 60.7726], [10.8032, 60.7725], [10.8033, 60.7725], [10.8033, 60.7725], [10.8034, 60.7725], [10.8036, 60.7725], [10.8039, 60.7725], [10.804, 60.7725], [10.8041, 60.7724], [10.8043, 60.7725], [10.8044, 60.7725], [10.8046, 60.7725], [10.8047, 60.7725], [10.8049, 60.7725], [10.8049, 60.7725], [10.805, 60.7725], [10.8051, 60.7725], [10.8052, 60.7725], [10.8054, 60.7724], [10.8055, 60.7724], [10.8057, 60.7723], [10.8058, 60.7723], [10.8059, 60.7723], [10.8059, 60.7722], [10.806, 60.7721], [10.8061, 60.7721], [10.8061, 60.7721], [10.8062, 60.7721], [10.8064, 60.7721], [10.8065, 60.772], [10.8066, 60.772], [10.8067, 60.7719], [10.8067, 60.7719], [10.8067, 60.7719], [10.8068, 60.7718], [10.8069, 60.7718], [10.807, 60.7717], [10.8071, 60.7718], [10.8072, 60.7718], [10.8075, 60.7719], [10.8078, 60.772], [10.8079, 60.772], [10.8081, 60.772], [10.8083, 60.772], [10.8086, 60.772], [10.8087, 60.7721], [10.8088, 60.7721], [10.8091, 60.7721], [10.8094, 60.7721], [10.8095, 60.7721], [10.8097, 60.7722], [10.8099, 60.7723], [10.81, 60.7723], [10.8101, 60.7723], [10.8102, 60.7724], [10.8103, 60.7724], [10.8105, 60.7724], [10.8107, 60.7725], [10.8109, 60.7725], [10.8111, 60.7725], [10.8113, 60.7724], [10.8114, 60.7724], [10.8115, 60.7724], [10.8116, 60.7724], [10.8117, 60.7724], [10.8118, 60.7724], [10.8121, 60.7723], [10.8121, 60.7723], [10.8122, 60.7723], [10.8123, 60.7722], [10.8123, 60.7722], [10.8124, 60.7722], [10.8126, 60.7722], [10.8126, 60.7722], [10.8127, 60.7722], [10.8127, 60.7722], [10.8127, 60.7721], [10.8127, 60.7721], [10.8127, 60.7721], [10.8127, 60.7721], [10.8128, 60.772], [10.8129, 60.7721], [10.8129, 60.7721], [10.8129, 60.7721], [10.813, 60.7721], [10.8131, 60.7721], [10.8132, 60.7721], [10.8132, 60.7721], [10.8133, 60.772], [10.8133, 60.772], [10.8135, 60.7719], [10.8136, 60.7719], [10.8137, 60.7719], [10.8139, 60.7719], [10.8141, 60.7719], [10.8143, 60.7719], [10.8144, 60.772], [10.8145, 60.772], [10.8146, 60.772], [10.8147, 60.772], [10.8148, 60.772], [10.8149, 60.772], [10.8151, 60.772], [10.8152, 60.772], [10.8153, 60.772], [10.8155, 60.772], [10.8156, 60.772], [10.8158, 60.772], [10.8162, 60.772], [10.8164, 60.772], [10.8166, 60.772], [10.8167, 60.7719], [10.8169, 60.7719], [10.8171, 60.7719], [10.8173, 60.7719], [10.8174, 60.7719], [10.8174, 60.7718], [10.8174, 60.7718], [10.8175, 60.7718], [10.8176, 60.7718], [10.8176, 60.7718], [10.8177, 60.7718], [10.8177, 60.7717], [10.8177, 60.7717], [10.8178, 60.7717], [10.8178, 60.7717], [10.818, 60.7718], [10.8181, 60.7718], [10.8184, 60.7718], [10.8186, 60.7718], [10.8187, 60.7718], [10.819, 60.7718], [10.8191, 60.7718], [10.8192, 60.7718], [10.8194, 60.7718], [10.8196, 60.7718], [10.8196, 60.7718], [10.8197, 60.7718], [10.8197, 60.7718], [10.8197, 60.7718], [10.8198, 60.7718], [10.82, 60.7717], [10.8199, 60.7716], [10.8198, 60.7715], [10.8199, 60.7715], [10.82, 60.7716], [10.82, 60.7716], [10.8202, 60.7716], [10.8202, 60.7717], [10.8203, 60.7717], [10.8203, 60.7717], [10.8203, 60.7716], [10.8203, 60.7715], [10.8203, 60.7714], [10.8203, 60.7714], [10.8201, 60.7714], [10.8199, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8198, 60.7714], [10.8199, 60.7714], [10.82, 60.7714], [10.82, 60.7714], [10.8203, 60.7713], [10.8204, 60.7713], [10.8204, 60.7714], [10.8205, 60.7714], [10.8205, 60.7714], [10.8205, 60.7715], [10.8206, 60.7715], [10.8206, 60.7715], [10.8207, 60.7714], [10.8208, 60.7715], [10.8209, 60.7714], [10.821, 60.7714], [10.8213, 60.7715], [10.8214, 60.7715], [10.8215, 60.7715], [10.8216, 60.7715], [10.8217, 60.7715], [10.8219, 60.7715], [10.8222, 60.7715], [10.8224, 60.7715], [10.8227, 60.7715], [10.8228, 60.7715], [10.8229, 60.7715], [10.823, 60.7715], [10.8232, 60.7715], [10.8235, 60.7716], [10.8237, 60.7716], [10.8241, 60.7716], [10.8243, 60.7716], [10.8246, 60.7716], [10.8246, 60.7716], [10.8247, 60.7716], [10.8247, 60.7716], [10.8247, 60.7716], [10.8248, 60.7715], [10.8248, 60.7715], [10.8248, 60.7715], [10.8249, 60.7715], [10.8249, 60.7715], [10.8249, 60.7715], [10.8249, 60.7716], [10.8249, 60.7716], [10.825, 60.7716], [10.8252, 60.7717], [10.8253, 60.7717], [10.8254, 60.7717], [10.8257, 60.7717], [10.8262, 60.7716], [10.8265, 60.7715], [10.8266, 60.7714], [10.8268, 60.7714], [10.827, 60.7714], [10.8272, 60.7714], [10.8273, 60.7714], [10.8276, 60.7713], [10.8277, 60.7713], [10.8279, 60.7713], [10.828, 60.7714], [10.8283, 60.7714], [10.8284, 60.7714], [10.8285, 60.7714], [10.8287, 60.7714], [10.8289, 60.7714], [10.8292, 60.7713], [10.8294, 60.7713], [10.8296, 60.7713], [10.8298, 60.7713], [10.8301, 60.7713], [10.8304, 60.7712], [10.8304, 60.7569], [10.7904, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "55", "sub_div_center": [60.776856, 10.790419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7904, 60.7769], [10.7904, 60.7786], [10.7905, 60.7786], [10.7907, 60.7786], [10.7908, 60.7786], [10.7909, 60.7786], [10.791, 60.7786], [10.7911, 60.7786], [10.7911, 60.7785], [10.7911, 60.7785], [10.791, 60.7784], [10.791, 60.7783], [10.791, 60.7782], [10.791, 60.7782], [10.7911, 60.7782], [10.7911, 60.7782], [10.7912, 60.7782], [10.7913, 60.7782], [10.7913, 60.7782], [10.7912, 60.7782], [10.7911, 60.7782], [10.7911, 60.7783], [10.7911, 60.7783], [10.7911, 60.7783], [10.7911, 60.7783], [10.7912, 60.7786], [10.7914, 60.7786], [10.7915, 60.7786], [10.7916, 60.7787], [10.7918, 60.7786], [10.7921, 60.7786], [10.7923, 60.7786], [10.7927, 60.7785], [10.793, 60.7785], [10.7933, 60.7784], [10.7936, 60.7783], [10.7938, 60.7782], [10.7939, 60.7781], [10.7941, 60.7781], [10.7942, 60.7781], [10.7942, 60.778], [10.7943, 60.778], [10.7944, 60.778], [10.7945, 60.778], [10.7947, 60.7779], [10.7949, 60.7778], [10.7951, 60.7777], [10.7953, 60.7777], [10.7954, 60.7776], [10.7957, 60.7775], [10.7957, 60.7774], [10.7958, 60.7774], [10.796, 60.7773], [10.7962, 60.7772], [10.7963, 60.7771], [10.7964, 60.777], [10.7965, 60.7769], [10.7966, 60.7769], [10.7904, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "56", "sub_div_center": [60.736856, 10.830419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7569], [10.8704, 60.7569], [10.8704, 60.7369], [10.8341, 60.7369], [10.8341, 60.7371], [10.8341, 60.7372], [10.834, 60.7372], [10.8339, 60.7372], [10.8338, 60.7373], [10.8337, 60.7374], [10.8335, 60.7377], [10.8334, 60.738], [10.8333, 60.7382], [10.8333, 60.7387], [10.8333, 60.7388], [10.8331, 60.739], [10.8329, 60.7392], [10.8329, 60.7392], [10.8329, 60.7394], [10.8328, 60.7395], [10.8325, 60.7401], [10.8325, 60.7401], [10.8325, 60.7402], [10.8324, 60.7402], [10.8322, 60.7402], [10.8321, 60.7402], [10.8318, 60.7401], [10.8316, 60.74], [10.8315, 60.7399], [10.8315, 60.7399], [10.8312, 60.7398], [10.831, 60.7398], [10.831, 60.7398], [10.831, 60.7397], [10.8309, 60.7397], [10.8309, 60.7397], [10.8308, 60.7398], [10.8307, 60.7398], [10.8307, 60.74], [10.8307, 60.74], [10.8306, 60.7399], [10.8306, 60.7399], [10.8305, 60.7399], [10.8305, 60.7399], [10.8305, 60.74], [10.8305, 60.7401], [10.8305, 60.7401], [10.8304, 60.7401], [10.8304, 60.7401], [10.8304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "57", "sub_div_center": [60.756856, 10.830419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8304, 60.7569], [10.8304, 60.7712], [10.8305, 60.7712], [10.8308, 60.7712], [10.8312, 60.7711], [10.8314, 60.771], [10.8316, 60.771], [10.8316, 60.771], [10.8316, 60.771], [10.8317, 60.771], [10.8319, 60.771], [10.832, 60.7709], [10.8325, 60.7708], [10.833, 60.7707], [10.8336, 60.7706], [10.834, 60.7704], [10.8343, 60.7703], [10.8345, 60.7703], [10.8348, 60.7702], [10.835, 60.7701], [10.8351, 60.7701], [10.8351, 60.77], [10.8351, 60.77], [10.8352, 60.77], [10.8353, 60.77], [10.8355, 60.77], [10.8357, 60.7699], [10.836, 60.7698], [10.8361, 60.7698], [10.8363, 60.7697], [10.8364, 60.7697], [10.8364, 60.7697], [10.8365, 60.7697], [10.8366, 60.7697], [10.8366, 60.7696], [10.8367, 60.7696], [10.8369, 60.7696], [10.837, 60.7695], [10.8373, 60.7695], [10.8374, 60.7695], [10.8375, 60.7694], [10.8375, 60.7694], [10.8377, 60.7694], [10.8378, 60.7694], [10.8379, 60.7694], [10.838, 60.7694], [10.838, 60.7693], [10.838, 60.7693], [10.8381, 60.7693], [10.8381, 60.7694], [10.8381, 60.7694], [10.8382, 60.7694], [10.8383, 60.7694], [10.8383, 60.7693], [10.8383, 60.7693], [10.8384, 60.7693], [10.8384, 60.7693], [10.8385, 60.7693], [10.8386, 60.7693], [10.8388, 60.7693], [10.839, 60.7693], [10.8391, 60.7692], [10.8392, 60.7692], [10.8395, 60.7692], [10.8397, 60.7691], [10.8398, 60.7691], [10.8398, 60.769], [10.8398, 60.769], [10.8399, 60.769], [10.84, 60.7691], [10.84, 60.7691], [10.8403, 60.7691], [10.8404, 60.7691], [10.8407, 60.7691], [10.8407, 60.7691], [10.8408, 60.7691], [10.8409, 60.7691], [10.841, 60.7691], [10.8412, 60.7691], [10.8412, 60.769], [10.8412, 60.769], [10.8412, 60.769], [10.8411, 60.7689], [10.841, 60.7689], [10.8409, 60.7689], [10.8408, 60.7689], [10.8407, 60.769], [10.8407, 60.769], [10.8407, 60.7689], [10.8408, 60.7689], [10.8409, 60.7688], [10.841, 60.7688], [10.841, 60.7688], [10.8411, 60.7689], [10.8412, 60.7689], [10.8413, 60.7689], [10.8413, 60.7689], [10.8413, 60.769], [10.8413, 60.769], [10.8413, 60.7691], [10.8413, 60.7691], [10.8415, 60.7691], [10.8418, 60.7691], [10.8418, 60.7691], [10.8417, 60.769], [10.8417, 60.769], [10.8418, 60.769], [10.8419, 60.769], [10.842, 60.769], [10.8421, 60.769], [10.8422, 60.769], [10.8422, 60.769], [10.8422, 60.769], [10.8423, 60.7691], [10.8424, 60.7692], [10.8425, 60.7692], [10.8426, 60.7693], [10.8426, 60.7693], [10.8427, 60.7693], [10.8429, 60.7694], [10.8432, 60.7694], [10.8434, 60.7694], [10.8436, 60.7694], [10.8438, 60.7694], [10.844, 60.7693], [10.8442, 60.7692], [10.8444, 60.7692], [10.8444, 60.7692], [10.8445, 60.7692], [10.8445, 60.7692], [10.8445, 60.7692], [10.8446, 60.7692], [10.8448, 60.7691], [10.8449, 60.769], [10.845, 60.7689], [10.8452, 60.7688], [10.8453, 60.7688], [10.8455, 60.7688], [10.8456, 60.7687], [10.8457, 60.7687], [10.8457, 60.7687], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7686], [10.8457, 60.7685], [10.8457, 60.7685], [10.8458, 60.7685], [10.8459, 60.7685], [10.8459, 60.7685], [10.8459, 60.7686], [10.846, 60.7686], [10.846, 60.7686], [10.846, 60.7687], [10.8461, 60.7687], [10.846, 60.7684], [10.8461, 60.7684], [10.8461, 60.7687], [10.8462, 60.7687], [10.8464, 60.7687], [10.8465, 60.7687], [10.8468, 60.7687], [10.847, 60.7687], [10.8472, 60.7687], [10.8474, 60.7686], [10.8475, 60.7686], [10.8476, 60.7686], [10.8478, 60.7686], [10.8479, 60.7686], [10.848, 60.7686], [10.848, 60.7686], [10.848, 60.7685], [10.848, 60.7685], [10.8481, 60.7685], [10.8481, 60.7685], [10.8482, 60.7685], [10.8482, 60.7684], [10.8483, 60.7684], [10.8483, 60.7685], [10.8483, 60.7685], [10.8485, 60.7686], [10.8487, 60.7686], [10.8489, 60.7686], [10.8491, 60.7686], [10.8493, 60.7686], [10.8494, 60.7686], [10.8496, 60.7686], [10.8498, 60.7686], [10.8499, 60.7687], [10.8502, 60.7687], [10.8504, 60.7687], [10.8506, 60.7687], [10.851, 60.7688], [10.8513, 60.7688], [10.8515, 60.7689], [10.8518, 60.7689], [10.852, 60.7689], [10.8521, 60.7689], [10.8522, 60.7689], [10.8522, 60.7689], [10.8522, 60.7689], [10.8523, 60.769], [10.8524, 60.7689], [10.8525, 60.7689], [10.8526, 60.7689], [10.8526, 60.769], [10.8527, 60.769], [10.8528, 60.769], [10.8529, 60.7691], [10.853, 60.7691], [10.8532, 60.769], [10.8532, 60.769], [10.8532, 60.769], [10.8533, 60.7689], [10.8534, 60.7689], [10.8535, 60.769], [10.8537, 60.769], [10.8538, 60.769], [10.854, 60.7691], [10.8541, 60.7691], [10.8544, 60.7691], [10.8546, 60.7691], [10.8548, 60.7691], [10.855, 60.7691], [10.8552, 60.7691], [10.8554, 60.7692], [10.8557, 60.7691], [10.856, 60.7691], [10.8562, 60.7691], [10.8567, 60.7691], [10.8573, 60.769], [10.8574, 60.769], [10.8575, 60.769], [10.8575, 60.769], [10.8576, 60.7689], [10.8576, 60.7689], [10.8576, 60.7689], [10.8576, 60.7688], [10.8576, 60.7688], [10.8577, 60.7687], [10.8577, 60.7687], [10.8577, 60.7688], [10.8577, 60.7688], [10.8577, 60.7688], [10.8577, 60.7689], [10.8578, 60.7689], [10.8579, 60.769], [10.8583, 60.769], [10.8583, 60.769], [10.8583, 60.7689], [10.8583, 60.7688], [10.8583, 60.7688], [10.8581, 60.7688], [10.858, 60.7688], [10.858, 60.7687], [10.8581, 60.7687], [10.8582, 60.7687], [10.8583, 60.7687], [10.8584, 60.7688], [10.8584, 60.7689], [10.8586, 60.7689], [10.8588, 60.769], [10.8589, 60.769], [10.8591, 60.769], [10.8592, 60.769], [10.8594, 60.7689], [10.8595, 60.7689], [10.8598, 60.7689], [10.86, 60.7689], [10.8602, 60.7688], [10.8605, 60.7688], [10.8606, 60.7688], [10.8609, 60.7687], [10.8612, 60.7686], [10.8614, 60.7686], [10.8616, 60.7685], [10.862, 60.7685], [10.8622, 60.7686], [10.8624, 60.7686], [10.8627, 60.7686], [10.8629, 60.7687], [10.8631, 60.7688], [10.8633, 60.7688], [10.8636, 60.7688], [10.8636, 60.7688], [10.8637, 60.7689], [10.8637, 60.7689], [10.8638, 60.769], [10.8638, 60.769], [10.8639, 60.769], [10.8639, 60.769], [10.864, 60.769], [10.864, 60.769], [10.864, 60.769], [10.8639, 60.7691], [10.8639, 60.7691], [10.8642, 60.7691], [10.8643, 60.7692], [10.8644, 60.7692], [10.8645, 60.7691], [10.8646, 60.7692], [10.8646, 60.7692], [10.8645, 60.7692], [10.8646, 60.7692], [10.8648, 60.7693], [10.8648, 60.7693], [10.8648, 60.7693], [10.8648, 60.7693], [10.865, 60.7693], [10.8651, 60.7693], [10.8652, 60.7693], [10.8653, 60.7693], [10.8654, 60.7693], [10.8655, 60.7693], [10.8656, 60.7693], [10.8657, 60.7693], [10.8658, 60.7694], [10.8659, 60.7694], [10.8661, 60.7694], [10.8665, 60.7695], [10.8667, 60.7695], [10.8668, 60.7693], [10.8669, 60.7692], [10.867, 60.7693], [10.867, 60.7693], [10.867, 60.7695], [10.867, 60.7695], [10.8672, 60.7696], [10.8674, 60.7696], [10.8676, 60.7696], [10.8677, 60.7696], [10.8678, 60.7696], [10.8682, 60.7696], [10.8687, 60.7696], [10.869, 60.7696], [10.8694, 60.7695], [10.8695, 60.7695], [10.8697, 60.7695], [10.8699, 60.7695], [10.8701, 60.7695], [10.8702, 60.7695], [10.8702, 60.7695], [10.8704, 60.7694], [10.8704, 60.7569], [10.8304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "58", "sub_div_center": [60.716856, 10.834116]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7369], [10.8704, 60.7172], [10.8702, 60.7171], [10.87, 60.7171], [10.8699, 60.7171], [10.8698, 60.7171], [10.8696, 60.717], [10.8694, 60.7169], [10.8693, 60.7169], [10.8693, 60.7169], [10.8607, 60.7169], [10.8607, 60.7169], [10.8607, 60.7169], [10.8607, 60.717], [10.8607, 60.717], [10.8607, 60.7171], [10.8607, 60.7171], [10.8605, 60.7171], [10.8604, 60.7171], [10.8602, 60.7172], [10.86, 60.7173], [10.8599, 60.7173], [10.8598, 60.7173], [10.8598, 60.7173], [10.8597, 60.7173], [10.8595, 60.7174], [10.8594, 60.7174], [10.8593, 60.7176], [10.8593, 60.7176], [10.8591, 60.7178], [10.8591, 60.7178], [10.8591, 60.7179], [10.8592, 60.7179], [10.8593, 60.718], [10.8594, 60.718], [10.8594, 60.7181], [10.8597, 60.7182], [10.8603, 60.7184], [10.8605, 60.7183], [10.8606, 60.7183], [10.8605, 60.7184], [10.8604, 60.7185], [10.8602, 60.7184], [10.8597, 60.7183], [10.8594, 60.7182], [10.8593, 60.7181], [10.8592, 60.7181], [10.859, 60.7182], [10.8589, 60.7183], [10.8586, 60.7185], [10.8585, 60.7185], [10.8591, 60.7187], [10.859, 60.7187], [10.8588, 60.7187], [10.8585, 60.7186], [10.8585, 60.7186], [10.8584, 60.7186], [10.8581, 60.7188], [10.858, 60.7189], [10.8579, 60.7189], [10.8579, 60.7189], [10.8577, 60.7189], [10.8577, 60.7189], [10.8577, 60.7189], [10.8576, 60.7189], [10.8574, 60.7191], [10.8571, 60.7193], [10.8571, 60.7193], [10.8571, 60.7193], [10.8574, 60.7194], [10.858, 60.7196], [10.8582, 60.7196], [10.8583, 60.7196], [10.8584, 60.7196], [10.8585, 60.7196], [10.8587, 60.7195], [10.859, 60.7193], [10.8594, 60.7189], [10.8595, 60.7188], [10.8596, 60.7189], [10.8588, 60.7195], [10.8585, 60.7197], [10.8585, 60.7197], [10.8584, 60.7197], [10.8584, 60.7197], [10.8583, 60.7197], [10.8581, 60.7197], [10.8579, 60.7196], [10.8577, 60.7196], [10.8571, 60.7194], [10.8565, 60.7192], [10.8558, 60.719], [10.8557, 60.7189], [10.8554, 60.7188], [10.8553, 60.7188], [10.8552, 60.7187], [10.8552, 60.7187], [10.8551, 60.7188], [10.8551, 60.7188], [10.8551, 60.7189], [10.855, 60.719], [10.855, 60.7192], [10.8551, 60.7192], [10.8551, 60.7193], [10.8552, 60.7193], [10.8552, 60.7193], [10.8551, 60.7194], [10.8551, 60.7195], [10.8551, 60.7198], [10.8551, 60.7199], [10.8551, 60.7199], [10.8553, 60.72], [10.8553, 60.72], [10.8553, 60.72], [10.8552, 60.72], [10.8551, 60.72], [10.855, 60.72], [10.855, 60.72], [10.8549, 60.7201], [10.8549, 60.7202], [10.8549, 60.7203], [10.8549, 60.7203], [10.8552, 60.7203], [10.8553, 60.7204], [10.8555, 60.7204], [10.8555, 60.7203], [10.8555, 60.7203], [10.8556, 60.7203], [10.8556, 60.7203], [10.8556, 60.7204], [10.8556, 60.7204], [10.8555, 60.7205], [10.8554, 60.7205], [10.8554, 60.7205], [10.8553, 60.7204], [10.8549, 60.7204], [10.8548, 60.7204], [10.8547, 60.7204], [10.8546, 60.7204], [10.8544, 60.7205], [10.8544, 60.7206], [10.8541, 60.7206], [10.8538, 60.7207], [10.8537, 60.7208], [10.8533, 60.7208], [10.8532, 60.7209], [10.853, 60.7209], [10.853, 60.7209], [10.8529, 60.721], [10.8529, 60.721], [10.8529, 60.7212], [10.8527, 60.7213], [10.8527, 60.7213], [10.8527, 60.7214], [10.8526, 60.7215], [10.8525, 60.7216], [10.8525, 60.7218], [10.8525, 60.7218], [10.8527, 60.7219], [10.8528, 60.722], [10.8529, 60.722], [10.853, 60.7221], [10.853, 60.7221], [10.8526, 60.7219], [10.8523, 60.7218], [10.8519, 60.7216], [10.8519, 60.7216], [10.8518, 60.7216], [10.8518, 60.7217], [10.8519, 60.7217], [10.852, 60.7218], [10.8522, 60.7219], [10.8523, 60.7219], [10.8523, 60.7219], [10.8522, 60.722], [10.8522, 60.722], [10.8522, 60.722], [10.8524, 60.7221], [10.8525, 60.7221], [10.8525, 60.7221], [10.8526, 60.7221], [10.8527, 60.7221], [10.8528, 60.7222], [10.8532, 60.7224], [10.8534, 60.7225], [10.8534, 60.7226], [10.8534, 60.7227], [10.8532, 60.7228], [10.8529, 60.723], [10.8528, 60.723], [10.8528, 60.723], [10.8527, 60.723], [10.8526, 60.723], [10.8524, 60.7229], [10.8524, 60.7229], [10.8525, 60.7228], [10.8527, 60.7229], [10.8528, 60.7229], [10.8532, 60.7226], [10.8532, 60.7226], [10.8532, 60.7225], [10.853, 60.7225], [10.8528, 60.7223], [10.8527, 60.7223], [10.8525, 60.7224], [10.8522, 60.7226], [10.8521, 60.7227], [10.852, 60.7226], [10.852, 60.7226], [10.852, 60.7226], [10.8521, 60.7225], [10.8523, 60.7223], [10.8524, 60.7223], [10.8523, 60.7222], [10.8521, 60.7222], [10.8519, 60.7222], [10.8518, 60.7223], [10.8518, 60.7223], [10.8515, 60.7226], [10.8515, 60.7226], [10.8515, 60.7226], [10.8516, 60.7226], [10.8518, 60.7228], [10.852, 60.7228], [10.8521, 60.7229], [10.8522, 60.723], [10.8523, 60.723], [10.8525, 60.7231], [10.8525, 60.7231], [10.8525, 60.7232], [10.8525, 60.7232], [10.8524, 60.7232], [10.8522, 60.7232], [10.852, 60.7231], [10.8515, 60.7229], [10.8513, 60.7228], [10.8512, 60.7228], [10.8509, 60.7228], [10.8508, 60.7229], [10.8506, 60.7229], [10.8503, 60.723], [10.8501, 60.7231], [10.8501, 60.7232], [10.85, 60.7233], [10.85, 60.7233], [10.8501, 60.7234], [10.8502, 60.7234], [10.8503, 60.7235], [10.8503, 60.7236], [10.8503, 60.7237], [10.8503, 60.7237], [10.8501, 60.7237], [10.85, 60.7237], [10.8498, 60.7235], [10.8491, 60.7235], [10.8491, 60.7234], [10.849, 60.7234], [10.849, 60.7234], [10.8486, 60.7234], [10.8484, 60.7234], [10.8483, 60.7234], [10.848, 60.7234], [10.8479, 60.7234], [10.8478, 60.7234], [10.8475, 60.7235], [10.8474, 60.7235], [10.8468, 60.7239], [10.8467, 60.724], [10.8466, 60.724], [10.8464, 60.724], [10.8462, 60.7239], [10.8461, 60.7239], [10.846, 60.724], [10.8459, 60.724], [10.8456, 60.7242], [10.8453, 60.7245], [10.8453, 60.7246], [10.845, 60.7246], [10.8449, 60.7246], [10.8448, 60.7246], [10.8447, 60.7248], [10.8446, 60.7249], [10.8445, 60.7251], [10.8445, 60.7252], [10.8445, 60.7255], [10.8444, 60.7258], [10.8445, 60.7259], [10.8445, 60.726], [10.8445, 60.7261], [10.8446, 60.7262], [10.8446, 60.7262], [10.8446, 60.7263], [10.8447, 60.7265], [10.8447, 60.7266], [10.8448, 60.7266], [10.8448, 60.7266], [10.8449, 60.7267], [10.8451, 60.7267], [10.8453, 60.7268], [10.8455, 60.7268], [10.8455, 60.7269], [10.8453, 60.727], [10.8452, 60.727], [10.8452, 60.727], [10.8451, 60.727], [10.8452, 60.7269], [10.8452, 60.7268], [10.8452, 60.7268], [10.8451, 60.7268], [10.8451, 60.7267], [10.8448, 60.7267], [10.8448, 60.7268], [10.8447, 60.7268], [10.8446, 60.7269], [10.8445, 60.7269], [10.8445, 60.7269], [10.8446, 60.727], [10.8449, 60.7271], [10.8449, 60.7271], [10.8448, 60.7272], [10.8447, 60.7271], [10.8446, 60.7271], [10.8445, 60.7271], [10.8444, 60.7271], [10.8444, 60.7271], [10.8442, 60.7272], [10.8439, 60.7273], [10.8434, 60.7276], [10.8433, 60.7276], [10.8433, 60.7276], [10.8431, 60.7277], [10.8429, 60.7277], [10.8428, 60.7277], [10.8427, 60.7277], [10.842, 60.7277], [10.8417, 60.7278], [10.8416, 60.7278], [10.8414, 60.7278], [10.8414, 60.7278], [10.8413, 60.7279], [10.8412, 60.7279], [10.8411, 60.7279], [10.841, 60.728], [10.841, 60.728], [10.841, 60.728], [10.8411, 60.7281], [10.8411, 60.7282], [10.841, 60.7283], [10.841, 60.7284], [10.841, 60.7287], [10.841, 60.7289], [10.841, 60.729], [10.841, 60.7291], [10.841, 60.7291], [10.8411, 60.7291], [10.8414, 60.7292], [10.8415, 60.7292], [10.8414, 60.7292], [10.8412, 60.7292], [10.8411, 60.7292], [10.841, 60.7291], [10.8409, 60.7292], [10.8408, 60.7292], [10.8407, 60.7293], [10.8406, 60.7293], [10.8405, 60.7293], [10.8405, 60.7293], [10.8405, 60.7293], [10.8406, 60.7294], [10.8405, 60.7295], [10.8404, 60.7297], [10.8403, 60.7297], [10.8401, 60.7297], [10.8396, 60.7296], [10.8394, 60.7296], [10.8393, 60.7296], [10.8393, 60.7296], [10.8393, 60.7297], [10.8392, 60.7299], [10.8392, 60.73], [10.8392, 60.73], [10.8394, 60.7301], [10.8397, 60.7301], [10.8397, 60.7302], [10.8397, 60.7302], [10.8396, 60.7302], [10.8395, 60.7302], [10.8394, 60.7301], [10.8393, 60.7301], [10.8392, 60.7301], [10.8392, 60.7301], [10.8391, 60.7301], [10.8389, 60.7304], [10.8387, 60.7306], [10.8387, 60.7307], [10.8386, 60.7308], [10.8386, 60.7309], [10.8385, 60.731], [10.8384, 60.7311], [10.8382, 60.7314], [10.8381, 60.7315], [10.8379, 60.7318], [10.8378, 60.7319], [10.8377, 60.7321], [10.8374, 60.7326], [10.8372, 60.7329], [10.8372, 60.7329], [10.8372, 60.7329], [10.8371, 60.7331], [10.8371, 60.7332], [10.8373, 60.7332], [10.8373, 60.7332], [10.837, 60.7332], [10.8369, 60.7333], [10.8369, 60.7334], [10.8369, 60.7334], [10.837, 60.7334], [10.837, 60.7334], [10.8369, 60.7334], [10.8368, 60.7335], [10.8367, 60.7336], [10.8367, 60.7336], [10.8367, 60.7337], [10.8367, 60.7337], [10.8366, 60.7337], [10.8366, 60.7338], [10.8367, 60.7338], [10.8367, 60.7338], [10.8366, 60.7338], [10.8366, 60.7339], [10.8366, 60.7339], [10.8365, 60.7339], [10.8364, 60.734], [10.8364, 60.7341], [10.8366, 60.7341], [10.8366, 60.7341], [10.8367, 60.7342], [10.8367, 60.7344], [10.8367, 60.7345], [10.8366, 60.7346], [10.8366, 60.7347], [10.8365, 60.7346], [10.8366, 60.7344], [10.8366, 60.7344], [10.8365, 60.7344], [10.8364, 60.7345], [10.8363, 60.7345], [10.8363, 60.7345], [10.8361, 60.7346], [10.8361, 60.7346], [10.8361, 60.7347], [10.8362, 60.7347], [10.8362, 60.7347], [10.8363, 60.7347], [10.8363, 60.7347], [10.8359, 60.7346], [10.8359, 60.7347], [10.8357, 60.7348], [10.8356, 60.7351], [10.8355, 60.7352], [10.8352, 60.7356], [10.835, 60.7357], [10.8347, 60.736], [10.8347, 60.7361], [10.8345, 60.7362], [10.8344, 60.7363], [10.8344, 60.7364], [10.8343, 60.7365], [10.8343, 60.7365], [10.8341, 60.7365], [10.8341, 60.7365], [10.8342, 60.7366], [10.8343, 60.7366], [10.8342, 60.7367], [10.8342, 60.7367], [10.8341, 60.7367], [10.8341, 60.7368], [10.8341, 60.7369], [10.8704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "59", "sub_div_center": [60.714472, 10.860737]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8693, 60.7169], [10.8691, 60.7167], [10.8687, 60.7164], [10.8685, 60.7163], [10.8684, 60.7161], [10.8684, 60.716], [10.8684, 60.7159], [10.8684, 60.7157], [10.8684, 60.7157], [10.8683, 60.7156], [10.8683, 60.7156], [10.8683, 60.7155], [10.8682, 60.7154], [10.8682, 60.7153], [10.8682, 60.7153], [10.868, 60.7151], [10.8676, 60.7149], [10.8674, 60.7148], [10.8673, 60.7148], [10.8672, 60.7147], [10.867, 60.7148], [10.8669, 60.7147], [10.8668, 60.7147], [10.8668, 60.7146], [10.8668, 60.7146], [10.8667, 60.7145], [10.8666, 60.7145], [10.8663, 60.7145], [10.8661, 60.7145], [10.8658, 60.7145], [10.8658, 60.7145], [10.8656, 60.7145], [10.8655, 60.7146], [10.8654, 60.7147], [10.8653, 60.7148], [10.8651, 60.7149], [10.865, 60.7149], [10.8649, 60.715], [10.8649, 60.7151], [10.8649, 60.7151], [10.865, 60.7151], [10.865, 60.7151], [10.8649, 60.7152], [10.8649, 60.7153], [10.8648, 60.7153], [10.8648, 60.7153], [10.8647, 60.7154], [10.8646, 60.7155], [10.8645, 60.7156], [10.8644, 60.716], [10.8643, 60.7162], [10.8643, 60.7163], [10.8643, 60.7163], [10.8642, 60.7164], [10.8642, 60.7164], [10.8642, 60.7164], [10.864, 60.7164], [10.8639, 60.7163], [10.8638, 60.7163], [10.8638, 60.7163], [10.8636, 60.7163], [10.8635, 60.7163], [10.8634, 60.7164], [10.8632, 60.7164], [10.8632, 60.7164], [10.8632, 60.7162], [10.8633, 60.716], [10.8633, 60.7157], [10.8632, 60.7156], [10.8631, 60.7155], [10.863, 60.7155], [10.8628, 60.7154], [10.8626, 60.7154], [10.8625, 60.7154], [10.8623, 60.7155], [10.8623, 60.7155], [10.8622, 60.7156], [10.8622, 60.7156], [10.8621, 60.7156], [10.862, 60.7156], [10.862, 60.7156], [10.862, 60.7157], [10.8619, 60.7158], [10.8618, 60.7159], [10.8617, 60.7159], [10.8617, 60.716], [10.8617, 60.7161], [10.8616, 60.7161], [10.8614, 60.7163], [10.8613, 60.7163], [10.8613, 60.7164], [10.8613, 60.7165], [10.8612, 60.7165], [10.8611, 60.7166], [10.8609, 60.7167], [10.8608, 60.7168], [10.8607, 60.7169], [10.8693, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "60", "sub_div_center": [60.716856, 10.870419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8731, 60.7169], [10.873, 60.7169], [10.8727, 60.7169], [10.8726, 60.717], [10.8725, 60.717], [10.8726, 60.7171], [10.8725, 60.7171], [10.8725, 60.7171], [10.8725, 60.7171], [10.8724, 60.717], [10.8723, 60.717], [10.8722, 60.7171], [10.8717, 60.7171], [10.8715, 60.7171], [10.8711, 60.7172], [10.871, 60.7172], [10.8707, 60.7172], [10.8704, 60.7172], [10.8704, 60.7172], [10.8704, 60.7369], [10.9104, 60.7369], [10.9104, 60.7169], [10.8734, 60.7169], [10.8731, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "61", "sub_div_center": [60.736856, 10.870419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7369], [10.8704, 60.7569], [10.9104, 60.7569], [10.9104, 60.7369], [10.8704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "62", "sub_div_center": [60.756856, 10.870419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.7569], [10.8704, 60.7694], [10.8704, 60.7694], [10.8705, 60.7694], [10.8707, 60.7694], [10.8708, 60.7694], [10.8712, 60.7694], [10.8713, 60.7693], [10.8714, 60.7693], [10.8715, 60.7693], [10.8715, 60.7693], [10.8715, 60.7693], [10.8715, 60.7692], [10.8716, 60.7692], [10.8716, 60.7692], [10.8717, 60.7692], [10.8717, 60.7692], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.7691], [10.8718, 60.769], [10.8718, 60.769], [10.8714, 60.769], [10.8714, 60.769], [10.8713, 60.769], [10.8713, 60.769], [10.8713, 60.769], [10.8715, 60.769], [10.8717, 60.769], [10.8719, 60.7689], [10.8719, 60.769], [10.872, 60.7689], [10.8721, 60.7689], [10.8721, 60.7689], [10.8723, 60.7688], [10.8723, 60.7688], [10.8724, 60.7687], [10.8726, 60.7687], [10.8727, 60.7686], [10.8728, 60.7685], [10.8729, 60.7685], [10.873, 60.7684], [10.8731, 60.7684], [10.8732, 60.7684], [10.8738, 60.7682], [10.8738, 60.7682], [10.8739, 60.7681], [10.8739, 60.7681], [10.874, 60.7681], [10.8741, 60.7682], [10.8742, 60.7682], [10.8744, 60.7682], [10.8746, 60.7682], [10.8747, 60.7683], [10.8748, 60.7683], [10.8749, 60.7683], [10.875, 60.7684], [10.8751, 60.7684], [10.8752, 60.7685], [10.8752, 60.7685], [10.8753, 60.7685], [10.8753, 60.7686], [10.8754, 60.7687], [10.8754, 60.7687], [10.8755, 60.7688], [10.8756, 60.7689], [10.8756, 60.769], [10.8757, 60.769], [10.8758, 60.769], [10.876, 60.7692], [10.8761, 60.7693], [10.8761, 60.7693], [10.8761, 60.7693], [10.8762, 60.7693], [10.8763, 60.7694], [10.8763, 60.7693], [10.8764, 60.7693], [10.8764, 60.7693], [10.8764, 60.7693], [10.8764, 60.7692], [10.8765, 60.7692], [10.8765, 60.7691], [10.8765, 60.7691], [10.8765, 60.7691], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7692], [10.8765, 60.7693], [10.8766, 60.7693], [10.8766, 60.7692], [10.8768, 60.7692], [10.8768, 60.7692], [10.8769, 60.7692], [10.877, 60.7692], [10.8769, 60.7691], [10.8769, 60.7691], [10.877, 60.7691], [10.877, 60.7691], [10.8771, 60.7691], [10.8772, 60.769], [10.8773, 60.769], [10.8775, 60.7689], [10.8776, 60.7689], [10.8777, 60.7688], [10.878, 60.7687], [10.8781, 60.7686], [10.8781, 60.7685], [10.8781, 60.7685], [10.8781, 60.7685], [10.8781, 60.7684], [10.8782, 60.7684], [10.8782, 60.7684], [10.8782, 60.7684], [10.8784, 60.7683], [10.8785, 60.7682], [10.8786, 60.7681], [10.8787, 60.768], [10.8788, 60.7679], [10.8789, 60.7679], [10.879, 60.7678], [10.8791, 60.7677], [10.8792, 60.7677], [10.8793, 60.7676], [10.8794, 60.7676], [10.8795, 60.7675], [10.8797, 60.7675], [10.8798, 60.7675], [10.8799, 60.7675], [10.8799, 60.7675], [10.88, 60.7675], [10.8801, 60.7675], [10.8802, 60.7675], [10.8803, 60.7674], [10.8803, 60.7674], [10.8804, 60.7673], [10.8806, 60.7673], [10.8807, 60.7673], [10.8808, 60.7672], [10.8808, 60.7672], [10.881, 60.7672], [10.881, 60.7672], [10.8811, 60.7672], [10.8812, 60.7671], [10.8815, 60.767], [10.8817, 60.767], [10.8818, 60.767], [10.8818, 60.767], [10.8819, 60.7669], [10.882, 60.7669], [10.882, 60.7669], [10.8822, 60.7668], [10.8824, 60.7668], [10.8825, 60.7667], [10.8826, 60.7667], [10.8826, 60.7667], [10.8826, 60.7666], [10.8826, 60.7666], [10.8826, 60.7666], [10.8826, 60.7666], [10.8827, 60.7667], [10.8828, 60.7666], [10.8828, 60.7666], [10.8828, 60.7666], [10.8831, 60.7665], [10.8832, 60.7665], [10.8834, 60.7664], [10.8835, 60.7664], [10.8837, 60.7663], [10.8838, 60.7663], [10.8839, 60.7663], [10.8841, 60.7662], [10.8842, 60.7662], [10.8842, 60.7662], [10.8843, 60.7662], [10.8845, 60.7662], [10.8846, 60.7662], [10.8847, 60.7662], [10.8847, 60.7662], [10.8847, 60.7661], [10.8848, 60.7661], [10.8849, 60.7661], [10.885, 60.7661], [10.885, 60.766], [10.885, 60.766], [10.8851, 60.766], [10.8852, 60.766], [10.8853, 60.766], [10.8853, 60.7659], [10.8853, 60.7659], [10.8854, 60.7659], [10.8855, 60.7659], [10.8856, 60.7659], [10.8857, 60.7659], [10.8859, 60.7659], [10.8861, 60.7659], [10.8862, 60.7659], [10.8863, 60.7658], [10.8865, 60.7658], [10.8865, 60.7657], [10.8865, 60.7657], [10.8866, 60.7657], [10.8866, 60.7657], [10.8869, 60.7657], [10.8871, 60.7657], [10.8872, 60.7657], [10.8873, 60.7657], [10.8874, 60.7657], [10.8876, 60.7656], [10.8877, 60.7656], [10.8879, 60.7655], [10.888, 60.7655], [10.8881, 60.7654], [10.8881, 60.7654], [10.8882, 60.7654], [10.8882, 60.7654], [10.8884, 60.7654], [10.8884, 60.7654], [10.8885, 60.7654], [10.8886, 60.7654], [10.8888, 60.7653], [10.889, 60.7653], [10.889, 60.7653], [10.889, 60.7653], [10.8891, 60.7653], [10.8891, 60.7653], [10.8891, 60.7653], [10.8891, 60.7652], [10.8893, 60.7652], [10.8893, 60.7652], [10.8893, 60.7651], [10.8895, 60.7651], [10.8896, 60.765], [10.8898, 60.765], [10.89, 60.7649], [10.8902, 60.7649], [10.8905, 60.7648], [10.8906, 60.7648], [10.8908, 60.7649], [10.8909, 60.7649], [10.891, 60.7649], [10.891, 60.7649], [10.891, 60.765], [10.891, 60.765], [10.8911, 60.765], [10.8911, 60.765], [10.8912, 60.765], [10.8912, 60.765], [10.8914, 60.765], [10.8914, 60.7649], [10.8914, 60.7649], [10.8915, 60.7648], [10.8915, 60.7648], [10.8916, 60.7648], [10.8916, 60.7648], [10.8917, 60.7648], [10.8917, 60.7649], [10.8918, 60.7648], [10.892, 60.7648], [10.892, 60.7648], [10.8921, 60.7647], [10.8922, 60.7647], [10.8922, 60.7647], [10.8922, 60.7646], [10.8924, 60.7646], [10.8924, 60.7645], [10.8925, 60.7645], [10.8929, 60.7643], [10.8931, 60.7643], [10.8932, 60.7642], [10.8933, 60.7641], [10.8934, 60.7641], [10.8934, 60.764], [10.8937, 60.7639], [10.8939, 60.7638], [10.8939, 60.7637], [10.8941, 60.7636], [10.8943, 60.7635], [10.8944, 60.7635], [10.8944, 60.7636], [10.8945, 60.7636], [10.8946, 60.7635], [10.8947, 60.7635], [10.8948, 60.7635], [10.8948, 60.7634], [10.8948, 60.7634], [10.8949, 60.7633], [10.8948, 60.7633], [10.8948, 60.7632], [10.8948, 60.7632], [10.8948, 60.7631], [10.8948, 60.763], [10.8948, 60.763], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7629], [10.8949, 60.7628], [10.895, 60.7628], [10.8951, 60.7628], [10.8952, 60.7629], [10.8954, 60.7628], [10.8956, 60.7628], [10.8958, 60.7627], [10.8959, 60.7627], [10.8959, 60.7626], [10.896, 60.7626], [10.896, 60.7626], [10.8962, 60.7626], [10.8962, 60.7625], [10.8964, 60.7625], [10.8964, 60.7624], [10.8966, 60.7624], [10.8967, 60.7623], [10.8968, 60.7623], [10.8969, 60.7623], [10.897, 60.7622], [10.8971, 60.7623], [10.8971, 60.7622], [10.8973, 60.7622], [10.8974, 60.7622], [10.8975, 60.7622], [10.8976, 60.7621], [10.8977, 60.7622], [10.8979, 60.7621], [10.8982, 60.7621], [10.8983, 60.7621], [10.8984, 60.762], [10.8985, 60.762], [10.8987, 60.762], [10.8988, 60.762], [10.899, 60.762], [10.8991, 60.762], [10.8992, 60.762], [10.8994, 60.762], [10.8996, 60.762], [10.8999, 60.7619], [10.9001, 60.7619], [10.9006, 60.7618], [10.9011, 60.7617], [10.9011, 60.7617], [10.9011, 60.7616], [10.9014, 60.7616], [10.9016, 60.7615], [10.902, 60.7614], [10.9022, 60.7613], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7612], [10.9024, 60.7611], [10.9024, 60.7611], [10.9024, 60.7609], [10.9024, 60.7608], [10.9024, 60.7607], [10.9024, 60.7607], [10.9024, 60.7606], [10.9024, 60.7605], [10.9026, 60.7605], [10.9026, 60.7605], [10.9027, 60.7605], [10.9027, 60.7605], [10.9028, 60.7605], [10.9028, 60.7605], [10.9029, 60.7605], [10.9029, 60.7605], [10.903, 60.7605], [10.903, 60.7606], [10.9029, 60.7606], [10.9029, 60.7606], [10.9029, 60.7606], [10.9028, 60.7606], [10.9027, 60.7606], [10.9027, 60.7606], [10.9027, 60.7606], [10.9026, 60.7607], [10.9026, 60.7607], [10.9026, 60.7607], [10.9026, 60.7608], [10.9027, 60.7608], [10.9027, 60.7609], [10.9029, 60.7609], [10.903, 60.7609], [10.9032, 60.7609], [10.9033, 60.7609], [10.9034, 60.7609], [10.9036, 60.7608], [10.904, 60.7607], [10.9042, 60.7606], [10.9042, 60.7606], [10.9043, 60.7606], [10.9044, 60.7606], [10.9044, 60.7606], [10.9045, 60.7605], [10.9046, 60.7605], [10.9047, 60.7605], [10.9046, 60.7604], [10.9047, 60.7604], [10.9048, 60.7603], [10.9049, 60.7603], [10.905, 60.7603], [10.9051, 60.7602], [10.9053, 60.7602], [10.9053, 60.7601], [10.9055, 60.76], [10.9057, 60.7599], [10.9058, 60.7599], [10.9061, 60.7598], [10.9062, 60.7598], [10.9063, 60.7598], [10.9064, 60.7598], [10.9064, 60.7597], [10.9065, 60.7597], [10.9066, 60.7596], [10.9066, 60.7596], [10.9069, 60.7595], [10.9069, 60.7595], [10.9071, 60.7594], [10.9073, 60.7594], [10.9075, 60.7594], [10.9076, 60.7594], [10.9077, 60.7594], [10.9077, 60.7594], [10.9078, 60.7595], [10.9079, 60.7595], [10.908, 60.7596], [10.9082, 60.7596], [10.9082, 60.7596], [10.9085, 60.7596], [10.9087, 60.7595], [10.9089, 60.7595], [10.9091, 60.7595], [10.9095, 60.7594], [10.9098, 60.7594], [10.91, 60.7593], [10.9102, 60.7593], [10.9104, 60.7593], [10.9104, 60.7593], [10.9104, 60.7569], [10.8704, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "63", "sub_div_center": [60.876856, 10.870419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.8931], [10.8705, 60.8931], [10.8705, 60.8931], [10.8706, 60.8931], [10.8706, 60.8931], [10.8706, 60.893], [10.8707, 60.893], [10.8708, 60.8929], [10.8709, 60.8929], [10.8711, 60.8929], [10.8714, 60.8929], [10.8716, 60.8929], [10.8718, 60.8929], [10.872, 60.8929], [10.8722, 60.8929], [10.8725, 60.893], [10.8727, 60.8929], [10.8727, 60.8929], [10.8729, 60.8927], [10.873, 60.8926], [10.873, 60.8925], [10.8731, 60.8924], [10.8732, 60.8924], [10.8735, 60.8923], [10.8739, 60.8923], [10.874, 60.8923], [10.8742, 60.8923], [10.8742, 60.8923], [10.8743, 60.8923], [10.8744, 60.8923], [10.8746, 60.8924], [10.8747, 60.8925], [10.8748, 60.8925], [10.8749, 60.8925], [10.875, 60.8926], [10.8752, 60.8925], [10.8754, 60.8925], [10.8757, 60.8924], [10.876, 60.8924], [10.8761, 60.8923], [10.8762, 60.8923], [10.8767, 60.8922], [10.8771, 60.8921], [10.8776, 60.892], [10.8781, 60.8919], [10.8787, 60.8917], [10.8791, 60.8916], [10.8795, 60.8915], [10.8796, 60.8914], [10.8798, 60.8914], [10.8798, 60.8913], [10.8799, 60.8911], [10.8801, 60.891], [10.8802, 60.891], [10.8804, 60.8909], [10.8806, 60.8908], [10.8807, 60.8908], [10.8808, 60.8908], [10.8809, 60.8909], [10.8811, 60.891], [10.8811, 60.891], [10.8812, 60.891], [10.8823, 60.8906], [10.8827, 60.8904], [10.883, 60.8903], [10.8831, 60.8902], [10.8832, 60.8902], [10.8834, 60.8901], [10.8837, 60.89], [10.8838, 60.8899], [10.884, 60.8898], [10.8842, 60.8897], [10.8843, 60.8896], [10.8844, 60.8896], [10.8846, 60.8895], [10.8847, 60.8895], [10.8848, 60.8895], [10.885, 60.8894], [10.8851, 60.8893], [10.8852, 60.8893], [10.8853, 60.8892], [10.8853, 60.8892], [10.8854, 60.8891], [10.8854, 60.8891], [10.8854, 60.889], [10.8855, 60.8889], [10.8856, 60.8888], [10.8857, 60.8887], [10.8858, 60.8885], [10.8859, 60.8885], [10.8859, 60.8884], [10.8859, 60.8883], [10.886, 60.8883], [10.8862, 60.8881], [10.8862, 60.8881], [10.8862, 60.888], [10.8862, 60.888], [10.8862, 60.8879], [10.8862, 60.8878], [10.8861, 60.8878], [10.886, 60.8876], [10.8859, 60.8875], [10.8859, 60.8875], [10.8858, 60.8874], [10.8857, 60.8873], [10.8855, 60.8872], [10.8855, 60.8871], [10.8854, 60.8871], [10.8853, 60.8871], [10.8851, 60.887], [10.885, 60.887], [10.8849, 60.887], [10.8849, 60.8869], [10.8848, 60.8869], [10.8848, 60.8868], [10.8849, 60.8867], [10.8849, 60.8867], [10.8851, 60.8866], [10.8852, 60.8865], [10.8853, 60.8865], [10.8854, 60.8865], [10.8856, 60.8865], [10.8857, 60.8866], [10.8858, 60.8866], [10.8859, 60.8866], [10.8861, 60.8867], [10.8863, 60.8868], [10.8865, 60.8868], [10.8866, 60.8868], [10.8867, 60.8867], [10.8867, 60.8866], [10.8867, 60.8866], [10.8867, 60.8865], [10.8868, 60.8864], [10.8868, 60.8862], [10.8869, 60.8862], [10.887, 60.8862], [10.8871, 60.8862], [10.8872, 60.8862], [10.8873, 60.8862], [10.8874, 60.8863], [10.8875, 60.8863], [10.8877, 60.8864], [10.8879, 60.8865], [10.8882, 60.8865], [10.8883, 60.8866], [10.8885, 60.8866], [10.8886, 60.8866], [10.8888, 60.8866], [10.8889, 60.8866], [10.889, 60.8866], [10.889, 60.8866], [10.8891, 60.8865], [10.8892, 60.8865], [10.8892, 60.8864], [10.8893, 60.8863], [10.8892, 60.8863], [10.8892, 60.8863], [10.8892, 60.8862], [10.8891, 60.8861], [10.8889, 60.8861], [10.8888, 60.886], [10.8887, 60.886], [10.8886, 60.8859], [10.8886, 60.8858], [10.8885, 60.8858], [10.8885, 60.8856], [10.8885, 60.8855], [10.8885, 60.8853], [10.8885, 60.8852], [10.8886, 60.8851], [10.8886, 60.885], [10.8887, 60.885], [10.8889, 60.8849], [10.889, 60.8849], [10.889, 60.8848], [10.8891, 60.8848], [10.8893, 60.8847], [10.8895, 60.8847], [10.8896, 60.8846], [10.8897, 60.8846], [10.8898, 60.8845], [10.8899, 60.8845], [10.8901, 60.8844], [10.8902, 60.8844], [10.8904, 60.8844], [10.8905, 60.8844], [10.8906, 60.8843], [10.8909, 60.8843], [10.8911, 60.8843], [10.8914, 60.8843], [10.8917, 60.8844], [10.8919, 60.8843], [10.892, 60.8843], [10.892, 60.8843], [10.8921, 60.8843], [10.8921, 60.8843], [10.8922, 60.8843], [10.8923, 60.8843], [10.8924, 60.8843], [10.8925, 60.8842], [10.8926, 60.8842], [10.8926, 60.8841], [10.8927, 60.8841], [10.893, 60.8841], [10.8931, 60.884], [10.8933, 60.884], [10.8934, 60.884], [10.8935, 60.884], [10.8938, 60.8839], [10.8941, 60.8839], [10.8944, 60.8838], [10.8946, 60.8838], [10.8948, 60.8838], [10.895, 60.8837], [10.8952, 60.8837], [10.8953, 60.8837], [10.8957, 60.8837], [10.8958, 60.8837], [10.8959, 60.8837], [10.896, 60.8837], [10.8963, 60.8837], [10.8964, 60.8837], [10.8967, 60.8837], [10.8968, 60.8837], [10.8969, 60.8837], [10.8971, 60.8837], [10.8973, 60.8837], [10.8974, 60.8836], [10.8975, 60.8836], [10.8975, 60.8835], [10.8975, 60.8835], [10.8975, 60.8835], [10.8973, 60.8834], [10.8973, 60.8833], [10.8972, 60.8833], [10.8971, 60.8832], [10.8971, 60.8832], [10.897, 60.8831], [10.8968, 60.8831], [10.8968, 60.883], [10.8967, 60.883], [10.8966, 60.8829], [10.8966, 60.8829], [10.8966, 60.8828], [10.8966, 60.8828], [10.8967, 60.8827], [10.8969, 60.8827], [10.8971, 60.8826], [10.8972, 60.8826], [10.8973, 60.8826], [10.8974, 60.8826], [10.8975, 60.8826], [10.8976, 60.8827], [10.8978, 60.8828], [10.8979, 60.883], [10.8981, 60.8831], [10.8982, 60.8832], [10.8983, 60.8832], [10.8984, 60.8832], [10.8985, 60.8833], [10.8986, 60.8833], [10.8987, 60.8832], [10.899, 60.8832], [10.8993, 60.8831], [10.8994, 60.8831], [10.8996, 60.8831], [10.8997, 60.8831], [10.8999, 60.883], [10.9, 60.883], [10.9001, 60.883], [10.9001, 60.8829], [10.9, 60.8828], [10.8999, 60.8828], [10.8999, 60.8827], [10.8999, 60.8827], [10.8999, 60.8827], [10.9, 60.8827], [10.9001, 60.8828], [10.9002, 60.8828], [10.9003, 60.8829], [10.9004, 60.8829], [10.9005, 60.8829], [10.9005, 60.8829], [10.9005, 60.8829], [10.9007, 60.8828], [10.9008, 60.8828], [10.9009, 60.8828], [10.9011, 60.8827], [10.9013, 60.8826], [10.9015, 60.8826], [10.9017, 60.8826], [10.9019, 60.8826], [10.902, 60.8825], [10.902, 60.8825], [10.9019, 60.8824], [10.9019, 60.8823], [10.9019, 60.8823], [10.902, 60.8824], [10.9021, 60.8825], [10.9021, 60.8825], [10.9022, 60.8826], [10.9023, 60.8826], [10.9024, 60.8827], [10.9025, 60.8827], [10.9026, 60.8827], [10.9027, 60.8827], [10.9027, 60.8826], [10.9028, 60.8826], [10.9028, 60.8827], [10.9029, 60.8827], [10.903, 60.8827], [10.903, 60.8827], [10.9031, 60.8827], [10.9031, 60.8826], [10.9031, 60.8826], [10.9031, 60.8826], [10.9031, 60.8825], [10.9031, 60.8825], [10.9032, 60.8825], [10.9032, 60.8825], [10.9032, 60.8826], [10.9033, 60.8826], [10.9034, 60.8826], [10.9035, 60.8826], [10.9035, 60.8826], [10.9036, 60.8826], [10.9036, 60.8826], [10.9037, 60.8826], [10.9037, 60.8825], [10.9037, 60.8825], [10.9038, 60.8825], [10.9038, 60.8825], [10.9038, 60.8826], [10.9038, 60.8826], [10.904, 60.8826], [10.904, 60.8826], [10.904, 60.8826], [10.9041, 60.8826], [10.9041, 60.8826], [10.9042, 60.8825], [10.9044, 60.8825], [10.9048, 60.8825], [10.9051, 60.8824], [10.9054, 60.8824], [10.9056, 60.8823], [10.9058, 60.8823], [10.906, 60.8823], [10.9063, 60.8823], [10.9066, 60.8823], [10.907, 60.8824], [10.9073, 60.8824], [10.9075, 60.8825], [10.9077, 60.8825], [10.908, 60.8825], [10.9081, 60.8825], [10.9083, 60.8825], [10.9085, 60.8825], [10.9086, 60.8825], [10.9087, 60.8825], [10.9089, 60.8825], [10.909, 60.8825], [10.9091, 60.8824], [10.9092, 60.8824], [10.9093, 60.8824], [10.9093, 60.8824], [10.9093, 60.8824], [10.9095, 60.8824], [10.9095, 60.8824], [10.9097, 60.8824], [10.9097, 60.8823], [10.9097, 60.8823], [10.9097, 60.8823], [10.9098, 60.8824], [10.9099, 60.8824], [10.9099, 60.8824], [10.91, 60.8824], [10.9101, 60.8824], [10.91, 60.8823], [10.91, 60.8823], [10.91, 60.8823], [10.9101, 60.8823], [10.9101, 60.8823], [10.9102, 60.8823], [10.9104, 60.8823], [10.9104, 60.8823], [10.9104, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8977, 60.8769], [10.8979, 60.8771], [10.8979, 60.8771], [10.8979, 60.8771], [10.8979, 60.8772], [10.8979, 60.8772], [10.898, 60.8772], [10.898, 60.8772], [10.898, 60.8772], [10.8979, 60.8773], [10.8978, 60.8773], [10.8977, 60.8774], [10.8975, 60.8775], [10.8974, 60.8776], [10.8974, 60.8776], [10.8973, 60.8777], [10.8974, 60.8777], [10.8974, 60.8778], [10.8975, 60.8778], [10.8976, 60.8778], [10.8977, 60.8778], [10.8978, 60.8779], [10.898, 60.8779], [10.898, 60.8779], [10.898, 60.8779], [10.8978, 60.8779], [10.8977, 60.8779], [10.8977, 60.8779], [10.8977, 60.8779], [10.8976, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8974, 60.878], [10.8975, 60.8781], [10.8976, 60.8781], [10.8976, 60.8781], [10.8976, 60.8781], [10.8974, 60.8781], [10.8973, 60.8781], [10.8972, 60.878], [10.8972, 60.8781], [10.8971, 60.8781], [10.897, 60.8781], [10.8969, 60.8781], [10.8969, 60.8782], [10.8969, 60.8783], [10.8968, 60.8783], [10.8968, 60.8783], [10.8968, 60.8783], [10.8968, 60.8784], [10.8968, 60.8785], [10.8968, 60.8785], [10.8968, 60.8786], [10.8968, 60.8786], [10.8968, 60.8786], [10.8968, 60.8787], [10.8968, 60.8787], [10.8969, 60.8787], [10.8969, 60.8787], [10.8968, 60.8787], [10.8968, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.897, 60.8788], [10.8972, 60.8788], [10.8971, 60.8789], [10.8971, 60.8789], [10.897, 60.8789], [10.8968, 60.8789], [10.8968, 60.8789], [10.8967, 60.8789], [10.8967, 60.8789], [10.8966, 60.8788], [10.8965, 60.8789], [10.8964, 60.879], [10.8962, 60.879], [10.8962, 60.879], [10.8961, 60.879], [10.8961, 60.879], [10.8961, 60.8791], [10.8959, 60.8791], [10.8959, 60.8791], [10.8957, 60.879], [10.8957, 60.879], [10.8956, 60.8791], [10.8955, 60.8791], [10.8954, 60.8792], [10.8953, 60.8792], [10.8952, 60.8792], [10.8952, 60.8792], [10.8951, 60.8794], [10.8951, 60.8794], [10.8951, 60.8795], [10.8951, 60.8795], [10.8951, 60.8796], [10.8951, 60.8796], [10.895, 60.8796], [10.895, 60.8796], [10.8951, 60.8797], [10.8951, 60.8797], [10.8951, 60.8797], [10.8951, 60.8799], [10.895, 60.8799], [10.895, 60.8801], [10.8951, 60.8803], [10.8952, 60.8803], [10.8952, 60.8804], [10.8952, 60.8804], [10.8953, 60.8805], [10.8954, 60.8806], [10.8953, 60.8807], [10.8953, 60.8808], [10.8954, 60.8808], [10.8954, 60.8809], [10.8957, 60.8812], [10.8957, 60.8812], [10.8955, 60.8813], [10.8954, 60.8814], [10.8957, 60.8816], [10.8957, 60.8817], [10.8955, 60.8818], [10.8954, 60.8818], [10.8952, 60.8816], [10.8951, 60.8816], [10.895, 60.8815], [10.8949, 60.8814], [10.8948, 60.8813], [10.8948, 60.8813], [10.8947, 60.8812], [10.8947, 60.8812], [10.8946, 60.8812], [10.8945, 60.8812], [10.8944, 60.8812], [10.8943, 60.8812], [10.8943, 60.8812], [10.894, 60.8812], [10.8939, 60.8812], [10.8938, 60.8812], [10.8939, 60.8812], [10.8941, 60.8811], [10.8941, 60.8811], [10.8941, 60.8811], [10.8941, 60.8811], [10.894, 60.8811], [10.8938, 60.881], [10.8935, 60.881], [10.8931, 60.8809], [10.8929, 60.8809], [10.8928, 60.8808], [10.8926, 60.8808], [10.8925, 60.8808], [10.8922, 60.8809], [10.8918, 60.8809], [10.8916, 60.8809], [10.8914, 60.881], [10.8914, 60.881], [10.8913, 60.881], [10.8912, 60.881], [10.8911, 60.881], [10.8909, 60.881], [10.8909, 60.8811], [10.891, 60.8812], [10.8909, 60.8812], [10.891, 60.8813], [10.8909, 60.8813], [10.8909, 60.8812], [10.8909, 60.8812], [10.8907, 60.8811], [10.8907, 60.881], [10.8904, 60.8811], [10.8903, 60.8811], [10.8902, 60.8811], [10.89, 60.8811], [10.8898, 60.8811], [10.8897, 60.881], [10.8896, 60.8809], [10.8895, 60.8808], [10.8895, 60.8807], [10.8894, 60.8806], [10.8894, 60.8806], [10.8893, 60.8806], [10.8893, 60.8806], [10.8893, 60.8806], [10.8892, 60.8806], [10.8892, 60.8806], [10.8889, 60.8806], [10.8888, 60.8806], [10.8886, 60.8806], [10.8885, 60.8806], [10.8884, 60.8806], [10.8882, 60.8806], [10.888, 60.8806], [10.8878, 60.8805], [10.8875, 60.8805], [10.8873, 60.8804], [10.8871, 60.8804], [10.8868, 60.8803], [10.8867, 60.8803], [10.8865, 60.8803], [10.8864, 60.8803], [10.8863, 60.8803], [10.886, 60.8804], [10.8857, 60.8805], [10.8856, 60.8805], [10.8855, 60.8805], [10.8854, 60.8806], [10.8853, 60.8806], [10.885, 60.8807], [10.8849, 60.8807], [10.8848, 60.8807], [10.8847, 60.8807], [10.8846, 60.8808], [10.8845, 60.8808], [10.8843, 60.8809], [10.8842, 60.881], [10.8841, 60.8811], [10.8841, 60.8813], [10.884, 60.8814], [10.8839, 60.8814], [10.8838, 60.8815], [10.8837, 60.8815], [10.8836, 60.8815], [10.8835, 60.8815], [10.8834, 60.8815], [10.8832, 60.8815], [10.8831, 60.8815], [10.8829, 60.8815], [10.8828, 60.8815], [10.8827, 60.8816], [10.8826, 60.8816], [10.8825, 60.8817], [10.8825, 60.8817], [10.8824, 60.8817], [10.8823, 60.8818], [10.8823, 60.8818], [10.8822, 60.8818], [10.8821, 60.8818], [10.8821, 60.8819], [10.882, 60.8819], [10.8819, 60.8819], [10.8818, 60.882], [10.8818, 60.882], [10.8817, 60.8821], [10.8816, 60.8821], [10.8816, 60.8821], [10.8815, 60.8822], [10.8813, 60.8822], [10.8812, 60.8823], [10.881, 60.8823], [10.8809, 60.8824], [10.8808, 60.8824], [10.8807, 60.8825], [10.8804, 60.8825], [10.8802, 60.8826], [10.88, 60.8826], [10.8799, 60.8827], [10.8796, 60.8828], [10.8794, 60.8828], [10.8793, 60.8829], [10.8793, 60.883], [10.8793, 60.8831], [10.8793, 60.8832], [10.8792, 60.8833], [10.879, 60.8834], [10.8789, 60.8834], [10.8786, 60.8835], [10.8784, 60.8836], [10.8782, 60.8836], [10.878, 60.8836], [10.8779, 60.8836], [10.8778, 60.8837], [10.8778, 60.8838], [10.8777, 60.8838], [10.8777, 60.8839], [10.8777, 60.884], [10.8777, 60.8841], [10.8777, 60.8842], [10.8777, 60.8844], [10.8777, 60.8846], [10.8777, 60.8846], [10.8777, 60.8847], [10.8777, 60.8848], [10.8777, 60.8849], [10.8777, 60.885], [10.8776, 60.8851], [10.8775, 60.8852], [10.8773, 60.8851], [10.8771, 60.8851], [10.877, 60.8851], [10.8769, 60.885], [10.8766, 60.8849], [10.8763, 60.8849], [10.8761, 60.8849], [10.8758, 60.8849], [10.8756, 60.885], [10.8754, 60.8849], [10.8753, 60.8849], [10.8752, 60.8848], [10.8751, 60.8848], [10.8749, 60.8849], [10.8748, 60.8849], [10.8748, 60.885], [10.8746, 60.8851], [10.8746, 60.8852], [10.8746, 60.8852], [10.8747, 60.8853], [10.8746, 60.8854], [10.8746, 60.8856], [10.8746, 60.8857], [10.8745, 60.8858], [10.8743, 60.8858], [10.8741, 60.8859], [10.8739, 60.886], [10.8738, 60.8861], [10.8738, 60.8862], [10.8737, 60.8863], [10.8737, 60.8865], [10.8736, 60.8866], [10.8735, 60.8866], [10.8733, 60.8867], [10.8731, 60.8868], [10.873, 60.8868], [10.8728, 60.8868], [10.8726, 60.8868], [10.8724, 60.8869], [10.8723, 60.8869], [10.8721, 60.8869], [10.8719, 60.887], [10.8717, 60.887], [10.8715, 60.8871], [10.8712, 60.8871], [10.8709, 60.8872], [10.8707, 60.8873], [10.8704, 60.8873], [10.8704, 60.8873], [10.8704, 60.8931]]]}}, {"type": "Feature", "properties": {"sub_div_id": "64", "sub_div_center": [60.887343, 10.865211]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8704, 60.8873], [10.8702, 60.8874], [10.8701, 60.8874], [10.8699, 60.8875], [10.8697, 60.8875], [10.8694, 60.8875], [10.8693, 60.8875], [10.8691, 60.8876], [10.869, 60.8876], [10.869, 60.8876], [10.869, 60.8876], [10.8689, 60.8877], [10.8687, 60.8877], [10.8687, 60.8876], [10.8686, 60.8876], [10.8685, 60.8876], [10.8684, 60.8877], [10.8682, 60.8877], [10.868, 60.8878], [10.8678, 60.8879], [10.8676, 60.8879], [10.8673, 60.888], [10.8671, 60.8881], [10.8667, 60.8881], [10.8664, 60.8881], [10.8662, 60.8881], [10.8659, 60.8881], [10.8658, 60.8881], [10.8657, 60.8881], [10.8656, 60.8881], [10.8654, 60.8881], [10.8653, 60.8881], [10.8653, 60.8882], [10.8652, 60.8882], [10.8652, 60.8883], [10.8652, 60.8883], [10.8652, 60.8884], [10.8652, 60.8884], [10.8653, 60.8885], [10.8654, 60.8885], [10.8656, 60.8886], [10.8656, 60.8887], [10.8657, 60.8887], [10.8657, 60.8887], [10.8658, 60.8888], [10.866, 60.8889], [10.8661, 60.889], [10.8663, 60.889], [10.8665, 60.889], [10.8664, 60.889], [10.8662, 60.8891], [10.8663, 60.8891], [10.8663, 60.8891], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8667, 60.889], [10.8666, 60.8891], [10.8665, 60.8891], [10.8665, 60.8891], [10.8665, 60.8891], [10.8666, 60.8892], [10.8667, 60.8891], [10.8668, 60.8891], [10.8669, 60.8891], [10.867, 60.8891], [10.867, 60.8891], [10.8671, 60.8891], [10.8673, 60.8891], [10.8673, 60.8891], [10.8674, 60.8891], [10.8675, 60.8891], [10.8677, 60.8891], [10.8677, 60.8891], [10.8678, 60.8892], [10.8678, 60.8892], [10.8678, 60.8893], [10.8678, 60.8893], [10.8678, 60.8894], [10.8679, 60.8895], [10.8679, 60.8895], [10.8678, 60.8896], [10.8678, 60.8897], [10.8677, 60.8898], [10.8677, 60.8899], [10.8677, 60.8899], [10.8676, 60.89], [10.8675, 60.89], [10.8674, 60.8901], [10.8674, 60.8902], [10.8673, 60.8902], [10.8673, 60.8903], [10.8673, 60.8903], [10.8674, 60.8904], [10.8675, 60.8905], [10.8677, 60.8906], [10.8678, 60.8906], [10.8679, 60.8907], [10.868, 60.8907], [10.8681, 60.8907], [10.8683, 60.8907], [10.8684, 60.8907], [10.8686, 60.8908], [10.8686, 60.8908], [10.8687, 60.8907], [10.8688, 60.8907], [10.8689, 60.8908], [10.8691, 60.8908], [10.8691, 60.8909], [10.8692, 60.891], [10.8692, 60.891], [10.8693, 60.8911], [10.8693, 60.8911], [10.8692, 60.8911], [10.8691, 60.8912], [10.8691, 60.8912], [10.8691, 60.8913], [10.8691, 60.8913], [10.8691, 60.8914], [10.8691, 60.8915], [10.869, 60.8916], [10.8689, 60.8916], [10.8688, 60.8917], [10.8687, 60.8918], [10.8686, 60.8919], [10.8686, 60.892], [10.8686, 60.8921], [10.8686, 60.8922], [10.8686, 60.8923], [10.8686, 60.8925], [10.8686, 60.8925], [10.8686, 60.8926], [10.8685, 60.8927], [10.8685, 60.8928], [10.8686, 60.8928], [10.8686, 60.8929], [10.8686, 60.893], [10.8686, 60.893], [10.8686, 60.893], [10.8686, 60.8931], [10.8685, 60.8932], [10.8684, 60.8932], [10.8684, 60.8933], [10.8685, 60.8933], [10.8684, 60.8933], [10.8685, 60.8933], [10.8688, 60.8933], [10.8692, 60.8933], [10.87, 60.8933], [10.8702, 60.8932], [10.8702, 60.8932], [10.8703, 60.8932], [10.8704, 60.8931], [10.8704, 60.8931], [10.8704, 60.8873]]]}}, {"type": "Feature", "properties": {"sub_div_id": "65", "sub_div_center": [60.7028, 10.873449]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9104, 60.7028], [10.9104, 60.7028], [10.9101, 60.7029], [10.9093, 60.7031], [10.9091, 60.7031], [10.909, 60.7032], [10.9085, 60.7033], [10.9083, 60.7034], [10.9082, 60.7034], [10.9082, 60.7035], [10.9081, 60.7035], [10.908, 60.7036], [10.9076, 60.7036], [10.9073, 60.7037], [10.9072, 60.7037], [10.9062, 60.7042], [10.9057, 60.7044], [10.9055, 60.7045], [10.9049, 60.7047], [10.9045, 60.7048], [10.9036, 60.705], [10.9033, 60.7051], [10.9031, 60.7052], [10.9027, 60.7053], [10.9024, 60.7055], [10.9018, 60.7057], [10.9016, 60.7058], [10.9016, 60.7059], [10.9015, 60.7059], [10.9014, 60.7058], [10.9014, 60.7058], [10.9013, 60.7058], [10.9012, 60.7059], [10.9011, 60.7059], [10.9011, 60.706], [10.9012, 60.706], [10.9014, 60.7061], [10.9015, 60.7061], [10.9015, 60.7061], [10.9015, 60.7062], [10.9014, 60.7061], [10.9011, 60.706], [10.9011, 60.706], [10.901, 60.706], [10.901, 60.706], [10.901, 60.7061], [10.901, 60.7061], [10.9009, 60.7061], [10.9009, 60.7062], [10.9008, 60.7062], [10.9007, 60.7062], [10.9006, 60.7062], [10.9005, 60.7063], [10.9002, 60.7063], [10.9, 60.7064], [10.8997, 60.7065], [10.8995, 60.7066], [10.8993, 60.7066], [10.8992, 60.7067], [10.8987, 60.707], [10.8986, 60.707], [10.8983, 60.7073], [10.8982, 60.7073], [10.8976, 60.7075], [10.8975, 60.7076], [10.8973, 60.7077], [10.8972, 60.7078], [10.8969, 60.7079], [10.8967, 60.708], [10.8965, 60.7081], [10.8963, 60.7082], [10.8962, 60.7082], [10.8962, 60.7083], [10.8962, 60.7083], [10.896, 60.7083], [10.896, 60.7084], [10.896, 60.7084], [10.8959, 60.7084], [10.8958, 60.7084], [10.8957, 60.7084], [10.8956, 60.7084], [10.8955, 60.7085], [10.8953, 60.7086], [10.8949, 60.7088], [10.8947, 60.7089], [10.8945, 60.709], [10.8944, 60.709], [10.8942, 60.709], [10.8941, 60.709], [10.8938, 60.7091], [10.8936, 60.7092], [10.8934, 60.7093], [10.8933, 60.7094], [10.8932, 60.7094], [10.8931, 60.7095], [10.8929, 60.7096], [10.8928, 60.7097], [10.8925, 60.7098], [10.8918, 60.7102], [10.8918, 60.7102], [10.8918, 60.7103], [10.8916, 60.7104], [10.8915, 60.7105], [10.8912, 60.7106], [10.891, 60.7106], [10.8907, 60.7107], [10.8907, 60.7108], [10.8907, 60.7108], [10.8905, 60.7109], [10.89, 60.7112], [10.8899, 60.7112], [10.8897, 60.7113], [10.8891, 60.7116], [10.8888, 60.7117], [10.8885, 60.7118], [10.8884, 60.7119], [10.8883, 60.7119], [10.8883, 60.7119], [10.8883, 60.712], [10.8883, 60.7121], [10.8883, 60.7121], [10.8883, 60.7121], [10.8882, 60.7121], [10.8881, 60.712], [10.8881, 60.7119], [10.888, 60.7119], [10.8878, 60.7119], [10.8879, 60.712], [10.8879, 60.7121], [10.888, 60.7122], [10.8879, 60.7122], [10.8879, 60.7122], [10.8878, 60.7122], [10.8878, 60.7121], [10.8877, 60.712], [10.8877, 60.712], [10.8876, 60.712], [10.8875, 60.712], [10.8871, 60.712], [10.887, 60.7121], [10.887, 60.7121], [10.8868, 60.7121], [10.8867, 60.7121], [10.8868, 60.7123], [10.8867, 60.7123], [10.8867, 60.7123], [10.8866, 60.7123], [10.8866, 60.7123], [10.8865, 60.7122], [10.8865, 60.7122], [10.8859, 60.7123], [10.8859, 60.7123], [10.8856, 60.7123], [10.8854, 60.7124], [10.8851, 60.7125], [10.8848, 60.7126], [10.8847, 60.7127], [10.8845, 60.7128], [10.8844, 60.7128], [10.8843, 60.7129], [10.8841, 60.7131], [10.8839, 60.7131], [10.8837, 60.7132], [10.8833, 60.7134], [10.8829, 60.7137], [10.8824, 60.7139], [10.8822, 60.714], [10.8819, 60.7142], [10.8815, 60.7144], [10.8812, 60.7146], [10.8811, 60.7146], [10.8807, 60.7148], [10.8804, 60.715], [10.8798, 60.7152], [10.8797, 60.7152], [10.8785, 60.7156], [10.878, 60.7159], [10.8779, 60.7159], [10.8776, 60.716], [10.8775, 60.7161], [10.8772, 60.7162], [10.877, 60.7163], [10.8767, 60.7164], [10.8764, 60.7165], [10.8762, 60.7166], [10.876, 60.7166], [10.8759, 60.7167], [10.8759, 60.7167], [10.8758, 60.7168], [10.8758, 60.7169], [10.8757, 60.7168], [10.8757, 60.7166], [10.8757, 60.7166], [10.8757, 60.7166], [10.8756, 60.7166], [10.8753, 60.7166], [10.8752, 60.7166], [10.875, 60.7166], [10.8749, 60.7167], [10.8749, 60.7167], [10.8749, 60.7168], [10.8748, 60.7168], [10.8741, 60.7168], [10.8738, 60.7168], [10.8738, 60.7168], [10.8734, 60.7169], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "66", "sub_div_center": [60.869164, 10.89562]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8692], [10.9104, 60.8692], [10.9102, 60.8693], [10.91, 60.8693], [10.9099, 60.8694], [10.9097, 60.8694], [10.9096, 60.8694], [10.9095, 60.8695], [10.9093, 60.8696], [10.9092, 60.8696], [10.9091, 60.8696], [10.9091, 60.8697], [10.9091, 60.8697], [10.9091, 60.8697], [10.9088, 60.8699], [10.9088, 60.8699], [10.9088, 60.8699], [10.9087, 60.87], [10.9087, 60.87], [10.9087, 60.87], [10.9085, 60.8701], [10.9084, 60.8701], [10.9083, 60.8701], [10.9083, 60.8701], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9085, 60.8702], [10.9084, 60.8702], [10.9083, 60.8702], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.9081, 60.8703], [10.908, 60.8703], [10.9078, 60.8704], [10.9077, 60.8704], [10.9075, 60.8705], [10.9075, 60.8705], [10.9074, 60.8705], [10.9074, 60.8705], [10.9073, 60.8706], [10.9071, 60.8707], [10.907, 60.8707], [10.907, 60.8707], [10.907, 60.8707], [10.907, 60.8708], [10.907, 60.8708], [10.9069, 60.8708], [10.9069, 60.8708], [10.9069, 60.8709], [10.9069, 60.8709], [10.9069, 60.8709], [10.9068, 60.8709], [10.9068, 60.8709], [10.9067, 60.8709], [10.9066, 60.8709], [10.9064, 60.8709], [10.9061, 60.8709], [10.9059, 60.8709], [10.9058, 60.8709], [10.9057, 60.8709], [10.9056, 60.8709], [10.9054, 60.8709], [10.9052, 60.8709], [10.9049, 60.8709], [10.9048, 60.871], [10.9048, 60.871], [10.9047, 60.871], [10.9047, 60.871], [10.9047, 60.8711], [10.9047, 60.8711], [10.9048, 60.8712], [10.9047, 60.8713], [10.9046, 60.8712], [10.9045, 60.8711], [10.9044, 60.871], [10.9042, 60.8711], [10.9041, 60.8711], [10.9041, 60.8711], [10.9037, 60.8712], [10.9035, 60.8712], [10.9034, 60.8712], [10.9031, 60.8713], [10.903, 60.8713], [10.903, 60.8713], [10.9029, 60.8713], [10.9026, 60.8713], [10.9024, 60.8714], [10.9024, 60.8714], [10.9021, 60.8714], [10.9021, 60.8714], [10.902, 60.8714], [10.9019, 60.8715], [10.9016, 60.8715], [10.901, 60.8715], [10.9009, 60.8714], [10.9008, 60.8714], [10.9008, 60.8714], [10.9007, 60.8714], [10.9007, 60.8714], [10.9006, 60.8714], [10.9004, 60.8714], [10.9003, 60.8714], [10.9002, 60.8714], [10.9002, 60.8714], [10.9001, 60.8714], [10.9001, 60.8714], [10.9001, 60.8714], [10.9, 60.8714], [10.9, 60.8715], [10.9, 60.8714], [10.8999, 60.8714], [10.8999, 60.8714], [10.8999, 60.8714], [10.8997, 60.8715], [10.8996, 60.8715], [10.8994, 60.8717], [10.8992, 60.8717], [10.8992, 60.8718], [10.8992, 60.8718], [10.8991, 60.8719], [10.899, 60.8719], [10.8988, 60.872], [10.8987, 60.872], [10.8986, 60.8721], [10.8986, 60.8721], [10.8985, 60.8722], [10.8984, 60.8722], [10.8983, 60.8723], [10.8982, 60.8723], [10.898, 60.8725], [10.8979, 60.8726], [10.8978, 60.8726], [10.8978, 60.8727], [10.8978, 60.8727], [10.8978, 60.8727], [10.8978, 60.8728], [10.8978, 60.8729], [10.8978, 60.8729], [10.8978, 60.8729], [10.8978, 60.8729], [10.8977, 60.8729], [10.8977, 60.8729], [10.8977, 60.8729], [10.8976, 60.8729], [10.8976, 60.8729], [10.8975, 60.873], [10.8975, 60.873], [10.8976, 60.873], [10.8976, 60.873], [10.8977, 60.873], [10.8977, 60.873], [10.8977, 60.873], [10.8978, 60.873], [10.8979, 60.873], [10.898, 60.873], [10.898, 60.873], [10.898, 60.8731], [10.898, 60.8732], [10.898, 60.8732], [10.8979, 60.8733], [10.8978, 60.8733], [10.8977, 60.8734], [10.8977, 60.8734], [10.8976, 60.8734], [10.8976, 60.8735], [10.8974, 60.8735], [10.8973, 60.8736], [10.8972, 60.8736], [10.897, 60.8737], [10.8969, 60.8738], [10.8968, 60.8738], [10.8968, 60.8739], [10.8967, 60.874], [10.8967, 60.8741], [10.8968, 60.8742], [10.8968, 60.8742], [10.8968, 60.8743], [10.897, 60.8744], [10.8971, 60.8744], [10.8972, 60.8745], [10.8973, 60.8745], [10.8973, 60.8746], [10.897, 60.8745], [10.8969, 60.8745], [10.8969, 60.8745], [10.8967, 60.8745], [10.8966, 60.8745], [10.8966, 60.8746], [10.8965, 60.8746], [10.8965, 60.8746], [10.8964, 60.8747], [10.8963, 60.8747], [10.8963, 60.8747], [10.8962, 60.8747], [10.8961, 60.8747], [10.896, 60.8747], [10.896, 60.8748], [10.8959, 60.8748], [10.8959, 60.8749], [10.896, 60.875], [10.8961, 60.875], [10.8961, 60.8751], [10.8961, 60.8751], [10.8962, 60.8752], [10.8962, 60.8753], [10.8962, 60.8754], [10.8962, 60.8754], [10.8963, 60.8754], [10.8963, 60.8754], [10.8962, 60.8755], [10.8961, 60.8755], [10.8959, 60.8756], [10.8958, 60.8756], [10.8957, 60.8756], [10.8957, 60.8757], [10.8957, 60.8757], [10.8956, 60.8758], [10.8956, 60.8758], [10.8956, 60.8759], [10.8957, 60.876], [10.8957, 60.8761], [10.8958, 60.8761], [10.8959, 60.8762], [10.8959, 60.8762], [10.8958, 60.8763], [10.8959, 60.8763], [10.8959, 60.8762], [10.8959, 60.8763], [10.896, 60.8763], [10.896, 60.8763], [10.8961, 60.8764], [10.8962, 60.8764], [10.8963, 60.8765], [10.8963, 60.8765], [10.8963, 60.8765], [10.8964, 60.8765], [10.8965, 60.8765], [10.8965, 60.8765], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8966, 60.8764], [10.8967, 60.8764], [10.8967, 60.8764], [10.8967, 60.8764], [10.8968, 60.8764], [10.8968, 60.8764], [10.8967, 60.8763], [10.8968, 60.8763], [10.8969, 60.8762], [10.8969, 60.8762], [10.8969, 60.8762], [10.8969, 60.8762], [10.8968, 60.8761], [10.8967, 60.8761], [10.8967, 60.8761], [10.8967, 60.876], [10.8966, 60.8761], [10.8964, 60.8761], [10.8962, 60.876], [10.896, 60.876], [10.896, 60.8759], [10.8959, 60.8759], [10.8959, 60.8759], [10.8958, 60.8758], [10.8958, 60.8758], [10.8959, 60.8757], [10.896, 60.8757], [10.896, 60.8757], [10.896, 60.8756], [10.8961, 60.8756], [10.8962, 60.8756], [10.8963, 60.8756], [10.8964, 60.8756], [10.8965, 60.8756], [10.8966, 60.8756], [10.8966, 60.8756], [10.8967, 60.8756], [10.8969, 60.8756], [10.897, 60.8757], [10.8971, 60.8757], [10.8972, 60.8757], [10.8972, 60.8757], [10.8973, 60.8757], [10.8973, 60.8757], [10.8973, 60.8756], [10.8973, 60.8756], [10.8973, 60.8756], [10.8973, 60.8756], [10.8974, 60.8757], [10.8974, 60.8757], [10.8974, 60.8758], [10.8974, 60.8758], [10.8975, 60.8759], [10.8975, 60.8762], [10.8975, 60.8762], [10.8975, 60.8762], [10.8975, 60.8763], [10.8975, 60.8763], [10.8975, 60.8764], [10.8975, 60.8765], [10.8975, 60.8765], [10.8975, 60.8766], [10.8975, 60.8766], [10.8976, 60.8767], [10.8977, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "67", "sub_div_center": [60.696856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9504, 60.7169], [10.9504, 60.6969], [10.9269, 60.6969], [10.9267, 60.6969], [10.9262, 60.6971], [10.9262, 60.6972], [10.926, 60.6972], [10.9258, 60.6972], [10.9256, 60.6972], [10.9254, 60.6973], [10.9253, 60.6973], [10.9251, 60.6973], [10.9251, 60.6973], [10.9249, 60.6973], [10.9249, 60.6974], [10.9249, 60.6974], [10.925, 60.6976], [10.925, 60.6976], [10.925, 60.6976], [10.9249, 60.6976], [10.9247, 60.6974], [10.9246, 60.6974], [10.9246, 60.6974], [10.9245, 60.6975], [10.9246, 60.6975], [10.9247, 60.6976], [10.9247, 60.6977], [10.9247, 60.6977], [10.9247, 60.6977], [10.9246, 60.6977], [10.9243, 60.6975], [10.9242, 60.6975], [10.924, 60.6975], [10.9239, 60.6975], [10.9235, 60.6976], [10.9232, 60.6978], [10.9232, 60.6978], [10.9234, 60.6979], [10.9234, 60.6979], [10.9231, 60.6978], [10.923, 60.6978], [10.9229, 60.6978], [10.9228, 60.6979], [10.9227, 60.6979], [10.9227, 60.6979], [10.9228, 60.698], [10.9229, 60.6981], [10.9228, 60.6981], [10.9227, 60.6981], [10.9226, 60.698], [10.9225, 60.698], [10.9224, 60.6981], [10.9223, 60.6982], [10.9221, 60.6982], [10.922, 60.6982], [10.9219, 60.6982], [10.9219, 60.6983], [10.9218, 60.6983], [10.9218, 60.6984], [10.9217, 60.6984], [10.9216, 60.6985], [10.9214, 60.6985], [10.9212, 60.6986], [10.9208, 60.6988], [10.9206, 60.6989], [10.9204, 60.6989], [10.9204, 60.699], [10.9205, 60.699], [10.9205, 60.6991], [10.9204, 60.6991], [10.9204, 60.6991], [10.9203, 60.699], [10.9202, 60.699], [10.9201, 60.699], [10.9199, 60.6991], [10.9198, 60.6992], [10.9194, 60.6992], [10.9192, 60.6993], [10.9189, 60.6995], [10.9186, 60.6996], [10.9184, 60.6997], [10.9182, 60.6998], [10.9182, 60.6998], [10.9182, 60.7], [10.9181, 60.7], [10.9181, 60.7001], [10.918, 60.7001], [10.918, 60.7001], [10.9178, 60.7001], [10.9177, 60.7001], [10.9177, 60.7001], [10.9176, 60.7], [10.9176, 60.7], [10.9172, 60.7002], [10.9169, 60.7003], [10.9164, 60.7005], [10.916, 60.7007], [10.9158, 60.7008], [10.9156, 60.7009], [10.9153, 60.7011], [10.9149, 60.7013], [10.9144, 60.7015], [10.9141, 60.7017], [10.914, 60.7018], [10.9139, 60.7019], [10.9138, 60.702], [10.9136, 60.7023], [10.9136, 60.7023], [10.9135, 60.7023], [10.9134, 60.7024], [10.9129, 60.7024], [10.9129, 60.7025], [10.9126, 60.7025], [10.9126, 60.7026], [10.9124, 60.7026], [10.9124, 60.7025], [10.9122, 60.7025], [10.9119, 60.7026], [10.9117, 60.7026], [10.9116, 60.7026], [10.9114, 60.7026], [10.9114, 60.7026], [10.9113, 60.7026], [10.911, 60.7028], [10.911, 60.7028], [10.9109, 60.7028], [10.9108, 60.7027], [10.9106, 60.7028], [10.9105, 60.7028], [10.9104, 60.7028], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "68", "sub_div_center": [60.716856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7169], [10.9104, 60.7369], [10.9504, 60.7369], [10.9504, 60.7169], [10.9104, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "69", "sub_div_center": [60.736856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7369], [10.9104, 60.7569], [10.9504, 60.7569], [10.9504, 60.7369], [10.9104, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "70", "sub_div_center": [60.756856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.7569], [10.9104, 60.7593], [10.9106, 60.7593], [10.9109, 60.7592], [10.9111, 60.7592], [10.9113, 60.7591], [10.9114, 60.7591], [10.9117, 60.759], [10.9118, 60.759], [10.9119, 60.759], [10.9121, 60.7591], [10.9122, 60.7591], [10.9124, 60.7591], [10.9126, 60.759], [10.9129, 60.7589], [10.9131, 60.7589], [10.9134, 60.7588], [10.9137, 60.7587], [10.9139, 60.7587], [10.914, 60.7588], [10.9141, 60.7587], [10.9142, 60.7587], [10.9143, 60.7588], [10.9145, 60.7588], [10.9146, 60.7588], [10.9148, 60.7588], [10.9151, 60.7589], [10.9152, 60.7589], [10.9154, 60.7589], [10.9155, 60.7589], [10.9156, 60.759], [10.9156, 60.759], [10.9157, 60.759], [10.9157, 60.759], [10.9158, 60.759], [10.9159, 60.759], [10.916, 60.759], [10.9162, 60.7589], [10.9164, 60.7589], [10.9165, 60.7589], [10.9167, 60.7589], [10.9167, 60.7589], [10.9168, 60.7588], [10.9168, 60.7588], [10.9169, 60.7588], [10.9169, 60.7588], [10.9168, 60.7588], [10.9169, 60.7588], [10.917, 60.7587], [10.9171, 60.7587], [10.9171, 60.7587], [10.9171, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.917, 60.7588], [10.9171, 60.7588], [10.9172, 60.7588], [10.9173, 60.7588], [10.9173, 60.7588], [10.9174, 60.7587], [10.9175, 60.7588], [10.9178, 60.7588], [10.9179, 60.7588], [10.918, 60.7588], [10.9181, 60.7588], [10.9182, 60.7588], [10.9183, 60.7588], [10.9185, 60.7589], [10.9185, 60.7589], [10.9186, 60.7589], [10.9186, 60.7589], [10.9188, 60.759], [10.9188, 60.759], [10.9189, 60.759], [10.919, 60.759], [10.9191, 60.7589], [10.9191, 60.7589], [10.9191, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9192, 60.7589], [10.9191, 60.759], [10.9192, 60.7591], [10.9192, 60.7591], [10.9193, 60.7591], [10.9193, 60.7591], [10.9195, 60.759], [10.9197, 60.759], [10.9197, 60.759], [10.9198, 60.759], [10.9198, 60.7591], [10.9198, 60.7591], [10.9197, 60.7591], [10.9196, 60.7591], [10.9194, 60.7591], [10.9194, 60.7592], [10.9193, 60.7592], [10.9192, 60.7592], [10.9192, 60.7593], [10.9193, 60.7593], [10.9194, 60.7593], [10.9194, 60.7593], [10.9194, 60.7593], [10.9195, 60.7593], [10.9196, 60.7593], [10.9196, 60.7592], [10.9197, 60.7592], [10.9197, 60.7592], [10.9197, 60.7593], [10.9197, 60.7593], [10.9198, 60.7593], [10.9198, 60.7593], [10.9198, 60.7593], [10.9199, 60.7593], [10.92, 60.7593], [10.9203, 60.7593], [10.9204, 60.7593], [10.9208, 60.7594], [10.9208, 60.7594], [10.9209, 60.7594], [10.9212, 60.7595], [10.9214, 60.7595], [10.9214, 60.7596], [10.9216, 60.7596], [10.9218, 60.7596], [10.9219, 60.7596], [10.922, 60.7596], [10.9221, 60.7596], [10.9222, 60.7596], [10.9222, 60.7596], [10.9223, 60.7596], [10.9225, 60.7596], [10.9227, 60.7596], [10.9228, 60.7596], [10.9229, 60.7596], [10.923, 60.7596], [10.9231, 60.7597], [10.9233, 60.7597], [10.9235, 60.7598], [10.9237, 60.7598], [10.9238, 60.7598], [10.9241, 60.7598], [10.9241, 60.7598], [10.9242, 60.7598], [10.9243, 60.7598], [10.9244, 60.7598], [10.9244, 60.7598], [10.9244, 60.7597], [10.9245, 60.7596], [10.9245, 60.7596], [10.9245, 60.7596], [10.9245, 60.7597], [10.9245, 60.7598], [10.9245, 60.7598], [10.9245, 60.7599], [10.9245, 60.7599], [10.9246, 60.7599], [10.9247, 60.7599], [10.9247, 60.7598], [10.9247, 60.7598], [10.9248, 60.7598], [10.9249, 60.7598], [10.9249, 60.7598], [10.9251, 60.7598], [10.9252, 60.7597], [10.9254, 60.7597], [10.9255, 60.7598], [10.9259, 60.7598], [10.926, 60.7598], [10.9265, 60.7597], [10.9266, 60.7597], [10.9268, 60.7597], [10.9271, 60.7597], [10.9276, 60.7596], [10.928, 60.7597], [10.9282, 60.7597], [10.9283, 60.7597], [10.9285, 60.7597], [10.9292, 60.7598], [10.9295, 60.7598], [10.9297, 60.7598], [10.9299, 60.7598], [10.9303, 60.7599], [10.9304, 60.7599], [10.9305, 60.7599], [10.9306, 60.7599], [10.9306, 60.7599], [10.9307, 60.76], [10.9308, 60.76], [10.9308, 60.76], [10.931, 60.76], [10.9311, 60.76], [10.9312, 60.76], [10.9312, 60.76], [10.9314, 60.76], [10.9315, 60.76], [10.9316, 60.7601], [10.9318, 60.7601], [10.9324, 60.7602], [10.9326, 60.7602], [10.9329, 60.7603], [10.9332, 60.7603], [10.9337, 60.7605], [10.9339, 60.7605], [10.934, 60.7606], [10.9341, 60.7607], [10.9342, 60.7608], [10.9343, 60.7608], [10.9345, 60.7609], [10.9347, 60.761], [10.9351, 60.761], [10.9352, 60.7611], [10.9354, 60.7611], [10.9355, 60.7611], [10.9356, 60.7611], [10.9356, 60.7612], [10.9357, 60.7612], [10.9359, 60.7613], [10.9361, 60.7614], [10.9363, 60.7614], [10.9369, 60.7616], [10.9371, 60.7616], [10.9372, 60.7616], [10.9373, 60.7617], [10.9375, 60.7617], [10.9377, 60.7617], [10.9378, 60.7617], [10.9379, 60.7617], [10.9381, 60.7617], [10.9382, 60.7617], [10.9383, 60.7617], [10.9384, 60.7617], [10.9385, 60.7617], [10.9386, 60.7617], [10.9386, 60.7616], [10.9386, 60.7616], [10.9387, 60.7616], [10.9388, 60.7616], [10.939, 60.7616], [10.939, 60.7616], [10.9391, 60.7616], [10.9391, 60.7616], [10.9392, 60.7616], [10.9392, 60.7616], [10.9395, 60.7617], [10.9395, 60.7617], [10.9395, 60.7617], [10.9396, 60.7618], [10.9396, 60.7619], [10.9396, 60.7619], [10.9397, 60.7619], [10.9398, 60.7619], [10.9399, 60.7619], [10.94, 60.762], [10.9401, 60.762], [10.9403, 60.762], [10.9406, 60.762], [10.9408, 60.762], [10.9408, 60.762], [10.9409, 60.762], [10.9409, 60.762], [10.9409, 60.762], [10.9409, 60.7619], [10.9411, 60.7618], [10.9411, 60.7617], [10.9413, 60.7615], [10.9414, 60.7615], [10.9415, 60.7613], [10.9416, 60.7612], [10.9415, 60.7612], [10.9416, 60.7611], [10.9416, 60.7611], [10.9416, 60.7611], [10.9417, 60.7611], [10.9417, 60.7611], [10.9419, 60.7609], [10.9421, 60.7606], [10.9424, 60.7602], [10.9429, 60.7595], [10.9432, 60.759], [10.9433, 60.7589], [10.9434, 60.7588], [10.9433, 60.7588], [10.9434, 60.7588], [10.9434, 60.7587], [10.9435, 60.7585], [10.9435, 60.7585], [10.9436, 60.7584], [10.9436, 60.7584], [10.9437, 60.7584], [10.9438, 60.7584], [10.9439, 60.7584], [10.944, 60.7584], [10.944, 60.7584], [10.944, 60.7585], [10.944, 60.7585], [10.9439, 60.7586], [10.9439, 60.7586], [10.9438, 60.7587], [10.9436, 60.759], [10.9433, 60.7594], [10.9429, 60.7599], [10.942, 60.7612], [10.9419, 60.7614], [10.9418, 60.7614], [10.9418, 60.7614], [10.9418, 60.7615], [10.9417, 60.7615], [10.9416, 60.7617], [10.9421, 60.7617], [10.9422, 60.7617], [10.9422, 60.7616], [10.9422, 60.7616], [10.9425, 60.7616], [10.9425, 60.7617], [10.9425, 60.7618], [10.9426, 60.7618], [10.9428, 60.7618], [10.9429, 60.7619], [10.943, 60.7619], [10.9431, 60.7619], [10.9432, 60.7619], [10.9434, 60.762], [10.9435, 60.762], [10.9436, 60.762], [10.9436, 60.762], [10.9437, 60.762], [10.9437, 60.7621], [10.9438, 60.7622], [10.9439, 60.7623], [10.9439, 60.7624], [10.9439, 60.7625], [10.9439, 60.7626], [10.9439, 60.7627], [10.9439, 60.7628], [10.9439, 60.763], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7631], [10.9439, 60.7632], [10.9439, 60.7632], [10.9439, 60.7634], [10.9439, 60.7634], [10.9439, 60.7634], [10.944, 60.7634], [10.944, 60.7635], [10.9441, 60.7635], [10.9441, 60.7636], [10.9442, 60.7637], [10.9443, 60.7636], [10.9444, 60.7636], [10.9444, 60.7636], [10.9445, 60.7637], [10.9442, 60.7638], [10.9443, 60.7639], [10.9444, 60.764], [10.9445, 60.7641], [10.9446, 60.7641], [10.9447, 60.7641], [10.9448, 60.7641], [10.9449, 60.7641], [10.9449, 60.7642], [10.9449, 60.7642], [10.9449, 60.7643], [10.9449, 60.7643], [10.9449, 60.7643], [10.945, 60.7644], [10.9452, 60.7646], [10.9454, 60.7647], [10.9454, 60.7647], [10.9455, 60.7647], [10.9456, 60.7647], [10.9456, 60.7647], [10.9458, 60.7648], [10.9458, 60.7648], [10.9458, 60.7649], [10.9459, 60.7649], [10.9459, 60.7649], [10.9459, 60.7649], [10.946, 60.7649], [10.9461, 60.7649], [10.9462, 60.7649], [10.9462, 60.765], [10.9464, 60.765], [10.9465, 60.765], [10.9466, 60.7649], [10.9467, 60.7649], [10.9467, 60.7649], [10.9466, 60.765], [10.9466, 60.7651], [10.9466, 60.7651], [10.9467, 60.7651], [10.9468, 60.7651], [10.9469, 60.7652], [10.947, 60.7652], [10.9471, 60.7653], [10.9473, 60.7653], [10.9473, 60.7653], [10.9474, 60.7654], [10.9475, 60.7654], [10.9476, 60.7654], [10.9477, 60.7655], [10.9477, 60.7655], [10.9478, 60.7655], [10.948, 60.7656], [10.9482, 60.7656], [10.9484, 60.7656], [10.9486, 60.7656], [10.9486, 60.7657], [10.9487, 60.7657], [10.9488, 60.7657], [10.9489, 60.7657], [10.9489, 60.7657], [10.949, 60.7657], [10.949, 60.7657], [10.949, 60.7658], [10.9492, 60.7658], [10.9495, 60.7658], [10.9496, 60.7659], [10.9497, 60.7659], [10.9498, 60.7658], [10.9499, 60.7658], [10.9499, 60.7658], [10.95, 60.7658], [10.95, 60.7658], [10.95, 60.7658], [10.95, 60.7659], [10.9502, 60.7659], [10.9503, 60.7659], [10.9504, 60.7659], [10.9504, 60.7569], [10.9104, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "71", "sub_div_center": [60.836856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8479], [10.9105, 60.8479], [10.9105, 60.8479], [10.9106, 60.848], [10.9105, 60.8481], [10.9106, 60.8481], [10.9107, 60.8481], [10.9108, 60.8481], [10.911, 60.8482], [10.9112, 60.8483], [10.9113, 60.8484], [10.9113, 60.8485], [10.9113, 60.8485], [10.9114, 60.8485], [10.9115, 60.8485], [10.9116, 60.8486], [10.9118, 60.8487], [10.912, 60.8487], [10.9121, 60.8488], [10.9122, 60.8488], [10.9123, 60.8489], [10.9125, 60.849], [10.9125, 60.849], [10.9126, 60.8491], [10.9125, 60.8491], [10.9124, 60.8491], [10.9124, 60.8492], [10.9125, 60.8492], [10.9125, 60.8493], [10.9126, 60.8494], [10.9128, 60.8495], [10.9129, 60.8496], [10.9129, 60.8497], [10.9129, 60.8498], [10.9129, 60.8499], [10.913, 60.85], [10.913, 60.85], [10.913, 60.85], [10.9131, 60.8502], [10.9132, 60.8503], [10.9133, 60.8504], [10.9133, 60.8505], [10.9133, 60.8505], [10.9133, 60.8506], [10.9134, 60.8508], [10.9134, 60.851], [10.9135, 60.8511], [10.9136, 60.8513], [10.9137, 60.8515], [10.9138, 60.8517], [10.9139, 60.8518], [10.9139, 60.8519], [10.9138, 60.852], [10.9137, 60.852], [10.9137, 60.8521], [10.9138, 60.8522], [10.9138, 60.8524], [10.9138, 60.8524], [10.9138, 60.8525], [10.9137, 60.8526], [10.9137, 60.8527], [10.9135, 60.8528], [10.9135, 60.8529], [10.9134, 60.853], [10.9134, 60.853], [10.9134, 60.8531], [10.9133, 60.8532], [10.9133, 60.8532], [10.9133, 60.8533], [10.9133, 60.8534], [10.9133, 60.8535], [10.9133, 60.8536], [10.9132, 60.8537], [10.9131, 60.8537], [10.913, 60.8537], [10.913, 60.8537], [10.9131, 60.8537], [10.9132, 60.8537], [10.9132, 60.8538], [10.9133, 60.8538], [10.9133, 60.8539], [10.9132, 60.8539], [10.9132, 60.854], [10.9129, 60.8542], [10.9129, 60.8544], [10.9129, 60.8546], [10.9129, 60.8546], [10.9129, 60.8547], [10.913, 60.8549], [10.913, 60.855], [10.9132, 60.8552], [10.9134, 60.8554], [10.9134, 60.8555], [10.9134, 60.8555], [10.9134, 60.8557], [10.9134, 60.8558], [10.9134, 60.8558], [10.9134, 60.8559], [10.9134, 60.8559], [10.9134, 60.856], [10.9133, 60.8561], [10.9133, 60.8562], [10.9132, 60.8563], [10.9132, 60.8564], [10.9131, 60.8565], [10.9131, 60.8566], [10.9131, 60.8566], [10.9132, 60.8568], [10.9132, 60.8569], [10.9456, 60.8569], [10.9456, 60.8569], [10.9455, 60.8568], [10.9455, 60.8568], [10.9455, 60.8567], [10.9455, 60.8566], [10.9455, 60.8566], [10.9454, 60.8565], [10.9455, 60.8564], [10.9455, 60.8564], [10.9454, 60.8563], [10.9455, 60.8563], [10.9455, 60.8563], [10.9455, 60.8562], [10.9456, 60.8562], [10.9456, 60.8561], [10.9457, 60.8561], [10.9459, 60.856], [10.946, 60.856], [10.9461, 60.8559], [10.9462, 60.8559], [10.9462, 60.8559], [10.9463, 60.8559], [10.9463, 60.8559], [10.9463, 60.8559], [10.9465, 60.8558], [10.9466, 60.8558], [10.9467, 60.8557], [10.9469, 60.8557], [10.9469, 60.8557], [10.9469, 60.8557], [10.9471, 60.8556], [10.9471, 60.8556], [10.9473, 60.8556], [10.9473, 60.8556], [10.9474, 60.8556], [10.9475, 60.8556], [10.9477, 60.8556], [10.9479, 60.8555], [10.9482, 60.8555], [10.9483, 60.8555], [10.9484, 60.8554], [10.9485, 60.8554], [10.9486, 60.8554], [10.9488, 60.8553], [10.9489, 60.8552], [10.9491, 60.8551], [10.9493, 60.855], [10.9494, 60.8549], [10.9495, 60.8548], [10.9495, 60.8548], [10.9495, 60.8548], [10.9495, 60.8547], [10.9495, 60.8547], [10.9495, 60.8545], [10.9494, 60.8544], [10.9494, 60.8544], [10.9494, 60.8544], [10.9495, 60.8543], [10.9495, 60.8543], [10.9494, 60.8542], [10.9494, 60.8542], [10.9492, 60.8541], [10.9492, 60.854], [10.9491, 60.8539], [10.9491, 60.8539], [10.949, 60.8538], [10.9491, 60.8537], [10.9492, 60.8536], [10.9493, 60.8535], [10.9492, 60.8535], [10.9492, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8533], [10.9491, 60.8533], [10.9491, 60.8534], [10.9491, 60.8534], [10.9491, 60.8534], [10.9492, 60.8534], [10.9492, 60.8534], [10.9493, 60.8535], [10.9493, 60.8535], [10.9493, 60.8534], [10.9494, 60.8534], [10.9495, 60.8534], [10.9495, 60.8533], [10.9495, 60.8533], [10.9496, 60.8533], [10.9496, 60.8533], [10.9495, 60.8533], [10.9495, 60.8532], [10.9495, 60.8532], [10.9494, 60.8532], [10.9494, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9493, 60.8532], [10.9494, 60.8532], [10.9494, 60.8532], [10.9495, 60.8532], [10.9495, 60.8532], [10.9495, 60.8532], [10.9496, 60.8532], [10.9496, 60.8532], [10.9496, 60.8532], [10.9496, 60.8531], [10.9496, 60.8531], [10.9496, 60.853], [10.9497, 60.853], [10.9496, 60.8529], [10.9497, 60.8529], [10.9497, 60.8529], [10.9498, 60.8529], [10.9498, 60.8528], [10.9499, 60.8528], [10.95, 60.8528], [10.9501, 60.8528], [10.9501, 60.8527], [10.9502, 60.8528], [10.9503, 60.8528], [10.9504, 60.8527], [10.9504, 60.8527], [10.9504, 60.8369], [10.9158, 60.8369], [10.9158, 60.8369], [10.9157, 60.837], [10.9159, 60.837], [10.9159, 60.837], [10.9159, 60.837], [10.9157, 60.837], [10.9155, 60.837], [10.9155, 60.8371], [10.9154, 60.8372], [10.9153, 60.8373], [10.9153, 60.8374], [10.9151, 60.8376], [10.9149, 60.8378], [10.9143, 60.8384], [10.9143, 60.8385], [10.9142, 60.8385], [10.9142, 60.8385], [10.9142, 60.8386], [10.9141, 60.8386], [10.914, 60.8386], [10.9136, 60.8387], [10.9132, 60.8387], [10.9128, 60.8388], [10.9125, 60.8388], [10.9123, 60.839], [10.9122, 60.8391], [10.912, 60.8393], [10.9117, 60.8394], [10.9115, 60.8395], [10.9114, 60.8396], [10.9113, 60.8396], [10.9113, 60.8397], [10.9113, 60.8398], [10.9114, 60.8399], [10.9115, 60.84], [10.9115, 60.8401], [10.9115, 60.8402], [10.9114, 60.8403], [10.9114, 60.8404], [10.9114, 60.8404], [10.9115, 60.8405], [10.9116, 60.8406], [10.9117, 60.8407], [10.9117, 60.8408], [10.9117, 60.8409], [10.9118, 60.8409], [10.9118, 60.8411], [10.9118, 60.8412], [10.9118, 60.8413], [10.9119, 60.8414], [10.9119, 60.8414], [10.9119, 60.8415], [10.9119, 60.8417], [10.912, 60.8418], [10.912, 60.8419], [10.912, 60.8421], [10.9121, 60.8422], [10.912, 60.8422], [10.912, 60.8423], [10.9119, 60.8425], [10.9118, 60.8425], [10.9117, 60.8427], [10.9115, 60.8431], [10.9112, 60.8434], [10.9111, 60.8435], [10.911, 60.8437], [10.9109, 60.8437], [10.9108, 60.8438], [10.9107, 60.8439], [10.9106, 60.8441], [10.9104, 60.8443], [10.9104, 60.8479]]]}}, {"type": "Feature", "properties": {"sub_div_id": "72", "sub_div_center": [60.844305, 10.909298]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8443], [10.9104, 60.8443], [10.9103, 60.8444], [10.9102, 60.8445], [10.9102, 60.8446], [10.9101, 60.8448], [10.91, 60.8448], [10.9101, 60.8449], [10.91, 60.845], [10.91, 60.8451], [10.9098, 60.8452], [10.9098, 60.8453], [10.9098, 60.8454], [10.9097, 60.8455], [10.9097, 60.8456], [10.9096, 60.8458], [10.9096, 60.846], [10.9096, 60.8461], [10.9095, 60.8461], [10.9095, 60.8462], [10.9095, 60.8462], [10.9096, 60.8462], [10.9097, 60.8462], [10.9098, 60.8462], [10.9099, 60.8462], [10.91, 60.8462], [10.91, 60.8462], [10.9099, 60.8462], [10.9098, 60.8462], [10.9097, 60.8462], [10.9095, 60.8462], [10.9095, 60.8463], [10.9095, 60.8463], [10.9095, 60.8463], [10.9096, 60.8464], [10.9099, 60.8464], [10.91, 60.8463], [10.91, 60.8463], [10.9101, 60.8463], [10.9101, 60.8463], [10.9101, 60.8463], [10.9101, 60.8464], [10.91, 60.8464], [10.9099, 60.8464], [10.9098, 60.8464], [10.9097, 60.8465], [10.9096, 60.8465], [10.9095, 60.8465], [10.9094, 60.8467], [10.9094, 60.8469], [10.9094, 60.8469], [10.9093, 60.847], [10.9094, 60.847], [10.9095, 60.8471], [10.9095, 60.8472], [10.9095, 60.8472], [10.9093, 60.8472], [10.9093, 60.8473], [10.9094, 60.8473], [10.9095, 60.8473], [10.9096, 60.8473], [10.9098, 60.8474], [10.9098, 60.8474], [10.9098, 60.8474], [10.9097, 60.8475], [10.9096, 60.8477], [10.9097, 60.8477], [10.9098, 60.8477], [10.9099, 60.8477], [10.91, 60.8477], [10.9101, 60.8477], [10.9103, 60.8478], [10.9104, 60.8479], [10.9104, 60.8443]]]}}, {"type": "Feature", "properties": {"sub_div_id": "73", "sub_div_center": [60.856856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9256, 60.8769], [10.9264, 60.8766], [10.9266, 60.8766], [10.9269, 60.8765], [10.927, 60.8765], [10.9271, 60.8765], [10.9272, 60.8765], [10.9272, 60.8765], [10.9272, 60.8766], [10.927, 60.8766], [10.9266, 60.8767], [10.9259, 60.8769], [10.928, 60.8769], [10.9276, 60.8764], [10.9274, 60.8762], [10.9275, 60.8762], [10.9275, 60.8762], [10.9279, 60.8761], [10.9279, 60.8762], [10.9276, 60.8762], [10.9275, 60.8762], [10.9281, 60.8769], [10.9287, 60.8769], [10.929, 60.8768], [10.9295, 60.8766], [10.9299, 60.8765], [10.93, 60.8764], [10.93, 60.8764], [10.93, 60.8764], [10.93, 60.8763], [10.93, 60.8763], [10.93, 60.8763], [10.93, 60.8763], [10.9301, 60.8763], [10.9302, 60.8763], [10.9303, 60.8763], [10.9303, 60.8763], [10.9305, 60.8763], [10.9309, 60.8762], [10.9313, 60.8761], [10.9314, 60.876], [10.9315, 60.876], [10.9316, 60.876], [10.9317, 60.876], [10.9319, 60.876], [10.9321, 60.876], [10.9322, 60.8761], [10.9323, 60.8762], [10.9323, 60.8762], [10.9323, 60.8763], [10.9323, 60.8764], [10.9324, 60.8765], [10.9324, 60.8765], [10.9325, 60.8766], [10.9327, 60.8766], [10.9327, 60.8766], [10.9328, 60.8767], [10.933, 60.8767], [10.933, 60.8767], [10.9331, 60.8767], [10.9332, 60.8766], [10.9333, 60.8766], [10.9334, 60.8766], [10.9335, 60.8765], [10.9336, 60.8764], [10.9336, 60.8763], [10.9336, 60.8762], [10.9335, 60.8762], [10.9333, 60.8761], [10.9331, 60.876], [10.933, 60.876], [10.933, 60.876], [10.9328, 60.8761], [10.9328, 60.8761], [10.9328, 60.8761], [10.9328, 60.8762], [10.9327, 60.8762], [10.9326, 60.8762], [10.9326, 60.8762], [10.9326, 60.8762], [10.9325, 60.8762], [10.9324, 60.8761], [10.9323, 60.876], [10.9322, 60.8758], [10.9322, 60.8758], [10.9323, 60.8757], [10.9325, 60.8757], [10.9326, 60.8757], [10.9328, 60.8757], [10.933, 60.8757], [10.9332, 60.8758], [10.9334, 60.8758], [10.9335, 60.8758], [10.9337, 60.8758], [10.934, 60.8757], [10.9342, 60.8756], [10.9344, 60.8755], [10.9346, 60.8755], [10.9349, 60.8755], [10.9352, 60.8755], [10.9354, 60.8755], [10.9356, 60.8755], [10.9357, 60.8755], [10.9359, 60.8754], [10.936, 60.8754], [10.9363, 60.8753], [10.9366, 60.8751], [10.9368, 60.8751], [10.937, 60.875], [10.937, 60.8749], [10.937, 60.8749], [10.937, 60.8749], [10.937, 60.8748], [10.9369, 60.8747], [10.9369, 60.8747], [10.9369, 60.8747], [10.9369, 60.8746], [10.937, 60.8746], [10.937, 60.8746], [10.937, 60.8747], [10.937, 60.8747], [10.937, 60.8747], [10.9371, 60.8748], [10.9371, 60.8749], [10.9372, 60.8749], [10.9372, 60.875], [10.9373, 60.875], [10.9374, 60.875], [10.9374, 60.875], [10.9375, 60.875], [10.9376, 60.875], [10.9377, 60.875], [10.9378, 60.875], [10.9379, 60.875], [10.938, 60.875], [10.9381, 60.875], [10.9382, 60.875], [10.9383, 60.875], [10.9385, 60.8749], [10.9387, 60.8749], [10.9389, 60.8749], [10.939, 60.8749], [10.9391, 60.8749], [10.9392, 60.8748], [10.9393, 60.8748], [10.9394, 60.8747], [10.9395, 60.8747], [10.9396, 60.8746], [10.9397, 60.8746], [10.9399, 60.8745], [10.94, 60.8743], [10.9402, 60.8741], [10.9404, 60.8739], [10.9404, 60.8738], [10.9405, 60.8737], [10.9405, 60.8735], [10.9406, 60.8734], [10.9408, 60.8733], [10.941, 60.8732], [10.9413, 60.8731], [10.9415, 60.873], [10.9419, 60.8729], [10.9422, 60.8729], [10.9426, 60.8729], [10.9429, 60.8728], [10.9431, 60.8728], [10.9432, 60.8728], [10.9432, 60.8727], [10.9436, 60.8727], [10.9437, 60.8726], [10.9438, 60.8726], [10.9439, 60.8725], [10.9439, 60.8724], [10.9439, 60.8723], [10.9439, 60.8723], [10.9438, 60.8722], [10.9438, 60.8722], [10.9437, 60.8721], [10.9437, 60.8721], [10.9436, 60.8721], [10.9433, 60.8721], [10.9433, 60.8721], [10.9433, 60.8721], [10.944, 60.8721], [10.944, 60.8721], [10.9441, 60.872], [10.9441, 60.872], [10.9442, 60.8719], [10.9443, 60.8719], [10.9443, 60.8719], [10.9444, 60.8719], [10.9445, 60.8719], [10.9445, 60.8719], [10.9447, 60.8718], [10.9448, 60.8717], [10.9448, 60.8716], [10.9449, 60.8716], [10.945, 60.8715], [10.9451, 60.8714], [10.9451, 60.8713], [10.9451, 60.8712], [10.9451, 60.8712], [10.9449, 60.8712], [10.9448, 60.8712], [10.9447, 60.8711], [10.9446, 60.8711], [10.9446, 60.871], [10.9445, 60.871], [10.9445, 60.8709], [10.9444, 60.8709], [10.9444, 60.8709], [10.9444, 60.8708], [10.9444, 60.8707], [10.9444, 60.8706], [10.9444, 60.8705], [10.9445, 60.8703], [10.9446, 60.8703], [10.9447, 60.8702], [10.9448, 60.8701], [10.9449, 60.8701], [10.9449, 60.8701], [10.9449, 60.87], [10.945, 60.8699], [10.9449, 60.8698], [10.9449, 60.8698], [10.9449, 60.8698], [10.9449, 60.8696], [10.9448, 60.8694], [10.9448, 60.8692], [10.9448, 60.8691], [10.9448, 60.869], [10.9448, 60.8689], [10.9447, 60.8687], [10.9447, 60.8687], [10.9446, 60.8687], [10.9446, 60.8687], [10.9446, 60.8687], [10.9446, 60.8686], [10.9446, 60.8686], [10.9446, 60.8686], [10.9447, 60.8686], [10.9446, 60.8686], [10.9446, 60.8685], [10.9446, 60.8684], [10.9446, 60.8684], [10.9446, 60.8683], [10.9445, 60.8683], [10.9444, 60.8683], [10.9443, 60.8684], [10.9442, 60.8684], [10.9442, 60.8683], [10.9443, 60.8683], [10.9443, 60.8683], [10.9444, 60.8683], [10.9445, 60.8683], [10.9445, 60.8682], [10.9445, 60.8681], [10.9442, 60.8681], [10.9442, 60.8682], [10.9442, 60.8682], [10.9441, 60.8682], [10.9442, 60.8681], [10.9442, 60.8681], [10.9442, 60.8681], [10.9444, 60.8681], [10.9445, 60.868], [10.9444, 60.868], [10.9445, 60.868], [10.9444, 60.8678], [10.9444, 60.8677], [10.9444, 60.8677], [10.9443, 60.8676], [10.9443, 60.8676], [10.9443, 60.8676], [10.9442, 60.8676], [10.9442, 60.8675], [10.9442, 60.8675], [10.9441, 60.8675], [10.9441, 60.8675], [10.944, 60.8675], [10.9442, 60.8675], [10.9441, 60.8674], [10.944, 60.8673], [10.9439, 60.8673], [10.9438, 60.8673], [10.9438, 60.8673], [10.9434, 60.8675], [10.9433, 60.8675], [10.9435, 60.8674], [10.9437, 60.8673], [10.9437, 60.8673], [10.9437, 60.8672], [10.9435, 60.8672], [10.9434, 60.8671], [10.9432, 60.867], [10.9431, 60.8669], [10.943, 60.8668], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8667], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8666], [10.9429, 60.8665], [10.9428, 60.8664], [10.9428, 60.8664], [10.9428, 60.8663], [10.9428, 60.8663], [10.9428, 60.8663], [10.9427, 60.8663], [10.9427, 60.8662], [10.9426, 60.8662], [10.9425, 60.8662], [10.9424, 60.8662], [10.9424, 60.8662], [10.9425, 60.8662], [10.9425, 60.8662], [10.9427, 60.8662], [10.9428, 60.8662], [10.9428, 60.8662], [10.9429, 60.8661], [10.943, 60.8659], [10.9431, 60.8657], [10.9432, 60.8656], [10.9431, 60.8656], [10.9431, 60.8656], [10.9431, 60.8656], [10.9431, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8655], [10.9432, 60.8654], [10.9432, 60.8654], [10.9432, 60.8654], [10.9432, 60.8653], [10.9432, 60.8653], [10.9432, 60.8653], [10.9432, 60.8652], [10.9432, 60.8652], [10.9431, 60.8652], [10.9431, 60.8652], [10.943, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.8651], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.865], [10.9429, 60.8651], [10.9429, 60.8651], [10.943, 60.8651], [10.943, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.8651], [10.9431, 60.865], [10.9431, 60.865], [10.9432, 60.865], [10.9432, 60.865], [10.9432, 60.865], [10.9431, 60.865], [10.9431, 60.865], [10.9431, 60.865], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8649], [10.9432, 60.8648], [10.9433, 60.8647], [10.9434, 60.8647], [10.9434, 60.8647], [10.9435, 60.8647], [10.9435, 60.8647], [10.9434, 60.8646], [10.9435, 60.8646], [10.9434, 60.8646], [10.9434, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8646], [10.9436, 60.8645], [10.9437, 60.8646], [10.9437, 60.8645], [10.9438, 60.8645], [10.9438, 60.8645], [10.9438, 60.8645], [10.9438, 60.8644], [10.9438, 60.8644], [10.9438, 60.8644], [10.9439, 60.8643], [10.9439, 60.8643], [10.9438, 60.8643], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8642], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.8641], [10.9439, 60.864], [10.9438, 60.8639], [10.9438, 60.8638], [10.9438, 60.8638], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8637], [10.9438, 60.8636], [10.9437, 60.8635], [10.9437, 60.8634], [10.9437, 60.8633], [10.9436, 60.8633], [10.9436, 60.8633], [10.9435, 60.8633], [10.9435, 60.8632], [10.9435, 60.8632], [10.9434, 60.8632], [10.9434, 60.8632], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9434, 60.8631], [10.9435, 60.8631], [10.9435, 60.8631], [10.9435, 60.8632], [10.9435, 60.8632], [10.9435, 60.8632], [10.9436, 60.8632], [10.9436, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8632], [10.9437, 60.8631], [10.9438, 60.8631], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.863], [10.9438, 60.8629], [10.9437, 60.8628], [10.9437, 60.8628], [10.9436, 60.8627], [10.9436, 60.8626], [10.9436, 60.8626], [10.9436, 60.8626], [10.9437, 60.8626], [10.9437, 60.8625], [10.9437, 60.8624], [10.9437, 60.8623], [10.9437, 60.8622], [10.9437, 60.8621], [10.9437, 60.862], [10.9437, 60.862], [10.9436, 60.862], [10.9436, 60.8619], [10.9436, 60.8619], [10.9436, 60.8619], [10.9435, 60.8618], [10.9435, 60.8617], [10.9434, 60.8616], [10.9434, 60.8616], [10.9434, 60.8616], [10.9433, 60.8616], [10.9433, 60.8615], [10.9433, 60.8615], [10.9432, 60.8615], [10.9432, 60.8614], [10.9432, 60.8614], [10.9432, 60.8614], [10.9432, 60.8613], [10.9432, 60.8613], [10.9432, 60.8612], [10.9432, 60.8612], [10.9433, 60.8611], [10.9433, 60.8611], [10.9433, 60.8611], [10.9434, 60.8611], [10.9434, 60.8611], [10.9434, 60.8611], [10.9435, 60.8611], [10.9434, 60.861], [10.9435, 60.861], [10.9435, 60.861], [10.9436, 60.861], [10.9436, 60.8609], [10.9436, 60.8609], [10.9437, 60.8609], [10.9437, 60.8609], [10.9437, 60.8608], [10.9436, 60.8608], [10.9436, 60.8608], [10.9435, 60.8608], [10.9434, 60.8608], [10.9436, 60.8608], [10.9438, 60.8607], [10.9438, 60.8607], [10.9438, 60.8607], [10.9438, 60.8606], [10.9437, 60.8606], [10.9437, 60.8606], [10.9437, 60.8605], [10.9437, 60.8604], [10.9437, 60.8604], [10.9437, 60.8603], [10.9436, 60.8602], [10.9436, 60.8601], [10.9435, 60.86], [10.9435, 60.86], [10.9434, 60.8599], [10.9434, 60.8598], [10.9434, 60.8597], [10.9434, 60.8596], [10.9434, 60.8595], [10.9434, 60.8595], [10.9434, 60.8595], [10.9434, 60.8594], [10.9434, 60.8593], [10.9434, 60.8592], [10.9434, 60.8591], [10.9434, 60.8591], [10.9434, 60.8591], [10.9435, 60.8591], [10.9436, 60.8591], [10.9436, 60.8591], [10.9437, 60.8591], [10.9439, 60.8591], [10.944, 60.859], [10.9442, 60.859], [10.9443, 60.8589], [10.9443, 60.8589], [10.9444, 60.8589], [10.9444, 60.8588], [10.9445, 60.8588], [10.9445, 60.8588], [10.9445, 60.8587], [10.9445, 60.8586], [10.9445, 60.8585], [10.9445, 60.8584], [10.9445, 60.8584], [10.9446, 60.8583], [10.9446, 60.8583], [10.9447, 60.8582], [10.9448, 60.8582], [10.9448, 60.8581], [10.9449, 60.858], [10.9449, 60.858], [10.945, 60.8579], [10.945, 60.8579], [10.9451, 60.8578], [10.9452, 60.8577], [10.9452, 60.8576], [10.9452, 60.8576], [10.9452, 60.8576], [10.9453, 60.8575], [10.9453, 60.8575], [10.9454, 60.8575], [10.9454, 60.8574], [10.9455, 60.8574], [10.9456, 60.8573], [10.9457, 60.8573], [10.9458, 60.8572], [10.9458, 60.8572], [10.9458, 60.8571], [10.9458, 60.857], [10.9458, 60.857], [10.9458, 60.857], [10.9457, 60.8569], [10.9456, 60.8569], [10.9132, 60.8569], [10.9132, 60.8569], [10.9133, 60.8572], [10.9134, 60.8572], [10.9135, 60.8573], [10.9136, 60.8574], [10.9138, 60.8575], [10.9138, 60.8576], [10.9139, 60.8577], [10.9139, 60.8578], [10.9139, 60.858], [10.9139, 60.8581], [10.9139, 60.8582], [10.9139, 60.8584], [10.9139, 60.8585], [10.9139, 60.8588], [10.9138, 60.8593], [10.9139, 60.8594], [10.914, 60.8594], [10.914, 60.8594], [10.9141, 60.8595], [10.9141, 60.8595], [10.914, 60.8595], [10.9139, 60.8595], [10.9139, 60.8595], [10.9139, 60.8595], [10.914, 60.8595], [10.9141, 60.8595], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.9141, 60.8596], [10.914, 60.8596], [10.9139, 60.8596], [10.9139, 60.8596], [10.9138, 60.8596], [10.9137, 60.8596], [10.9137, 60.8597], [10.9137, 60.8597], [10.9139, 60.8597], [10.9139, 60.8597], [10.914, 60.8597], [10.914, 60.8597], [10.9141, 60.8597], [10.9141, 60.8597], [10.9141, 60.8598], [10.9141, 60.8598], [10.9137, 60.8598], [10.9137, 60.8598], [10.9137, 60.86], [10.9136, 60.86], [10.9137, 60.8601], [10.9137, 60.8602], [10.9137, 60.8602], [10.9137, 60.8602], [10.9137, 60.8603], [10.9137, 60.8604], [10.9135, 60.8605], [10.9132, 60.8606], [10.9132, 60.8607], [10.9133, 60.8607], [10.9133, 60.8608], [10.9132, 60.8608], [10.9131, 60.8607], [10.9131, 60.8607], [10.9129, 60.8608], [10.9128, 60.8609], [10.9129, 60.8609], [10.9129, 60.8609], [10.9128, 60.8609], [10.9127, 60.861], [10.9127, 60.861], [10.9127, 60.8611], [10.9126, 60.8612], [10.9125, 60.8614], [10.9125, 60.8616], [10.9124, 60.8616], [10.9125, 60.8617], [10.9125, 60.8618], [10.9124, 60.8619], [10.9124, 60.8621], [10.9122, 60.8622], [10.9121, 60.8623], [10.9121, 60.8624], [10.9121, 60.8624], [10.912, 60.8625], [10.912, 60.8626], [10.9118, 60.8627], [10.9116, 60.8628], [10.9115, 60.8629], [10.9114, 60.863], [10.9114, 60.863], [10.9114, 60.8632], [10.9113, 60.8633], [10.9113, 60.8636], [10.9113, 60.8637], [10.9113, 60.8638], [10.9112, 60.8639], [10.9112, 60.8641], [10.9112, 60.8641], [10.9112, 60.8642], [10.9112, 60.8643], [10.9112, 60.8643], [10.9112, 60.8645], [10.9112, 60.8645], [10.9112, 60.8646], [10.9114, 60.8647], [10.9116, 60.8648], [10.9118, 60.8649], [10.9119, 60.8651], [10.912, 60.8653], [10.9121, 60.8654], [10.9121, 60.8655], [10.9122, 60.8655], [10.9122, 60.8656], [10.9122, 60.8659], [10.9121, 60.8662], [10.912, 60.8664], [10.912, 60.8667], [10.912, 60.8669], [10.912, 60.8671], [10.9119, 60.8672], [10.912, 60.8674], [10.912, 60.8676], [10.912, 60.8677], [10.9121, 60.8677], [10.9121, 60.8677], [10.9121, 60.8678], [10.9121, 60.8678], [10.9121, 60.8678], [10.912, 60.8679], [10.9119, 60.8679], [10.9118, 60.8679], [10.9117, 60.8679], [10.9116, 60.868], [10.9116, 60.868], [10.9116, 60.868], [10.9116, 60.8681], [10.9116, 60.8681], [10.9116, 60.8681], [10.9117, 60.8682], [10.9118, 60.8683], [10.9118, 60.8683], [10.9118, 60.8683], [10.9117, 60.8684], [10.9117, 60.8684], [10.9117, 60.8684], [10.9117, 60.8683], [10.9117, 60.8683], [10.9115, 60.8682], [10.9114, 60.8682], [10.9113, 60.8682], [10.9113, 60.8683], [10.9113, 60.8683], [10.9112, 60.8684], [10.9111, 60.8684], [10.9111, 60.8686], [10.9109, 60.8687], [10.9108, 60.8688], [10.9106, 60.8689], [10.9106, 60.869], [10.9105, 60.8691], [10.9104, 60.8692], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "74", "sub_div_center": [60.876856, 10.910419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8823], [10.9105, 60.8823], [10.9106, 60.8822], [10.9107, 60.8823], [10.9108, 60.8823], [10.9109, 60.8823], [10.9108, 60.8824], [10.9108, 60.8825], [10.9108, 60.8826], [10.911, 60.8826], [10.9112, 60.8827], [10.9114, 60.8827], [10.9115, 60.8828], [10.9117, 60.8829], [10.9121, 60.8829], [10.9125, 60.883], [10.9125, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.8831], [10.9127, 60.8831], [10.9127, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8832], [10.9127, 60.8833], [10.9127, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9129, 60.8833], [10.9129, 60.8832], [10.913, 60.8832], [10.9131, 60.8832], [10.9132, 60.8832], [10.9132, 60.8832], [10.9134, 60.8832], [10.9134, 60.8831], [10.9135, 60.8831], [10.9135, 60.8831], [10.9134, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.8829], [10.9135, 60.8829], [10.9136, 60.8829], [10.9137, 60.8829], [10.9137, 60.8828], [10.9137, 60.8828], [10.9136, 60.8828], [10.9136, 60.8828], [10.9137, 60.8827], [10.9137, 60.8827], [10.9137, 60.8827], [10.9138, 60.8827], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9136, 60.8825], [10.9137, 60.8825], [10.9138, 60.8824], [10.9139, 60.8824], [10.9139, 60.8823], [10.9139, 60.8822], [10.914, 60.8821], [10.9141, 60.882], [10.9142, 60.8819], [10.9142, 60.8818], [10.9143, 60.8817], [10.9144, 60.8816], [10.9145, 60.8815], [10.9144, 60.8815], [10.9144, 60.8815], [10.9143, 60.8814], [10.9142, 60.8814], [10.9142, 60.8814], [10.9143, 60.8814], [10.9144, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9146, 60.8813], [10.9146, 60.8813], [10.9147, 60.8813], [10.9148, 60.8812], [10.9148, 60.8812], [10.9149, 60.8812], [10.9149, 60.8812], [10.915, 60.8812], [10.9149, 60.8811], [10.9149, 60.8811], [10.9149, 60.8811], [10.9148, 60.8811], [10.9147, 60.8811], [10.9147, 60.881], [10.9147, 60.881], [10.9148, 60.881], [10.9149, 60.881], [10.9149, 60.881], [10.915, 60.8811], [10.9151, 60.8811], [10.9152, 60.8811], [10.9153, 60.8811], [10.9155, 60.8811], [10.9156, 60.8812], [10.9157, 60.8811], [10.9157, 60.8811], [10.9156, 60.8812], [10.9156, 60.8812], [10.9158, 60.8813], [10.9159, 60.8813], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8813], [10.916, 60.8813], [10.9161, 60.8813], [10.9163, 60.8814], [10.9165, 60.8814], [10.9166, 60.8815], [10.9167, 60.8815], [10.9167, 60.8816], [10.9168, 60.8816], [10.917, 60.8817], [10.9171, 60.8819], [10.9172, 60.882], [10.9172, 60.882], [10.9171, 60.8821], [10.9171, 60.8822], [10.917, 60.8823], [10.9171, 60.8824], [10.9172, 60.8825], [10.9177, 60.8823], [10.9183, 60.8822], [10.9182, 60.882], [10.918, 60.8819], [10.9179, 60.8818], [10.9179, 60.8818], [10.9178, 60.8817], [10.9178, 60.8816], [10.9178, 60.8816], [10.9178, 60.8816], [10.918, 60.8814], [10.9182, 60.8814], [10.9185, 60.8811], [10.9186, 60.881], [10.9187, 60.8809], [10.9187, 60.8808], [10.9187, 60.8807], [10.9187, 60.8806], [10.9186, 60.8806], [10.9186, 60.8805], [10.9186, 60.8805], [10.9186, 60.8804], [10.9186, 60.8804], [10.9187, 60.8804], [10.9187, 60.8803], [10.9188, 60.8803], [10.9189, 60.8803], [10.9191, 60.8803], [10.9192, 60.8803], [10.9194, 60.8803], [10.9195, 60.8803], [10.9196, 60.8803], [10.9198, 60.8803], [10.9199, 60.8803], [10.92, 60.8803], [10.9201, 60.8803], [10.9201, 60.8802], [10.92, 60.8802], [10.9199, 60.8802], [10.9198, 60.8802], [10.9199, 60.8801], [10.9199, 60.8801], [10.92, 60.88], [10.9201, 60.88], [10.9202, 60.8799], [10.9204, 60.8798], [10.9205, 60.8797], [10.9206, 60.8796], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8794], [10.9207, 60.8794], [10.9206, 60.8793], [10.9205, 60.8793], [10.9204, 60.8793], [10.9202, 60.8792], [10.92, 60.8792], [10.9198, 60.8792], [10.9197, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.879], [10.9196, 60.879], [10.9197, 60.879], [10.9197, 60.879], [10.9198, 60.879], [10.9199, 60.879], [10.9201, 60.879], [10.9203, 60.879], [10.9205, 60.8791], [10.9207, 60.8791], [10.9207, 60.8791], [10.9208, 60.8791], [10.9208, 60.8791], [10.9209, 60.8791], [10.9209, 60.8791], [10.9212, 60.8789], [10.9213, 60.8788], [10.9213, 60.8788], [10.9213, 60.8787], [10.9213, 60.8786], [10.9213, 60.8786], [10.9214, 60.8785], [10.9214, 60.8785], [10.9213, 60.8784], [10.9213, 60.8783], [10.9212, 60.8783], [10.9211, 60.8782], [10.9209, 60.8782], [10.9206, 60.8781], [10.9204, 60.8781], [10.9203, 60.8781], [10.9203, 60.8781], [10.9202, 60.8781], [10.9201, 60.8781], [10.92, 60.8781], [10.92, 60.8782], [10.9199, 60.8782], [10.9199, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9197, 60.8782], [10.9196, 60.8782], [10.9196, 60.8781], [10.9195, 60.8781], [10.9194, 60.8781], [10.9193, 60.8781], [10.9193, 60.8781], [10.9192, 60.878], [10.9191, 60.878], [10.919, 60.878], [10.919, 60.878], [10.9188, 60.878], [10.9187, 60.878], [10.9187, 60.878], [10.9187, 60.8781], [10.9187, 60.8781], [10.9185, 60.8781], [10.9184, 60.8781], [10.9183, 60.8781], [10.9182, 60.8781], [10.9182, 60.8781], [10.9182, 60.878], [10.9183, 60.8779], [10.9185, 60.8777], [10.9186, 60.8776], [10.9188, 60.8776], [10.9189, 60.8775], [10.9191, 60.8775], [10.9193, 60.8775], [10.9195, 60.8775], [10.9199, 60.8776], [10.9201, 60.8777], [10.9202, 60.8777], [10.9203, 60.8777], [10.9203, 60.8777], [10.9204, 60.8776], [10.9205, 60.8776], [10.9205, 60.8776], [10.9205, 60.8775], [10.9206, 60.8775], [10.9207, 60.8774], [10.9208, 60.8773], [10.921, 60.8772], [10.9212, 60.8771], [10.9214, 60.8771], [10.9216, 60.877], [10.9216, 60.877], [10.9218, 60.877], [10.9219, 60.877], [10.922, 60.877], [10.9221, 60.877], [10.9221, 60.877], [10.9223, 60.877], [10.9226, 60.8771], [10.9227, 60.8771], [10.9228, 60.8771], [10.9228, 60.8772], [10.9229, 60.8772], [10.9233, 60.8774], [10.9237, 60.8775], [10.9239, 60.8775], [10.924, 60.8775], [10.9242, 60.8773], [10.9244, 60.8773], [10.9248, 60.8771], [10.9256, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "75", "sub_div_center": [60.876856, 10.910516]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9104, 60.8769], [10.9104, 60.8823], [10.9105, 60.8823], [10.9106, 60.8822], [10.9107, 60.8823], [10.9108, 60.8823], [10.9109, 60.8823], [10.9108, 60.8824], [10.9108, 60.8825], [10.9108, 60.8826], [10.911, 60.8826], [10.9112, 60.8827], [10.9114, 60.8827], [10.9115, 60.8828], [10.9117, 60.8829], [10.9121, 60.8829], [10.9125, 60.883], [10.9125, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9126, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.883], [10.9127, 60.8831], [10.9127, 60.8831], [10.9127, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8831], [10.9128, 60.8832], [10.9127, 60.8833], [10.9127, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9128, 60.8833], [10.9129, 60.8833], [10.9129, 60.8832], [10.913, 60.8832], [10.9131, 60.8832], [10.9132, 60.8832], [10.9132, 60.8832], [10.9134, 60.8832], [10.9134, 60.8831], [10.9135, 60.8831], [10.9135, 60.8831], [10.9134, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.883], [10.9135, 60.8829], [10.9135, 60.8829], [10.9136, 60.8829], [10.9137, 60.8829], [10.9137, 60.8828], [10.9137, 60.8828], [10.9136, 60.8828], [10.9136, 60.8828], [10.9137, 60.8827], [10.9137, 60.8827], [10.9137, 60.8827], [10.9138, 60.8827], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9137, 60.8826], [10.9136, 60.8825], [10.9137, 60.8825], [10.9138, 60.8824], [10.9139, 60.8824], [10.9139, 60.8823], [10.9139, 60.8822], [10.914, 60.8821], [10.9141, 60.882], [10.9142, 60.8819], [10.9142, 60.8818], [10.9143, 60.8817], [10.9144, 60.8816], [10.9145, 60.8815], [10.9144, 60.8815], [10.9144, 60.8815], [10.9143, 60.8814], [10.9142, 60.8814], [10.9142, 60.8814], [10.9143, 60.8814], [10.9144, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9145, 60.8814], [10.9146, 60.8813], [10.9146, 60.8813], [10.9147, 60.8813], [10.9148, 60.8812], [10.9148, 60.8812], [10.9149, 60.8812], [10.9149, 60.8812], [10.915, 60.8812], [10.9149, 60.8811], [10.9149, 60.8811], [10.9149, 60.8811], [10.9148, 60.8811], [10.9147, 60.8811], [10.9147, 60.881], [10.9147, 60.881], [10.9148, 60.881], [10.9149, 60.881], [10.9149, 60.881], [10.915, 60.8811], [10.9151, 60.8811], [10.9152, 60.8811], [10.9153, 60.8811], [10.9155, 60.8811], [10.9156, 60.8812], [10.9157, 60.8811], [10.9157, 60.8811], [10.9156, 60.8812], [10.9156, 60.8812], [10.9158, 60.8813], [10.9159, 60.8813], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8812], [10.916, 60.8813], [10.916, 60.8813], [10.9161, 60.8813], [10.9163, 60.8814], [10.9165, 60.8814], [10.9166, 60.8815], [10.9167, 60.8815], [10.9167, 60.8816], [10.9168, 60.8816], [10.917, 60.8817], [10.9171, 60.8819], [10.9172, 60.882], [10.9172, 60.882], [10.9171, 60.8821], [10.9171, 60.8822], [10.917, 60.8823], [10.9171, 60.8824], [10.9172, 60.8825], [10.9177, 60.8823], [10.9183, 60.8822], [10.9182, 60.882], [10.918, 60.8819], [10.9179, 60.8818], [10.9179, 60.8818], [10.9178, 60.8817], [10.9178, 60.8816], [10.9178, 60.8816], [10.9178, 60.8816], [10.918, 60.8814], [10.9182, 60.8814], [10.9185, 60.8811], [10.9186, 60.881], [10.9187, 60.8809], [10.9187, 60.8808], [10.9187, 60.8807], [10.9187, 60.8806], [10.9186, 60.8806], [10.9186, 60.8805], [10.9186, 60.8805], [10.9186, 60.8804], [10.9186, 60.8804], [10.9187, 60.8804], [10.9187, 60.8803], [10.9188, 60.8803], [10.9189, 60.8803], [10.9191, 60.8803], [10.9192, 60.8803], [10.9194, 60.8803], [10.9195, 60.8803], [10.9196, 60.8803], [10.9198, 60.8803], [10.9199, 60.8803], [10.92, 60.8803], [10.9201, 60.8803], [10.9201, 60.8802], [10.92, 60.8802], [10.9199, 60.8802], [10.9198, 60.8802], [10.9199, 60.8801], [10.9199, 60.8801], [10.92, 60.88], [10.9201, 60.88], [10.9202, 60.8799], [10.9204, 60.8798], [10.9205, 60.8797], [10.9206, 60.8796], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8795], [10.9207, 60.8794], [10.9207, 60.8794], [10.9206, 60.8793], [10.9205, 60.8793], [10.9204, 60.8793], [10.9202, 60.8792], [10.92, 60.8792], [10.9198, 60.8792], [10.9197, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.8791], [10.9196, 60.879], [10.9196, 60.879], [10.9197, 60.879], [10.9197, 60.879], [10.9198, 60.879], [10.9199, 60.879], [10.9201, 60.879], [10.9203, 60.879], [10.9205, 60.8791], [10.9207, 60.8791], [10.9207, 60.8791], [10.9208, 60.8791], [10.9208, 60.8791], [10.9209, 60.8791], [10.9209, 60.8791], [10.9212, 60.8789], [10.9213, 60.8788], [10.9213, 60.8788], [10.9213, 60.8787], [10.9213, 60.8786], [10.9213, 60.8786], [10.9214, 60.8785], [10.9214, 60.8785], [10.9213, 60.8784], [10.9213, 60.8783], [10.9212, 60.8783], [10.9211, 60.8782], [10.9209, 60.8782], [10.9206, 60.8781], [10.9204, 60.8781], [10.9203, 60.8781], [10.9203, 60.8781], [10.9202, 60.8781], [10.9201, 60.8781], [10.92, 60.8781], [10.92, 60.8782], [10.9199, 60.8782], [10.9199, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9198, 60.8782], [10.9197, 60.8782], [10.9196, 60.8782], [10.9196, 60.8781], [10.9195, 60.8781], [10.9194, 60.8781], [10.9193, 60.8781], [10.9193, 60.8781], [10.9192, 60.878], [10.9191, 60.878], [10.919, 60.878], [10.919, 60.878], [10.9188, 60.878], [10.9187, 60.878], [10.9187, 60.878], [10.9187, 60.8781], [10.9187, 60.8781], [10.9185, 60.8781], [10.9184, 60.8781], [10.9183, 60.8781], [10.9182, 60.8781], [10.9182, 60.8781], [10.9182, 60.878], [10.9183, 60.8779], [10.9185, 60.8777], [10.9186, 60.8776], [10.9188, 60.8776], [10.9189, 60.8775], [10.9191, 60.8775], [10.9193, 60.8775], [10.9195, 60.8775], [10.9199, 60.8776], [10.9201, 60.8777], [10.9202, 60.8777], [10.9203, 60.8777], [10.9203, 60.8777], [10.9204, 60.8776], [10.9205, 60.8776], [10.9205, 60.8776], [10.9205, 60.8775], [10.9206, 60.8775], [10.9207, 60.8774], [10.9208, 60.8773], [10.921, 60.8772], [10.9212, 60.8771], [10.9214, 60.8771], [10.9216, 60.877], [10.9216, 60.877], [10.9218, 60.877], [10.9219, 60.877], [10.922, 60.877], [10.9221, 60.877], [10.9221, 60.877], [10.9223, 60.877], [10.9226, 60.8771], [10.9227, 60.8771], [10.9228, 60.8771], [10.9228, 60.8772], [10.9229, 60.8772], [10.9233, 60.8774], [10.9237, 60.8775], [10.9239, 60.8775], [10.924, 60.8775], [10.9242, 60.8773], [10.9244, 60.8773], [10.9248, 60.8771], [10.9256, 60.8769], [10.9104, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "76", "sub_div_center": [60.819977, 10.915842]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9504, 60.82], [10.9501, 60.8201], [10.9499, 60.8201], [10.9499, 60.8202], [10.9498, 60.8202], [10.9497, 60.8203], [10.9498, 60.8203], [10.9498, 60.8204], [10.9498, 60.8204], [10.9498, 60.8204], [10.9495, 60.8203], [10.9494, 60.8204], [10.9494, 60.8204], [10.9493, 60.8204], [10.9491, 60.8205], [10.949, 60.8206], [10.9491, 60.8206], [10.9492, 60.8207], [10.9493, 60.8207], [10.9495, 60.8206], [10.9495, 60.8206], [10.9495, 60.8205], [10.9495, 60.8205], [10.9496, 60.8206], [10.9496, 60.8206], [10.9495, 60.8207], [10.9493, 60.8208], [10.9492, 60.8208], [10.9491, 60.8208], [10.949, 60.8208], [10.949, 60.8207], [10.9488, 60.8207], [10.9484, 60.8209], [10.9483, 60.8211], [10.9482, 60.8212], [10.9481, 60.8212], [10.948, 60.8212], [10.9479, 60.8213], [10.9478, 60.8214], [10.9477, 60.8214], [10.9475, 60.8215], [10.9474, 60.8216], [10.9473, 60.8216], [10.9473, 60.8217], [10.9473, 60.8217], [10.9472, 60.8218], [10.9471, 60.8218], [10.947, 60.8218], [10.9468, 60.8218], [10.9466, 60.8218], [10.9463, 60.822], [10.9462, 60.8221], [10.946, 60.8221], [10.9457, 60.8223], [10.9454, 60.8224], [10.9453, 60.8225], [10.9452, 60.8226], [10.9451, 60.8227], [10.945, 60.8227], [10.9448, 60.8228], [10.9446, 60.8229], [10.9442, 60.823], [10.9434, 60.8234], [10.9426, 60.8237], [10.9422, 60.8238], [10.9418, 60.824], [10.9412, 60.8241], [10.9412, 60.8241], [10.941, 60.8241], [10.9409, 60.8242], [10.9408, 60.8243], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9404, 60.8244], [10.9404, 60.8244], [10.9404, 60.8245], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9403, 60.8244], [10.9402, 60.8244], [10.9397, 60.8245], [10.9396, 60.8246], [10.9395, 60.8246], [10.9394, 60.8246], [10.9392, 60.8247], [10.9392, 60.8247], [10.9394, 60.8248], [10.9394, 60.8248], [10.9394, 60.8248], [10.9395, 60.8248], [10.9395, 60.8248], [10.9395, 60.8248], [10.9395, 60.8249], [10.9394, 60.8249], [10.9394, 60.8249], [10.9391, 60.8248], [10.939, 60.8248], [10.9389, 60.8248], [10.9389, 60.8248], [10.9386, 60.8249], [10.9384, 60.8249], [10.9382, 60.825], [10.9376, 60.8252], [10.9369, 60.8253], [10.9363, 60.8255], [10.9356, 60.8256], [10.9351, 60.8258], [10.9347, 60.826], [10.9344, 60.826], [10.9341, 60.8261], [10.934, 60.8262], [10.9339, 60.8263], [10.9333, 60.8264], [10.9327, 60.8266], [10.9325, 60.8267], [10.9322, 60.8268], [10.9315, 60.8269], [10.9312, 60.8271], [10.9308, 60.8271], [10.9304, 60.8272], [10.9302, 60.8272], [10.9301, 60.8272], [10.93, 60.8272], [10.9301, 60.8273], [10.93, 60.8273], [10.9299, 60.8272], [10.9299, 60.8272], [10.9298, 60.8272], [10.9297, 60.8272], [10.9295, 60.8273], [10.9296, 60.8273], [10.9296, 60.8274], [10.9297, 60.8274], [10.9298, 60.8274], [10.9298, 60.8274], [10.9297, 60.8274], [10.9296, 60.8274], [10.9296, 60.8274], [10.9295, 60.8273], [10.9295, 60.8273], [10.9294, 60.8273], [10.9292, 60.8273], [10.9292, 60.8273], [10.9292, 60.8273], [10.9291, 60.8274], [10.9291, 60.8274], [10.9291, 60.8274], [10.9291, 60.8275], [10.9291, 60.8275], [10.9291, 60.8275], [10.929, 60.8276], [10.9289, 60.8276], [10.9287, 60.8274], [10.9285, 60.8275], [10.9284, 60.8275], [10.9283, 60.8274], [10.9282, 60.8274], [10.9281, 60.8274], [10.928, 60.8275], [10.928, 60.8275], [10.928, 60.8275], [10.928, 60.8275], [10.9279, 60.8275], [10.9279, 60.8275], [10.9278, 60.8275], [10.9277, 60.8275], [10.9277, 60.8275], [10.9277, 60.8276], [10.9279, 60.8276], [10.9279, 60.8277], [10.928, 60.8277], [10.9279, 60.8277], [10.9279, 60.8277], [10.9278, 60.8277], [10.9277, 60.8276], [10.9275, 60.8276], [10.9274, 60.8277], [10.9273, 60.8279], [10.9272, 60.828], [10.9271, 60.828], [10.9272, 60.8281], [10.9276, 60.8282], [10.9275, 60.8282], [10.9272, 60.8281], [10.9271, 60.8281], [10.9271, 60.8281], [10.9271, 60.8281], [10.9273, 60.8282], [10.9273, 60.8282], [10.9274, 60.8282], [10.9274, 60.8283], [10.9273, 60.8283], [10.9274, 60.8283], [10.9274, 60.8283], [10.9275, 60.8283], [10.9277, 60.8283], [10.9277, 60.8283], [10.9277, 60.8283], [10.9276, 60.8283], [10.9276, 60.8284], [10.9273, 60.8284], [10.9272, 60.8284], [10.927, 60.8284], [10.9268, 60.8283], [10.9268, 60.8283], [10.9267, 60.8284], [10.9266, 60.8284], [10.9265, 60.8285], [10.9264, 60.8286], [10.9264, 60.8287], [10.9264, 60.8288], [10.9264, 60.8288], [10.9264, 60.8288], [10.9263, 60.8289], [10.9262, 60.8289], [10.9263, 60.8289], [10.9263, 60.829], [10.9263, 60.8291], [10.9263, 60.8291], [10.9263, 60.8291], [10.9264, 60.8292], [10.9264, 60.8293], [10.9264, 60.8294], [10.9263, 60.8296], [10.9264, 60.8298], [10.9265, 60.8298], [10.9266, 60.8298], [10.9267, 60.8298], [10.9267, 60.8298], [10.9267, 60.8299], [10.9265, 60.8298], [10.9263, 60.8298], [10.9262, 60.8298], [10.9262, 60.8298], [10.9262, 60.8298], [10.9261, 60.8299], [10.926, 60.83], [10.926, 60.8301], [10.926, 60.8302], [10.9261, 60.8302], [10.9261, 60.8303], [10.9262, 60.8303], [10.9263, 60.8304], [10.9264, 60.8304], [10.9265, 60.8304], [10.9266, 60.8304], [10.9266, 60.8303], [10.9267, 60.8302], [10.9267, 60.8302], [10.9268, 60.8302], [10.9268, 60.8304], [10.9268, 60.8304], [10.9267, 60.8304], [10.9266, 60.8304], [10.9262, 60.8305], [10.9262, 60.8305], [10.9262, 60.8305], [10.9262, 60.8306], [10.9262, 60.8307], [10.9262, 60.8307], [10.9262, 60.8308], [10.9263, 60.8308], [10.9264, 60.8308], [10.9266, 60.8308], [10.9267, 60.8308], [10.9268, 60.8308], [10.9268, 60.8306], [10.9268, 60.8305], [10.9269, 60.8305], [10.9269, 60.8305], [10.9269, 60.8305], [10.9269, 60.8308], [10.9268, 60.8308], [10.9265, 60.8309], [10.9265, 60.8309], [10.9265, 60.8309], [10.9264, 60.831], [10.9265, 60.8311], [10.9265, 60.8311], [10.9266, 60.8312], [10.9266, 60.8313], [10.9266, 60.8313], [10.9266, 60.8314], [10.9266, 60.8315], [10.9266, 60.8316], [10.9265, 60.8316], [10.9265, 60.8316], [10.9265, 60.8316], [10.9264, 60.8317], [10.9262, 60.8318], [10.9262, 60.8318], [10.9262, 60.8319], [10.9263, 60.832], [10.9265, 60.832], [10.9265, 60.832], [10.9265, 60.8321], [10.9265, 60.8321], [10.9264, 60.8321], [10.9262, 60.832], [10.9261, 60.832], [10.926, 60.832], [10.9259, 60.832], [10.9258, 60.8321], [10.9258, 60.8321], [10.9256, 60.8323], [10.9257, 60.8323], [10.9258, 60.8323], [10.9259, 60.8322], [10.926, 60.8321], [10.9261, 60.8321], [10.9261, 60.8321], [10.926, 60.8322], [10.9259, 60.8323], [10.9257, 60.8324], [10.9256, 60.8324], [10.9255, 60.8325], [10.9255, 60.8326], [10.9254, 60.8327], [10.9253, 60.8328], [10.9251, 60.8328], [10.9248, 60.8329], [10.9246, 60.833], [10.9245, 60.8331], [10.9244, 60.8332], [10.9243, 60.8332], [10.9243, 60.8332], [10.9243, 60.8333], [10.9241, 60.8334], [10.9243, 60.8335], [10.9242, 60.8335], [10.924, 60.8335], [10.924, 60.8334], [10.9239, 60.8335], [10.9238, 60.8335], [10.9236, 60.8335], [10.9236, 60.8335], [10.9235, 60.8336], [10.9236, 60.8337], [10.9236, 60.8337], [10.9237, 60.8337], [10.9238, 60.8337], [10.9239, 60.8337], [10.9239, 60.8337], [10.9239, 60.8337], [10.9238, 60.8337], [10.9238, 60.8338], [10.9237, 60.8338], [10.9236, 60.8338], [10.9236, 60.8338], [10.9233, 60.8336], [10.9232, 60.8336], [10.923, 60.8336], [10.9228, 60.8337], [10.9226, 60.8338], [10.9225, 60.8338], [10.9225, 60.8339], [10.9224, 60.8339], [10.9222, 60.834], [10.9222, 60.8341], [10.9222, 60.8341], [10.9222, 60.8342], [10.9222, 60.8343], [10.9221, 60.8345], [10.922, 60.8345], [10.922, 60.8346], [10.9218, 60.8347], [10.9217, 60.8348], [10.9216, 60.8349], [10.9215, 60.835], [10.9214, 60.8351], [10.9212, 60.8352], [10.921, 60.8353], [10.9206, 60.8353], [10.9205, 60.8353], [10.9203, 60.8353], [10.9201, 60.8352], [10.9192, 60.8352], [10.919, 60.8351], [10.9188, 60.8351], [10.9184, 60.835], [10.9183, 60.835], [10.9182, 60.835], [10.9182, 60.835], [10.9182, 60.8351], [10.9182, 60.8352], [10.9181, 60.8353], [10.918, 60.8353], [10.9179, 60.8354], [10.9178, 60.8354], [10.9177, 60.8355], [10.9175, 60.8356], [10.9174, 60.8357], [10.9171, 60.8357], [10.9169, 60.8359], [10.9167, 60.836], [10.9167, 60.8361], [10.9166, 60.8361], [10.9165, 60.8362], [10.9164, 60.8364], [10.9163, 60.8366], [10.9161, 60.8367], [10.9161, 60.8367], [10.9161, 60.8368], [10.9161, 60.8368], [10.9161, 60.8368], [10.9161, 60.8368], [10.9159, 60.8368], [10.9158, 60.8369], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "77", "sub_div_center": [60.876856, 10.924474]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9259, 60.8769], [10.9245, 60.8773], [10.9252, 60.8778], [10.9253, 60.8778], [10.9254, 60.8778], [10.9255, 60.8778], [10.9255, 60.8778], [10.926, 60.878], [10.9263, 60.8782], [10.9263, 60.8782], [10.9264, 60.8782], [10.9264, 60.8782], [10.9265, 60.8782], [10.9265, 60.8783], [10.9266, 60.8783], [10.9267, 60.8784], [10.9278, 60.8781], [10.9279, 60.8781], [10.9288, 60.8779], [10.9289, 60.8779], [10.928, 60.8769], [10.9259, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "78", "sub_div_center": [60.689437, 10.926909]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9504, 60.6894], [10.9502, 60.6895], [10.95, 60.6896], [10.9499, 60.6896], [10.9498, 60.6897], [10.9494, 60.6897], [10.9487, 60.6898], [10.9486, 60.6898], [10.9487, 60.69], [10.9486, 60.69], [10.9486, 60.69], [10.9485, 60.6901], [10.9484, 60.6901], [10.9484, 60.69], [10.9485, 60.69], [10.9485, 60.69], [10.9486, 60.69], [10.9486, 60.6899], [10.9485, 60.6899], [10.9483, 60.6899], [10.9481, 60.6899], [10.9479, 60.6899], [10.9479, 60.6899], [10.9478, 60.6899], [10.9476, 60.6899], [10.9475, 60.6899], [10.9475, 60.6899], [10.9473, 60.6899], [10.9466, 60.6899], [10.9459, 60.6899], [10.9456, 60.69], [10.9452, 60.69], [10.945, 60.69], [10.944, 60.69], [10.944, 60.69], [10.9439, 60.6901], [10.9435, 60.6902], [10.9432, 60.6904], [10.9428, 60.6905], [10.9423, 60.6907], [10.942, 60.6908], [10.9419, 60.6909], [10.9414, 60.691], [10.9414, 60.6911], [10.9414, 60.6911], [10.9415, 60.6912], [10.9415, 60.6912], [10.9416, 60.6912], [10.9416, 60.6912], [10.9419, 60.6912], [10.942, 60.6912], [10.9419, 60.6912], [10.9418, 60.6912], [10.9416, 60.6913], [10.9415, 60.6913], [10.9415, 60.6913], [10.9413, 60.6912], [10.9411, 60.6912], [10.941, 60.6912], [10.9406, 60.6913], [10.9398, 60.6916], [10.9394, 60.6918], [10.939, 60.6919], [10.9387, 60.6921], [10.9387, 60.6921], [10.9387, 60.6921], [10.9388, 60.6922], [10.9389, 60.6923], [10.9389, 60.6923], [10.9389, 60.6923], [10.9388, 60.6924], [10.9388, 60.6923], [10.9386, 60.6921], [10.9385, 60.6921], [10.9384, 60.6922], [10.9384, 60.6922], [10.9383, 60.6922], [10.9382, 60.6923], [10.9381, 60.6922], [10.938, 60.6922], [10.9379, 60.6923], [10.9377, 60.6923], [10.9373, 60.6925], [10.9372, 60.6925], [10.9371, 60.6926], [10.9369, 60.6927], [10.9368, 60.6927], [10.9367, 60.6928], [10.9364, 60.6931], [10.9361, 60.6934], [10.936, 60.6934], [10.9358, 60.6935], [10.9355, 60.6937], [10.9354, 60.6937], [10.9344, 60.694], [10.9341, 60.6941], [10.934, 60.6941], [10.934, 60.6941], [10.9341, 60.6943], [10.9341, 60.6943], [10.9341, 60.6943], [10.9341, 60.6943], [10.934, 60.6943], [10.934, 60.6943], [10.9339, 60.6941], [10.9338, 60.6941], [10.9337, 60.6941], [10.9337, 60.6941], [10.9337, 60.6942], [10.9336, 60.6942], [10.9335, 60.6942], [10.9335, 60.6942], [10.9331, 60.6942], [10.9331, 60.6943], [10.933, 60.6943], [10.9328, 60.6943], [10.9324, 60.6945], [10.9323, 60.6946], [10.9322, 60.6946], [10.9321, 60.6947], [10.9318, 60.6949], [10.9316, 60.6949], [10.9314, 60.695], [10.9312, 60.6951], [10.9308, 60.6954], [10.9307, 60.6954], [10.9304, 60.6956], [10.9304, 60.6956], [10.9304, 60.6957], [10.9303, 60.6957], [10.9302, 60.6958], [10.9302, 60.6958], [10.9302, 60.6959], [10.9301, 60.6959], [10.9301, 60.6959], [10.9299, 60.6959], [10.9298, 60.6959], [10.9298, 60.6959], [10.9298, 60.6959], [10.9293, 60.696], [10.9289, 60.6963], [10.9287, 60.6963], [10.9286, 60.6963], [10.9285, 60.6964], [10.9285, 60.6964], [10.9285, 60.6965], [10.9284, 60.6965], [10.9283, 60.6965], [10.9283, 60.6965], [10.9283, 60.6965], [10.9282, 60.6965], [10.9281, 60.6965], [10.9269, 60.6969], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "79", "sub_div_center": [60.876856, 10.928131]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9281, 60.8769], [10.9283, 60.877], [10.9287, 60.8769], [10.9281, 60.8769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "80", "sub_div_center": [60.676856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9904, 60.6969], [10.9904, 60.6769], [10.9684, 60.6769], [10.9683, 60.6769], [10.9683, 60.677], [10.9681, 60.6771], [10.9681, 60.6772], [10.968, 60.6774], [10.968, 60.6775], [10.9679, 60.6777], [10.9678, 60.6779], [10.9678, 60.678], [10.9678, 60.6781], [10.9676, 60.6782], [10.9675, 60.6783], [10.9675, 60.6784], [10.9675, 60.6784], [10.9674, 60.6785], [10.9671, 60.6788], [10.9671, 60.6789], [10.9667, 60.6794], [10.9665, 60.6797], [10.966, 60.6803], [10.9659, 60.6804], [10.9659, 60.6805], [10.9659, 60.6807], [10.9659, 60.6808], [10.9657, 60.681], [10.9656, 60.6811], [10.9654, 60.6812], [10.9652, 60.6814], [10.9651, 60.6816], [10.9648, 60.6819], [10.9648, 60.682], [10.9648, 60.682], [10.9646, 60.6822], [10.9644, 60.6823], [10.9639, 60.6827], [10.9638, 60.6828], [10.9637, 60.6828], [10.9637, 60.6829], [10.9634, 60.6832], [10.9632, 60.6835], [10.9632, 60.6836], [10.9631, 60.6837], [10.9631, 60.6837], [10.963, 60.6838], [10.9629, 60.6838], [10.9628, 60.6839], [10.9627, 60.6839], [10.9625, 60.684], [10.9625, 60.6841], [10.9623, 60.6841], [10.9622, 60.6842], [10.9621, 60.6842], [10.9621, 60.6843], [10.9621, 60.6843], [10.9622, 60.6843], [10.9623, 60.6844], [10.9624, 60.6844], [10.9624, 60.6845], [10.9622, 60.6844], [10.9622, 60.6844], [10.9621, 60.6844], [10.962, 60.6844], [10.9621, 60.6845], [10.9621, 60.6845], [10.9622, 60.6845], [10.9623, 60.6846], [10.9622, 60.6846], [10.9619, 60.6845], [10.9619, 60.6845], [10.9615, 60.6847], [10.9611, 60.685], [10.9611, 60.6851], [10.961, 60.6851], [10.9608, 60.6852], [10.9606, 60.6852], [10.9604, 60.6854], [10.9601, 60.6856], [10.9599, 60.6857], [10.9597, 60.6859], [10.9595, 60.686], [10.9589, 60.6863], [10.9585, 60.6866], [10.9583, 60.6866], [10.958, 60.6868], [10.9578, 60.6869], [10.9575, 60.687], [10.9575, 60.6871], [10.9573, 60.6872], [10.9571, 60.6873], [10.9568, 60.6875], [10.9565, 60.6877], [10.9563, 60.6878], [10.9562, 60.6878], [10.9558, 60.6879], [10.9552, 60.6881], [10.9546, 60.6882], [10.954, 60.6884], [10.9539, 60.6884], [10.9539, 60.6885], [10.9538, 60.6886], [10.9538, 60.6885], [10.9537, 60.6885], [10.9537, 60.6885], [10.9535, 60.6886], [10.9535, 60.6886], [10.9535, 60.6886], [10.9536, 60.6887], [10.9535, 60.6887], [10.9534, 60.6886], [10.9533, 60.6887], [10.953, 60.6887], [10.9527, 60.6888], [10.9527, 60.6888], [10.9526, 60.6889], [10.9525, 60.6889], [10.9523, 60.6889], [10.9521, 60.6889], [10.952, 60.6889], [10.9514, 60.6891], [10.9511, 60.6892], [10.9509, 60.6893], [10.9508, 60.6893], [10.9508, 60.6894], [10.9507, 60.6894], [10.9505, 60.6894], [10.9504, 60.6894], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "81", "sub_div_center": [60.696856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.6969], [10.9504, 60.7169], [10.9904, 60.7169], [10.9904, 60.6969], [10.9504, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "82", "sub_div_center": [60.716856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7169], [10.9504, 60.7369], [10.9904, 60.7369], [10.9904, 60.7169], [10.9504, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "83", "sub_div_center": [60.736856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7369], [10.9504, 60.7569], [10.9904, 60.7569], [10.9904, 60.7369], [10.9504, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "84", "sub_div_center": [60.756856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.7569], [10.9504, 60.7659], [10.9506, 60.7659], [10.9507, 60.766], [10.9508, 60.766], [10.9509, 60.766], [10.951, 60.7661], [10.9512, 60.7661], [10.9514, 60.7662], [10.9517, 60.7663], [10.9521, 60.7663], [10.9523, 60.7664], [10.9525, 60.7664], [10.9525, 60.7664], [10.9527, 60.7664], [10.9529, 60.7664], [10.9529, 60.7665], [10.9531, 60.7665], [10.9533, 60.7666], [10.9534, 60.7666], [10.9534, 60.7667], [10.9535, 60.7667], [10.9536, 60.7667], [10.9537, 60.7667], [10.9538, 60.7668], [10.9539, 60.7669], [10.9541, 60.767], [10.9542, 60.767], [10.9544, 60.7671], [10.9547, 60.7673], [10.9548, 60.7673], [10.9549, 60.7674], [10.9549, 60.7674], [10.955, 60.7674], [10.955, 60.7674], [10.955, 60.7675], [10.955, 60.7675], [10.9551, 60.7676], [10.9553, 60.7677], [10.9554, 60.7678], [10.9555, 60.7678], [10.9557, 60.7679], [10.9559, 60.768], [10.9559, 60.768], [10.956, 60.768], [10.9562, 60.7681], [10.9563, 60.7681], [10.9564, 60.7682], [10.9566, 60.7682], [10.9569, 60.7683], [10.9571, 60.7683], [10.9572, 60.7683], [10.9573, 60.7683], [10.9573, 60.7683], [10.9574, 60.7683], [10.9574, 60.7683], [10.9576, 60.7683], [10.9576, 60.7684], [10.9577, 60.7683], [10.9578, 60.7683], [10.9578, 60.7683], [10.9577, 60.7683], [10.9577, 60.7683], [10.9577, 60.7683], [10.9578, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9579, 60.7682], [10.9581, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7682], [10.9582, 60.7683], [10.9582, 60.7683], [10.9582, 60.7683], [10.9583, 60.7683], [10.9583, 60.7683], [10.9584, 60.7683], [10.9584, 60.7683], [10.9584, 60.7682], [10.9585, 60.7681], [10.9585, 60.7681], [10.9585, 60.7683], [10.9584, 60.7684], [10.9584, 60.7684], [10.9584, 60.7685], [10.9585, 60.7685], [10.9586, 60.7685], [10.9587, 60.7685], [10.9587, 60.7685], [10.9589, 60.7685], [10.959, 60.7685], [10.959, 60.7684], [10.9591, 60.7684], [10.9591, 60.7684], [10.9592, 60.7685], [10.9592, 60.7685], [10.9593, 60.7686], [10.9594, 60.7686], [10.9595, 60.7686], [10.9596, 60.7686], [10.9596, 60.7686], [10.9597, 60.7686], [10.9598, 60.7686], [10.9599, 60.7686], [10.96, 60.7686], [10.9601, 60.7687], [10.9602, 60.7687], [10.9604, 60.7687], [10.9607, 60.7687], [10.9609, 60.7687], [10.9611, 60.7687], [10.9611, 60.7687], [10.9612, 60.7687], [10.9611, 60.7687], [10.9612, 60.7688], [10.9614, 60.7688], [10.9614, 60.7687], [10.9615, 60.7687], [10.9616, 60.7687], [10.9617, 60.7687], [10.9617, 60.7688], [10.9618, 60.7688], [10.9621, 60.7688], [10.9624, 60.7689], [10.9625, 60.7689], [10.9626, 60.7689], [10.9628, 60.7689], [10.9631, 60.7689], [10.9633, 60.7689], [10.9634, 60.7688], [10.9636, 60.7688], [10.9637, 60.7687], [10.9639, 60.7687], [10.9642, 60.7687], [10.9643, 60.7687], [10.9644, 60.7687], [10.9644, 60.7687], [10.9645, 60.7687], [10.9645, 60.7687], [10.9646, 60.7687], [10.9647, 60.7687], [10.9647, 60.7687], [10.9647, 60.7687], [10.9647, 60.7686], [10.9648, 60.7686], [10.9648, 60.7685], [10.9649, 60.7685], [10.965, 60.7685], [10.9651, 60.7685], [10.9652, 60.7686], [10.9652, 60.7686], [10.9652, 60.7686], [10.9651, 60.7686], [10.9649, 60.7686], [10.9649, 60.7686], [10.9648, 60.7687], [10.9648, 60.7687], [10.9649, 60.7687], [10.9649, 60.7687], [10.9651, 60.7688], [10.9651, 60.7688], [10.9651, 60.7688], [10.9651, 60.7688], [10.9652, 60.7687], [10.9653, 60.7687], [10.9654, 60.7686], [10.9655, 60.7685], [10.9656, 60.7685], [10.9656, 60.7685], [10.9656, 60.7685], [10.9656, 60.7686], [10.9655, 60.7686], [10.9655, 60.7687], [10.9656, 60.7687], [10.9656, 60.7687], [10.9657, 60.7688], [10.9657, 60.7688], [10.9657, 60.7689], [10.9658, 60.7689], [10.9658, 60.7689], [10.9658, 60.7689], [10.9659, 60.7689], [10.9659, 60.7689], [10.9659, 60.769], [10.966, 60.769], [10.966, 60.769], [10.9662, 60.7691], [10.9666, 60.7693], [10.9667, 60.7693], [10.9668, 60.7695], [10.9669, 60.7699], [10.9671, 60.7702], [10.9673, 60.7705], [10.9673, 60.7706], [10.9675, 60.7709], [10.9675, 60.771], [10.9676, 60.7711], [10.9677, 60.7712], [10.9678, 60.7712], [10.9679, 60.7713], [10.9679, 60.7713], [10.9679, 60.7715], [10.9681, 60.7717], [10.9682, 60.7718], [10.9682, 60.772], [10.9683, 60.7722], [10.9684, 60.7723], [10.9686, 60.7726], [10.9687, 60.7727], [10.9688, 60.7728], [10.9689, 60.773], [10.969, 60.7731], [10.969, 60.7731], [10.9691, 60.7731], [10.9691, 60.7731], [10.9692, 60.7731], [10.9693, 60.7731], [10.9693, 60.7731], [10.9694, 60.7731], [10.9694, 60.7731], [10.9693, 60.7731], [10.9693, 60.7731], [10.9692, 60.7732], [10.9692, 60.7732], [10.9692, 60.7733], [10.9693, 60.7733], [10.9693, 60.7733], [10.9693, 60.7733], [10.9694, 60.7733], [10.9695, 60.7732], [10.9695, 60.7732], [10.9696, 60.7732], [10.9696, 60.7731], [10.9695, 60.7731], [10.9695, 60.7731], [10.9695, 60.773], [10.9695, 60.773], [10.9695, 60.773], [10.9695, 60.773], [10.9696, 60.773], [10.9696, 60.773], [10.9697, 60.7731], [10.9697, 60.7731], [10.9698, 60.7731], [10.9698, 60.7732], [10.9697, 60.7732], [10.9697, 60.7732], [10.9697, 60.7733], [10.9696, 60.7733], [10.9694, 60.7734], [10.9694, 60.7734], [10.9694, 60.7734], [10.9695, 60.7734], [10.9696, 60.7735], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7733], [10.9698, 60.7734], [10.9698, 60.7734], [10.9698, 60.7734], [10.9697, 60.7735], [10.9696, 60.7735], [10.9696, 60.7735], [10.9696, 60.7735], [10.9696, 60.7736], [10.9698, 60.7738], [10.9699, 60.7738], [10.97, 60.774], [10.9701, 60.7741], [10.9703, 60.7743], [10.9704, 60.7744], [10.9705, 60.7744], [10.9705, 60.7744], [10.9706, 60.7746], [10.9707, 60.7746], [10.9708, 60.7747], [10.9708, 60.7747], [10.9709, 60.7748], [10.971, 60.7749], [10.9711, 60.7749], [10.9712, 60.775], [10.9713, 60.775], [10.9714, 60.7751], [10.9715, 60.7752], [10.9716, 60.7753], [10.9717, 60.7754], [10.9718, 60.7755], [10.9719, 60.7756], [10.9719, 60.7756], [10.9719, 60.7756], [10.972, 60.7756], [10.9721, 60.7756], [10.9726, 60.7755], [10.9726, 60.7755], [10.9727, 60.7755], [10.9727, 60.7755], [10.9727, 60.7755], [10.9726, 60.7755], [10.9725, 60.7756], [10.9723, 60.7756], [10.9722, 60.7756], [10.972, 60.7757], [10.9721, 60.7758], [10.9721, 60.7758], [10.9721, 60.7759], [10.9721, 60.776], [10.9723, 60.7761], [10.9724, 60.7763], [10.9725, 60.7764], [10.9725, 60.7765], [10.9726, 60.7768], [10.9727, 60.7769], [10.9904, 60.7769], [10.9904, 60.7569], [10.9504, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "85", "sub_div_center": [60.816856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9717, 60.8369], [10.9717, 60.8368], [10.9717, 60.8368], [10.9719, 60.8368], [10.9719, 60.8368], [10.9719, 60.8368], [10.9719, 60.8367], [10.972, 60.8367], [10.972, 60.8367], [10.9722, 60.8367], [10.9722, 60.8367], [10.9723, 60.8366], [10.9724, 60.8366], [10.9725, 60.8366], [10.9725, 60.8365], [10.9726, 60.8365], [10.9727, 60.8365], [10.9729, 60.8364], [10.9729, 60.8364], [10.973, 60.8364], [10.973, 60.8364], [10.9732, 60.8364], [10.9733, 60.8363], [10.9733, 60.8363], [10.9733, 60.8363], [10.9734, 60.8363], [10.9735, 60.8363], [10.9736, 60.8363], [10.9736, 60.8363], [10.9738, 60.8364], [10.9739, 60.8363], [10.974, 60.8363], [10.974, 60.8363], [10.974, 60.8363], [10.974, 60.8362], [10.974, 60.8362], [10.974, 60.8363], [10.9741, 60.8363], [10.9741, 60.8363], [10.9742, 60.8363], [10.9742, 60.8364], [10.9743, 60.8364], [10.9743, 60.8364], [10.9744, 60.8363], [10.9745, 60.8363], [10.9744, 60.8364], [10.9745, 60.8364], [10.9745, 60.8364], [10.9746, 60.8364], [10.9746, 60.8364], [10.9746, 60.8364], [10.9747, 60.8364], [10.9748, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9749, 60.8364], [10.9752, 60.8364], [10.9753, 60.8364], [10.9754, 60.8364], [10.9755, 60.8363], [10.9756, 60.8363], [10.9757, 60.8362], [10.9758, 60.836], [10.9759, 60.8359], [10.976, 60.8358], [10.976, 60.8357], [10.9761, 60.8355], [10.9761, 60.8355], [10.9761, 60.8354], [10.9761, 60.8353], [10.9761, 60.8352], [10.9761, 60.8352], [10.9761, 60.8352], [10.9761, 60.8351], [10.976, 60.8351], [10.9759, 60.835], [10.9758, 60.835], [10.9756, 60.835], [10.9756, 60.8349], [10.9756, 60.8349], [10.9755, 60.8349], [10.9755, 60.8349], [10.9755, 60.8348], [10.9753, 60.8348], [10.9752, 60.8348], [10.9752, 60.8348], [10.9752, 60.8347], [10.9751, 60.8346], [10.9751, 60.8345], [10.9751, 60.8345], [10.975, 60.8343], [10.9749, 60.8342], [10.9748, 60.8342], [10.9747, 60.8341], [10.9745, 60.8341], [10.9744, 60.8341], [10.9742, 60.8341], [10.9741, 60.8341], [10.974, 60.8341], [10.9739, 60.8341], [10.9738, 60.8341], [10.9738, 60.8341], [10.9737, 60.8341], [10.9737, 60.8341], [10.9736, 60.8341], [10.9736, 60.8341], [10.9735, 60.8341], [10.9736, 60.834], [10.9736, 60.834], [10.9737, 60.8339], [10.9737, 60.8339], [10.9737, 60.8338], [10.9736, 60.8337], [10.9735, 60.8336], [10.9735, 60.8336], [10.9733, 60.8336], [10.9733, 60.8336], [10.9733, 60.8336], [10.9735, 60.8336], [10.9735, 60.8336], [10.9735, 60.8336], [10.9735, 60.8335], [10.9735, 60.8334], [10.9732, 60.8333], [10.9731, 60.8333], [10.973, 60.8332], [10.9729, 60.8331], [10.9728, 60.833], [10.9728, 60.833], [10.9728, 60.8329], [10.9729, 60.8328], [10.9731, 60.8328], [10.9733, 60.8327], [10.9736, 60.8327], [10.9738, 60.8327], [10.9739, 60.8326], [10.974, 60.8326], [10.974, 60.8326], [10.9741, 60.8326], [10.974, 60.8325], [10.974, 60.8325], [10.9741, 60.8325], [10.9744, 60.8325], [10.9748, 60.8324], [10.9748, 60.8323], [10.9748, 60.8323], [10.975, 60.8323], [10.9751, 60.8322], [10.9754, 60.8321], [10.9755, 60.8321], [10.9755, 60.832], [10.9756, 60.832], [10.9757, 60.832], [10.9757, 60.832], [10.9758, 60.832], [10.9759, 60.832], [10.976, 60.8319], [10.976, 60.8319], [10.976, 60.8319], [10.9762, 60.8318], [10.9762, 60.8318], [10.9763, 60.8318], [10.9763, 60.8317], [10.9763, 60.8317], [10.9764, 60.8317], [10.9764, 60.8317], [10.9765, 60.8317], [10.9765, 60.8316], [10.9767, 60.8316], [10.9768, 60.8316], [10.9768, 60.8315], [10.9769, 60.8314], [10.977, 60.8314], [10.9771, 60.8313], [10.9772, 60.8313], [10.9773, 60.8312], [10.9774, 60.8312], [10.9774, 60.8312], [10.9774, 60.8312], [10.9776, 60.8312], [10.9777, 60.8312], [10.9779, 60.8312], [10.9782, 60.8311], [10.9788, 60.8308], [10.9791, 60.8307], [10.9791, 60.8307], [10.9791, 60.8306], [10.9791, 60.8306], [10.9792, 60.8306], [10.9792, 60.8306], [10.9792, 60.8305], [10.9793, 60.8305], [10.9793, 60.8305], [10.9793, 60.8305], [10.9794, 60.8305], [10.9795, 60.8306], [10.9796, 60.8305], [10.9796, 60.8305], [10.9797, 60.8305], [10.9797, 60.8305], [10.9797, 60.8304], [10.9797, 60.8304], [10.9797, 60.8304], [10.9798, 60.8303], [10.9799, 60.8303], [10.9799, 60.8303], [10.98, 60.8303], [10.9802, 60.8302], [10.9803, 60.8302], [10.9804, 60.8301], [10.9805, 60.8301], [10.9807, 60.83], [10.9808, 60.83], [10.9808, 60.8299], [10.9809, 60.8299], [10.9809, 60.8298], [10.981, 60.8298], [10.9811, 60.8298], [10.9811, 60.8298], [10.9811, 60.8298], [10.9812, 60.8297], [10.9813, 60.8297], [10.9812, 60.8297], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9812, 60.8295], [10.9812, 60.8295], [10.9813, 60.8294], [10.9814, 60.8294], [10.9815, 60.8294], [10.9815, 60.8294], [10.9814, 60.8294], [10.9814, 60.8294], [10.9813, 60.8295], [10.9812, 60.8295], [10.9812, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9811, 60.8295], [10.9812, 60.8296], [10.9812, 60.8296], [10.9812, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9813, 60.8296], [10.9814, 60.8295], [10.9814, 60.8295], [10.9814, 60.8296], [10.9817, 60.8295], [10.9817, 60.8294], [10.9818, 60.8294], [10.9819, 60.8293], [10.9818, 60.8292], [10.9818, 60.8292], [10.9817, 60.8292], [10.9817, 60.8292], [10.9817, 60.8291], [10.9817, 60.8291], [10.9817, 60.829], [10.9817, 60.829], [10.9817, 60.8289], [10.9817, 60.8289], [10.9817, 60.829], [10.9817, 60.829], [10.9817, 60.8291], [10.9817, 60.8291], [10.9817, 60.8292], [10.9817, 60.8292], [10.9818, 60.8292], [10.9818, 60.8292], [10.9819, 60.8293], [10.9821, 60.8292], [10.9822, 60.8291], [10.9822, 60.8291], [10.9823, 60.8291], [10.9823, 60.829], [10.9823, 60.829], [10.9823, 60.829], [10.9822, 60.8289], [10.9821, 60.8289], [10.982, 60.8289], [10.982, 60.8289], [10.9819, 60.8289], [10.9819, 60.8288], [10.9818, 60.8288], [10.9817, 60.8288], [10.9816, 60.8287], [10.9815, 60.8287], [10.9816, 60.8287], [10.9816, 60.8287], [10.9817, 60.8287], [10.9819, 60.8288], [10.982, 60.8289], [10.982, 60.8289], [10.9821, 60.8289], [10.9822, 60.8289], [10.9822, 60.8289], [10.9822, 60.8288], [10.9823, 60.8288], [10.9823, 60.8288], [10.9825, 60.8287], [10.9825, 60.8287], [10.9823, 60.8287], [10.9824, 60.8286], [10.9824, 60.8286], [10.9825, 60.8286], [10.9827, 60.8287], [10.9829, 60.8287], [10.9829, 60.8286], [10.9828, 60.8285], [10.9825, 60.8284], [10.9824, 60.8283], [10.9823, 60.8283], [10.9823, 60.8284], [10.9819, 60.8285], [10.9819, 60.8286], [10.9818, 60.8286], [10.9818, 60.8286], [10.9817, 60.8286], [10.9818, 60.8285], [10.9822, 60.8283], [10.9823, 60.8283], [10.9824, 60.8283], [10.9825, 60.8283], [10.9826, 60.8283], [10.9826, 60.8284], [10.9829, 60.8285], [10.9832, 60.8287], [10.9833, 60.8287], [10.9834, 60.8287], [10.9835, 60.8287], [10.9835, 60.8286], [10.9836, 60.8285], [10.9836, 60.8285], [10.9835, 60.8284], [10.9835, 60.8284], [10.9835, 60.8283], [10.9836, 60.8283], [10.9837, 60.8284], [10.9838, 60.8284], [10.9839, 60.8283], [10.984, 60.8283], [10.984, 60.8282], [10.984, 60.8282], [10.9839, 60.8282], [10.9839, 60.8281], [10.984, 60.828], [10.9841, 60.828], [10.9841, 60.828], [10.9841, 60.828], [10.9842, 60.828], [10.9842, 60.828], [10.9843, 60.8281], [10.9844, 60.8281], [10.9844, 60.828], [10.9844, 60.828], [10.9844, 60.828], [10.9843, 60.8279], [10.9843, 60.8279], [10.9842, 60.8278], [10.9841, 60.8278], [10.9842, 60.8278], [10.9842, 60.8278], [10.9843, 60.8278], [10.9844, 60.8278], [10.9844, 60.8278], [10.9845, 60.8278], [10.9846, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8278], [10.9847, 60.8277], [10.9846, 60.8277], [10.9846, 60.8277], [10.9846, 60.8276], [10.9846, 60.8276], [10.9846, 60.8276], [10.9847, 60.8276], [10.9847, 60.8276], [10.9847, 60.8277], [10.9848, 60.8277], [10.985, 60.8277], [10.9852, 60.8277], [10.9853, 60.8277], [10.9854, 60.8276], [10.9856, 60.8276], [10.9857, 60.8276], [10.9858, 60.8276], [10.9859, 60.8276], [10.986, 60.8276], [10.9862, 60.8275], [10.9862, 60.8276], [10.9863, 60.8276], [10.9864, 60.8276], [10.9865, 60.8276], [10.9866, 60.8276], [10.9867, 60.8276], [10.9867, 60.8276], [10.9868, 60.8275], [10.9867, 60.8275], [10.9868, 60.8274], [10.9868, 60.8274], [10.9868, 60.8274], [10.9868, 60.8274], [10.9869, 60.8274], [10.9869, 60.8275], [10.987, 60.8275], [10.987, 60.8276], [10.9871, 60.8276], [10.9874, 60.8275], [10.9876, 60.8275], [10.9876, 60.8275], [10.9877, 60.8274], [10.9878, 60.8274], [10.9878, 60.8273], [10.9879, 60.8271], [10.988, 60.827], [10.9879, 60.827], [10.9879, 60.827], [10.9879, 60.8269], [10.9879, 60.8269], [10.988, 60.8269], [10.9879, 60.8269], [10.9874, 60.8269], [10.9869, 60.8268], [10.9867, 60.8268], [10.9866, 60.8268], [10.9865, 60.8268], [10.9864, 60.8269], [10.9864, 60.8269], [10.9863, 60.8268], [10.9863, 60.8268], [10.9863, 60.8268], [10.9864, 60.8268], [10.9865, 60.8267], [10.9866, 60.8267], [10.9867, 60.8267], [10.987, 60.8268], [10.9873, 60.8268], [10.9876, 60.8268], [10.988, 60.8268], [10.9881, 60.8269], [10.9882, 60.8269], [10.9883, 60.8268], [10.9883, 60.8268], [10.9883, 60.8268], [10.9883, 60.8268], [10.9884, 60.8267], [10.9884, 60.8267], [10.9884, 60.8267], [10.9886, 60.8266], [10.9887, 60.8266], [10.9888, 60.8266], [10.9891, 60.8266], [10.9894, 60.8266], [10.9894, 60.8266], [10.9895, 60.8265], [10.9895, 60.8265], [10.9896, 60.8266], [10.9896, 60.8266], [10.9897, 60.8266], [10.9899, 60.8266], [10.99, 60.8265], [10.9902, 60.8265], [10.9903, 60.8265], [10.9902, 60.8265], [10.9902, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9903, 60.8264], [10.9904, 60.8263], [10.9904, 60.8169], [10.9576, 60.8169], [10.9573, 60.817], [10.9565, 60.8174], [10.9557, 60.8178], [10.9544, 60.8182], [10.9541, 60.8184], [10.9538, 60.8185], [10.9536, 60.8185], [10.9535, 60.8185], [10.9531, 60.8187], [10.953, 60.8188], [10.9528, 60.8188], [10.9525, 60.8189], [10.9523, 60.819], [10.9521, 60.8191], [10.9519, 60.8192], [10.9518, 60.8193], [10.9518, 60.8193], [10.9518, 60.8193], [10.9518, 60.8194], [10.9521, 60.8195], [10.952, 60.8195], [10.9519, 60.8195], [10.9517, 60.8194], [10.9516, 60.8195], [10.9514, 60.8195], [10.9512, 60.8196], [10.9509, 60.8197], [10.9507, 60.8199], [10.9505, 60.8199], [10.9504, 60.82], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "86", "sub_div_center": [60.836856, 10.950419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9504, 60.8369], [10.9504, 60.8527], [10.9505, 60.8527], [10.9506, 60.8527], [10.9507, 60.8527], [10.9508, 60.8527], [10.9509, 60.8527], [10.951, 60.8527], [10.951, 60.8527], [10.951, 60.8528], [10.9511, 60.8528], [10.9511, 60.8528], [10.9511, 60.8529], [10.9512, 60.8529], [10.9512, 60.8529], [10.9511, 60.8529], [10.9512, 60.853], [10.9512, 60.853], [10.9513, 60.853], [10.9513, 60.8531], [10.9514, 60.8531], [10.9514, 60.8531], [10.9514, 60.8532], [10.9514, 60.8532], [10.9514, 60.8533], [10.9513, 60.8533], [10.9513, 60.8534], [10.9513, 60.8535], [10.9513, 60.8535], [10.9513, 60.8536], [10.9514, 60.8536], [10.9513, 60.8536], [10.9513, 60.8537], [10.9513, 60.8537], [10.9513, 60.8537], [10.9512, 60.8538], [10.9512, 60.8538], [10.9513, 60.8538], [10.9512, 60.8539], [10.9512, 60.8538], [10.9511, 60.8539], [10.9511, 60.8538], [10.9511, 60.8539], [10.951, 60.8539], [10.951, 60.8539], [10.951, 60.8539], [10.9508, 60.8539], [10.9507, 60.8539], [10.9507, 60.8539], [10.9506, 60.8539], [10.9506, 60.854], [10.9506, 60.854], [10.9506, 60.854], [10.9507, 60.8541], [10.9508, 60.8541], [10.9509, 60.8541], [10.9509, 60.8541], [10.951, 60.8541], [10.9511, 60.8541], [10.9512, 60.8541], [10.9512, 60.8542], [10.9514, 60.8542], [10.9514, 60.8542], [10.9512, 60.8541], [10.9512, 60.854], [10.9513, 60.854], [10.9513, 60.8539], [10.9515, 60.8539], [10.9515, 60.8538], [10.9516, 60.8537], [10.9516, 60.8536], [10.9517, 60.8535], [10.9518, 60.8535], [10.9518, 60.8535], [10.9518, 60.8535], [10.9518, 60.8534], [10.9519, 60.8534], [10.952, 60.8534], [10.952, 60.8534], [10.9521, 60.8534], [10.9522, 60.8533], [10.9522, 60.8533], [10.9523, 60.8533], [10.9523, 60.8533], [10.9523, 60.8532], [10.9523, 60.8532], [10.9524, 60.8533], [10.9525, 60.8533], [10.9525, 60.8533], [10.9526, 60.8533], [10.9526, 60.8533], [10.9526, 60.8533], [10.9527, 60.8532], [10.9527, 60.8532], [10.9527, 60.8532], [10.9528, 60.8532], [10.9528, 60.8531], [10.9527, 60.853], [10.9527, 60.8529], [10.9527, 60.8528], [10.9527, 60.8528], [10.9526, 60.8528], [10.9526, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9527, 60.8527], [10.9526, 60.8527], [10.9526, 60.8527], [10.9527, 60.8527], [10.9527, 60.8525], [10.9528, 60.8525], [10.9528, 60.8525], [10.9528, 60.8525], [10.9528, 60.8524], [10.9527, 60.8523], [10.9526, 60.8522], [10.9527, 60.8521], [10.9527, 60.852], [10.9528, 60.852], [10.9528, 60.8519], [10.9529, 60.8519], [10.953, 60.8518], [10.9532, 60.8518], [10.9532, 60.8518], [10.9533, 60.8518], [10.9534, 60.8518], [10.9534, 60.8518], [10.9534, 60.8518], [10.9536, 60.8518], [10.9537, 60.8518], [10.9538, 60.8517], [10.9539, 60.8517], [10.954, 60.8517], [10.954, 60.8516], [10.9541, 60.8516], [10.9541, 60.8515], [10.9539, 60.8515], [10.9539, 60.8515], [10.954, 60.8515], [10.9541, 60.8515], [10.9541, 60.8515], [10.9541, 60.8515], [10.9542, 60.8514], [10.9541, 60.8514], [10.9541, 60.8513], [10.9541, 60.8513], [10.9542, 60.8514], [10.9543, 60.8513], [10.9543, 60.8513], [10.9544, 60.8512], [10.9544, 60.8512], [10.9544, 60.8512], [10.9545, 60.8512], [10.9545, 60.8512], [10.9545, 60.8511], [10.9544, 60.8511], [10.9544, 60.8511], [10.9544, 60.8511], [10.9545, 60.8511], [10.9546, 60.8511], [10.9546, 60.851], [10.9547, 60.851], [10.9547, 60.8509], [10.9547, 60.8508], [10.9547, 60.8507], [10.9547, 60.8506], [10.9547, 60.8505], [10.9547, 60.8505], [10.9547, 60.8504], [10.9547, 60.8503], [10.9546, 60.8502], [10.9546, 60.8501], [10.9546, 60.8501], [10.9545, 60.85], [10.9544, 60.8499], [10.9543, 60.8499], [10.9542, 60.8498], [10.9542, 60.8497], [10.9542, 60.8496], [10.9543, 60.8495], [10.9543, 60.8495], [10.9542, 60.8494], [10.9542, 60.8494], [10.954, 60.8493], [10.9538, 60.8493], [10.9536, 60.8492], [10.9535, 60.8492], [10.9534, 60.8491], [10.9533, 60.849], [10.9533, 60.849], [10.9533, 60.8489], [10.9532, 60.8489], [10.9532, 60.8488], [10.9531, 60.8488], [10.9529, 60.8487], [10.9528, 60.8486], [10.9527, 60.8486], [10.9526, 60.8485], [10.9524, 60.8484], [10.9524, 60.8483], [10.9523, 60.8483], [10.9522, 60.8482], [10.9522, 60.8482], [10.9521, 60.8482], [10.952, 60.8481], [10.9519, 60.848], [10.9518, 60.8479], [10.9516, 60.8478], [10.9515, 60.8477], [10.9513, 60.8477], [10.9512, 60.8476], [10.9511, 60.8475], [10.951, 60.8474], [10.9509, 60.8474], [10.9508, 60.8472], [10.9507, 60.8472], [10.9507, 60.8472], [10.9507, 60.8471], [10.9507, 60.8471], [10.9506, 60.8471], [10.9505, 60.847], [10.9505, 60.847], [10.9505, 60.8469], [10.9505, 60.8469], [10.9505, 60.8469], [10.9506, 60.8468], [10.9507, 60.8468], [10.9507, 60.8467], [10.9507, 60.8467], [10.9507, 60.8467], [10.9508, 60.8467], [10.9509, 60.8467], [10.951, 60.8466], [10.9511, 60.8466], [10.9512, 60.8466], [10.9513, 60.8466], [10.9513, 60.8466], [10.9513, 60.8466], [10.9514, 60.8466], [10.9515, 60.8466], [10.9516, 60.8466], [10.9517, 60.8466], [10.9517, 60.8466], [10.9518, 60.8466], [10.9519, 60.8466], [10.952, 60.8466], [10.9521, 60.8466], [10.9522, 60.8467], [10.9523, 60.8467], [10.9524, 60.8468], [10.9525, 60.8468], [10.9526, 60.8469], [10.9527, 60.8469], [10.9528, 60.847], [10.9529, 60.847], [10.9531, 60.8471], [10.9532, 60.8471], [10.9535, 60.8472], [10.9537, 60.8473], [10.9539, 60.8473], [10.9542, 60.8474], [10.9544, 60.8474], [10.9546, 60.8474], [10.9548, 60.8474], [10.9551, 60.8474], [10.9554, 60.8474], [10.9555, 60.8475], [10.9557, 60.8476], [10.9558, 60.8477], [10.956, 60.8478], [10.9561, 60.8478], [10.9561, 60.8479], [10.9561, 60.848], [10.9561, 60.848], [10.9561, 60.8481], [10.9561, 60.8481], [10.9561, 60.8483], [10.9562, 60.8484], [10.9563, 60.8484], [10.9564, 60.8484], [10.9566, 60.8485], [10.9567, 60.8485], [10.9568, 60.8485], [10.9569, 60.8485], [10.9569, 60.8485], [10.957, 60.8485], [10.9571, 60.8485], [10.9572, 60.8485], [10.9573, 60.8484], [10.9574, 60.8484], [10.9575, 60.8484], [10.9576, 60.8484], [10.9577, 60.8485], [10.9578, 60.8485], [10.9579, 60.8485], [10.958, 60.8486], [10.958, 60.8486], [10.9581, 60.8487], [10.9581, 60.8487], [10.9583, 60.8488], [10.9585, 60.8488], [10.9586, 60.8488], [10.9588, 60.8489], [10.9589, 60.8489], [10.959, 60.849], [10.959, 60.849], [10.9591, 60.8489], [10.9592, 60.8489], [10.9593, 60.8488], [10.9593, 60.8488], [10.9593, 60.8487], [10.9593, 60.8486], [10.9593, 60.8486], [10.9593, 60.8485], [10.9593, 60.8484], [10.9592, 60.8484], [10.9592, 60.8483], [10.9591, 60.8482], [10.9589, 60.8481], [10.9588, 60.848], [10.9588, 60.8479], [10.9588, 60.8479], [10.9588, 60.8478], [10.9588, 60.8478], [10.9589, 60.8477], [10.959, 60.8478], [10.9592, 60.8477], [10.9593, 60.8477], [10.9595, 60.8477], [10.9596, 60.8477], [10.9598, 60.8477], [10.96, 60.8477], [10.9601, 60.8477], [10.9601, 60.8477], [10.9602, 60.8476], [10.9603, 60.8474], [10.9604, 60.8474], [10.9604, 60.8473], [10.9605, 60.8472], [10.9605, 60.8472], [10.9606, 60.8471], [10.9606, 60.847], [10.9606, 60.8469], [10.9606, 60.8468], [10.9607, 60.8468], [10.9608, 60.8467], [10.961, 60.8467], [10.9611, 60.8466], [10.9612, 60.8465], [10.9612, 60.8465], [10.9613, 60.8464], [10.9614, 60.8464], [10.9614, 60.8463], [10.9614, 60.8462], [10.9614, 60.8461], [10.9614, 60.8461], [10.9614, 60.8461], [10.9614, 60.8461], [10.9615, 60.846], [10.9615, 60.8459], [10.9616, 60.8459], [10.9616, 60.8458], [10.9615, 60.8458], [10.9616, 60.8458], [10.9616, 60.8458], [10.9616, 60.8458], [10.9617, 60.8458], [10.9618, 60.8458], [10.9619, 60.8457], [10.962, 60.8457], [10.962, 60.8456], [10.9621, 60.8456], [10.9622, 60.8456], [10.9622, 60.8456], [10.9623, 60.8455], [10.9624, 60.8455], [10.9625, 60.8454], [10.9625, 60.8454], [10.9625, 60.8453], [10.9626, 60.8453], [10.9626, 60.8452], [10.9627, 60.8451], [10.9627, 60.8451], [10.9628, 60.8451], [10.9629, 60.8451], [10.9629, 60.8451], [10.963, 60.8452], [10.9631, 60.8452], [10.9632, 60.8452], [10.9633, 60.8452], [10.9634, 60.8452], [10.9635, 60.8452], [10.9636, 60.8452], [10.9637, 60.8452], [10.9639, 60.8451], [10.9639, 60.8451], [10.9639, 60.845], [10.9638, 60.845], [10.9639, 60.8449], [10.964, 60.8449], [10.964, 60.8449], [10.964, 60.8448], [10.964, 60.8448], [10.9641, 60.8447], [10.9642, 60.8447], [10.9642, 60.8446], [10.9642, 60.8446], [10.9642, 60.8445], [10.9644, 60.8445], [10.9644, 60.8444], [10.9643, 60.8444], [10.9643, 60.8444], [10.9641, 60.8443], [10.964, 60.8443], [10.9639, 60.8443], [10.9638, 60.8443], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8442], [10.9637, 60.8441], [10.9637, 60.8441], [10.9637, 60.8441], [10.9638, 60.844], [10.9638, 60.844], [10.964, 60.8439], [10.9641, 60.8439], [10.9642, 60.8438], [10.9643, 60.8438], [10.9644, 60.8438], [10.9644, 60.8438], [10.9644, 60.8437], [10.9644, 60.8437], [10.9645, 60.8436], [10.9644, 60.8436], [10.9644, 60.8436], [10.9643, 60.8436], [10.9642, 60.8436], [10.9642, 60.8436], [10.9641, 60.8436], [10.9642, 60.8435], [10.9643, 60.8435], [10.9643, 60.8435], [10.9644, 60.8435], [10.9645, 60.8435], [10.9645, 60.8436], [10.9645, 60.8436], [10.9646, 60.8435], [10.9647, 60.8435], [10.9647, 60.8434], [10.9647, 60.8433], [10.9647, 60.8433], [10.9647, 60.8432], [10.9647, 60.8431], [10.9647, 60.843], [10.9647, 60.8429], [10.9647, 60.8429], [10.9647, 60.8429], [10.9647, 60.8429], [10.9648, 60.8428], [10.9648, 60.8428], [10.9648, 60.8428], [10.9649, 60.8428], [10.9649, 60.8428], [10.9649, 60.8428], [10.9649, 60.8427], [10.9649, 60.8427], [10.9649, 60.8426], [10.9649, 60.8425], [10.9649, 60.8425], [10.965, 60.8424], [10.965, 60.8423], [10.965, 60.8422], [10.965, 60.8421], [10.965, 60.842], [10.965, 60.8419], [10.965, 60.8418], [10.9649, 60.8417], [10.9649, 60.8417], [10.965, 60.8416], [10.965, 60.8415], [10.965, 60.8414], [10.9649, 60.8414], [10.9648, 60.8413], [10.9648, 60.8412], [10.9648, 60.8412], [10.9648, 60.8412], [10.9648, 60.8411], [10.9648, 60.8411], [10.9649, 60.841], [10.9649, 60.841], [10.9649, 60.841], [10.965, 60.8409], [10.9651, 60.8409], [10.9652, 60.8409], [10.9652, 60.8409], [10.9653, 60.8408], [10.9654, 60.8408], [10.9655, 60.8408], [10.9656, 60.8406], [10.9658, 60.8404], [10.966, 60.8402], [10.9661, 60.8402], [10.9662, 60.8401], [10.9663, 60.8401], [10.9663, 60.84], [10.9664, 60.8399], [10.9664, 60.8399], [10.9663, 60.8398], [10.9663, 60.8398], [10.9663, 60.8397], [10.9663, 60.8397], [10.9662, 60.8397], [10.9661, 60.8396], [10.966, 60.8396], [10.966, 60.8396], [10.966, 60.8396], [10.9659, 60.8395], [10.9659, 60.8395], [10.9659, 60.8395], [10.966, 60.8395], [10.9661, 60.8395], [10.966, 60.8395], [10.966, 60.8395], [10.9661, 60.8395], [10.9662, 60.8395], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8394], [10.9662, 60.8393], [10.9663, 60.8393], [10.9663, 60.8393], [10.9664, 60.8393], [10.9664, 60.8393], [10.9665, 60.8393], [10.9665, 60.8393], [10.9666, 60.8393], [10.9667, 60.8393], [10.9667, 60.8393], [10.9667, 60.8393], [10.9668, 60.8393], [10.9669, 60.8393], [10.9669, 60.8393], [10.967, 60.8393], [10.967, 60.8392], [10.9671, 60.8392], [10.9671, 60.8392], [10.9672, 60.8391], [10.9673, 60.8391], [10.9675, 60.839], [10.9675, 60.839], [10.9676, 60.839], [10.9677, 60.8389], [10.9677, 60.8389], [10.9677, 60.8389], [10.9678, 60.8389], [10.9679, 60.8388], [10.9679, 60.8388], [10.9679, 60.8388], [10.968, 60.8388], [10.968, 60.8388], [10.9682, 60.8387], [10.9684, 60.8387], [10.9685, 60.8387], [10.9686, 60.8386], [10.9688, 60.8386], [10.9689, 60.8386], [10.969, 60.8385], [10.9689, 60.8385], [10.969, 60.8385], [10.9691, 60.8384], [10.9691, 60.8384], [10.9691, 60.8383], [10.9692, 60.8383], [10.9692, 60.8382], [10.9693, 60.8382], [10.9694, 60.8382], [10.9696, 60.8381], [10.9695, 60.8381], [10.9697, 60.8381], [10.9698, 60.838], [10.9698, 60.838], [10.9699, 60.838], [10.9699, 60.838], [10.97, 60.838], [10.9701, 60.838], [10.9701, 60.8379], [10.97, 60.8379], [10.9701, 60.8379], [10.9701, 60.8379], [10.9702, 60.8379], [10.9703, 60.8379], [10.9705, 60.8378], [10.9706, 60.8378], [10.9708, 60.8377], [10.9709, 60.8377], [10.9709, 60.8377], [10.9709, 60.8377], [10.9709, 60.8376], [10.971, 60.8375], [10.971, 60.8375], [10.9711, 60.8374], [10.9712, 60.8374], [10.9713, 60.8374], [10.9714, 60.8374], [10.9714, 60.8374], [10.9715, 60.8373], [10.9715, 60.8373], [10.9714, 60.8373], [10.9713, 60.8372], [10.9714, 60.8371], [10.9714, 60.8371], [10.9714, 60.8371], [10.9715, 60.8371], [10.9715, 60.837], [10.9715, 60.837], [10.9716, 60.837], [10.9716, 60.8369], [10.9717, 60.8369], [10.9718, 60.8369], [10.9717, 60.8369], [10.9504, 60.8369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "87", "sub_div_center": [60.796856, 10.957573]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.8169], [10.9904, 60.7969], [10.9691, 60.7969], [10.969, 60.7969], [10.9691, 60.7971], [10.969, 60.7973], [10.969, 60.7975], [10.9689, 60.7976], [10.969, 60.7977], [10.969, 60.7978], [10.9691, 60.7979], [10.9691, 60.798], [10.9692, 60.7982], [10.9692, 60.7984], [10.9693, 60.7985], [10.9693, 60.7986], [10.9693, 60.7987], [10.9693, 60.7988], [10.9693, 60.7989], [10.9693, 60.799], [10.9694, 60.7992], [10.9693, 60.7993], [10.9693, 60.7994], [10.9693, 60.7996], [10.9693, 60.7997], [10.9694, 60.7998], [10.9694, 60.7999], [10.9694, 60.8], [10.9693, 60.8002], [10.9692, 60.8003], [10.9691, 60.8004], [10.9691, 60.8005], [10.9692, 60.8006], [10.9692, 60.8007], [10.9692, 60.8008], [10.9691, 60.801], [10.9691, 60.8011], [10.9691, 60.8013], [10.9692, 60.8014], [10.9692, 60.8015], [10.9692, 60.8017], [10.9693, 60.8019], [10.9694, 60.802], [10.9695, 60.8022], [10.9695, 60.8022], [10.9696, 60.8023], [10.9697, 60.8023], [10.9698, 60.8025], [10.97, 60.8027], [10.9701, 60.8028], [10.9702, 60.8029], [10.9703, 60.803], [10.9705, 60.8032], [10.9709, 60.8034], [10.9711, 60.8036], [10.9713, 60.8037], [10.9715, 60.8038], [10.9719, 60.804], [10.9721, 60.8041], [10.9724, 60.8042], [10.9726, 60.8043], [10.9729, 60.8045], [10.9731, 60.8047], [10.9734, 60.8049], [10.9736, 60.8051], [10.9739, 60.8052], [10.9741, 60.8055], [10.9744, 60.8058], [10.9744, 60.8059], [10.9744, 60.806], [10.9744, 60.8061], [10.9743, 60.8062], [10.9742, 60.8063], [10.9739, 60.8064], [10.9738, 60.8064], [10.9736, 60.8064], [10.9733, 60.8065], [10.9731, 60.8066], [10.9731, 60.8067], [10.9731, 60.807], [10.9731, 60.8072], [10.973, 60.8073], [10.973, 60.8073], [10.9729, 60.8075], [10.9729, 60.8076], [10.973, 60.8077], [10.9731, 60.8081], [10.9732, 60.8082], [10.9733, 60.8083], [10.9734, 60.8087], [10.9734, 60.8089], [10.9734, 60.809], [10.9735, 60.8092], [10.9736, 60.8093], [10.9737, 60.8095], [10.9738, 60.8097], [10.9739, 60.8098], [10.9739, 60.8099], [10.974, 60.8099], [10.974, 60.81], [10.974, 60.81], [10.9742, 60.8101], [10.9742, 60.8101], [10.9743, 60.8101], [10.9742, 60.8102], [10.9741, 60.8102], [10.9741, 60.8103], [10.9741, 60.8103], [10.9739, 60.8103], [10.9738, 60.8104], [10.9737, 60.8104], [10.9735, 60.8104], [10.9734, 60.8104], [10.9733, 60.8104], [10.9733, 60.8104], [10.9731, 60.8104], [10.9729, 60.8104], [10.9725, 60.8104], [10.9723, 60.8104], [10.9722, 60.8104], [10.972, 60.8105], [10.9718, 60.8105], [10.9713, 60.8106], [10.9711, 60.8107], [10.9709, 60.8108], [10.9705, 60.8109], [10.9701, 60.8112], [10.9698, 60.8113], [10.9694, 60.8114], [10.9693, 60.8115], [10.9692, 60.8116], [10.969, 60.8117], [10.9686, 60.8119], [10.9681, 60.812], [10.968, 60.8122], [10.9676, 60.8124], [10.9675, 60.8125], [10.9673, 60.8127], [10.9671, 60.8128], [10.9669, 60.8129], [10.9667, 60.813], [10.9666, 60.8131], [10.9665, 60.8132], [10.9664, 60.8132], [10.9662, 60.8133], [10.9659, 60.8134], [10.9656, 60.8136], [10.9654, 60.8136], [10.9652, 60.8137], [10.9648, 60.8138], [10.9643, 60.8139], [10.9641, 60.8139], [10.9639, 60.8139], [10.9637, 60.814], [10.9635, 60.814], [10.9632, 60.8141], [10.9629, 60.8142], [10.9625, 60.8143], [10.9618, 60.8144], [10.9612, 60.8146], [10.9604, 60.8153], [10.9591, 60.816], [10.9589, 60.8161], [10.9581, 60.8165], [10.9576, 60.8169], [10.9904, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "88", "sub_div_center": [60.656856, 10.964592]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6769], [10.9904, 60.6569], [10.9716, 60.6569], [10.9717, 60.6569], [10.9717, 60.6569], [10.9717, 60.657], [10.9718, 60.657], [10.9718, 60.6571], [10.9717, 60.6572], [10.9717, 60.6573], [10.9716, 60.6574], [10.9716, 60.6576], [10.9715, 60.6577], [10.9715, 60.6578], [10.9714, 60.658], [10.9713, 60.658], [10.9713, 60.6582], [10.9713, 60.6584], [10.9712, 60.6587], [10.9712, 60.6588], [10.9712, 60.6589], [10.9712, 60.6589], [10.9712, 60.659], [10.9712, 60.6591], [10.9712, 60.6593], [10.9712, 60.6594], [10.9711, 60.6595], [10.9711, 60.6596], [10.9708, 60.6597], [10.9708, 60.6597], [10.9709, 60.6598], [10.9709, 60.6599], [10.9709, 60.6599], [10.9707, 60.66], [10.9705, 60.6601], [10.9704, 60.6602], [10.9701, 60.6602], [10.9699, 60.6603], [10.9699, 60.6604], [10.9699, 60.6604], [10.9699, 60.6604], [10.97, 60.6605], [10.97, 60.6605], [10.9699, 60.6605], [10.9698, 60.6605], [10.9698, 60.6605], [10.9696, 60.6605], [10.9695, 60.6604], [10.9694, 60.6604], [10.9694, 60.6604], [10.9693, 60.6604], [10.9692, 60.6604], [10.969, 60.6604], [10.9689, 60.6604], [10.9688, 60.6604], [10.9687, 60.6603], [10.9686, 60.6603], [10.9686, 60.6603], [10.9686, 60.6602], [10.9687, 60.6602], [10.9688, 60.6603], [10.969, 60.6603], [10.9691, 60.6603], [10.9691, 60.6603], [10.9692, 60.6603], [10.9692, 60.6603], [10.9691, 60.6602], [10.9687, 60.6602], [10.9686, 60.6601], [10.9685, 60.6601], [10.9683, 60.66], [10.9683, 60.66], [10.9682, 60.66], [10.968, 60.66], [10.968, 60.66], [10.9684, 60.6602], [10.9684, 60.6602], [10.9684, 60.6603], [10.9684, 60.6603], [10.9683, 60.6603], [10.9682, 60.6603], [10.9682, 60.6603], [10.9681, 60.6602], [10.9679, 60.6601], [10.9679, 60.6601], [10.9679, 60.6601], [10.9678, 60.6601], [10.9679, 60.6602], [10.9679, 60.6602], [10.968, 60.6603], [10.9681, 60.6604], [10.9685, 60.6605], [10.9686, 60.6606], [10.9686, 60.6606], [10.9686, 60.6606], [10.9684, 60.6606], [10.9684, 60.6607], [10.9683, 60.6607], [10.9682, 60.6607], [10.968, 60.6606], [10.9674, 60.6604], [10.9672, 60.6603], [10.9671, 60.6603], [10.9665, 60.6601], [10.9659, 60.6598], [10.9657, 60.6598], [10.9653, 60.6597], [10.9652, 60.6596], [10.965, 60.6596], [10.9648, 60.6595], [10.9647, 60.6595], [10.9646, 60.6595], [10.9646, 60.6596], [10.9646, 60.6597], [10.9646, 60.6597], [10.9646, 60.6597], [10.9649, 60.6598], [10.9652, 60.6598], [10.9654, 60.6599], [10.9655, 60.6599], [10.9657, 60.66], [10.9663, 60.6603], [10.9663, 60.6603], [10.9665, 60.6605], [10.9665, 60.6605], [10.9666, 60.6605], [10.9671, 60.6606], [10.9674, 60.6607], [10.9675, 60.6608], [10.9676, 60.6608], [10.9679, 60.6608], [10.9682, 60.6608], [10.9684, 60.6609], [10.9685, 60.6609], [10.969, 60.6611], [10.9693, 60.6611], [10.9697, 60.6613], [10.9698, 60.6613], [10.9699, 60.6614], [10.9699, 60.6614], [10.97, 60.6614], [10.9701, 60.6616], [10.9701, 60.6616], [10.9703, 60.6617], [10.9704, 60.6617], [10.9705, 60.6617], [10.9705, 60.6618], [10.9705, 60.6618], [10.9704, 60.6618], [10.9703, 60.6619], [10.9701, 60.6619], [10.9701, 60.6619], [10.9701, 60.6619], [10.97, 60.662], [10.97, 60.662], [10.97, 60.662], [10.97, 60.6622], [10.97, 60.6622], [10.97, 60.6623], [10.9701, 60.6623], [10.9701, 60.6623], [10.9701, 60.6623], [10.9703, 60.6625], [10.9705, 60.6626], [10.9705, 60.6626], [10.9705, 60.6626], [10.9704, 60.6627], [10.9703, 60.6628], [10.9701, 60.6628], [10.97, 60.6628], [10.97, 60.6629], [10.97, 60.6629], [10.97, 60.6632], [10.9698, 60.6633], [10.9698, 60.6633], [10.9698, 60.6635], [10.9697, 60.6636], [10.9697, 60.6636], [10.9697, 60.6637], [10.9698, 60.6637], [10.9698, 60.6639], [10.9698, 60.6642], [10.9698, 60.6643], [10.9699, 60.6643], [10.9698, 60.6643], [10.9698, 60.6644], [10.9696, 60.6646], [10.9696, 60.6647], [10.9696, 60.6648], [10.9696, 60.6648], [10.9696, 60.6649], [10.9696, 60.665], [10.9697, 60.6651], [10.9697, 60.6651], [10.9696, 60.6653], [10.9695, 60.6654], [10.9695, 60.6655], [10.9695, 60.6655], [10.9695, 60.6656], [10.9695, 60.6656], [10.9695, 60.6658], [10.9695, 60.6658], [10.9697, 60.6658], [10.9698, 60.6659], [10.9698, 60.6659], [10.9697, 60.6659], [10.9695, 60.6659], [10.9695, 60.666], [10.9695, 60.666], [10.9696, 60.666], [10.9698, 60.666], [10.9697, 60.666], [10.9697, 60.6661], [10.9698, 60.6661], [10.9698, 60.6666], [10.9698, 60.6667], [10.9698, 60.6667], [10.9697, 60.6669], [10.9697, 60.6669], [10.9697, 60.6671], [10.9697, 60.6672], [10.9698, 60.6674], [10.9699, 60.6676], [10.97, 60.6677], [10.9703, 60.6683], [10.9704, 60.6684], [10.9705, 60.6687], [10.9705, 60.6688], [10.9705, 60.6693], [10.9705, 60.6697], [10.9705, 60.67], [10.9705, 60.6702], [10.9705, 60.6704], [10.9704, 60.6707], [10.9704, 60.6711], [10.9703, 60.6712], [10.9703, 60.6713], [10.9703, 60.6716], [10.9702, 60.6717], [10.9701, 60.6718], [10.97, 60.672], [10.97, 60.6721], [10.97, 60.6721], [10.9699, 60.6722], [10.9698, 60.6723], [10.9696, 60.6726], [10.9695, 60.6729], [10.9695, 60.6732], [10.9694, 60.6733], [10.9693, 60.6734], [10.9692, 60.6735], [10.969, 60.6736], [10.969, 60.6737], [10.9689, 60.6738], [10.9688, 60.674], [10.9688, 60.674], [10.9688, 60.675], [10.9688, 60.6751], [10.9689, 60.6753], [10.9689, 60.6753], [10.9688, 60.6754], [10.9688, 60.6755], [10.9688, 60.6756], [10.9688, 60.6756], [10.9688, 60.6757], [10.9688, 60.6757], [10.9689, 60.6758], [10.9688, 60.6759], [10.9688, 60.6759], [10.9687, 60.6759], [10.9686, 60.676], [10.9686, 60.6762], [10.9684, 60.6763], [10.9684, 60.6764], [10.9684, 60.6765], [10.9685, 60.6766], [10.9685, 60.6767], [10.9684, 60.6768], [10.9684, 60.6769], [10.9904, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "89", "sub_div_center": [60.776856, 10.968729]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7969], [10.9904, 60.7769], [10.9727, 60.7769], [10.9727, 60.7769], [10.9727, 60.7771], [10.9727, 60.7771], [10.9727, 60.7773], [10.9727, 60.7774], [10.9726, 60.7775], [10.9727, 60.7777], [10.9728, 60.7779], [10.9729, 60.7782], [10.9729, 60.7784], [10.973, 60.7785], [10.973, 60.7787], [10.9731, 60.7792], [10.9732, 60.7794], [10.9732, 60.7796], [10.9733, 60.7796], [10.9733, 60.7797], [10.9734, 60.7798], [10.9734, 60.7799], [10.9733, 60.78], [10.9733, 60.78], [10.9733, 60.7801], [10.9733, 60.7801], [10.9734, 60.7802], [10.9734, 60.7802], [10.9734, 60.7803], [10.9734, 60.7803], [10.9733, 60.7804], [10.9733, 60.7804], [10.9732, 60.7804], [10.9732, 60.7805], [10.9732, 60.7805], [10.9732, 60.7806], [10.9732, 60.7807], [10.9732, 60.7809], [10.9732, 60.781], [10.9732, 60.7811], [10.9732, 60.7812], [10.9732, 60.7812], [10.9733, 60.7812], [10.9734, 60.7815], [10.9734, 60.7816], [10.9734, 60.7818], [10.9734, 60.782], [10.9735, 60.7821], [10.9735, 60.7822], [10.9735, 60.7823], [10.9736, 60.7824], [10.9736, 60.7824], [10.9736, 60.7825], [10.9736, 60.7825], [10.9738, 60.7825], [10.9739, 60.7825], [10.974, 60.7825], [10.974, 60.7826], [10.974, 60.7826], [10.974, 60.7827], [10.974, 60.7827], [10.9739, 60.7827], [10.9739, 60.7826], [10.9739, 60.7826], [10.9739, 60.7826], [10.9737, 60.7826], [10.9737, 60.7826], [10.9736, 60.7826], [10.9735, 60.7826], [10.9735, 60.7826], [10.9734, 60.7827], [10.9735, 60.7827], [10.9736, 60.7828], [10.9737, 60.7828], [10.9738, 60.7828], [10.9738, 60.7828], [10.9738, 60.7828], [10.9737, 60.7829], [10.9737, 60.7829], [10.9736, 60.7829], [10.9734, 60.7829], [10.9734, 60.7829], [10.9734, 60.783], [10.9734, 60.783], [10.9734, 60.7831], [10.9733, 60.7832], [10.9733, 60.7832], [10.9733, 60.7833], [10.9733, 60.7833], [10.9733, 60.7834], [10.9734, 60.7835], [10.9734, 60.7838], [10.9734, 60.7838], [10.9734, 60.7838], [10.9734, 60.784], [10.9734, 60.7842], [10.9734, 60.7844], [10.9734, 60.7846], [10.9734, 60.7847], [10.9735, 60.7847], [10.9734, 60.7847], [10.9734, 60.7847], [10.9734, 60.7847], [10.9734, 60.7849], [10.9733, 60.785], [10.9733, 60.7852], [10.9732, 60.7855], [10.973, 60.7857], [10.9728, 60.786], [10.9728, 60.7861], [10.9728, 60.7862], [10.9727, 60.7863], [10.9726, 60.7864], [10.9726, 60.7865], [10.9726, 60.7866], [10.9726, 60.7867], [10.9723, 60.7868], [10.9722, 60.7869], [10.9722, 60.7869], [10.9721, 60.7871], [10.9721, 60.7871], [10.9721, 60.7871], [10.9722, 60.7871], [10.9723, 60.7871], [10.9725, 60.7872], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7873], [10.9725, 60.7872], [10.9724, 60.7872], [10.9724, 60.7872], [10.9723, 60.7872], [10.9723, 60.7872], [10.9722, 60.7872], [10.9721, 60.7872], [10.9721, 60.7872], [10.9721, 60.7873], [10.9721, 60.7874], [10.9722, 60.7874], [10.9722, 60.7874], [10.9723, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9725, 60.7874], [10.9724, 60.7874], [10.9722, 60.7874], [10.9721, 60.7875], [10.9721, 60.7875], [10.972, 60.7876], [10.9719, 60.7878], [10.9719, 60.7879], [10.9719, 60.7879], [10.9719, 60.788], [10.972, 60.7882], [10.9719, 60.7883], [10.9719, 60.7884], [10.9719, 60.7884], [10.972, 60.7884], [10.972, 60.7886], [10.9719, 60.7888], [10.972, 60.789], [10.972, 60.7891], [10.9722, 60.7892], [10.9722, 60.7894], [10.9722, 60.7894], [10.9721, 60.7895], [10.9721, 60.7895], [10.9722, 60.7895], [10.9722, 60.7895], [10.9722, 60.7895], [10.9721, 60.7896], [10.9721, 60.7896], [10.9722, 60.7896], [10.9722, 60.7897], [10.9722, 60.7897], [10.9722, 60.7899], [10.9722, 60.7899], [10.972, 60.79], [10.972, 60.79], [10.972, 60.79], [10.9721, 60.79], [10.9721, 60.79], [10.9721, 60.7901], [10.9722, 60.7901], [10.9723, 60.7901], [10.9724, 60.7901], [10.9725, 60.7902], [10.9725, 60.7902], [10.9725, 60.7903], [10.9725, 60.7903], [10.9724, 60.7903], [10.9723, 60.7904], [10.9722, 60.7903], [10.9722, 60.7904], [10.9722, 60.7904], [10.9721, 60.7904], [10.9721, 60.7904], [10.9721, 60.7903], [10.972, 60.7903], [10.972, 60.7903], [10.9719, 60.7902], [10.9719, 60.7902], [10.9718, 60.7902], [10.9715, 60.7903], [10.9712, 60.7903], [10.9708, 60.7905], [10.9708, 60.7905], [10.9708, 60.7906], [10.9708, 60.7907], [10.9708, 60.7907], [10.9708, 60.7908], [10.9702, 60.7908], [10.9702, 60.7908], [10.9701, 60.7909], [10.9702, 60.7909], [10.9702, 60.7909], [10.9703, 60.7909], [10.9705, 60.791], [10.9707, 60.791], [10.971, 60.791], [10.971, 60.791], [10.971, 60.791], [10.9709, 60.791], [10.9707, 60.791], [10.9705, 60.791], [10.9702, 60.791], [10.97, 60.791], [10.97, 60.791], [10.9699, 60.791], [10.9698, 60.7911], [10.9697, 60.7912], [10.9695, 60.7914], [10.9694, 60.7915], [10.9693, 60.7918], [10.9692, 60.7918], [10.9691, 60.792], [10.9691, 60.7921], [10.969, 60.7924], [10.9689, 60.7926], [10.9689, 60.7926], [10.9689, 60.7927], [10.9689, 60.7928], [10.9689, 60.7929], [10.9689, 60.793], [10.9688, 60.7931], [10.9688, 60.7931], [10.9689, 60.7931], [10.9689, 60.7932], [10.9689, 60.7932], [10.969, 60.7932], [10.9691, 60.7933], [10.9692, 60.7933], [10.9693, 60.7933], [10.9693, 60.7933], [10.9694, 60.7933], [10.9694, 60.7933], [10.9694, 60.7934], [10.9693, 60.7935], [10.9692, 60.7936], [10.969, 60.7936], [10.9689, 60.7936], [10.9689, 60.7936], [10.9688, 60.7936], [10.9688, 60.7937], [10.9687, 60.7938], [10.9687, 60.794], [10.9688, 60.7941], [10.9688, 60.7942], [10.9688, 60.7943], [10.9689, 60.7943], [10.9688, 60.7944], [10.9688, 60.7945], [10.9688, 60.7946], [10.9689, 60.7946], [10.9688, 60.7947], [10.9689, 60.7948], [10.9689, 60.7949], [10.9689, 60.7951], [10.9689, 60.7953], [10.9689, 60.7954], [10.969, 60.7954], [10.969, 60.7957], [10.969, 60.7959], [10.9691, 60.796], [10.9691, 60.7961], [10.9692, 60.7962], [10.9691, 60.7962], [10.9691, 60.7964], [10.969, 60.7965], [10.9691, 60.7967], [10.9691, 60.7968], [10.9691, 60.7969], [10.9904, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "90", "sub_div_center": [60.653373, 10.971545]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6569], [10.9904, 60.6534], [10.9903, 60.6534], [10.9903, 60.6534], [10.99, 60.6534], [10.9898, 60.6534], [10.9892, 60.6535], [10.989, 60.6536], [10.9889, 60.6536], [10.9889, 60.6537], [10.9889, 60.6538], [10.989, 60.6538], [10.9889, 60.6538], [10.9889, 60.6538], [10.9887, 60.6537], [10.9886, 60.6537], [10.9883, 60.6537], [10.9883, 60.6537], [10.9885, 60.6538], [10.9884, 60.6538], [10.9883, 60.6538], [10.9882, 60.6538], [10.9882, 60.6538], [10.9881, 60.6538], [10.988, 60.6538], [10.9876, 60.6539], [10.9875, 60.6539], [10.9875, 60.654], [10.9875, 60.654], [10.9876, 60.6541], [10.9875, 60.6541], [10.9875, 60.6541], [10.9875, 60.654], [10.9874, 60.654], [10.9873, 60.654], [10.9871, 60.654], [10.9869, 60.6541], [10.9868, 60.6541], [10.9869, 60.6542], [10.9868, 60.6542], [10.9867, 60.6542], [10.9867, 60.6542], [10.9866, 60.6542], [10.9865, 60.6542], [10.9864, 60.6542], [10.9863, 60.6542], [10.9863, 60.6542], [10.9863, 60.6543], [10.9865, 60.6546], [10.9865, 60.6546], [10.9866, 60.6546], [10.9865, 60.6546], [10.9865, 60.6546], [10.9864, 60.6546], [10.9863, 60.6544], [10.9862, 60.6543], [10.9862, 60.6543], [10.986, 60.6543], [10.986, 60.6543], [10.9859, 60.6543], [10.9858, 60.6544], [10.9858, 60.6544], [10.9856, 60.6544], [10.9855, 60.6544], [10.9855, 60.6544], [10.9853, 60.6544], [10.9851, 60.6545], [10.9849, 60.6546], [10.9847, 60.6548], [10.9847, 60.6548], [10.9847, 60.6549], [10.9847, 60.6549], [10.9846, 60.655], [10.9845, 60.6552], [10.9844, 60.6552], [10.9843, 60.6553], [10.9842, 60.6553], [10.9838, 60.6554], [10.9837, 60.6554], [10.9835, 60.6554], [10.9834, 60.6555], [10.9833, 60.6555], [10.9828, 60.6557], [10.9827, 60.6557], [10.9825, 60.6559], [10.9824, 60.656], [10.9823, 60.656], [10.982, 60.6561], [10.9819, 60.6562], [10.9819, 60.6562], [10.9817, 60.6562], [10.9814, 60.6561], [10.9814, 60.6561], [10.9811, 60.6561], [10.981, 60.6561], [10.9809, 60.6561], [10.9807, 60.656], [10.9806, 60.656], [10.9802, 60.656], [10.9802, 60.656], [10.9799, 60.6559], [10.9798, 60.6559], [10.9797, 60.6559], [10.9797, 60.656], [10.9796, 60.656], [10.9796, 60.6561], [10.9797, 60.6562], [10.9797, 60.6563], [10.9796, 60.6563], [10.9795, 60.6564], [10.9794, 60.6564], [10.9794, 60.6564], [10.9793, 60.6564], [10.9793, 60.6563], [10.9795, 60.6562], [10.9795, 60.6562], [10.9795, 60.6561], [10.9795, 60.6561], [10.9793, 60.6561], [10.9792, 60.6561], [10.9791, 60.6561], [10.9791, 60.6562], [10.979, 60.6562], [10.9789, 60.6562], [10.9787, 60.6563], [10.9785, 60.6563], [10.9784, 60.6564], [10.9784, 60.6564], [10.9783, 60.6565], [10.9781, 60.6565], [10.9781, 60.6565], [10.978, 60.6565], [10.9779, 60.6563], [10.9778, 60.6563], [10.9777, 60.6563], [10.9776, 60.6562], [10.9773, 60.6561], [10.9772, 60.656], [10.9771, 60.656], [10.9771, 60.656], [10.9769, 60.6561], [10.9769, 60.6561], [10.9768, 60.6561], [10.9768, 60.656], [10.9769, 60.656], [10.9769, 60.6559], [10.9768, 60.6559], [10.9766, 60.6559], [10.9761, 60.6559], [10.9758, 60.6559], [10.9754, 60.6559], [10.9753, 60.656], [10.9752, 60.6561], [10.9751, 60.6561], [10.9751, 60.6561], [10.975, 60.656], [10.975, 60.656], [10.9751, 60.656], [10.9751, 60.656], [10.9751, 60.6559], [10.9752, 60.6558], [10.9752, 60.6558], [10.9752, 60.6557], [10.9751, 60.6557], [10.975, 60.6558], [10.9748, 60.6558], [10.9748, 60.6558], [10.9748, 60.6558], [10.9747, 60.6557], [10.9747, 60.6557], [10.9745, 60.6557], [10.9744, 60.6557], [10.9743, 60.6558], [10.9743, 60.6558], [10.9743, 60.6558], [10.9743, 60.6557], [10.9743, 60.6556], [10.974, 60.6557], [10.9737, 60.6558], [10.9735, 60.6558], [10.973, 60.6559], [10.9728, 60.656], [10.972, 60.6563], [10.9719, 60.6564], [10.9719, 60.6564], [10.9717, 60.6567], [10.9717, 60.6567], [10.9716, 60.6568], [10.9716, 60.6568], [10.9715, 60.6568], [10.9716, 60.6568], [10.9716, 60.6569], [10.9904, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "91", "sub_div_center": [60.647966, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0299, 60.648], [11.0294, 60.648], [11.0291, 60.648], [11.0287, 60.648], [11.0285, 60.648], [11.0283, 60.648], [11.0282, 60.648], [11.0281, 60.6481], [11.028, 60.6481], [11.028, 60.6482], [11.0279, 60.6482], [11.0278, 60.6482], [11.0266, 60.6483], [11.0264, 60.6483], [11.0263, 60.6483], [11.0261, 60.6484], [11.026, 60.6484], [11.0259, 60.6485], [11.0256, 60.6487], [11.0256, 60.6488], [11.0255, 60.6489], [11.0253, 60.649], [11.0252, 60.649], [11.0252, 60.649], [11.0252, 60.649], [11.0247, 60.6491], [11.0235, 60.6495], [11.0229, 60.6496], [11.0223, 60.6498], [11.0214, 60.65], [11.0212, 60.6501], [11.021, 60.6502], [11.0208, 60.6502], [11.0205, 60.6503], [11.0204, 60.6503], [11.0198, 60.6504], [11.0197, 60.6504], [11.0195, 60.6504], [11.0195, 60.6504], [11.0194, 60.6504], [11.0194, 60.6505], [11.0193, 60.6505], [11.0193, 60.6505], [11.0192, 60.6505], [11.019, 60.6505], [11.0185, 60.6505], [11.018, 60.6506], [11.0175, 60.6506], [11.0172, 60.6506], [11.0165, 60.6506], [11.0158, 60.6506], [11.0151, 60.6506], [11.0148, 60.6506], [11.0143, 60.6506], [11.0129, 60.6506], [11.012, 60.6507], [11.0113, 60.6508], [11.0112, 60.6508], [11.0109, 60.6508], [11.0108, 60.6508], [11.0107, 60.6508], [11.0106, 60.6508], [11.0105, 60.6508], [11.0101, 60.6509], [11.0099, 60.651], [11.0097, 60.6511], [11.0091, 60.6512], [11.0088, 60.6513], [11.0085, 60.6514], [11.0083, 60.6515], [11.0082, 60.6515], [11.0081, 60.6516], [11.0081, 60.6516], [11.008, 60.6517], [11.0079, 60.6517], [11.0072, 60.6518], [11.0071, 60.6518], [11.007, 60.6519], [11.007, 60.6519], [11.007, 60.6521], [11.0071, 60.6521], [11.0071, 60.6522], [11.0072, 60.6524], [11.0071, 60.6524], [11.0072, 60.6525], [11.0073, 60.6525], [11.0073, 60.6525], [11.0071, 60.6526], [11.007, 60.6524], [11.007, 60.6523], [11.007, 60.6523], [11.0068, 60.6521], [11.0067, 60.652], [11.0063, 60.6521], [11.0061, 60.6522], [11.006, 60.6522], [11.0056, 60.6523], [11.0054, 60.6523], [11.0048, 60.6525], [11.0046, 60.6525], [11.0045, 60.6525], [11.0045, 60.6526], [11.0044, 60.6526], [11.004, 60.6527], [11.004, 60.6527], [11.0033, 60.6527], [11.0032, 60.6527], [11.0029, 60.6527], [11.0028, 60.6527], [11.0028, 60.6527], [11.0027, 60.6526], [11.0026, 60.6526], [11.0026, 60.6525], [11.0025, 60.6525], [11.0023, 60.6525], [11.0023, 60.6526], [11.0022, 60.6526], [11.0021, 60.6526], [11.0017, 60.6527], [11.0015, 60.6527], [11.0013, 60.6527], [11.0011, 60.6527], [11.0008, 60.6528], [11.0006, 60.6528], [11.0005, 60.6528], [11.0, 60.6529], [10.9998, 60.6529], [10.9997, 60.653], [10.9996, 60.653], [10.9995, 60.6531], [10.9994, 60.6531], [10.9994, 60.6531], [10.9992, 60.653], [10.9991, 60.653], [10.999, 60.653], [10.9985, 60.6529], [10.9984, 60.6529], [10.9977, 60.6529], [10.997, 60.6529], [10.997, 60.6529], [10.9968, 60.6528], [10.9966, 60.6528], [10.9964, 60.6528], [10.9957, 60.6529], [10.9954, 60.6529], [10.9951, 60.6529], [10.995, 60.653], [10.9949, 60.653], [10.9949, 60.6529], [10.9949, 60.6529], [10.9948, 60.6529], [10.9947, 60.6529], [10.9946, 60.6529], [10.9943, 60.653], [10.9941, 60.6531], [10.9939, 60.6532], [10.9939, 60.6532], [10.9938, 60.6533], [10.9937, 60.6533], [10.9934, 60.6533], [10.9933, 60.6533], [10.9932, 60.6533], [10.9931, 60.6534], [10.9931, 60.6534], [10.9931, 60.6534], [10.9932, 60.6535], [10.9932, 60.6536], [10.9932, 60.6536], [10.9934, 60.6536], [10.9935, 60.6536], [10.9935, 60.6537], [10.9934, 60.6537], [10.9934, 60.6537], [10.9933, 60.6537], [10.9932, 60.6537], [10.9932, 60.6537], [10.9931, 60.6536], [10.993, 60.6535], [10.9929, 60.6534], [10.9928, 60.6534], [10.9927, 60.6535], [10.9926, 60.6535], [10.9924, 60.6535], [10.9923, 60.6536], [10.9922, 60.6536], [10.9922, 60.6536], [10.9922, 60.6537], [10.9921, 60.6537], [10.9921, 60.6536], [10.992, 60.6535], [10.992, 60.6535], [10.9919, 60.6535], [10.9914, 60.6535], [10.9914, 60.6535], [10.9914, 60.6534], [10.9912, 60.6534], [10.9912, 60.6534], [10.9908, 60.6534], [10.9907, 60.6534], [10.9907, 60.6534], [10.9906, 60.6534], [10.9906, 60.6534], [10.9906, 60.6535], [10.9905, 60.6535], [10.9905, 60.6535], [10.9904, 60.6534], [10.9904, 60.6569], [11.0304, 60.6569], [11.0304, 60.6482], [11.0299, 60.648]]]}}, {"type": "Feature", "properties": {"sub_div_id": "92", "sub_div_center": [60.656856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6569], [10.9904, 60.6769], [11.0304, 60.6769], [11.0304, 60.6569], [10.9904, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "93", "sub_div_center": [60.676856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6769], [10.9904, 60.6969], [11.0304, 60.6969], [11.0304, 60.6769], [10.9904, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "94", "sub_div_center": [60.696856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.6969], [10.9904, 60.7169], [11.0304, 60.7169], [11.0304, 60.6969], [10.9904, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "95", "sub_div_center": [60.716856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7169], [10.9904, 60.7369], [11.0304, 60.7369], [11.0304, 60.7169], [10.9904, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "96", "sub_div_center": [60.736856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7369], [10.9904, 60.7569], [11.0304, 60.7569], [11.0304, 60.7369], [10.9904, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "97", "sub_div_center": [60.756856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7569], [10.9904, 60.7769], [11.0304, 60.7769], [11.0304, 60.7569], [10.9904, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "98", "sub_div_center": [60.776856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7769], [10.9904, 60.7969], [11.0272, 60.7969], [11.0273, 60.7968], [11.0273, 60.7968], [11.0274, 60.7968], [11.0275, 60.7968], [11.0276, 60.7968], [11.0277, 60.7968], [11.0278, 60.7968], [11.0278, 60.7968], [11.0279, 60.7969], [11.0304, 60.7969], [11.0304, 60.7769], [10.9904, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "99", "sub_div_center": [60.796856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.7969], [10.9904, 60.8169], [11.0056, 60.8169], [11.0057, 60.8168], [11.0058, 60.8166], [11.0059, 60.8165], [11.0061, 60.8162], [11.0062, 60.816], [11.0063, 60.8158], [11.0066, 60.8156], [11.0069, 60.8154], [11.007, 60.8154], [11.0071, 60.8153], [11.0072, 60.8151], [11.0073, 60.815], [11.0074, 60.8149], [11.0076, 60.8149], [11.0078, 60.8148], [11.0082, 60.8145], [11.0086, 60.8142], [11.0088, 60.8142], [11.0089, 60.8141], [11.0092, 60.8139], [11.0093, 60.8139], [11.0095, 60.8138], [11.0098, 60.8137], [11.0104, 60.8134], [11.0111, 60.8132], [11.0117, 60.813], [11.012, 60.8129], [11.0123, 60.8128], [11.0126, 60.8127], [11.0129, 60.8126], [11.0133, 60.8125], [11.0135, 60.8124], [11.0137, 60.8123], [11.0141, 60.8122], [11.0144, 60.8121], [11.0148, 60.812], [11.015, 60.8119], [11.0153, 60.8119], [11.0156, 60.8119], [11.016, 60.8118], [11.0162, 60.8118], [11.0163, 60.8117], [11.0164, 60.8117], [11.0165, 60.8117], [11.0167, 60.8116], [11.0169, 60.8116], [11.017, 60.8115], [11.0173, 60.8115], [11.0173, 60.8114], [11.0174, 60.8114], [11.0176, 60.8113], [11.0178, 60.8111], [11.0179, 60.8111], [11.018, 60.811], [11.0184, 60.8109], [11.0186, 60.8108], [11.0187, 60.8108], [11.0188, 60.8108], [11.019, 60.8107], [11.0191, 60.8107], [11.0192, 60.8106], [11.0193, 60.8105], [11.0193, 60.8104], [11.0194, 60.8103], [11.0194, 60.8102], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.81], [11.0195, 60.8099], [11.0195, 60.8099], [11.0195, 60.8099], [11.0196, 60.8098], [11.0196, 60.8098], [11.0195, 60.8098], [11.0195, 60.8098], [11.0195, 60.8097], [11.0196, 60.8097], [11.0197, 60.8097], [11.0197, 60.8096], [11.0197, 60.8096], [11.0199, 60.8096], [11.02, 60.8096], [11.0201, 60.8096], [11.0203, 60.8095], [11.0205, 60.8094], [11.0207, 60.8093], [11.0209, 60.8093], [11.0211, 60.8092], [11.0211, 60.8091], [11.0211, 60.8091], [11.0211, 60.8091], [11.0212, 60.8091], [11.0213, 60.809], [11.0215, 60.8089], [11.0217, 60.8088], [11.0219, 60.8087], [11.0219, 60.8087], [11.0219, 60.8086], [11.0219, 60.8086], [11.022, 60.8085], [11.022, 60.8084], [11.0219, 60.8083], [11.0219, 60.8082], [11.0218, 60.8081], [11.0218, 60.808], [11.0219, 60.8079], [11.0221, 60.8078], [11.0223, 60.8076], [11.0223, 60.8076], [11.0222, 60.8075], [11.0223, 60.8075], [11.0223, 60.8075], [11.0225, 60.8073], [11.0227, 60.8072], [11.0229, 60.807], [11.0229, 60.8069], [11.0229, 60.8069], [11.023, 60.8069], [11.0231, 60.8068], [11.0235, 60.8067], [11.0237, 60.8065], [11.0239, 60.8064], [11.0242, 60.8062], [11.0244, 60.806], [11.0247, 60.8059], [11.0247, 60.8058], [11.0248, 60.8058], [11.0249, 60.8057], [11.0249, 60.8056], [11.0249, 60.8054], [11.025, 60.8054], [11.025, 60.8053], [11.0251, 60.8052], [11.0251, 60.8051], [11.0251, 60.8051], [11.0251, 60.805], [11.0252, 60.8049], [11.0253, 60.8048], [11.0254, 60.8046], [11.0254, 60.8046], [11.0255, 60.8045], [11.0255, 60.8044], [11.0255, 60.8044], [11.0255, 60.8043], [11.0255, 60.8043], [11.0255, 60.8042], [11.0255, 60.8041], [11.0255, 60.8041], [11.0255, 60.804], [11.0254, 60.8039], [11.0254, 60.8037], [11.0253, 60.8036], [11.0252, 60.8035], [11.0251, 60.8034], [11.025, 60.8033], [11.025, 60.8032], [11.025, 60.8032], [11.0251, 60.8032], [11.0252, 60.8031], [11.0253, 60.8031], [11.0255, 60.8031], [11.0256, 60.803], [11.0257, 60.8029], [11.0258, 60.8028], [11.0258, 60.8028], [11.0259, 60.8027], [11.0259, 60.8026], [11.0259, 60.8025], [11.0259, 60.8024], [11.0259, 60.8023], [11.0258, 60.8021], [11.0258, 60.8021], [11.0258, 60.8019], [11.0257, 60.8018], [11.0257, 60.8017], [11.0256, 60.8016], [11.0256, 60.8015], [11.0255, 60.8015], [11.0255, 60.8014], [11.0254, 60.8013], [11.0254, 60.8012], [11.0253, 60.8012], [11.0252, 60.8011], [11.0251, 60.801], [11.025, 60.8009], [11.0249, 60.8009], [11.0248, 60.8008], [11.0247, 60.8008], [11.0246, 60.8008], [11.0245, 60.8008], [11.0245, 60.8008], [11.0245, 60.8007], [11.0244, 60.8007], [11.0243, 60.8006], [11.0243, 60.8006], [11.0242, 60.8005], [11.0242, 60.8005], [11.0242, 60.8004], [11.0242, 60.8004], [11.0242, 60.8003], [11.0242, 60.8003], [11.0242, 60.8002], [11.0243, 60.8002], [11.0243, 60.8002], [11.0243, 60.8002], [11.0243, 60.8001], [11.0243, 60.8], [11.0244, 60.7999], [11.0244, 60.7998], [11.0244, 60.7998], [11.0244, 60.7997], [11.0244, 60.7997], [11.0243, 60.7996], [11.0243, 60.7996], [11.0243, 60.7995], [11.0243, 60.7994], [11.0242, 60.7994], [11.0242, 60.7994], [11.0242, 60.7993], [11.0242, 60.7993], [11.0241, 60.7993], [11.0241, 60.7992], [11.0241, 60.7992], [11.0241, 60.7992], [11.0241, 60.7991], [11.024, 60.7991], [11.024, 60.799], [11.024, 60.799], [11.0239, 60.799], [11.0239, 60.799], [11.0238, 60.7989], [11.0237, 60.7989], [11.0238, 60.7989], [11.0239, 60.7989], [11.0239, 60.7988], [11.024, 60.7988], [11.0241, 60.7988], [11.0243, 60.7987], [11.0243, 60.7986], [11.0243, 60.7986], [11.0244, 60.7985], [11.0245, 60.7985], [11.0245, 60.7984], [11.0246, 60.7984], [11.0247, 60.7984], [11.0247, 60.7983], [11.0248, 60.7982], [11.0249, 60.7982], [11.025, 60.7981], [11.0251, 60.7981], [11.0253, 60.798], [11.0253, 60.798], [11.0254, 60.798], [11.0255, 60.798], [11.0256, 60.798], [11.0258, 60.798], [11.0259, 60.798], [11.026, 60.798], [11.0261, 60.798], [11.0262, 60.798], [11.0262, 60.7979], [11.0262, 60.7979], [11.0263, 60.7979], [11.0263, 60.7978], [11.0263, 60.7978], [11.0264, 60.7978], [11.0264, 60.7977], [11.0264, 60.7977], [11.0262, 60.7977], [11.0262, 60.7977], [11.0261, 60.7977], [11.0262, 60.7976], [11.0261, 60.7976], [11.0261, 60.7976], [11.0262, 60.7975], [11.0262, 60.7975], [11.0262, 60.7975], [11.0263, 60.7975], [11.0264, 60.7975], [11.0264, 60.7975], [11.0264, 60.7974], [11.0264, 60.7974], [11.0266, 60.7973], [11.0267, 60.7973], [11.0268, 60.7972], [11.0269, 60.7972], [11.0269, 60.7971], [11.027, 60.7971], [11.027, 60.797], [11.027, 60.797], [11.0271, 60.7969], [11.0272, 60.7969], [11.0272, 60.7969], [10.9904, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "100", "sub_div_center": [60.816856, 10.990419]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9904, 60.8169], [10.9904, 60.8263], [10.9906, 60.8263], [10.9906, 60.8262], [10.9907, 60.8262], [10.9907, 60.8262], [10.9908, 60.8262], [10.9909, 60.8262], [10.9909, 60.8261], [10.9909, 60.826], [10.9909, 60.826], [10.9909, 60.826], [10.991, 60.8259], [10.9911, 60.8259], [10.9913, 60.8258], [10.9915, 60.8258], [10.9915, 60.8258], [10.9915, 60.8258], [10.9916, 60.8258], [10.9916, 60.8258], [10.9917, 60.8258], [10.9918, 60.8258], [10.9918, 60.8258], [10.9918, 60.8258], [10.9919, 60.8258], [10.9919, 60.8258], [10.9919, 60.8257], [10.992, 60.8257], [10.992, 60.8257], [10.9921, 60.8257], [10.9923, 60.8257], [10.9923, 60.8256], [10.9924, 60.8256], [10.9925, 60.8256], [10.9926, 60.8257], [10.9927, 60.8257], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8256], [10.9929, 60.8255], [10.9935, 60.8254], [10.9935, 60.8254], [10.9935, 60.8254], [10.9936, 60.8254], [10.9937, 60.8254], [10.9937, 60.8254], [10.9938, 60.8254], [10.9938, 60.8254], [10.9939, 60.8254], [10.9939, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8254], [10.994, 60.8253], [10.994, 60.8253], [10.994, 60.8253], [10.994, 60.8253], [10.9941, 60.8253], [10.9942, 60.8253], [10.9942, 60.8253], [10.9942, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9943, 60.8252], [10.9945, 60.8251], [10.9944, 60.8251], [10.9945, 60.825], [10.9945, 60.825], [10.9946, 60.825], [10.9948, 60.8249], [10.9949, 60.8249], [10.995, 60.8249], [10.9951, 60.825], [10.9952, 60.8249], [10.9952, 60.8249], [10.9953, 60.8249], [10.9952, 60.8249], [10.9953, 60.8248], [10.9953, 60.8248], [10.9953, 60.8248], [10.9953, 60.8249], [10.9954, 60.8248], [10.9955, 60.8248], [10.9955, 60.8247], [10.9955, 60.8247], [10.9955, 60.8247], [10.9957, 60.8246], [10.9958, 60.8246], [10.9958, 60.8246], [10.9958, 60.8246], [10.9959, 60.8245], [10.9959, 60.8246], [10.996, 60.8245], [10.9961, 60.8245], [10.9961, 60.8244], [10.9962, 60.8244], [10.9963, 60.8243], [10.9964, 60.8243], [10.9964, 60.8243], [10.9965, 60.8242], [10.9966, 60.8242], [10.9966, 60.8241], [10.9967, 60.8241], [10.9969, 60.8241], [10.9969, 60.8241], [10.9969, 60.824], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.997, 60.8241], [10.9971, 60.8241], [10.9971, 60.824], [10.9972, 60.824], [10.9973, 60.824], [10.9975, 60.824], [10.9977, 60.824], [10.9978, 60.824], [10.9978, 60.824], [10.9978, 60.8239], [10.9978, 60.824], [10.9979, 60.824], [10.9981, 60.8239], [10.9983, 60.8239], [10.9983, 60.8239], [10.9984, 60.8239], [10.9985, 60.8239], [10.9985, 60.8239], [10.9987, 60.8239], [10.9987, 60.8239], [10.9988, 60.8239], [10.9989, 60.8238], [10.9989, 60.8238], [10.999, 60.8238], [10.9992, 60.8238], [10.9993, 60.8237], [10.9994, 60.8237], [10.9994, 60.8237], [10.9996, 60.8237], [10.9996, 60.8237], [10.9997, 60.8237], [10.9997, 60.8237], [10.9998, 60.8237], [10.9998, 60.8237], [10.9999, 60.8236], [11.0, 60.8236], [11.0, 60.8236], [11.0001, 60.8236], [11.0001, 60.8235], [11.0001, 60.8235], [11.0001, 60.8234], [11.0002, 60.8234], [11.0002, 60.8234], [11.0003, 60.8233], [11.0003, 60.8233], [11.0004, 60.8233], [11.0004, 60.8233], [11.0005, 60.8233], [11.0005, 60.8233], [11.0005, 60.8233], [11.0006, 60.8233], [11.0006, 60.8233], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0006, 60.8232], [11.0007, 60.8231], [11.0007, 60.8231], [11.0008, 60.8231], [11.0008, 60.8231], [11.0008, 60.823], [11.0008, 60.823], [11.0007, 60.823], [11.0007, 60.823], [11.0007, 60.823], [11.0007, 60.8229], [11.0007, 60.8229], [11.0008, 60.8229], [11.0008, 60.8228], [11.0008, 60.8228], [11.0008, 60.8227], [11.0007, 60.8227], [11.0006, 60.8226], [11.0005, 60.8226], [11.0005, 60.8226], [11.0005, 60.8226], [11.0005, 60.8225], [11.0005, 60.8225], [11.0005, 60.8225], [11.0006, 60.8224], [11.0006, 60.8225], [11.0007, 60.8225], [11.0007, 60.8225], [11.0007, 60.8224], [11.0006, 60.8224], [11.0006, 60.8224], [11.0006, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0005, 60.8224], [11.0004, 60.8223], [11.0004, 60.8223], [11.0005, 60.8223], [11.0008, 60.8224], [11.0009, 60.8224], [11.0006, 60.8222], [11.0006, 60.8222], [11.0006, 60.8222], [11.0007, 60.8222], [11.0007, 60.8222], [11.0008, 60.8222], [11.0009, 60.8222], [11.001, 60.8222], [11.0011, 60.8221], [11.0012, 60.8221], [11.0013, 60.8221], [11.0013, 60.822], [11.0015, 60.822], [11.0017, 60.8219], [11.0018, 60.8219], [11.0018, 60.8219], [11.0019, 60.8218], [11.002, 60.8218], [11.0021, 60.8217], [11.0023, 60.8217], [11.0024, 60.8216], [11.0025, 60.8216], [11.0026, 60.8215], [11.0026, 60.8215], [11.0027, 60.8215], [11.0027, 60.8214], [11.0027, 60.8214], [11.0028, 60.8214], [11.0028, 60.8214], [11.0028, 60.8214], [11.0028, 60.8213], [11.0027, 60.8213], [11.0029, 60.8212], [11.0028, 60.8212], [11.0027, 60.8211], [11.0026, 60.8211], [11.0027, 60.8211], [11.0029, 60.8212], [11.0031, 60.8212], [11.0031, 60.8212], [11.0032, 60.8212], [11.0031, 60.8212], [11.0032, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.8211], [11.0033, 60.821], [11.0033, 60.821], [11.0033, 60.821], [11.0033, 60.8211], [11.0034, 60.8211], [11.0036, 60.8211], [11.0037, 60.821], [11.004, 60.821], [11.0041, 60.821], [11.0042, 60.821], [11.0043, 60.821], [11.0045, 60.8209], [11.0047, 60.8209], [11.0049, 60.8209], [11.005, 60.8208], [11.0052, 60.8208], [11.0053, 60.8208], [11.0054, 60.8207], [11.0056, 60.8207], [11.0058, 60.8206], [11.0059, 60.8206], [11.006, 60.8206], [11.006, 60.8205], [11.0059, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.006, 60.8205], [11.0061, 60.8205], [11.0062, 60.8204], [11.0062, 60.8204], [11.0063, 60.8204], [11.0063, 60.8204], [11.0063, 60.8203], [11.0063, 60.8203], [11.0064, 60.8203], [11.0065, 60.8203], [11.0065, 60.8203], [11.0066, 60.8203], [11.0066, 60.8203], [11.0067, 60.8203], [11.0068, 60.8203], [11.0069, 60.8202], [11.007, 60.8202], [11.007, 60.8202], [11.007, 60.8202], [11.007, 60.8201], [11.0071, 60.8201], [11.0071, 60.8201], [11.0072, 60.8201], [11.0072, 60.8201], [11.0072, 60.82], [11.0073, 60.82], [11.0073, 60.82], [11.0073, 60.8199], [11.0073, 60.8199], [11.0073, 60.8198], [11.0072, 60.8195], [11.0071, 60.8193], [11.0071, 60.8192], [11.0068, 60.8188], [11.0067, 60.8187], [11.0066, 60.8186], [11.0065, 60.8186], [11.0063, 60.8183], [11.0061, 60.8181], [11.0059, 60.8178], [11.0057, 60.8176], [11.0056, 60.8174], [11.0056, 60.8173], [11.0055, 60.8172], [11.0056, 60.817], [11.0056, 60.8169], [11.0056, 60.8169], [10.9904, 60.8169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "101", "sub_div_center": [60.796856, 11.027894]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0279, 60.7969], [11.0279, 60.7969], [11.028, 60.7969], [11.028, 60.797], [11.028, 60.797], [11.028, 60.7971], [11.028, 60.7972], [11.028, 60.7972], [11.0281, 60.7972], [11.0282, 60.7973], [11.0282, 60.7973], [11.0283, 60.7974], [11.0285, 60.7974], [11.0285, 60.7974], [11.0287, 60.7974], [11.0287, 60.7974], [11.0288, 60.7974], [11.0289, 60.7974], [11.0289, 60.7974], [11.0289, 60.7974], [11.029, 60.7974], [11.0291, 60.7974], [11.0292, 60.7973], [11.0293, 60.7973], [11.0294, 60.7972], [11.0295, 60.7972], [11.0296, 60.7972], [11.0297, 60.7971], [11.0298, 60.7972], [11.0299, 60.7971], [11.0299, 60.7971], [11.0299, 60.7971], [11.0301, 60.7971], [11.0301, 60.7971], [11.0301, 60.797], [11.0303, 60.7971], [11.0304, 60.7971], [11.0304, 60.7971], [11.0304, 60.7969], [11.0279, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "102", "sub_div_center": [60.639443, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0701, 60.6395], [11.07, 60.6396], [11.0698, 60.6397], [11.0698, 60.6397], [11.0697, 60.6397], [11.0694, 60.6398], [11.0692, 60.6398], [11.0686, 60.64], [11.0684, 60.6401], [11.0683, 60.6402], [11.068, 60.6402], [11.0678, 60.6403], [11.0675, 60.6404], [11.0674, 60.6404], [11.0674, 60.6405], [11.0674, 60.6405], [11.0674, 60.6406], [11.0672, 60.6406], [11.0671, 60.6406], [11.0669, 60.6406], [11.0668, 60.6407], [11.0666, 60.6407], [11.0661, 60.6408], [11.0659, 60.6409], [11.0656, 60.641], [11.0651, 60.641], [11.065, 60.6411], [11.065, 60.6411], [11.065, 60.6412], [11.0649, 60.6412], [11.0648, 60.6412], [11.0648, 60.6412], [11.0648, 60.6412], [11.0647, 60.6412], [11.0644, 60.6412], [11.0644, 60.6412], [11.0644, 60.6413], [11.0644, 60.6413], [11.0645, 60.6413], [11.0647, 60.6413], [11.0649, 60.6413], [11.065, 60.6413], [11.065, 60.6413], [11.065, 60.6413], [11.0646, 60.6414], [11.0645, 60.6414], [11.0644, 60.6414], [11.0643, 60.6413], [11.0642, 60.6413], [11.064, 60.6413], [11.0634, 60.6413], [11.0626, 60.6415], [11.0619, 60.6416], [11.0619, 60.6416], [11.0618, 60.6416], [11.0614, 60.6416], [11.0613, 60.6417], [11.0612, 60.6417], [11.0612, 60.6418], [11.0612, 60.6418], [11.0612, 60.6419], [11.0612, 60.642], [11.0612, 60.642], [11.0611, 60.6419], [11.0611, 60.6419], [11.0607, 60.6419], [11.0605, 60.6419], [11.0604, 60.6419], [11.06, 60.642], [11.0599, 60.642], [11.0596, 60.6421], [11.0596, 60.6422], [11.0595, 60.6422], [11.0596, 60.6422], [11.0596, 60.6423], [11.0596, 60.6423], [11.0594, 60.6422], [11.0593, 60.6422], [11.0587, 60.6424], [11.0583, 60.6425], [11.0581, 60.6425], [11.0574, 60.6426], [11.0568, 60.6427], [11.0565, 60.6427], [11.0562, 60.6427], [11.0559, 60.6427], [11.0555, 60.6427], [11.0551, 60.6427], [11.0544, 60.6427], [11.0541, 60.6427], [11.0534, 60.6427], [11.0534, 60.6427], [11.0533, 60.6427], [11.0533, 60.6428], [11.0532, 60.6428], [11.0531, 60.6428], [11.053, 60.6428], [11.0529, 60.6428], [11.0528, 60.6428], [11.0525, 60.6428], [11.0523, 60.6428], [11.0514, 60.6429], [11.0507, 60.643], [11.0504, 60.643], [11.0492, 60.6431], [11.0486, 60.6431], [11.0484, 60.6431], [11.0483, 60.6431], [11.0482, 60.6431], [11.048, 60.6431], [11.0478, 60.6432], [11.0477, 60.6433], [11.0477, 60.6433], [11.0477, 60.6434], [11.0476, 60.6434], [11.0475, 60.6433], [11.0474, 60.6433], [11.0474, 60.6433], [11.0472, 60.6433], [11.0472, 60.6433], [11.047, 60.6433], [11.0465, 60.6434], [11.0465, 60.6434], [11.0465, 60.6434], [11.0465, 60.6435], [11.0464, 60.6435], [11.0463, 60.6435], [11.0461, 60.6431], [11.046, 60.6431], [11.046, 60.6431], [11.0459, 60.6431], [11.0458, 60.6431], [11.0457, 60.6431], [11.0458, 60.6431], [11.0456, 60.6431], [11.0458, 60.6436], [11.0458, 60.6437], [11.0461, 60.6441], [11.0465, 60.6449], [11.0466, 60.6449], [11.0482, 60.6446], [11.0483, 60.6446], [11.0482, 60.6446], [11.0464, 60.645], [11.046, 60.6444], [11.0459, 60.6443], [11.0459, 60.6443], [11.0455, 60.6438], [11.0454, 60.6437], [11.0451, 60.6437], [11.0449, 60.6437], [11.0446, 60.6437], [11.0445, 60.6438], [11.0444, 60.6438], [11.0442, 60.6439], [11.0441, 60.6439], [11.0439, 60.6439], [11.0436, 60.6441], [11.0432, 60.6444], [11.0427, 60.6446], [11.0425, 60.6448], [11.0422, 60.6449], [11.0416, 60.6453], [11.0412, 60.6456], [11.0408, 60.6458], [11.0406, 60.6459], [11.0402, 60.6461], [11.04, 60.6462], [11.0395, 60.6464], [11.0393, 60.6464], [11.0388, 60.6466], [11.0384, 60.6467], [11.0382, 60.6468], [11.0377, 60.6469], [11.0371, 60.6471], [11.0369, 60.6471], [11.0365, 60.6472], [11.0365, 60.6473], [11.0364, 60.6474], [11.0363, 60.6475], [11.036, 60.6475], [11.036, 60.6476], [11.036, 60.6476], [11.036, 60.6476], [11.036, 60.6477], [11.0362, 60.6478], [11.0362, 60.6478], [11.0362, 60.6478], [11.0362, 60.6479], [11.0362, 60.6479], [11.0361, 60.6479], [11.036, 60.6478], [11.0358, 60.6477], [11.0357, 60.6476], [11.0354, 60.6476], [11.035, 60.6477], [11.0343, 60.6478], [11.0336, 60.6478], [11.0335, 60.6479], [11.0333, 60.6479], [11.0332, 60.648], [11.0328, 60.6481], [11.0327, 60.6483], [11.0326, 60.6483], [11.0327, 60.6483], [11.0327, 60.6483], [11.0328, 60.6483], [11.0328, 60.6484], [11.0327, 60.6484], [11.0326, 60.6484], [11.0326, 60.6485], [11.0327, 60.6486], [11.0327, 60.6486], [11.0326, 60.6486], [11.0324, 60.6485], [11.0324, 60.6485], [11.0324, 60.6485], [11.0323, 60.6484], [11.0323, 60.6484], [11.0322, 60.6485], [11.0321, 60.6485], [11.0319, 60.6485], [11.0318, 60.6485], [11.0315, 60.6484], [11.0305, 60.6482], [11.0304, 60.6482], [11.0304, 60.6569], [11.0704, 60.6569], [11.0704, 60.6394], [11.0701, 60.6395]]]}}, {"type": "Feature", "properties": {"sub_div_id": "103", "sub_div_center": [60.656856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6569], [11.0304, 60.6769], [11.0704, 60.6769], [11.0704, 60.6569], [11.0304, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "104", "sub_div_center": [60.676856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6769], [11.0304, 60.6969], [11.0704, 60.6969], [11.0704, 60.6769], [11.0304, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "105", "sub_div_center": [60.696856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.6969], [11.0304, 60.7169], [11.0704, 60.7169], [11.0704, 60.6969], [11.0304, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "106", "sub_div_center": [60.716856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7169], [11.0304, 60.7369], [11.0704, 60.7369], [11.0704, 60.7169], [11.0304, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "107", "sub_div_center": [60.736856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7369], [11.0304, 60.7569], [11.0704, 60.7569], [11.0704, 60.7369], [11.0304, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "108", "sub_div_center": [60.756856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7569], [11.0304, 60.7769], [11.0704, 60.7769], [11.0704, 60.7569], [11.0304, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "109", "sub_div_center": [60.776856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7769], [11.0304, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0321, 60.7968], [11.0321, 60.7968], [11.032, 60.7967], [11.032, 60.7967], [11.032, 60.7967], [11.0321, 60.7967], [11.0322, 60.7967], [11.0323, 60.7968], [11.0324, 60.7968], [11.0325, 60.7969], [11.0326, 60.7969], [11.0327, 60.7968], [11.0329, 60.7968], [11.033, 60.7968], [11.0331, 60.7968], [11.0333, 60.7968], [11.0334, 60.7968], [11.0335, 60.7968], [11.0336, 60.7968], [11.0337, 60.7967], [11.0339, 60.7967], [11.034, 60.7967], [11.034, 60.7967], [11.0341, 60.7967], [11.0341, 60.7967], [11.0342, 60.7967], [11.0343, 60.7967], [11.0344, 60.7967], [11.0345, 60.7967], [11.0345, 60.7967], [11.0346, 60.7967], [11.0347, 60.7968], [11.0348, 60.7968], [11.0348, 60.7968], [11.0349, 60.7968], [11.0351, 60.7968], [11.0352, 60.7968], [11.0353, 60.7968], [11.0354, 60.7967], [11.0355, 60.7967], [11.0355, 60.7967], [11.0356, 60.7967], [11.0356, 60.7968], [11.0357, 60.7968], [11.0359, 60.7967], [11.0361, 60.7967], [11.0362, 60.7966], [11.0363, 60.7966], [11.0364, 60.7966], [11.0364, 60.7965], [11.0364, 60.7965], [11.0364, 60.7964], [11.0363, 60.7964], [11.0364, 60.7964], [11.0364, 60.7963], [11.0365, 60.7963], [11.0365, 60.7962], [11.0365, 60.7962], [11.0366, 60.7961], [11.0367, 60.7961], [11.0368, 60.796], [11.037, 60.796], [11.0371, 60.796], [11.0373, 60.7959], [11.0375, 60.7959], [11.0376, 60.7959], [11.0378, 60.7958], [11.038, 60.7958], [11.0383, 60.7957], [11.0384, 60.7957], [11.0385, 60.7956], [11.0383, 60.7956], [11.0383, 60.7956], [11.0383, 60.7955], [11.0383, 60.7955], [11.0384, 60.7954], [11.0385, 60.7953], [11.0385, 60.7953], [11.0385, 60.7953], [11.0386, 60.7952], [11.0386, 60.7952], [11.0386, 60.7951], [11.0386, 60.7951], [11.0386, 60.7951], [11.0385, 60.7951], [11.0386, 60.795], [11.0386, 60.795], [11.0385, 60.7949], [11.0383, 60.7947], [11.0382, 60.7945], [11.038, 60.7943], [11.038, 60.7942], [11.0379, 60.7941], [11.0378, 60.7941], [11.0377, 60.794], [11.0375, 60.794], [11.0372, 60.7939], [11.037, 60.7938], [11.0367, 60.7937], [11.0366, 60.7938], [11.0365, 60.7938], [11.0365, 60.7938], [11.0364, 60.7938], [11.0364, 60.7938], [11.0363, 60.7937], [11.0363, 60.7936], [11.0361, 60.7935], [11.036, 60.7935], [11.0359, 60.7934], [11.0358, 60.7933], [11.0355, 60.7932], [11.0353, 60.7932], [11.0352, 60.7931], [11.0352, 60.7931], [11.0351, 60.7931], [11.0351, 60.7931], [11.0351, 60.7931], [11.0351, 60.793], [11.0349, 60.7928], [11.0348, 60.7928], [11.0347, 60.7927], [11.0345, 60.7926], [11.0342, 60.7923], [11.0342, 60.7923], [11.034, 60.7922], [11.0338, 60.7921], [11.0335, 60.792], [11.0334, 60.792], [11.0334, 60.7919], [11.0333, 60.7919], [11.0334, 60.7919], [11.0336, 60.7919], [11.0337, 60.7919], [11.0338, 60.7919], [11.034, 60.7919], [11.0343, 60.7919], [11.0344, 60.7919], [11.0345, 60.7919], [11.0345, 60.7918], [11.0346, 60.7918], [11.0346, 60.7919], [11.035, 60.7918], [11.0353, 60.7918], [11.0355, 60.7918], [11.0356, 60.7917], [11.0357, 60.7917], [11.0358, 60.7917], [11.0358, 60.7916], [11.0358, 60.7916], [11.0358, 60.7916], [11.0358, 60.7915], [11.0358, 60.7915], [11.0359, 60.7915], [11.036, 60.7915], [11.0362, 60.7915], [11.0363, 60.7915], [11.0364, 60.7915], [11.0366, 60.7914], [11.0369, 60.7914], [11.0371, 60.7914], [11.0372, 60.7913], [11.0373, 60.7914], [11.0375, 60.7913], [11.0377, 60.7913], [11.0378, 60.7913], [11.038, 60.7913], [11.0381, 60.7912], [11.0383, 60.7912], [11.0384, 60.7911], [11.0385, 60.7911], [11.0387, 60.7911], [11.039, 60.7911], [11.0391, 60.7911], [11.0392, 60.7911], [11.0394, 60.791], [11.0396, 60.7911], [11.0397, 60.7911], [11.0398, 60.7911], [11.0401, 60.7911], [11.0404, 60.7912], [11.0406, 60.7912], [11.0408, 60.7912], [11.041, 60.7912], [11.0411, 60.7913], [11.0411, 60.7912], [11.0414, 60.7913], [11.0416, 60.7913], [11.0418, 60.7914], [11.0422, 60.7915], [11.0425, 60.7915], [11.0431, 60.7916], [11.0435, 60.7917], [11.0435, 60.7917], [11.0437, 60.7917], [11.0438, 60.7918], [11.0441, 60.7918], [11.0444, 60.7919], [11.0446, 60.7919], [11.045, 60.7919], [11.0452, 60.7919], [11.0454, 60.792], [11.0455, 60.792], [11.0457, 60.792], [11.0459, 60.7921], [11.046, 60.7921], [11.0461, 60.7921], [11.0464, 60.7922], [11.0466, 60.7922], [11.0469, 60.7923], [11.0473, 60.7923], [11.0475, 60.7923], [11.0478, 60.7923], [11.0482, 60.7924], [11.0486, 60.7924], [11.0489, 60.7924], [11.0492, 60.7924], [11.0497, 60.7925], [11.0503, 60.7925], [11.0509, 60.7925], [11.0517, 60.7925], [11.0524, 60.7925], [11.053, 60.7925], [11.0532, 60.7924], [11.0536, 60.7924], [11.0539, 60.7923], [11.0539, 60.7924], [11.0539, 60.7924], [11.0534, 60.7924], [11.0534, 60.7925], [11.0532, 60.7925], [11.0531, 60.7925], [11.053, 60.7925], [11.0529, 60.7926], [11.053, 60.7926], [11.053, 60.7927], [11.0532, 60.7928], [11.0532, 60.7928], [11.0531, 60.7928], [11.0532, 60.7929], [11.0532, 60.793], [11.0534, 60.7931], [11.0537, 60.7932], [11.054, 60.7934], [11.0543, 60.7935], [11.0544, 60.7935], [11.0545, 60.7936], [11.0546, 60.7936], [11.0547, 60.7936], [11.0549, 60.7936], [11.0552, 60.7936], [11.0552, 60.7936], [11.0555, 60.7937], [11.0558, 60.7937], [11.0564, 60.7937], [11.0571, 60.7938], [11.0574, 60.7938], [11.0576, 60.7938], [11.0578, 60.7937], [11.058, 60.7937], [11.0583, 60.7937], [11.0587, 60.7936], [11.059, 60.7936], [11.0592, 60.7935], [11.0593, 60.7935], [11.0594, 60.7935], [11.0595, 60.7935], [11.0596, 60.7934], [11.0596, 60.7935], [11.0598, 60.7934], [11.0598, 60.7934], [11.0599, 60.7934], [11.06, 60.7934], [11.06, 60.7934], [11.0601, 60.7934], [11.0601, 60.7934], [11.0603, 60.7933], [11.0605, 60.7933], [11.0606, 60.7932], [11.0607, 60.7932], [11.0609, 60.7931], [11.0609, 60.7931], [11.0609, 60.793], [11.0611, 60.7928], [11.0614, 60.7926], [11.0618, 60.7925], [11.0619, 60.7924], [11.0621, 60.7923], [11.0621, 60.7923], [11.0622, 60.7923], [11.0622, 60.7922], [11.0623, 60.7922], [11.0624, 60.7922], [11.0624, 60.7923], [11.0625, 60.7923], [11.0625, 60.7923], [11.0626, 60.7923], [11.0626, 60.7923], [11.0626, 60.7923], [11.0625, 60.7923], [11.0625, 60.7924], [11.0625, 60.7924], [11.0625, 60.7924], [11.0625, 60.7925], [11.0626, 60.7925], [11.0627, 60.7926], [11.0628, 60.7926], [11.063, 60.7927], [11.0632, 60.7927], [11.0635, 60.7928], [11.0636, 60.7928], [11.0637, 60.7928], [11.0639, 60.7927], [11.064, 60.7927], [11.0641, 60.7927], [11.0642, 60.7927], [11.0643, 60.7927], [11.0645, 60.7927], [11.0645, 60.7927], [11.0647, 60.7927], [11.0647, 60.7927], [11.0649, 60.7927], [11.0651, 60.7927], [11.0654, 60.7927], [11.0656, 60.7927], [11.0658, 60.7928], [11.0659, 60.7928], [11.066, 60.7928], [11.0661, 60.7929], [11.0662, 60.7929], [11.0663, 60.7929], [11.0664, 60.7929], [11.0666, 60.7928], [11.0668, 60.7927], [11.067, 60.7927], [11.0669, 60.7927], [11.0673, 60.7925], [11.0676, 60.7924], [11.0677, 60.7924], [11.0678, 60.7925], [11.0677, 60.7925], [11.0677, 60.7925], [11.0676, 60.7926], [11.0675, 60.7926], [11.0673, 60.7927], [11.0673, 60.7927], [11.0672, 60.7927], [11.0672, 60.7927], [11.0672, 60.7927], [11.0671, 60.7928], [11.067, 60.7928], [11.0671, 60.7929], [11.067, 60.7929], [11.0671, 60.7929], [11.0671, 60.7929], [11.067, 60.793], [11.0669, 60.793], [11.0669, 60.793], [11.0669, 60.793], [11.0669, 60.7931], [11.0669, 60.7931], [11.0669, 60.7931], [11.0669, 60.7931], [11.0675, 60.7929], [11.0676, 60.793], [11.0671, 60.7932], [11.0674, 60.7934], [11.0677, 60.7935], [11.068, 60.7935], [11.0682, 60.7935], [11.0685, 60.7935], [11.0686, 60.7936], [11.069, 60.7935], [11.0694, 60.7935], [11.0698, 60.7935], [11.0699, 60.7935], [11.0699, 60.7934], [11.0697, 60.793], [11.0696, 60.793], [11.0695, 60.7929], [11.0694, 60.7929], [11.069, 60.7929], [11.0686, 60.7929], [11.0684, 60.7929], [11.0684, 60.7929], [11.0684, 60.7928], [11.0685, 60.7928], [11.0689, 60.7928], [11.0691, 60.7928], [11.0694, 60.7928], [11.0696, 60.7928], [11.0699, 60.7927], [11.0699, 60.7927], [11.0703, 60.7927], [11.0704, 60.7926], [11.0704, 60.7899], [11.0704, 60.7899], [11.0704, 60.79], [11.0704, 60.79], [11.0704, 60.79], [11.0703, 60.79], [11.0703, 60.7899], [11.0702, 60.7898], [11.0702, 60.7898], [11.0699, 60.7897], [11.0696, 60.7896], [11.069, 60.7894], [11.0684, 60.7892], [11.0681, 60.7891], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.789], [11.0678, 60.7889], [11.0679, 60.7888], [11.0684, 60.7883], [11.0687, 60.7881], [11.0688, 60.7879], [11.069, 60.7878], [11.0694, 60.7876], [11.0695, 60.7875], [11.0698, 60.7874], [11.07, 60.7874], [11.0702, 60.7875], [11.0704, 60.7875], [11.0704, 60.7769], [11.0304, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "110", "sub_div_center": [60.796856, 11.030419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0304, 60.7969], [11.0304, 60.7971], [11.0306, 60.7971], [11.0307, 60.7971], [11.0309, 60.7971], [11.0312, 60.7971], [11.0314, 60.7971], [11.0315, 60.7971], [11.0317, 60.797], [11.0318, 60.797], [11.032, 60.797], [11.032, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0321, 60.7969], [11.0304, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "111", "sub_div_center": [60.796856, 11.032485]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0325, 60.7969], [11.0325, 60.7969], [11.0326, 60.7969], [11.0326, 60.7969], [11.0325, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "112", "sub_div_center": [60.636856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6569], [11.1104, 60.6569], [11.1104, 60.6369], [11.0763, 60.6369], [11.076, 60.637], [11.0752, 60.6375], [11.0748, 60.6378], [11.0747, 60.6379], [11.0745, 60.638], [11.0742, 60.6381], [11.0737, 60.6383], [11.0719, 60.6389], [11.0713, 60.6391], [11.0708, 60.6393], [11.0705, 60.6394], [11.0704, 60.6394], [11.0704, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "113", "sub_div_center": [60.656856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6569], [11.0704, 60.6769], [11.1104, 60.6769], [11.1104, 60.6569], [11.0704, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "114", "sub_div_center": [60.676856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6769], [11.0704, 60.6969], [11.109, 60.6969], [11.109, 60.6968], [11.1092, 60.6967], [11.1093, 60.6967], [11.1095, 60.6965], [11.1096, 60.6965], [11.1096, 60.6964], [11.1098, 60.6963], [11.1098, 60.6962], [11.1099, 60.6961], [11.1098, 60.696], [11.1098, 60.696], [11.1099, 60.6959], [11.1099, 60.6958], [11.11, 60.6957], [11.1099, 60.6957], [11.1099, 60.6956], [11.1099, 60.6956], [11.1099, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.11, 60.6956], [11.1099, 60.6955], [11.1098, 60.6956], [11.1097, 60.6956], [11.1097, 60.6956], [11.1097, 60.6956], [11.1098, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6955], [11.1099, 60.6954], [11.1099, 60.6954], [11.1098, 60.6954], [11.1098, 60.6954], [11.1098, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6954], [11.1097, 60.6955], [11.1097, 60.6955], [11.1097, 60.6955], [11.1096, 60.6955], [11.1096, 60.6955], [11.1096, 60.6954], [11.1096, 60.6954], [11.1094, 60.6954], [11.1093, 60.6954], [11.1093, 60.6955], [11.1093, 60.6955], [11.1093, 60.6955], [11.1092, 60.6954], [11.1092, 60.6954], [11.1093, 60.6954], [11.1093, 60.6954], [11.1093, 60.6954], [11.1092, 60.6953], [11.1092, 60.6953], [11.1092, 60.6952], [11.1092, 60.6952], [11.1091, 60.6952], [11.109, 60.6952], [11.109, 60.6952], [11.109, 60.6952], [11.1089, 60.6951], [11.1089, 60.6951], [11.1089, 60.6951], [11.1089, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1088, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1087, 60.6951], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1088, 60.695], [11.1087, 60.6949], [11.1087, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1086, 60.6949], [11.1085, 60.6949], [11.1086, 60.6949], [11.1087, 60.6948], [11.1087, 60.6947], [11.1086, 60.6946], [11.1086, 60.6946], [11.1086, 60.6945], [11.1086, 60.6945], [11.1086, 60.6944], [11.1086, 60.6944], [11.1086, 60.6944], [11.1085, 60.6944], [11.1084, 60.6943], [11.1084, 60.6943], [11.1083, 60.6943], [11.1083, 60.6942], [11.1083, 60.6942], [11.1083, 60.6941], [11.1084, 60.6941], [11.1083, 60.694], [11.1082, 60.694], [11.1082, 60.6939], [11.1082, 60.6938], [11.1081, 60.6937], [11.1081, 60.6937], [11.1081, 60.6936], [11.1081, 60.6936], [11.1081, 60.6936], [11.1081, 60.6935], [11.1082, 60.6934], [11.1083, 60.6932], [11.1084, 60.6932], [11.1085, 60.693], [11.1086, 60.6929], [11.1087, 60.6929], [11.1088, 60.6929], [11.1088, 60.6928], [11.1087, 60.6928], [11.1087, 60.6927], [11.1088, 60.6927], [11.1089, 60.6926], [11.1092, 60.6926], [11.1092, 60.6926], [11.1094, 60.6926], [11.1096, 60.6925], [11.1098, 60.6925], [11.1101, 60.6925], [11.1102, 60.6924], [11.1103, 60.6924], [11.1104, 60.6923], [11.1104, 60.6923], [11.1104, 60.6769], [11.0704, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "115", "sub_div_center": [60.696856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.6969], [11.0704, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.1048, 60.7168], [11.1048, 60.7168], [11.1048, 60.7167], [11.1047, 60.7167], [11.1047, 60.7167], [11.1047, 60.7167], [11.1046, 60.7166], [11.1046, 60.7166], [11.1045, 60.7166], [11.1044, 60.7165], [11.1043, 60.7165], [11.1042, 60.7165], [11.1042, 60.7166], [11.1041, 60.7166], [11.104, 60.7167], [11.1039, 60.7168], [11.1039, 60.7168], [11.1038, 60.7168], [11.1037, 60.7168], [11.1037, 60.7168], [11.1037, 60.7167], [11.1037, 60.7167], [11.1037, 60.7166], [11.1037, 60.7165], [11.1037, 60.7165], [11.1038, 60.7164], [11.1038, 60.7164], [11.1038, 60.7164], [11.1038, 60.7163], [11.1039, 60.7163], [11.104, 60.7162], [11.1041, 60.7162], [11.1042, 60.7162], [11.1043, 60.7161], [11.1044, 60.7161], [11.1045, 60.7161], [11.1046, 60.7162], [11.1048, 60.7162], [11.1048, 60.7162], [11.105, 60.7162], [11.1051, 60.7162], [11.1054, 60.7162], [11.1055, 60.7161], [11.1054, 60.7161], [11.1055, 60.7161], [11.1055, 60.716], [11.1055, 60.7159], [11.1056, 60.7159], [11.1056, 60.7158], [11.1055, 60.7158], [11.1055, 60.7158], [11.1056, 60.7157], [11.1056, 60.7156], [11.1056, 60.7156], [11.1056, 60.7155], [11.1055, 60.7155], [11.1055, 60.7154], [11.1055, 60.7153], [11.1055, 60.7153], [11.1055, 60.7152], [11.1056, 60.7152], [11.1056, 60.7151], [11.1056, 60.7151], [11.1055, 60.715], [11.1055, 60.715], [11.1055, 60.7149], [11.1055, 60.7149], [11.1053, 60.7149], [11.1052, 60.7149], [11.1052, 60.7149], [11.1052, 60.7149], [11.1052, 60.7148], [11.1052, 60.7147], [11.1052, 60.7147], [11.1052, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7147], [11.1053, 60.7148], [11.1052, 60.7148], [11.1052, 60.7149], [11.1052, 60.7149], [11.1053, 60.7149], [11.1056, 60.7149], [11.1056, 60.7149], [11.1057, 60.7149], [11.1057, 60.7148], [11.1058, 60.7148], [11.1058, 60.7148], [11.1058, 60.7147], [11.1058, 60.7146], [11.1059, 60.7146], [11.106, 60.7145], [11.1061, 60.7145], [11.1062, 60.7144], [11.1062, 60.7144], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7143], [11.1062, 60.7142], [11.1062, 60.7142], [11.1061, 60.7142], [11.1061, 60.7142], [11.1061, 60.7141], [11.1062, 60.7141], [11.1062, 60.7141], [11.1062, 60.7141], [11.1061, 60.714], [11.106, 60.714], [11.1059, 60.7141], [11.1056, 60.7141], [11.1052, 60.7141], [11.1051, 60.7141], [11.105, 60.7141], [11.105, 60.7141], [11.1051, 60.7141], [11.1052, 60.7141], [11.1055, 60.714], [11.106, 60.714], [11.1059, 60.714], [11.1058, 60.7137], [11.1056, 60.7135], [11.1054, 60.7133], [11.1051, 60.713], [11.104, 60.7132], [11.1041, 60.7132], [11.1042, 60.7133], [11.1042, 60.7133], [11.104, 60.7132], [11.104, 60.7132], [11.104, 60.7133], [11.1042, 60.7135], [11.1044, 60.7138], [11.1045, 60.7139], [11.1046, 60.714], [11.1047, 60.7141], [11.1047, 60.7141], [11.1047, 60.7141], [11.1046, 60.7141], [11.1046, 60.7141], [11.1045, 60.7141], [11.1045, 60.714], [11.1044, 60.714], [11.1044, 60.7139], [11.1043, 60.7139], [11.1043, 60.7138], [11.1042, 60.7137], [11.104, 60.7136], [11.1039, 60.7135], [11.1039, 60.7135], [11.1038, 60.7134], [11.1037, 60.7134], [11.1036, 60.7135], [11.1035, 60.7134], [11.1034, 60.7134], [11.1033, 60.7134], [11.1032, 60.7133], [11.1031, 60.7132], [11.103, 60.7131], [11.103, 60.7131], [11.103, 60.713], [11.103, 60.7129], [11.103, 60.7128], [11.103, 60.7128], [11.1031, 60.7128], [11.103, 60.7128], [11.1031, 60.7127], [11.1031, 60.7128], [11.1032, 60.7128], [11.1032, 60.7127], [11.1033, 60.7127], [11.1033, 60.7127], [11.1033, 60.7126], [11.1034, 60.7125], [11.1036, 60.7125], [11.1037, 60.7126], [11.1037, 60.7126], [11.1037, 60.7126], [11.1038, 60.7127], [11.1039, 60.7128], [11.104, 60.7128], [11.1041, 60.7128], [11.1044, 60.7127], [11.1045, 60.7127], [11.1047, 60.7127], [11.1048, 60.7127], [11.105, 60.7127], [11.105, 60.7126], [11.105, 60.7126], [11.105, 60.7126], [11.1049, 60.7126], [11.1049, 60.7125], [11.1048, 60.7125], [11.1047, 60.7124], [11.1047, 60.7123], [11.1047, 60.7123], [11.1047, 60.7122], [11.1047, 60.7122], [11.1046, 60.7122], [11.1046, 60.7122], [11.1045, 60.7122], [11.1044, 60.7122], [11.1044, 60.7122], [11.1044, 60.7122], [11.1045, 60.7122], [11.1046, 60.7121], [11.1046, 60.7121], [11.1046, 60.7121], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.712], [11.1046, 60.7119], [11.1046, 60.7119], [11.1046, 60.7119], [11.1046, 60.7119], [11.1045, 60.7118], [11.1044, 60.7117], [11.1044, 60.7116], [11.1043, 60.7115], [11.1042, 60.7115], [11.1042, 60.7114], [11.1042, 60.7114], [11.1042, 60.7114], [11.1041, 60.7113], [11.1041, 60.7113], [11.1041, 60.7113], [11.1039, 60.7113], [11.1039, 60.7113], [11.1039, 60.7113], [11.104, 60.7113], [11.104, 60.7112], [11.1039, 60.7112], [11.104, 60.7112], [11.104, 60.7111], [11.1039, 60.7111], [11.1038, 60.7111], [11.1037, 60.7111], [11.1035, 60.711], [11.1034, 60.711], [11.1032, 60.711], [11.1031, 60.711], [11.1029, 60.711], [11.1027, 60.711], [11.1025, 60.711], [11.1025, 60.711], [11.1024, 60.7108], [11.1023, 60.7107], [11.1023, 60.7106], [11.1023, 60.7106], [11.1023, 60.7105], [11.1024, 60.7104], [11.1024, 60.7104], [11.1025, 60.7103], [11.1026, 60.7103], [11.1027, 60.7103], [11.1028, 60.7103], [11.1029, 60.7102], [11.1029, 60.7102], [11.1029, 60.7102], [11.1029, 60.7101], [11.1029, 60.7101], [11.103, 60.7101], [11.1031, 60.7101], [11.1031, 60.7101], [11.1032, 60.71], [11.1033, 60.71], [11.1033, 60.71], [11.1033, 60.7099], [11.1033, 60.7099], [11.1033, 60.7099], [11.1034, 60.7099], [11.1034, 60.7099], [11.1034, 60.7099], [11.1036, 60.7099], [11.1037, 60.7099], [11.1037, 60.7099], [11.1038, 60.7099], [11.1038, 60.7099], [11.1038, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.1039, 60.7098], [11.104, 60.7097], [11.1041, 60.7097], [11.1041, 60.7097], [11.1042, 60.7097], [11.1042, 60.7096], [11.1042, 60.7096], [11.1043, 60.7096], [11.1044, 60.7095], [11.1044, 60.7095], [11.1045, 60.7094], [11.1045, 60.7094], [11.1046, 60.7093], [11.1046, 60.7093], [11.1046, 60.7092], [11.1047, 60.7092], [11.1047, 60.7091], [11.1046, 60.7091], [11.1046, 60.709], [11.1045, 60.709], [11.1046, 60.709], [11.1046, 60.7089], [11.1047, 60.7089], [11.1047, 60.7089], [11.1047, 60.7089], [11.1048, 60.7089], [11.1048, 60.7088], [11.1048, 60.7088], [11.1049, 60.7088], [11.105, 60.7088], [11.105, 60.7087], [11.105, 60.7087], [11.105, 60.7087], [11.105, 60.7086], [11.105, 60.7086], [11.105, 60.7085], [11.105, 60.7085], [11.1049, 60.7084], [11.1049, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1048, 60.7084], [11.1049, 60.7084], [11.1049, 60.7083], [11.1049, 60.7082], [11.1048, 60.7082], [11.1047, 60.7081], [11.1046, 60.708], [11.1045, 60.7079], [11.1045, 60.7079], [11.1044, 60.7078], [11.1042, 60.7077], [11.1041, 60.7076], [11.104, 60.7076], [11.1039, 60.7075], [11.1038, 60.7074], [11.1037, 60.7074], [11.1035, 60.7073], [11.1033, 60.7072], [11.1033, 60.7072], [11.1032, 60.7071], [11.1031, 60.707], [11.103, 60.707], [11.103, 60.7069], [11.1029, 60.7068], [11.1028, 60.7067], [11.1027, 60.7066], [11.1026, 60.7065], [11.1024, 60.7064], [11.1023, 60.7063], [11.1022, 60.7062], [11.1021, 60.7061], [11.1019, 60.706], [11.1019, 60.706], [11.1018, 60.7059], [11.1019, 60.7058], [11.1019, 60.7058], [11.102, 60.7057], [11.1021, 60.7057], [11.1022, 60.7056], [11.1023, 60.7055], [11.1025, 60.7054], [11.1026, 60.7053], [11.1026, 60.7053], [11.1027, 60.7053], [11.1027, 60.7053], [11.1028, 60.7053], [11.1027, 60.7052], [11.1028, 60.7051], [11.1029, 60.7051], [11.103, 60.7051], [11.1031, 60.705], [11.1032, 60.7049], [11.1033, 60.7049], [11.1033, 60.7048], [11.1034, 60.7048], [11.1035, 60.7048], [11.1036, 60.7047], [11.1036, 60.7047], [11.1037, 60.7047], [11.1038, 60.7047], [11.1039, 60.7048], [11.104, 60.7048], [11.1041, 60.7048], [11.104, 60.7047], [11.1041, 60.7047], [11.1042, 60.7046], [11.1043, 60.7045], [11.1043, 60.7043], [11.1044, 60.7042], [11.1045, 60.7041], [11.1045, 60.704], [11.1046, 60.704], [11.1046, 60.7039], [11.1046, 60.7039], [11.1047, 60.7038], [11.1049, 60.7037], [11.1049, 60.7037], [11.1049, 60.7036], [11.1049, 60.7036], [11.105, 60.7035], [11.105, 60.7035], [11.1049, 60.7034], [11.1049, 60.7033], [11.1048, 60.7033], [11.1049, 60.7032], [11.105, 60.7033], [11.1051, 60.7032], [11.1052, 60.7032], [11.1055, 60.7031], [11.1057, 60.703], [11.1058, 60.703], [11.106, 60.703], [11.106, 60.7029], [11.106, 60.7028], [11.106, 60.7027], [11.1058, 60.7025], [11.1057, 60.7024], [11.1056, 60.7023], [11.1055, 60.7023], [11.1054, 60.7022], [11.1053, 60.7022], [11.1052, 60.702], [11.1051, 60.7019], [11.1051, 60.7017], [11.105, 60.7016], [11.1049, 60.7015], [11.105, 60.7015], [11.1051, 60.7014], [11.1051, 60.7014], [11.1052, 60.7013], [11.1054, 60.7012], [11.1055, 60.7011], [11.1055, 60.7011], [11.1055, 60.7011], [11.1055, 60.701], [11.1055, 60.701], [11.1055, 60.7009], [11.1055, 60.7008], [11.1053, 60.7007], [11.1051, 60.7006], [11.105, 60.7005], [11.105, 60.7004], [11.105, 60.7004], [11.1051, 60.7003], [11.1052, 60.7002], [11.1053, 60.7001], [11.1053, 60.7], [11.1055, 60.7], [11.1056, 60.7], [11.1059, 60.6999], [11.1059, 60.6998], [11.106, 60.6998], [11.1061, 60.6998], [11.1062, 60.6997], [11.1063, 60.6997], [11.1063, 60.6997], [11.1064, 60.6997], [11.1064, 60.6997], [11.1065, 60.6997], [11.1066, 60.6997], [11.1066, 60.6996], [11.1067, 60.6995], [11.1067, 60.6995], [11.1067, 60.6994], [11.1067, 60.6993], [11.1065, 60.6993], [11.1065, 60.6993], [11.1065, 60.6993], [11.1066, 60.6993], [11.1066, 60.6992], [11.1066, 60.6991], [11.1066, 60.6991], [11.1067, 60.699], [11.1068, 60.699], [11.1069, 60.699], [11.107, 60.6989], [11.1071, 60.6989], [11.1072, 60.6988], [11.1072, 60.6987], [11.1072, 60.6987], [11.1071, 60.6986], [11.107, 60.6985], [11.1069, 60.6984], [11.1069, 60.6984], [11.1069, 60.6983], [11.1069, 60.6982], [11.107, 60.6981], [11.107, 60.6981], [11.1072, 60.6979], [11.1073, 60.698], [11.1074, 60.698], [11.1075, 60.6979], [11.1075, 60.698], [11.1076, 60.698], [11.1076, 60.6979], [11.1076, 60.6979], [11.1077, 60.698], [11.1078, 60.698], [11.1079, 60.698], [11.1081, 60.698], [11.1083, 60.6979], [11.1084, 60.6979], [11.1085, 60.6979], [11.1087, 60.6978], [11.1088, 60.6978], [11.1089, 60.6977], [11.109, 60.6976], [11.109, 60.6975], [11.1091, 60.6974], [11.109, 60.6974], [11.1088, 60.6974], [11.1088, 60.6974], [11.1088, 60.6973], [11.1088, 60.6972], [11.1088, 60.6971], [11.1089, 60.697], [11.1089, 60.6969], [11.109, 60.6969], [11.0704, 60.6969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "116", "sub_div_center": [60.716856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7169], [11.0704, 60.7369], [11.0851, 60.7369], [11.0852, 60.7367], [11.0853, 60.7366], [11.0855, 60.7365], [11.0857, 60.7364], [11.0858, 60.7363], [11.0859, 60.7362], [11.0861, 60.7361], [11.0863, 60.7361], [11.0864, 60.7361], [11.0866, 60.7361], [11.0868, 60.7361], [11.087, 60.7361], [11.0872, 60.7361], [11.0874, 60.7362], [11.0875, 60.7362], [11.0875, 60.7363], [11.0875, 60.7363], [11.0875, 60.7364], [11.0875, 60.7365], [11.0876, 60.7365], [11.0876, 60.7366], [11.0877, 60.7366], [11.0877, 60.7367], [11.0878, 60.7367], [11.0878, 60.7368], [11.0879, 60.7369], [11.0884, 60.7369], [11.0884, 60.7368], [11.0886, 60.7367], [11.0886, 60.7367], [11.0886, 60.7366], [11.0887, 60.7366], [11.0887, 60.7365], [11.0887, 60.7364], [11.0889, 60.7363], [11.0889, 60.7361], [11.0888, 60.7361], [11.0888, 60.736], [11.0888, 60.736], [11.0888, 60.736], [11.0889, 60.7359], [11.089, 60.7358], [11.0891, 60.7358], [11.0893, 60.7358], [11.0893, 60.7357], [11.0894, 60.7357], [11.0894, 60.7356], [11.0894, 60.7356], [11.0894, 60.7356], [11.0894, 60.7355], [11.0894, 60.7354], [11.0894, 60.7354], [11.0894, 60.7353], [11.0895, 60.7353], [11.0895, 60.7352], [11.0896, 60.7351], [11.0897, 60.735], [11.0897, 60.735], [11.0898, 60.7348], [11.0899, 60.7347], [11.0899, 60.7346], [11.09, 60.7346], [11.09, 60.7345], [11.0901, 60.7344], [11.0901, 60.7344], [11.0901, 60.7343], [11.0902, 60.7342], [11.0903, 60.7342], [11.0903, 60.7341], [11.0903, 60.734], [11.0903, 60.734], [11.0902, 60.7339], [11.0901, 60.7338], [11.0901, 60.7338], [11.09, 60.7337], [11.0899, 60.7337], [11.0899, 60.7337], [11.0899, 60.7336], [11.09, 60.7336], [11.0901, 60.7335], [11.0901, 60.7335], [11.0902, 60.7335], [11.0902, 60.7335], [11.0903, 60.7335], [11.0904, 60.7335], [11.0905, 60.7335], [11.0905, 60.7335], [11.0907, 60.7334], [11.0908, 60.7334], [11.0908, 60.7333], [11.0909, 60.7333], [11.0909, 60.7332], [11.0909, 60.7332], [11.091, 60.7331], [11.091, 60.7331], [11.0911, 60.733], [11.0911, 60.733], [11.0912, 60.733], [11.0911, 60.733], [11.0912, 60.7329], [11.0912, 60.7329], [11.0913, 60.7328], [11.0914, 60.7328], [11.0915, 60.7327], [11.0916, 60.7326], [11.0916, 60.7326], [11.0918, 60.7326], [11.0919, 60.7326], [11.092, 60.7325], [11.0923, 60.7325], [11.0926, 60.7325], [11.0927, 60.7326], [11.0928, 60.7326], [11.093, 60.7326], [11.0931, 60.7326], [11.0932, 60.7326], [11.0934, 60.7327], [11.0934, 60.7327], [11.0934, 60.7327], [11.0935, 60.7327], [11.0936, 60.7327], [11.0936, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0937, 60.7327], [11.0938, 60.7327], [11.0938, 60.7327], [11.0938, 60.7327], [11.0938, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.0939, 60.7326], [11.094, 60.7326], [11.0938, 60.7325], [11.0938, 60.7325], [11.0939, 60.7325], [11.0939, 60.7325], [11.094, 60.7325], [11.0941, 60.7325], [11.0941, 60.7326], [11.0942, 60.7326], [11.0942, 60.7326], [11.0943, 60.7325], [11.0943, 60.7325], [11.0941, 60.7325], [11.094, 60.7325], [11.094, 60.7325], [11.0939, 60.7324], [11.0939, 60.7324], [11.0938, 60.7323], [11.0938, 60.7323], [11.0938, 60.7323], [11.0939, 60.7322], [11.0939, 60.7322], [11.0939, 60.7322], [11.094, 60.7322], [11.094, 60.7321], [11.0939, 60.7321], [11.0938, 60.7321], [11.0939, 60.7321], [11.094, 60.7321], [11.0941, 60.7321], [11.0941, 60.7321], [11.0941, 60.732], [11.0942, 60.732], [11.094, 60.732], [11.0939, 60.732], [11.0936, 60.732], [11.0936, 60.732], [11.0936, 60.7319], [11.0936, 60.7319], [11.0938, 60.7319], [11.094, 60.7319], [11.0941, 60.7319], [11.0941, 60.7319], [11.0941, 60.7318], [11.094, 60.7318], [11.0938, 60.7317], [11.0936, 60.7317], [11.0935, 60.7318], [11.0935, 60.7318], [11.0934, 60.7318], [11.0934, 60.7319], [11.0934, 60.7319], [11.0933, 60.732], [11.0933, 60.732], [11.0932, 60.7319], [11.0932, 60.7319], [11.0932, 60.7319], [11.0935, 60.7317], [11.0935, 60.7317], [11.0936, 60.7316], [11.0936, 60.7316], [11.0937, 60.7316], [11.0937, 60.7315], [11.0936, 60.7315], [11.0936, 60.7315], [11.0936, 60.7314], [11.0936, 60.7314], [11.0936, 60.7314], [11.0936, 60.7313], [11.0936, 60.7313], [11.0936, 60.7312], [11.0937, 60.7312], [11.0937, 60.7312], [11.0937, 60.7311], [11.0936, 60.7311], [11.0935, 60.7311], [11.0934, 60.7311], [11.0932, 60.731], [11.0931, 60.731], [11.093, 60.731], [11.0929, 60.731], [11.0928, 60.731], [11.0927, 60.731], [11.0926, 60.7309], [11.0926, 60.7309], [11.0926, 60.7309], [11.0925, 60.7308], [11.0926, 60.7307], [11.0926, 60.7307], [11.0927, 60.7306], [11.0927, 60.7306], [11.0927, 60.7305], [11.0927, 60.7305], [11.0927, 60.7304], [11.0927, 60.7304], [11.0928, 60.7304], [11.0929, 60.7304], [11.093, 60.7304], [11.093, 60.7305], [11.093, 60.7306], [11.0931, 60.7307], [11.0931, 60.7308], [11.0933, 60.7308], [11.0937, 60.7309], [11.0937, 60.7309], [11.0938, 60.7309], [11.0938, 60.7308], [11.0938, 60.7307], [11.0938, 60.7306], [11.0938, 60.7306], [11.0939, 60.7305], [11.0939, 60.7304], [11.0939, 60.7304], [11.0939, 60.7303], [11.0939, 60.7302], [11.0937, 60.7302], [11.0936, 60.7302], [11.0936, 60.7302], [11.0936, 60.7303], [11.0936, 60.7304], [11.0935, 60.7304], [11.0935, 60.7304], [11.0935, 60.7304], [11.0935, 60.7303], [11.0935, 60.7303], [11.0936, 60.7302], [11.0936, 60.7302], [11.0934, 60.7301], [11.0933, 60.7301], [11.0932, 60.7301], [11.0932, 60.7302], [11.0932, 60.7302], [11.0932, 60.7302], [11.0931, 60.7302], [11.0932, 60.7301], [11.0932, 60.7301], [11.0932, 60.7301], [11.0933, 60.7301], [11.0934, 60.7301], [11.0936, 60.7302], [11.0937, 60.7302], [11.0939, 60.7302], [11.0939, 60.7301], [11.094, 60.7301], [11.0939, 60.7301], [11.0939, 60.73], [11.0939, 60.73], [11.094, 60.7299], [11.0939, 60.7299], [11.0938, 60.7298], [11.0937, 60.7298], [11.0937, 60.7297], [11.0937, 60.7297], [11.0937, 60.7296], [11.0938, 60.7296], [11.094, 60.7296], [11.0943, 60.7296], [11.0944, 60.7295], [11.0944, 60.7294], [11.0944, 60.7294], [11.0945, 60.7293], [11.0946, 60.7293], [11.0946, 60.7292], [11.0946, 60.7292], [11.0946, 60.7292], [11.0946, 60.7292], [11.0947, 60.7291], [11.0947, 60.7291], [11.0947, 60.729], [11.0947, 60.729], [11.0947, 60.729], [11.0947, 60.7289], [11.0947, 60.7289], [11.0946, 60.7289], [11.0946, 60.7288], [11.0945, 60.7288], [11.0945, 60.7287], [11.0945, 60.7287], [11.0945, 60.7286], [11.0946, 60.7286], [11.0945, 60.7285], [11.0945, 60.7284], [11.0945, 60.7284], [11.0945, 60.7283], [11.0944, 60.7282], [11.0944, 60.7282], [11.0944, 60.7281], [11.0943, 60.7281], [11.0943, 60.7281], [11.0943, 60.728], [11.0943, 60.728], [11.0942, 60.728], [11.0942, 60.7279], [11.0941, 60.7278], [11.0941, 60.7278], [11.094, 60.7277], [11.094, 60.7277], [11.0939, 60.7277], [11.0938, 60.7276], [11.0938, 60.7276], [11.0935, 60.7275], [11.0933, 60.7274], [11.0931, 60.7273], [11.0929, 60.7272], [11.0928, 60.7272], [11.0928, 60.7271], [11.0927, 60.7271], [11.0927, 60.727], [11.0927, 60.727], [11.0928, 60.727], [11.0928, 60.7269], [11.0928, 60.7269], [11.0928, 60.7268], [11.0929, 60.7268], [11.0929, 60.7267], [11.0929, 60.7267], [11.093, 60.7267], [11.0931, 60.7267], [11.0931, 60.7266], [11.0931, 60.7266], [11.0932, 60.7266], [11.0933, 60.7266], [11.0934, 60.7266], [11.0936, 60.7267], [11.0937, 60.7267], [11.0938, 60.7267], [11.0939, 60.7267], [11.094, 60.7267], [11.0941, 60.7267], [11.0941, 60.7267], [11.0941, 60.7267], [11.0943, 60.7267], [11.0945, 60.7268], [11.0947, 60.7268], [11.0947, 60.7269], [11.0948, 60.7269], [11.0948, 60.7269], [11.0949, 60.7269], [11.095, 60.7269], [11.0953, 60.727], [11.0955, 60.727], [11.0956, 60.7269], [11.0956, 60.7269], [11.0957, 60.7269], [11.0957, 60.7269], [11.0958, 60.727], [11.0959, 60.727], [11.0959, 60.727], [11.0959, 60.727], [11.096, 60.7269], [11.096, 60.7269], [11.096, 60.7269], [11.096, 60.7268], [11.096, 60.7267], [11.0961, 60.7266], [11.0962, 60.7266], [11.0962, 60.7266], [11.0963, 60.7266], [11.0964, 60.7266], [11.0964, 60.7266], [11.0965, 60.7266], [11.0965, 60.7266], [11.0966, 60.7266], [11.0967, 60.7266], [11.0967, 60.7265], [11.0968, 60.7264], [11.0968, 60.7264], [11.0969, 60.7264], [11.0969, 60.7264], [11.0968, 60.7264], [11.0968, 60.7263], [11.0967, 60.7262], [11.0967, 60.7262], [11.0966, 60.7262], [11.0965, 60.7261], [11.0965, 60.7261], [11.0965, 60.726], [11.0965, 60.726], [11.0965, 60.726], [11.0965, 60.7259], [11.0966, 60.7259], [11.0965, 60.7259], [11.0965, 60.7258], [11.0965, 60.7258], [11.0966, 60.7257], [11.0966, 60.7256], [11.0966, 60.7256], [11.0966, 60.7255], [11.0966, 60.7255], [11.0965, 60.7254], [11.0964, 60.7254], [11.0963, 60.7254], [11.096, 60.7254], [11.0957, 60.7254], [11.0955, 60.7253], [11.0954, 60.7253], [11.0954, 60.7253], [11.0953, 60.7252], [11.0952, 60.7252], [11.0951, 60.7252], [11.0951, 60.7251], [11.095, 60.7251], [11.095, 60.7251], [11.095, 60.725], [11.0951, 60.725], [11.0951, 60.7249], [11.0952, 60.7249], [11.0952, 60.7248], [11.0954, 60.7248], [11.0955, 60.7248], [11.0956, 60.7248], [11.0957, 60.7248], [11.0959, 60.7247], [11.0961, 60.7248], [11.0963, 60.7248], [11.0963, 60.7248], [11.0964, 60.7248], [11.0964, 60.7247], [11.0964, 60.7247], [11.0964, 60.7247], [11.0963, 60.7246], [11.0964, 60.7246], [11.0964, 60.7246], [11.0964, 60.7246], [11.0965, 60.7245], [11.0965, 60.7244], [11.0966, 60.7244], [11.0966, 60.7243], [11.0967, 60.7242], [11.0967, 60.7241], [11.0967, 60.7241], [11.0967, 60.724], [11.0967, 60.7239], [11.0966, 60.7238], [11.0966, 60.7237], [11.0965, 60.7236], [11.0965, 60.7236], [11.0965, 60.7235], [11.0966, 60.7235], [11.0966, 60.7234], [11.0967, 60.7234], [11.0969, 60.7233], [11.0969, 60.7233], [11.0969, 60.7233], [11.0969, 60.7232], [11.097, 60.7232], [11.0971, 60.7232], [11.0972, 60.723], [11.0974, 60.7229], [11.0975, 60.7228], [11.0976, 60.7227], [11.0977, 60.7225], [11.0978, 60.7223], [11.0978, 60.7223], [11.0979, 60.7222], [11.098, 60.7221], [11.0981, 60.7221], [11.0981, 60.7221], [11.0982, 60.722], [11.0983, 60.722], [11.0985, 60.7219], [11.0987, 60.7219], [11.0988, 60.7219], [11.099, 60.7219], [11.0991, 60.7219], [11.0991, 60.7219], [11.0992, 60.7219], [11.0993, 60.7219], [11.0995, 60.7219], [11.0996, 60.7219], [11.0996, 60.7218], [11.0998, 60.7219], [11.1002, 60.7219], [11.1004, 60.7219], [11.1006, 60.7218], [11.1006, 60.7218], [11.1006, 60.7217], [11.1007, 60.7217], [11.1007, 60.7216], [11.1007, 60.7216], [11.1008, 60.7216], [11.1008, 60.7216], [11.101, 60.7216], [11.1012, 60.7216], [11.1013, 60.7216], [11.1013, 60.7215], [11.1013, 60.7215], [11.1012, 60.7214], [11.1011, 60.7214], [11.1011, 60.7213], [11.1009, 60.7211], [11.1009, 60.7211], [11.101, 60.721], [11.1009, 60.7209], [11.1009, 60.7208], [11.1008, 60.7207], [11.1008, 60.7207], [11.1009, 60.7206], [11.1008, 60.7206], [11.1009, 60.7205], [11.1011, 60.7205], [11.1012, 60.7205], [11.1014, 60.7204], [11.1015, 60.7204], [11.1016, 60.7203], [11.1017, 60.7202], [11.1019, 60.7201], [11.1021, 60.72], [11.1022, 60.72], [11.1022, 60.72], [11.1023, 60.7199], [11.1025, 60.7197], [11.1027, 60.7196], [11.1028, 60.7196], [11.1028, 60.7195], [11.1029, 60.7195], [11.1029, 60.7195], [11.103, 60.7194], [11.103, 60.7194], [11.103, 60.7194], [11.103, 60.7193], [11.103, 60.7193], [11.103, 60.7193], [11.103, 60.7192], [11.1031, 60.7192], [11.1031, 60.7191], [11.1031, 60.7191], [11.1031, 60.719], [11.103, 60.719], [11.103, 60.719], [11.103, 60.7189], [11.103, 60.7189], [11.1029, 60.7189], [11.1028, 60.7188], [11.1028, 60.7188], [11.1028, 60.7188], [11.1029, 60.7189], [11.103, 60.7189], [11.103, 60.7189], [11.1031, 60.7189], [11.1031, 60.719], [11.1032, 60.719], [11.1032, 60.7189], [11.1033, 60.7189], [11.1033, 60.7188], [11.1034, 60.7188], [11.1033, 60.7188], [11.1033, 60.7187], [11.1032, 60.7187], [11.1032, 60.7187], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1033, 60.7186], [11.1034, 60.7186], [11.1035, 60.7186], [11.1035, 60.7186], [11.1036, 60.7185], [11.1035, 60.7185], [11.1035, 60.7185], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7184], [11.1034, 60.7183], [11.1035, 60.7183], [11.1035, 60.7183], [11.1035, 60.7182], [11.1036, 60.7182], [11.1036, 60.7182], [11.1037, 60.7182], [11.1037, 60.7182], [11.1039, 60.7181], [11.1039, 60.7181], [11.104, 60.7181], [11.1041, 60.7181], [11.1041, 60.7181], [11.1042, 60.7181], [11.1042, 60.718], [11.1043, 60.718], [11.1044, 60.718], [11.1044, 60.718], [11.1045, 60.718], [11.1046, 60.7179], [11.1046, 60.7179], [11.1046, 60.7179], [11.1047, 60.7178], [11.1048, 60.7178], [11.1048, 60.7178], [11.1048, 60.7177], [11.1048, 60.7177], [11.1048, 60.7176], [11.1047, 60.7175], [11.1048, 60.7175], [11.1048, 60.7175], [11.1048, 60.7174], [11.1048, 60.7174], [11.1048, 60.7173], [11.1048, 60.7172], [11.1047, 60.7172], [11.1047, 60.7171], [11.1047, 60.717], [11.1046, 60.717], [11.1041, 60.717], [11.1038, 60.717], [11.1038, 60.717], [11.1038, 60.7169], [11.1038, 60.7169], [11.1039, 60.7169], [11.1046, 60.717], [11.1046, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.1047, 60.7169], [11.0704, 60.7169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "117", "sub_div_center": [60.736856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7369], [11.0704, 60.7569], [11.0771, 60.7569], [11.0772, 60.7568], [11.0772, 60.7568], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7567], [11.0772, 60.7566], [11.0772, 60.7565], [11.0772, 60.7565], [11.0772, 60.7563], [11.0772, 60.7562], [11.0772, 60.7561], [11.0772, 60.7559], [11.0772, 60.7558], [11.0773, 60.7558], [11.0774, 60.7557], [11.0774, 60.7557], [11.0774, 60.7556], [11.0773, 60.7556], [11.0772, 60.7556], [11.0771, 60.7556], [11.0771, 60.7556], [11.0771, 60.7555], [11.0771, 60.7554], [11.0772, 60.7554], [11.0773, 60.7554], [11.0775, 60.7554], [11.0775, 60.7553], [11.0776, 60.7553], [11.0776, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0775, 60.7552], [11.0776, 60.7551], [11.0776, 60.7551], [11.0776, 60.755], [11.0777, 60.755], [11.0777, 60.755], [11.0778, 60.7549], [11.0779, 60.7548], [11.0778, 60.7547], [11.0778, 60.7546], [11.0779, 60.7545], [11.0779, 60.7544], [11.078, 60.7543], [11.078, 60.7542], [11.0782, 60.7541], [11.0782, 60.754], [11.0783, 60.754], [11.0783, 60.7539], [11.0784, 60.7539], [11.0784, 60.7538], [11.0784, 60.7537], [11.0783, 60.7537], [11.0782, 60.7536], [11.0781, 60.7535], [11.0781, 60.7534], [11.0781, 60.7533], [11.0782, 60.7533], [11.0783, 60.7532], [11.0782, 60.7532], [11.0782, 60.7531], [11.0782, 60.7531], [11.0782, 60.753], [11.0783, 60.753], [11.0783, 60.7529], [11.0783, 60.7529], [11.0783, 60.7527], [11.0784, 60.7527], [11.0784, 60.7526], [11.0784, 60.7525], [11.0785, 60.7525], [11.0786, 60.7524], [11.0788, 60.7524], [11.0791, 60.7524], [11.0793, 60.7523], [11.0795, 60.7523], [11.08, 60.7522], [11.0802, 60.7522], [11.0806, 60.752], [11.081, 60.7519], [11.0814, 60.7518], [11.0816, 60.7516], [11.0817, 60.7516], [11.0817, 60.7516], [11.0818, 60.7515], [11.0818, 60.7514], [11.0818, 60.7514], [11.0818, 60.7514], [11.0817, 60.7514], [11.0816, 60.7513], [11.0814, 60.7513], [11.0814, 60.7512], [11.0814, 60.7512], [11.0814, 60.7512], [11.0814, 60.7511], [11.0815, 60.7511], [11.0815, 60.7511], [11.0815, 60.7511], [11.0815, 60.751], [11.0816, 60.751], [11.0816, 60.751], [11.0817, 60.7509], [11.0818, 60.7509], [11.082, 60.7509], [11.0821, 60.7509], [11.0822, 60.7508], [11.0822, 60.7508], [11.0824, 60.7507], [11.0825, 60.7507], [11.0825, 60.7507], [11.0823, 60.7506], [11.0822, 60.7505], [11.0823, 60.7505], [11.0825, 60.7504], [11.0825, 60.7504], [11.0826, 60.7503], [11.0826, 60.7503], [11.0826, 60.7502], [11.0825, 60.7502], [11.0824, 60.7502], [11.0823, 60.7502], [11.0821, 60.7503], [11.0821, 60.7503], [11.0821, 60.7503], [11.0822, 60.7503], [11.0822, 60.7502], [11.0823, 60.7501], [11.0823, 60.7501], [11.0823, 60.7501], [11.0822, 60.75], [11.0822, 60.7499], [11.0822, 60.7499], [11.0822, 60.7499], [11.0822, 60.7498], [11.0823, 60.7498], [11.0824, 60.7498], [11.0825, 60.7498], [11.0825, 60.7498], [11.0826, 60.7498], [11.0827, 60.7497], [11.0828, 60.7497], [11.083, 60.7496], [11.0831, 60.7496], [11.0832, 60.7495], [11.0833, 60.7495], [11.0835, 60.7494], [11.0836, 60.7493], [11.0837, 60.7493], [11.084, 60.7492], [11.0842, 60.7491], [11.0843, 60.7491], [11.0846, 60.7491], [11.0847, 60.7491], [11.0848, 60.7491], [11.0848, 60.749], [11.0848, 60.7489], [11.0849, 60.7489], [11.0849, 60.7488], [11.0849, 60.7488], [11.0849, 60.7486], [11.0848, 60.7485], [11.0848, 60.7484], [11.0848, 60.7484], [11.0848, 60.7482], [11.0848, 60.7482], [11.0849, 60.7481], [11.085, 60.7481], [11.085, 60.7481], [11.0851, 60.7481], [11.0852, 60.748], [11.0852, 60.748], [11.0852, 60.7479], [11.0851, 60.7479], [11.0851, 60.7479], [11.0852, 60.7479], [11.0852, 60.7478], [11.0852, 60.7478], [11.0852, 60.7478], [11.0853, 60.7478], [11.0853, 60.7478], [11.0854, 60.7477], [11.0853, 60.7477], [11.0852, 60.7477], [11.0853, 60.7477], [11.0853, 60.7477], [11.0853, 60.7476], [11.0853, 60.7475], [11.0853, 60.7475], [11.0851, 60.7475], [11.085, 60.7475], [11.085, 60.7474], [11.0849, 60.7474], [11.0849, 60.7474], [11.0849, 60.7473], [11.0849, 60.7473], [11.0849, 60.7473], [11.085, 60.7472], [11.085, 60.7473], [11.0851, 60.7473], [11.0852, 60.7472], [11.0852, 60.7472], [11.0854, 60.7472], [11.0855, 60.7471], [11.0856, 60.7471], [11.0856, 60.7471], [11.0855, 60.7471], [11.0854, 60.747], [11.0855, 60.747], [11.0855, 60.747], [11.0856, 60.7469], [11.0856, 60.7469], [11.0856, 60.7469], [11.0857, 60.7469], [11.0856, 60.7468], [11.0856, 60.7467], [11.0857, 60.7467], [11.0858, 60.7467], [11.0859, 60.7466], [11.0859, 60.7466], [11.086, 60.7466], [11.086, 60.7465], [11.086, 60.7465], [11.0859, 60.7465], [11.0859, 60.7465], [11.0858, 60.7465], [11.0858, 60.7465], [11.0857, 60.7464], [11.0856, 60.7464], [11.0855, 60.7464], [11.0855, 60.7464], [11.0856, 60.7464], [11.0856, 60.7464], [11.0857, 60.7464], [11.0857, 60.7464], [11.0858, 60.7464], [11.0858, 60.7463], [11.0859, 60.7462], [11.0859, 60.7461], [11.0859, 60.7461], [11.0859, 60.746], [11.0859, 60.7459], [11.0859, 60.7458], [11.0859, 60.7457], [11.0858, 60.7457], [11.0857, 60.7457], [11.0857, 60.7457], [11.0856, 60.7456], [11.0856, 60.7456], [11.0855, 60.7456], [11.0854, 60.7456], [11.0853, 60.7456], [11.0851, 60.7456], [11.085, 60.7456], [11.0849, 60.7456], [11.0849, 60.7457], [11.0849, 60.7458], [11.085, 60.7458], [11.085, 60.7459], [11.085, 60.7459], [11.0849, 60.7459], [11.0848, 60.7459], [11.0847, 60.7459], [11.0847, 60.7459], [11.0846, 60.7459], [11.0845, 60.7458], [11.0845, 60.7457], [11.0844, 60.7457], [11.0844, 60.7456], [11.0843, 60.7455], [11.0843, 60.7454], [11.0843, 60.7454], [11.0843, 60.7453], [11.0845, 60.7452], [11.0846, 60.7451], [11.0847, 60.745], [11.0847, 60.745], [11.0848, 60.7449], [11.0849, 60.7449], [11.0849, 60.7448], [11.0851, 60.7448], [11.0852, 60.7448], [11.0852, 60.7447], [11.0852, 60.7447], [11.0853, 60.7447], [11.0854, 60.7447], [11.0854, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0855, 60.7448], [11.0857, 60.7448], [11.0857, 60.7448], [11.0856, 60.7447], [11.0855, 60.7446], [11.0855, 60.7445], [11.0854, 60.7445], [11.0853, 60.7444], [11.0853, 60.7443], [11.0853, 60.7443], [11.0852, 60.7442], [11.0852, 60.7442], [11.0852, 60.744], [11.0852, 60.744], [11.0852, 60.7439], [11.0853, 60.7439], [11.0853, 60.7438], [11.0852, 60.7438], [11.0851, 60.7438], [11.0851, 60.7437], [11.0852, 60.7437], [11.0853, 60.7437], [11.0853, 60.7437], [11.0852, 60.7436], [11.0852, 60.7436], [11.0852, 60.7435], [11.0853, 60.7435], [11.0853, 60.7435], [11.0852, 60.7435], [11.0852, 60.7434], [11.0853, 60.7434], [11.0853, 60.7434], [11.0852, 60.7434], [11.0852, 60.7434], [11.0852, 60.7433], [11.0852, 60.7432], [11.0852, 60.7431], [11.0852, 60.7431], [11.0852, 60.7429], [11.0852, 60.7429], [11.0852, 60.7428], [11.0851, 60.7428], [11.0851, 60.7427], [11.0851, 60.7427], [11.0851, 60.7426], [11.085, 60.7425], [11.0851, 60.7425], [11.0849, 60.7424], [11.0848, 60.7424], [11.0847, 60.7423], [11.0847, 60.7423], [11.0847, 60.7422], [11.0846, 60.7422], [11.0845, 60.7421], [11.0845, 60.7421], [11.0845, 60.742], [11.0845, 60.742], [11.0845, 60.7419], [11.0846, 60.7419], [11.0848, 60.7418], [11.0848, 60.7418], [11.0847, 60.7418], [11.0846, 60.7417], [11.0845, 60.7416], [11.0845, 60.7415], [11.0844, 60.7414], [11.0843, 60.7414], [11.0842, 60.7414], [11.0843, 60.7413], [11.0842, 60.7412], [11.0841, 60.7411], [11.084, 60.741], [11.0839, 60.7408], [11.0839, 60.7407], [11.0838, 60.7402], [11.0838, 60.74], [11.0838, 60.7399], [11.0838, 60.7395], [11.0838, 60.7395], [11.0838, 60.7394], [11.0838, 60.7394], [11.0838, 60.7393], [11.0839, 60.7393], [11.0839, 60.7393], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7392], [11.0839, 60.7391], [11.0839, 60.7391], [11.0839, 60.739], [11.0839, 60.739], [11.0839, 60.739], [11.0839, 60.7389], [11.0839, 60.7388], [11.0839, 60.7388], [11.084, 60.7387], [11.0841, 60.7386], [11.0841, 60.7385], [11.0842, 60.7384], [11.0842, 60.7383], [11.0843, 60.7383], [11.0843, 60.7383], [11.0843, 60.7382], [11.0843, 60.7382], [11.0843, 60.7381], [11.0842, 60.7381], [11.0841, 60.7381], [11.0841, 60.7381], [11.0842, 60.7381], [11.0842, 60.7381], [11.0843, 60.7381], [11.0843, 60.7381], [11.0843, 60.7381], [11.0843, 60.738], [11.0842, 60.738], [11.0841, 60.738], [11.0842, 60.738], [11.0843, 60.738], [11.0844, 60.738], [11.0844, 60.7379], [11.0845, 60.7379], [11.0845, 60.7378], [11.0845, 60.7378], [11.0845, 60.7378], [11.0845, 60.7378], [11.0846, 60.7377], [11.0846, 60.7376], [11.0847, 60.7375], [11.0847, 60.7374], [11.0847, 60.7373], [11.0847, 60.7372], [11.0848, 60.7371], [11.0849, 60.737], [11.0851, 60.7369], [11.0851, 60.7369], [11.0704, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "118", "sub_div_center": [60.756856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7569], [11.0704, 60.7769], [11.0868, 60.7769], [11.0867, 60.7769], [11.0866, 60.7768], [11.0864, 60.7767], [11.0864, 60.7767], [11.0861, 60.7767], [11.0861, 60.7766], [11.0862, 60.7766], [11.0861, 60.7765], [11.086, 60.7764], [11.086, 60.7764], [11.0857, 60.7763], [11.0855, 60.7762], [11.0854, 60.7762], [11.0853, 60.7762], [11.0852, 60.7761], [11.0852, 60.7761], [11.0851, 60.7761], [11.0851, 60.7761], [11.085, 60.7762], [11.0849, 60.7763], [11.0848, 60.7763], [11.0848, 60.7763], [11.0848, 60.7764], [11.0848, 60.7764], [11.0848, 60.7764], [11.0848, 60.7765], [11.0848, 60.7765], [11.0849, 60.7765], [11.085, 60.7766], [11.0852, 60.7766], [11.0852, 60.7767], [11.0852, 60.7767], [11.0852, 60.7767], [11.0851, 60.7767], [11.0848, 60.7766], [11.0847, 60.7766], [11.0846, 60.7765], [11.0845, 60.7765], [11.0845, 60.7764], [11.0846, 60.7764], [11.0846, 60.7763], [11.0847, 60.7763], [11.0848, 60.7762], [11.0849, 60.7761], [11.0848, 60.776], [11.0847, 60.776], [11.0846, 60.7759], [11.0844, 60.7759], [11.0843, 60.7759], [11.0843, 60.7758], [11.0842, 60.7758], [11.0841, 60.7757], [11.0841, 60.7757], [11.084, 60.7757], [11.084, 60.7757], [11.0837, 60.7755], [11.0836, 60.7754], [11.0834, 60.7754], [11.0834, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0835, 60.7754], [11.0834, 60.7754], [11.0833, 60.7754], [11.0833, 60.7754], [11.0834, 60.7753], [11.0834, 60.7753], [11.0834, 60.7753], [11.0834, 60.7752], [11.0833, 60.7752], [11.0833, 60.7751], [11.0832, 60.7751], [11.0832, 60.775], [11.0832, 60.775], [11.0832, 60.775], [11.0831, 60.775], [11.0832, 60.775], [11.0832, 60.775], [11.0831, 60.7749], [11.083, 60.7748], [11.083, 60.7748], [11.0829, 60.7748], [11.083, 60.7748], [11.0828, 60.7747], [11.0828, 60.7746], [11.0828, 60.7746], [11.0827, 60.7745], [11.0826, 60.7745], [11.0825, 60.7745], [11.0825, 60.7745], [11.0824, 60.7745], [11.0823, 60.7745], [11.0823, 60.7746], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0822, 60.7745], [11.0821, 60.7745], [11.0821, 60.7745], [11.0822, 60.7744], [11.0823, 60.7744], [11.0823, 60.7744], [11.0823, 60.7744], [11.0822, 60.7743], [11.0822, 60.7743], [11.0822, 60.7743], [11.0821, 60.7743], [11.0822, 60.7743], [11.0822, 60.7742], [11.0821, 60.7741], [11.0821, 60.7741], [11.0821, 60.7741], [11.0821, 60.774], [11.0821, 60.774], [11.082, 60.774], [11.0819, 60.774], [11.0819, 60.774], [11.082, 60.774], [11.082, 60.7739], [11.082, 60.7739], [11.0819, 60.7739], [11.0819, 60.7739], [11.0819, 60.7738], [11.0819, 60.7738], [11.0819, 60.7737], [11.0819, 60.7737], [11.0818, 60.7736], [11.0818, 60.7736], [11.0818, 60.7736], [11.0818, 60.7735], [11.0818, 60.7735], [11.0818, 60.7734], [11.0818, 60.7734], [11.0818, 60.7734], [11.0818, 60.7733], [11.0818, 60.7733], [11.0817, 60.7733], [11.0817, 60.7733], [11.0816, 60.7733], [11.0816, 60.7733], [11.0817, 60.7733], [11.0817, 60.7733], [11.0816, 60.7732], [11.0815, 60.7732], [11.0815, 60.7731], [11.0815, 60.7731], [11.0815, 60.7731], [11.0815, 60.7731], [11.0816, 60.773], [11.0816, 60.773], [11.0814, 60.7727], [11.0815, 60.7727], [11.0815, 60.7727], [11.0815, 60.7726], [11.0815, 60.7725], [11.0815, 60.7725], [11.0814, 60.7724], [11.0814, 60.7723], [11.0813, 60.7723], [11.0813, 60.7723], [11.0812, 60.7723], [11.0811, 60.7722], [11.0811, 60.7722], [11.081, 60.7722], [11.081, 60.7722], [11.0809, 60.7721], [11.0809, 60.7721], [11.0809, 60.772], [11.0809, 60.772], [11.081, 60.7719], [11.0811, 60.7719], [11.0811, 60.7719], [11.081, 60.7718], [11.081, 60.7718], [11.0809, 60.7717], [11.0809, 60.7717], [11.0807, 60.7716], [11.0806, 60.7715], [11.0804, 60.7714], [11.0803, 60.7712], [11.0803, 60.7711], [11.0802, 60.771], [11.0802, 60.7709], [11.0802, 60.7709], [11.0802, 60.7707], [11.0802, 60.7707], [11.0802, 60.7706], [11.0802, 60.7705], [11.0801, 60.7704], [11.0801, 60.7703], [11.0801, 60.7703], [11.0802, 60.7702], [11.0802, 60.7701], [11.0802, 60.7701], [11.0801, 60.7701], [11.0801, 60.7701], [11.08, 60.7702], [11.08, 60.7702], [11.0798, 60.7702], [11.0798, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0797, 60.7702], [11.0798, 60.7702], [11.0798, 60.7702], [11.0799, 60.7702], [11.08, 60.7702], [11.0801, 60.7701], [11.0801, 60.7701], [11.0801, 60.7701], [11.0801, 60.77], [11.08, 60.7699], [11.0799, 60.7699], [11.0798, 60.7699], [11.0797, 60.7698], [11.0797, 60.7698], [11.0795, 60.7698], [11.0795, 60.7697], [11.0794, 60.7697], [11.0796, 60.7697], [11.0798, 60.7696], [11.0797, 60.7696], [11.0798, 60.7695], [11.0798, 60.7695], [11.0797, 60.7695], [11.0796, 60.7695], [11.0796, 60.7694], [11.0795, 60.7694], [11.0794, 60.7694], [11.0792, 60.7693], [11.0791, 60.7694], [11.0789, 60.7694], [11.0788, 60.7694], [11.0786, 60.7694], [11.0784, 60.7694], [11.0782, 60.7694], [11.0781, 60.7694], [11.0779, 60.7694], [11.0778, 60.7694], [11.0777, 60.7693], [11.0777, 60.7693], [11.0776, 60.7693], [11.0776, 60.7693], [11.0775, 60.7693], [11.0775, 60.7693], [11.0774, 60.7693], [11.0773, 60.7693], [11.0772, 60.7693], [11.0772, 60.7693], [11.0771, 60.7693], [11.0769, 60.7692], [11.0768, 60.7692], [11.0768, 60.7691], [11.0768, 60.7691], [11.0767, 60.7691], [11.0767, 60.7691], [11.0766, 60.7691], [11.0766, 60.769], [11.0765, 60.7691], [11.0764, 60.7691], [11.0765, 60.769], [11.0765, 60.7689], [11.0765, 60.7689], [11.0764, 60.7689], [11.0763, 60.7689], [11.0763, 60.7689], [11.0763, 60.7689], [11.0762, 60.7689], [11.0761, 60.7689], [11.0759, 60.7689], [11.0756, 60.7689], [11.0754, 60.7689], [11.0753, 60.769], [11.0752, 60.7691], [11.075, 60.7693], [11.0748, 60.7694], [11.0747, 60.7694], [11.0745, 60.7695], [11.0744, 60.7695], [11.0743, 60.7695], [11.0742, 60.7695], [11.074, 60.7695], [11.0739, 60.7695], [11.0739, 60.7695], [11.0738, 60.7694], [11.0738, 60.7693], [11.0737, 60.7693], [11.0737, 60.7692], [11.0738, 60.7691], [11.0739, 60.7691], [11.0739, 60.769], [11.074, 60.7689], [11.0741, 60.7688], [11.0744, 60.7687], [11.0746, 60.7686], [11.0748, 60.7685], [11.0752, 60.7684], [11.0753, 60.7684], [11.0754, 60.7683], [11.0754, 60.7683], [11.0756, 60.7681], [11.0756, 60.7681], [11.0755, 60.768], [11.0756, 60.768], [11.0757, 60.768], [11.0757, 60.7679], [11.0758, 60.7678], [11.0758, 60.7677], [11.0757, 60.7677], [11.0756, 60.7677], [11.0754, 60.7677], [11.0753, 60.7677], [11.0753, 60.7676], [11.0753, 60.7675], [11.0753, 60.7674], [11.0753, 60.7674], [11.0753, 60.7673], [11.0753, 60.7673], [11.0753, 60.7672], [11.0752, 60.7672], [11.0749, 60.767], [11.0748, 60.7669], [11.0748, 60.7668], [11.0748, 60.7668], [11.0748, 60.7668], [11.0747, 60.7667], [11.0746, 60.7667], [11.0746, 60.7666], [11.0746, 60.7665], [11.0746, 60.7664], [11.0747, 60.7663], [11.0747, 60.7662], [11.0745, 60.7662], [11.0744, 60.7661], [11.0745, 60.7661], [11.0746, 60.7661], [11.0747, 60.7661], [11.0747, 60.7661], [11.0747, 60.7661], [11.0748, 60.766], [11.0748, 60.7659], [11.0748, 60.7658], [11.0748, 60.7657], [11.0748, 60.7657], [11.0748, 60.7655], [11.0749, 60.7654], [11.0749, 60.7653], [11.075, 60.7653], [11.075, 60.7652], [11.0751, 60.7652], [11.0751, 60.7651], [11.0751, 60.7649], [11.0751, 60.7648], [11.0752, 60.7648], [11.0752, 60.7647], [11.0754, 60.7647], [11.0756, 60.7645], [11.0758, 60.7645], [11.0758, 60.7644], [11.0759, 60.7644], [11.0759, 60.7643], [11.0758, 60.7642], [11.0759, 60.7641], [11.0758, 60.764], [11.0759, 60.764], [11.0758, 60.764], [11.0758, 60.7639], [11.0758, 60.7638], [11.0758, 60.7638], [11.0757, 60.7637], [11.0758, 60.7637], [11.0758, 60.7636], [11.0758, 60.7636], [11.0758, 60.7635], [11.0758, 60.7635], [11.0758, 60.7634], [11.0758, 60.7633], [11.0758, 60.7632], [11.0758, 60.7632], [11.0758, 60.7631], [11.0758, 60.7631], [11.0758, 60.763], [11.0758, 60.763], [11.0758, 60.763], [11.0757, 60.763], [11.0757, 60.7629], [11.0756, 60.7629], [11.0756, 60.7629], [11.0755, 60.7629], [11.0755, 60.7628], [11.0755, 60.7628], [11.0754, 60.7628], [11.0754, 60.7627], [11.0754, 60.7626], [11.0754, 60.7626], [11.0754, 60.7625], [11.0755, 60.7625], [11.0756, 60.7624], [11.0757, 60.7624], [11.0759, 60.7623], [11.076, 60.7623], [11.0761, 60.7624], [11.0761, 60.7623], [11.0762, 60.7623], [11.0762, 60.7622], [11.0762, 60.7622], [11.0762, 60.7621], [11.0762, 60.762], [11.0763, 60.762], [11.0763, 60.7619], [11.0764, 60.7618], [11.0765, 60.7617], [11.0767, 60.7616], [11.0768, 60.7616], [11.0769, 60.7615], [11.077, 60.7613], [11.0771, 60.7613], [11.0772, 60.7612], [11.0772, 60.7612], [11.0772, 60.7613], [11.0773, 60.7613], [11.0774, 60.7613], [11.0775, 60.7613], [11.0776, 60.7612], [11.0776, 60.7612], [11.0776, 60.7611], [11.0775, 60.7611], [11.0775, 60.7611], [11.0775, 60.7611], [11.0776, 60.7611], [11.0776, 60.7611], [11.0777, 60.761], [11.0778, 60.761], [11.0778, 60.7609], [11.0778, 60.7609], [11.0778, 60.7608], [11.0778, 60.7608], [11.0777, 60.7607], [11.0777, 60.7606], [11.0778, 60.7606], [11.0777, 60.7606], [11.0777, 60.7606], [11.0776, 60.7605], [11.0776, 60.7605], [11.0774, 60.7604], [11.0773, 60.7604], [11.0772, 60.7604], [11.0772, 60.7604], [11.0772, 60.7603], [11.0773, 60.7603], [11.0773, 60.7602], [11.0773, 60.7602], [11.0774, 60.7601], [11.0774, 60.76], [11.0775, 60.76], [11.0776, 60.76], [11.0778, 60.7599], [11.0779, 60.7599], [11.078, 60.7598], [11.0781, 60.7597], [11.0783, 60.7595], [11.0784, 60.7595], [11.0786, 60.7595], [11.0787, 60.7594], [11.0788, 60.7594], [11.079, 60.7594], [11.0791, 60.7594], [11.0791, 60.7594], [11.0789, 60.7593], [11.0788, 60.7593], [11.0788, 60.7592], [11.0788, 60.7591], [11.0787, 60.7591], [11.0787, 60.759], [11.0786, 60.7589], [11.0784, 60.7589], [11.0784, 60.7588], [11.0785, 60.7587], [11.0785, 60.7587], [11.0785, 60.7586], [11.0784, 60.7585], [11.0784, 60.7585], [11.0784, 60.7584], [11.0783, 60.7584], [11.0783, 60.7583], [11.0783, 60.7582], [11.0783, 60.7582], [11.0783, 60.7581], [11.0782, 60.7581], [11.0782, 60.7581], [11.0782, 60.758], [11.0781, 60.758], [11.0781, 60.7579], [11.078, 60.7579], [11.0779, 60.7579], [11.0779, 60.7579], [11.0778, 60.7579], [11.0777, 60.7578], [11.0776, 60.7578], [11.0776, 60.7578], [11.0775, 60.7577], [11.0775, 60.7577], [11.0775, 60.7576], [11.0775, 60.7575], [11.0774, 60.7575], [11.0774, 60.7574], [11.0774, 60.7573], [11.0773, 60.7572], [11.0772, 60.7572], [11.0771, 60.7571], [11.0771, 60.757], [11.0771, 60.757], [11.0771, 60.7569], [11.0771, 60.7569], [11.0704, 60.7569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "119", "sub_div_center": [60.776856, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7769], [11.0704, 60.7875], [11.0717, 60.7876], [11.0719, 60.7877], [11.0721, 60.7877], [11.0722, 60.7878], [11.0722, 60.7878], [11.0723, 60.7879], [11.0724, 60.7879], [11.0726, 60.7879], [11.0728, 60.7879], [11.073, 60.788], [11.0733, 60.788], [11.0734, 60.7881], [11.0736, 60.7881], [11.074, 60.7882], [11.0742, 60.7882], [11.0742, 60.7882], [11.0744, 60.7882], [11.0744, 60.7882], [11.0745, 60.7882], [11.0745, 60.7882], [11.0746, 60.7882], [11.0747, 60.7882], [11.0748, 60.7882], [11.0749, 60.7883], [11.0749, 60.7883], [11.075, 60.7882], [11.0753, 60.7882], [11.0754, 60.7883], [11.0755, 60.7883], [11.0755, 60.7883], [11.0755, 60.7884], [11.0761, 60.7885], [11.0766, 60.7886], [11.0768, 60.7888], [11.077, 60.7888], [11.0772, 60.7889], [11.0772, 60.7889], [11.0773, 60.789], [11.0774, 60.789], [11.0775, 60.789], [11.0777, 60.7892], [11.0777, 60.7892], [11.0778, 60.7892], [11.0779, 60.7893], [11.0779, 60.7893], [11.0779, 60.7894], [11.0779, 60.7894], [11.078, 60.7895], [11.0781, 60.7895], [11.0781, 60.7896], [11.0781, 60.7896], [11.0781, 60.7896], [11.078, 60.7896], [11.0779, 60.7896], [11.0778, 60.7895], [11.0777, 60.7895], [11.0777, 60.7894], [11.0777, 60.7894], [11.0777, 60.7894], [11.0778, 60.7893], [11.0777, 60.7893], [11.0776, 60.7892], [11.0775, 60.7892], [11.0775, 60.7892], [11.0774, 60.7892], [11.0774, 60.7892], [11.0773, 60.7892], [11.0771, 60.7891], [11.077, 60.789], [11.0769, 60.789], [11.0767, 60.789], [11.0766, 60.789], [11.0765, 60.789], [11.0764, 60.789], [11.0762, 60.7889], [11.076, 60.7889], [11.0759, 60.7889], [11.0758, 60.7889], [11.0756, 60.7888], [11.0754, 60.7888], [11.0752, 60.7888], [11.0751, 60.7889], [11.0751, 60.7892], [11.0752, 60.7893], [11.0753, 60.7895], [11.0753, 60.7895], [11.0754, 60.7897], [11.0755, 60.7898], [11.0755, 60.7898], [11.0755, 60.7899], [11.0755, 60.7899], [11.0758, 60.79], [11.0761, 60.7901], [11.0763, 60.7901], [11.0766, 60.7902], [11.0766, 60.7903], [11.0767, 60.7903], [11.0769, 60.7903], [11.0771, 60.7903], [11.0773, 60.7903], [11.0776, 60.7904], [11.0778, 60.7903], [11.0784, 60.7902], [11.079, 60.7901], [11.0791, 60.7901], [11.0792, 60.7901], [11.0794, 60.79], [11.0795, 60.79], [11.0798, 60.79], [11.0803, 60.79], [11.0805, 60.79], [11.081, 60.7899], [11.0812, 60.7899], [11.0813, 60.7898], [11.0815, 60.7898], [11.0818, 60.7898], [11.082, 60.7897], [11.0823, 60.7897], [11.0826, 60.7896], [11.0833, 60.7895], [11.0837, 60.7894], [11.0839, 60.7894], [11.084, 60.7894], [11.0842, 60.7893], [11.0846, 60.7892], [11.0847, 60.7892], [11.0848, 60.7891], [11.0852, 60.789], [11.0857, 60.7888], [11.086, 60.7887], [11.0862, 60.7886], [11.0856, 60.7881], [11.0856, 60.7881], [11.0856, 60.788], [11.0857, 60.788], [11.0873, 60.7874], [11.0874, 60.7873], [11.0879, 60.7872], [11.0884, 60.787], [11.0886, 60.787], [11.0908, 60.7871], [11.0908, 60.7871], [11.0909, 60.7871], [11.0921, 60.7876], [11.0921, 60.7877], [11.0922, 60.7878], [11.0924, 60.7878], [11.0925, 60.7878], [11.0926, 60.7879], [11.0928, 60.788], [11.0929, 60.788], [11.093, 60.788], [11.0931, 60.788], [11.0931, 60.788], [11.0933, 60.7878], [11.0935, 60.7878], [11.0935, 60.7878], [11.0937, 60.7877], [11.0938, 60.7877], [11.0938, 60.7877], [11.0939, 60.7877], [11.0939, 60.7877], [11.0937, 60.7879], [11.0934, 60.7881], [11.0931, 60.7883], [11.0928, 60.7885], [11.0921, 60.7888], [11.0919, 60.789], [11.0919, 60.789], [11.0919, 60.7891], [11.092, 60.7891], [11.0921, 60.7892], [11.0923, 60.7892], [11.0923, 60.7892], [11.0924, 60.7892], [11.0926, 60.7892], [11.0935, 60.7889], [11.0944, 60.7887], [11.0972, 60.7879], [11.0973, 60.7879], [11.0974, 60.788], [11.0974, 60.7881], [11.0974, 60.7881], [11.0975, 60.7881], [11.0974, 60.7882], [11.0974, 60.7882], [11.0966, 60.7884], [11.0966, 60.7884], [11.0968, 60.7886], [11.0969, 60.7887], [11.097, 60.7888], [11.0971, 60.7889], [11.0972, 60.789], [11.0974, 60.7892], [11.0976, 60.7894], [11.0976, 60.7894], [11.0976, 60.7894], [11.0975, 60.7895], [11.0974, 60.7896], [11.0975, 60.7897], [11.0975, 60.7897], [11.0976, 60.7897], [11.0976, 60.7898], [11.0978, 60.7898], [11.098, 60.7899], [11.098, 60.7899], [11.0981, 60.79], [11.0981, 60.79], [11.0981, 60.7902], [11.0982, 60.7903], [11.0984, 60.7904], [11.0986, 60.7904], [11.0989, 60.7906], [11.099, 60.7907], [11.0992, 60.7907], [11.0993, 60.7908], [11.0994, 60.7909], [11.0994, 60.791], [11.0995, 60.791], [11.0994, 60.7911], [11.0995, 60.7912], [11.0995, 60.7912], [11.0995, 60.7913], [11.0995, 60.7913], [11.0994, 60.7913], [11.0995, 60.7914], [11.0994, 60.7914], [11.0993, 60.7914], [11.0994, 60.7915], [11.0994, 60.7916], [11.0994, 60.7917], [11.0996, 60.7917], [11.0997, 60.7917], [11.0998, 60.7917], [11.0999, 60.7917], [11.1001, 60.7917], [11.1002, 60.7917], [11.1004, 60.7918], [11.1005, 60.7918], [11.1007, 60.7918], [11.1007, 60.7918], [11.1008, 60.7918], [11.1011, 60.7918], [11.1014, 60.7919], [11.1019, 60.7921], [11.1023, 60.7922], [11.1026, 60.7924], [11.1028, 60.7925], [11.103, 60.7927], [11.103, 60.7928], [11.103, 60.7929], [11.1031, 60.7929], [11.1032, 60.7931], [11.1032, 60.7932], [11.1032, 60.7933], [11.1032, 60.7933], [11.1033, 60.7934], [11.1033, 60.7935], [11.1032, 60.7936], [11.1031, 60.7938], [11.1031, 60.7939], [11.1029, 60.794], [11.1028, 60.7941], [11.1028, 60.7941], [11.1027, 60.7942], [11.1027, 60.7943], [11.1027, 60.7944], [11.1028, 60.7945], [11.1028, 60.7946], [11.1028, 60.7946], [11.1028, 60.7947], [11.1028, 60.7947], [11.1028, 60.7948], [11.1028, 60.7948], [11.1028, 60.7949], [11.1028, 60.795], [11.1029, 60.7951], [11.103, 60.7952], [11.1031, 60.7952], [11.1031, 60.7952], [11.1031, 60.7953], [11.1031, 60.7953], [11.1031, 60.7954], [11.1031, 60.7955], [11.1031, 60.7955], [11.1031, 60.7956], [11.1031, 60.7956], [11.1031, 60.7957], [11.1031, 60.7957], [11.1032, 60.7958], [11.1034, 60.7958], [11.1035, 60.7959], [11.1036, 60.7959], [11.1036, 60.7959], [11.1037, 60.796], [11.1037, 60.796], [11.1036, 60.796], [11.1036, 60.7961], [11.1035, 60.7961], [11.1035, 60.7961], [11.1034, 60.7962], [11.1034, 60.7962], [11.1033, 60.7963], [11.1033, 60.7964], [11.1032, 60.7965], [11.1033, 60.7966], [11.1035, 60.7967], [11.1036, 60.7967], [11.1036, 60.7968], [11.1035, 60.7968], [11.1034, 60.7968], [11.1033, 60.7968], [11.1032, 60.7969], [11.104, 60.7969], [11.1039, 60.7968], [11.104, 60.7968], [11.1041, 60.7968], [11.1045, 60.7967], [11.1046, 60.7967], [11.1048, 60.7966], [11.1053, 60.7967], [11.1055, 60.7967], [11.1056, 60.7967], [11.1061, 60.7968], [11.1066, 60.7968], [11.1067, 60.7968], [11.1068, 60.7968], [11.1071, 60.7967], [11.1073, 60.7966], [11.1077, 60.7965], [11.1078, 60.7964], [11.1079, 60.7964], [11.1079, 60.7964], [11.1078, 60.7964], [11.1079, 60.7964], [11.1081, 60.7963], [11.1084, 60.7962], [11.1087, 60.7962], [11.1088, 60.7962], [11.109, 60.7961], [11.1094, 60.796], [11.1097, 60.7959], [11.1101, 60.7958], [11.1102, 60.7958], [11.1102, 60.7958], [11.1103, 60.7959], [11.1103, 60.7959], [11.1103, 60.796], [11.1102, 60.796], [11.1103, 60.7961], [11.1103, 60.7961], [11.1103, 60.7962], [11.1104, 60.7963], [11.1104, 60.7964], [11.1104, 60.7964], [11.1104, 60.7881], [11.1102, 60.7881], [11.1101, 60.788], [11.11, 60.788], [11.1099, 60.7879], [11.1098, 60.7879], [11.1097, 60.7878], [11.1095, 60.7876], [11.1095, 60.7875], [11.1094, 60.7874], [11.1094, 60.7873], [11.1093, 60.7872], [11.1092, 60.787], [11.1092, 60.7869], [11.1092, 60.7868], [11.1093, 60.7867], [11.1093, 60.7866], [11.1094, 60.7865], [11.1095, 60.7864], [11.1095, 60.7863], [11.1095, 60.7862], [11.1096, 60.7862], [11.1095, 60.7861], [11.1095, 60.786], [11.1095, 60.786], [11.1095, 60.7858], [11.1094, 60.7857], [11.1094, 60.7856], [11.1094, 60.7856], [11.1094, 60.7854], [11.1094, 60.7853], [11.1093, 60.7851], [11.1093, 60.785], [11.1092, 60.7849], [11.1091, 60.7849], [11.109, 60.7849], [11.109, 60.7848], [11.1091, 60.7848], [11.1089, 60.7847], [11.1089, 60.7847], [11.1086, 60.7846], [11.1086, 60.7846], [11.1084, 60.7846], [11.1084, 60.7846], [11.1083, 60.7846], [11.1082, 60.7846], [11.1079, 60.7845], [11.1077, 60.7845], [11.1075, 60.7844], [11.1074, 60.7844], [11.1073, 60.7844], [11.1071, 60.7845], [11.1069, 60.7845], [11.1067, 60.7845], [11.1066, 60.7846], [11.1065, 60.7846], [11.1065, 60.7846], [11.1062, 60.7847], [11.106, 60.7848], [11.1058, 60.7849], [11.1054, 60.7853], [11.1051, 60.7856], [11.1048, 60.7858], [11.1048, 60.7859], [11.1047, 60.786], [11.1048, 60.7861], [11.1048, 60.7862], [11.1049, 60.7863], [11.1048, 60.7863], [11.1048, 60.7864], [11.1048, 60.7865], [11.1047, 60.7866], [11.1045, 60.7866], [11.1044, 60.7866], [11.1044, 60.7866], [11.1043, 60.7867], [11.1042, 60.7867], [11.1042, 60.7867], [11.1041, 60.7867], [11.1041, 60.7867], [11.1041, 60.7866], [11.1041, 60.7866], [11.1041, 60.7866], [11.1041, 60.7865], [11.1041, 60.7864], [11.104, 60.7864], [11.1038, 60.7864], [11.1024, 60.7868], [11.1007, 60.7872], [11.1004, 60.7873], [11.0999, 60.7874], [11.0992, 60.7877], [11.0989, 60.7877], [11.0988, 60.7877], [11.0987, 60.7877], [11.0986, 60.7877], [11.0985, 60.7876], [11.0985, 60.7876], [11.0986, 60.7875], [11.1002, 60.7871], [11.1017, 60.7867], [11.1032, 60.7862], [11.1037, 60.7861], [11.1039, 60.786], [11.104, 60.7859], [11.1042, 60.7858], [11.1043, 60.7857], [11.1046, 60.7855], [11.1052, 60.785], [11.1053, 60.7849], [11.1055, 60.7847], [11.1056, 60.7846], [11.1057, 60.7845], [11.1058, 60.7845], [11.1059, 60.7844], [11.1059, 60.7843], [11.1059, 60.7843], [11.1058, 60.7842], [11.1058, 60.7842], [11.1056, 60.7842], [11.1055, 60.7842], [11.1054, 60.7842], [11.1052, 60.7842], [11.1051, 60.7842], [11.105, 60.7842], [11.1049, 60.7842], [11.1048, 60.7842], [11.1047, 60.7842], [11.1046, 60.7842], [11.1045, 60.7842], [11.1044, 60.7842], [11.1043, 60.7842], [11.1043, 60.7842], [11.1042, 60.7842], [11.1042, 60.7842], [11.1041, 60.7842], [11.1041, 60.7841], [11.104, 60.7841], [11.1039, 60.7841], [11.1039, 60.7841], [11.1038, 60.7841], [11.1038, 60.784], [11.1038, 60.784], [11.1038, 60.784], [11.1038, 60.7839], [11.1038, 60.7839], [11.1038, 60.7838], [11.1038, 60.7838], [11.1038, 60.7838], [11.1037, 60.7838], [11.1037, 60.7837], [11.1038, 60.7837], [11.1037, 60.7837], [11.1037, 60.7837], [11.1036, 60.7837], [11.1036, 60.7836], [11.1036, 60.7836], [11.1035, 60.7836], [11.1035, 60.7835], [11.1034, 60.7835], [11.1034, 60.7834], [11.1033, 60.7834], [11.1033, 60.7834], [11.1032, 60.7833], [11.1032, 60.7832], [11.1033, 60.7832], [11.1033, 60.7831], [11.1034, 60.783], [11.1034, 60.783], [11.1034, 60.7829], [11.1035, 60.7829], [11.1035, 60.7828], [11.1035, 60.7828], [11.1034, 60.7827], [11.1033, 60.7827], [11.1032, 60.7826], [11.1031, 60.7825], [11.1029, 60.7824], [11.1028, 60.7823], [11.1027, 60.7823], [11.1026, 60.7822], [11.1025, 60.7822], [11.1024, 60.7822], [11.1024, 60.7821], [11.1024, 60.7821], [11.1023, 60.782], [11.1021, 60.782], [11.1021, 60.7821], [11.1021, 60.7821], [11.102, 60.7821], [11.102, 60.7822], [11.102, 60.7822], [11.1019, 60.7823], [11.1019, 60.7823], [11.1018, 60.7822], [11.1017, 60.7823], [11.1016, 60.7824], [11.1015, 60.7824], [11.1015, 60.7824], [11.1014, 60.7825], [11.1014, 60.7825], [11.1013, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1012, 60.7824], [11.1011, 60.7823], [11.101, 60.7824], [11.101, 60.7825], [11.1009, 60.7826], [11.1008, 60.7827], [11.1006, 60.7829], [11.1005, 60.783], [11.1003, 60.7832], [11.1, 60.7834], [11.0998, 60.7836], [11.0995, 60.7838], [11.0993, 60.784], [11.0992, 60.784], [11.0991, 60.7841], [11.0988, 60.7843], [11.0985, 60.7845], [11.0982, 60.7847], [11.0979, 60.785], [11.0976, 60.7852], [11.0973, 60.7854], [11.097, 60.7856], [11.0969, 60.7856], [11.0967, 60.7858], [11.0957, 60.7865], [11.0953, 60.7868], [11.0948, 60.7871], [11.0948, 60.7872], [11.0947, 60.7872], [11.0947, 60.7872], [11.0945, 60.7873], [11.0945, 60.7873], [11.0943, 60.7873], [11.0943, 60.7873], [11.0945, 60.7871], [11.095, 60.7868], [11.0956, 60.7863], [11.096, 60.786], [11.0964, 60.7858], [11.0969, 60.7854], [11.0971, 60.7853], [11.0974, 60.785], [11.0978, 60.7847], [11.0982, 60.7844], [11.0984, 60.7843], [11.0987, 60.7841], [11.0989, 60.784], [11.0992, 60.7838], [11.0993, 60.7837], [11.0995, 60.7835], [11.0997, 60.7834], [11.0999, 60.7833], [11.1, 60.7831], [11.1002, 60.783], [11.1003, 60.7829], [11.1004, 60.7827], [11.1005, 60.7825], [11.1005, 60.7824], [11.1005, 60.7823], [11.1004, 60.7823], [11.1003, 60.7822], [11.1002, 60.7822], [11.1001, 60.7822], [11.1, 60.7822], [11.0999, 60.7821], [11.0998, 60.7821], [11.0997, 60.782], [11.0997, 60.782], [11.0996, 60.782], [11.0996, 60.782], [11.0995, 60.782], [11.0996, 60.782], [11.0996, 60.7819], [11.0996, 60.7818], [11.0995, 60.7818], [11.0995, 60.7817], [11.0994, 60.7816], [11.0994, 60.7816], [11.0993, 60.7816], [11.0993, 60.7815], [11.0992, 60.7815], [11.0992, 60.7815], [11.0991, 60.7815], [11.099, 60.7815], [11.0989, 60.7815], [11.0988, 60.7815], [11.0988, 60.7815], [11.0988, 60.7815], [11.0987, 60.7815], [11.0986, 60.7815], [11.0985, 60.7815], [11.0985, 60.7815], [11.0984, 60.7815], [11.0983, 60.7814], [11.0983, 60.7814], [11.0983, 60.7814], [11.0982, 60.7814], [11.0981, 60.7814], [11.098, 60.7814], [11.0979, 60.7813], [11.0978, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7813], [11.0977, 60.7812], [11.0975, 60.7812], [11.0975, 60.7812], [11.0975, 60.7811], [11.0976, 60.7811], [11.0976, 60.7811], [11.0976, 60.781], [11.0976, 60.7809], [11.0975, 60.7809], [11.0975, 60.7809], [11.0975, 60.7809], [11.0975, 60.7807], [11.0975, 60.7807], [11.0975, 60.7807], [11.0975, 60.7806], [11.0975, 60.7805], [11.0975, 60.7805], [11.0975, 60.7805], [11.0975, 60.7804], [11.0975, 60.7804], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7803], [11.0975, 60.7802], [11.0974, 60.7802], [11.0974, 60.7801], [11.0974, 60.7801], [11.0974, 60.78], [11.0974, 60.78], [11.0973, 60.7799], [11.0973, 60.7799], [11.0972, 60.7798], [11.0972, 60.7798], [11.0971, 60.7797], [11.0971, 60.7797], [11.097, 60.7796], [11.0969, 60.7795], [11.0968, 60.7795], [11.0967, 60.7794], [11.0966, 60.7793], [11.0963, 60.7792], [11.0962, 60.7792], [11.0961, 60.7791], [11.0961, 60.7791], [11.096, 60.7791], [11.096, 60.7791], [11.0959, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0956, 60.7791], [11.0955, 60.7791], [11.0954, 60.7791], [11.0953, 60.7791], [11.0953, 60.7791], [11.0952, 60.7791], [11.0951, 60.7791], [11.095, 60.7791], [11.0948, 60.7792], [11.0946, 60.7792], [11.0945, 60.7792], [11.0945, 60.7793], [11.094, 60.7792], [11.0936, 60.7793], [11.093, 60.7793], [11.0927, 60.7792], [11.0926, 60.7792], [11.0925, 60.7792], [11.0922, 60.7792], [11.0921, 60.7792], [11.0921, 60.7792], [11.092, 60.7791], [11.0918, 60.779], [11.0918, 60.779], [11.0918, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7789], [11.0917, 60.7788], [11.0916, 60.7788], [11.0915, 60.7788], [11.0915, 60.7787], [11.0915, 60.7787], [11.0915, 60.7786], [11.0914, 60.7786], [11.0914, 60.7786], [11.0914, 60.7785], [11.0914, 60.7785], [11.0915, 60.7785], [11.0914, 60.7784], [11.0914, 60.7784], [11.0914, 60.7784], [11.0913, 60.7784], [11.0913, 60.7783], [11.0911, 60.7782], [11.091, 60.7782], [11.091, 60.7782], [11.0911, 60.7782], [11.0911, 60.7782], [11.0911, 60.778], [11.091, 60.7779], [11.091, 60.7779], [11.0908, 60.7778], [11.0908, 60.7777], [11.0908, 60.7776], [11.0908, 60.7774], [11.0907, 60.7774], [11.0908, 60.7774], [11.0907, 60.7773], [11.0906, 60.7774], [11.0906, 60.7773], [11.0906, 60.7773], [11.0906, 60.7773], [11.0905, 60.7773], [11.0905, 60.7773], [11.0904, 60.7773], [11.0904, 60.7772], [11.0904, 60.7772], [11.0903, 60.7772], [11.0903, 60.7772], [11.0902, 60.7773], [11.0902, 60.7773], [11.0901, 60.7773], [11.0901, 60.7773], [11.09, 60.7773], [11.09, 60.7772], [11.0901, 60.7771], [11.0901, 60.7771], [11.09, 60.7771], [11.0899, 60.7771], [11.0898, 60.7771], [11.0897, 60.7772], [11.0896, 60.7772], [11.0895, 60.7773], [11.0894, 60.7772], [11.0894, 60.7772], [11.0894, 60.7772], [11.0895, 60.7771], [11.0896, 60.777], [11.0895, 60.777], [11.0893, 60.777], [11.0893, 60.777], [11.0892, 60.777], [11.0889, 60.777], [11.0889, 60.7771], [11.0886, 60.7771], [11.0886, 60.7772], [11.0885, 60.7772], [11.0884, 60.7772], [11.0885, 60.7773], [11.0884, 60.7773], [11.0884, 60.7772], [11.0884, 60.7772], [11.0882, 60.7772], [11.0882, 60.7772], [11.0881, 60.7772], [11.088, 60.7773], [11.0879, 60.7772], [11.0877, 60.7772], [11.0876, 60.7772], [11.0874, 60.7771], [11.0873, 60.7771], [11.0871, 60.777], [11.0869, 60.777], [11.0868, 60.7769], [11.0704, 60.7769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "120", "sub_div_center": [60.788307, 11.070419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0705, 60.7926], [11.0705, 60.7926], [11.0709, 60.7925], [11.0712, 60.7923], [11.0715, 60.7921], [11.0718, 60.7919], [11.072, 60.7918], [11.0722, 60.7917], [11.0723, 60.7916], [11.0724, 60.7915], [11.0726, 60.7915], [11.0731, 60.7915], [11.0731, 60.7915], [11.0733, 60.7914], [11.0728, 60.7912], [11.073, 60.7911], [11.0731, 60.7911], [11.0732, 60.791], [11.0732, 60.791], [11.0739, 60.7913], [11.074, 60.7912], [11.074, 60.7912], [11.0741, 60.7911], [11.0743, 60.791], [11.0744, 60.791], [11.0746, 60.791], [11.0747, 60.791], [11.0748, 60.791], [11.0748, 60.7909], [11.0749, 60.7908], [11.075, 60.7908], [11.0751, 60.7908], [11.0751, 60.7908], [11.0752, 60.7907], [11.0752, 60.7907], [11.0753, 60.7907], [11.0754, 60.7908], [11.0755, 60.7908], [11.0756, 60.7909], [11.0757, 60.7909], [11.0758, 60.7909], [11.0758, 60.7909], [11.076, 60.7909], [11.0761, 60.7909], [11.0761, 60.7908], [11.0761, 60.7908], [11.0761, 60.7908], [11.0761, 60.7907], [11.0761, 60.7907], [11.076, 60.7907], [11.076, 60.7906], [11.0757, 60.7904], [11.0756, 60.7904], [11.0755, 60.7903], [11.0751, 60.7902], [11.0748, 60.7901], [11.0747, 60.79], [11.0746, 60.79], [11.0746, 60.7901], [11.0745, 60.7901], [11.0745, 60.7901], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7902], [11.0745, 60.7903], [11.0745, 60.7903], [11.0744, 60.7903], [11.0744, 60.7902], [11.0743, 60.7902], [11.0743, 60.7902], [11.0743, 60.7902], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.7901], [11.0743, 60.79], [11.0742, 60.79], [11.0742, 60.79], [11.0741, 60.7899], [11.0741, 60.7899], [11.0739, 60.7898], [11.0737, 60.7898], [11.0736, 60.7897], [11.0736, 60.7897], [11.0734, 60.7897], [11.0732, 60.7897], [11.0732, 60.7897], [11.0732, 60.7896], [11.0729, 60.7897], [11.0729, 60.7896], [11.0729, 60.7896], [11.0727, 60.7895], [11.0723, 60.7893], [11.0724, 60.7893], [11.0719, 60.7892], [11.0719, 60.7892], [11.0713, 60.7892], [11.0709, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0707, 60.7892], [11.0706, 60.7892], [11.0706, 60.7891], [11.0708, 60.789], [11.0709, 60.7888], [11.0712, 60.7886], [11.0712, 60.7885], [11.0712, 60.7885], [11.0711, 60.7885], [11.0711, 60.7885], [11.071, 60.7884], [11.071, 60.7884], [11.0709, 60.7884], [11.0707, 60.7884], [11.0707, 60.7884], [11.0706, 60.7884], [11.0707, 60.7884], [11.0704, 60.7883], [11.0704, 60.7883], [11.0704, 60.7883], [11.0704, 60.7897], [11.0705, 60.7897], [11.0705, 60.7898], [11.0705, 60.7898], [11.0705, 60.7899], [11.0704, 60.7899], [11.0704, 60.7926], [11.0705, 60.7926]]]}}, {"type": "Feature", "properties": {"sub_div_id": "121", "sub_div_center": [60.78801, 11.068093]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0704, 60.7883], [11.0704, 60.7883], [11.0703, 60.7883], [11.0702, 60.7883], [11.0701, 60.7882], [11.0701, 60.7882], [11.0699, 60.7882], [11.0699, 60.7882], [11.0699, 60.7882], [11.0697, 60.7881], [11.0695, 60.7881], [11.0695, 60.7881], [11.0695, 60.7881], [11.0693, 60.788], [11.0692, 60.788], [11.0691, 60.788], [11.069, 60.7882], [11.0682, 60.7888], [11.0681, 60.7889], [11.0681, 60.7889], [11.0681, 60.7889], [11.0682, 60.789], [11.0683, 60.789], [11.0684, 60.7891], [11.0687, 60.7892], [11.0689, 60.7892], [11.0692, 60.7893], [11.0698, 60.7895], [11.07, 60.7895], [11.0702, 60.7896], [11.0704, 60.7897], [11.0704, 60.7883]]]}}, {"type": "Feature", "properties": {"sub_div_id": "122", "sub_div_center": [60.622662, 11.076313]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1104, 60.6227], [11.1104, 60.6227], [11.1102, 60.6228], [11.1095, 60.6231], [11.1094, 60.6231], [11.1079, 60.6235], [11.1071, 60.6237], [11.1064, 60.624], [11.1052, 60.6247], [11.1046, 60.6249], [11.1044, 60.625], [11.1036, 60.6252], [11.1026, 60.6258], [11.1012, 60.6264], [11.1001, 60.6268], [11.1, 60.6269], [11.0998, 60.627], [11.0993, 60.6274], [11.0984, 60.6279], [11.096, 60.6289], [11.095, 60.6293], [11.0945, 60.6295], [11.0939, 60.63], [11.0936, 60.6301], [11.0936, 60.6302], [11.0935, 60.6304], [11.0934, 60.6305], [11.0933, 60.6307], [11.0931, 60.6308], [11.0931, 60.6308], [11.0929, 60.6309], [11.0927, 60.631], [11.0926, 60.6311], [11.0925, 60.6311], [11.0925, 60.6312], [11.0926, 60.6313], [11.0926, 60.6314], [11.0926, 60.6314], [11.0926, 60.6315], [11.0922, 60.6316], [11.0916, 60.6317], [11.0914, 60.6318], [11.0908, 60.6319], [11.0901, 60.632], [11.0898, 60.632], [11.0891, 60.6321], [11.0889, 60.6321], [11.0884, 60.6322], [11.0883, 60.6323], [11.0881, 60.6323], [11.088, 60.6323], [11.0874, 60.6322], [11.0871, 60.6322], [11.0869, 60.6322], [11.0862, 60.6322], [11.0855, 60.6322], [11.0854, 60.6322], [11.0852, 60.6323], [11.0847, 60.6325], [11.0846, 60.6325], [11.0843, 60.6327], [11.084, 60.6328], [11.0835, 60.633], [11.0831, 60.6333], [11.083, 60.6333], [11.0826, 60.6335], [11.0822, 60.6337], [11.082, 60.6338], [11.082, 60.6338], [11.0819, 60.6339], [11.0818, 60.6339], [11.0817, 60.634], [11.0814, 60.6341], [11.0809, 60.6343], [11.0805, 60.6345], [11.0805, 60.6345], [11.0805, 60.6346], [11.0806, 60.6347], [11.0806, 60.6347], [11.0805, 60.6347], [11.0804, 60.6347], [11.0803, 60.6347], [11.0802, 60.6347], [11.0796, 60.6349], [11.0795, 60.6349], [11.0794, 60.635], [11.0792, 60.6351], [11.0784, 60.6355], [11.0781, 60.6357], [11.078, 60.6358], [11.0777, 60.6359], [11.0775, 60.6361], [11.0772, 60.6362], [11.0771, 60.6363], [11.0769, 60.6365], [11.0769, 60.6366], [11.0768, 60.6366], [11.0768, 60.6366], [11.0766, 60.6367], [11.0763, 60.6369], [11.0763, 60.6369], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "123", "sub_div_center": [60.736856, 11.087859]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0879, 60.7369], [11.0879, 60.7369], [11.088, 60.7369], [11.0881, 60.7369], [11.0881, 60.7369], [11.0881, 60.7369], [11.0882, 60.7369], [11.0882, 60.7369], [11.0883, 60.7369], [11.0884, 60.7369], [11.0879, 60.7369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "124", "sub_div_center": [60.796856, 11.102987]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1032, 60.7969], [11.1032, 60.7969], [11.1032, 60.7969], [11.1032, 60.797], [11.1032, 60.7971], [11.1032, 60.7973], [11.1033, 60.7974], [11.1033, 60.7975], [11.1032, 60.7976], [11.1033, 60.7976], [11.1033, 60.7976], [11.1034, 60.7977], [11.1035, 60.7977], [11.1034, 60.7978], [11.1035, 60.7978], [11.1035, 60.798], [11.1034, 60.798], [11.1033, 60.7981], [11.1031, 60.7981], [11.103, 60.7982], [11.103, 60.799], [11.103, 60.7992], [11.1031, 60.7993], [11.103, 60.7993], [11.1031, 60.7994], [11.1031, 60.7994], [11.1032, 60.7993], [11.1032, 60.7994], [11.1032, 60.7994], [11.1031, 60.7994], [11.1032, 60.7995], [11.1032, 60.7996], [11.1032, 60.7997], [11.1034, 60.7998], [11.1035, 60.7999], [11.1036, 60.7999], [11.1035, 60.8], [11.1036, 60.8], [11.1036, 60.8001], [11.1037, 60.8001], [11.104, 60.8002], [11.1041, 60.8002], [11.1041, 60.8002], [11.1042, 60.8002], [11.1043, 60.8003], [11.1043, 60.8003], [11.1043, 60.8003], [11.1047, 60.8005], [11.105, 60.8006], [11.1052, 60.8006], [11.1053, 60.8007], [11.1055, 60.8007], [11.1056, 60.8008], [11.1057, 60.8008], [11.1057, 60.8009], [11.1057, 60.801], [11.1058, 60.8011], [11.1058, 60.8012], [11.1057, 60.8012], [11.1057, 60.8013], [11.1055, 60.8014], [11.1053, 60.8016], [11.1052, 60.8017], [11.1052, 60.8017], [11.1051, 60.8017], [11.1051, 60.8018], [11.1051, 60.8018], [11.1052, 60.8019], [11.1053, 60.8018], [11.1053, 60.8018], [11.1054, 60.8018], [11.1054, 60.8018], [11.1056, 60.8017], [11.1057, 60.8017], [11.1058, 60.8018], [11.1058, 60.8018], [11.106, 60.8018], [11.106, 60.8018], [11.1061, 60.8018], [11.1062, 60.8018], [11.1064, 60.8017], [11.1065, 60.8017], [11.1065, 60.8016], [11.1065, 60.8015], [11.1065, 60.8014], [11.1067, 60.8014], [11.1069, 60.8014], [11.107, 60.8014], [11.1072, 60.8014], [11.1074, 60.8012], [11.1075, 60.8011], [11.1076, 60.801], [11.1075, 60.801], [11.1074, 60.8009], [11.1073, 60.8009], [11.1072, 60.8009], [11.107, 60.8008], [11.1071, 60.8007], [11.1072, 60.8006], [11.1072, 60.8006], [11.1073, 60.8007], [11.1074, 60.8007], [11.1074, 60.8007], [11.1075, 60.8008], [11.1079, 60.8006], [11.108, 60.8007], [11.1081, 60.8007], [11.108, 60.8008], [11.108, 60.8008], [11.108, 60.8008], [11.1085, 60.8009], [11.1086, 60.8009], [11.1087, 60.801], [11.1088, 60.801], [11.109, 60.8011], [11.1094, 60.801], [11.1096, 60.8011], [11.1098, 60.8012], [11.11, 60.8012], [11.11, 60.8013], [11.11, 60.8013], [11.11, 60.8014], [11.1099, 60.8015], [11.1099, 60.8015], [11.1098, 60.8014], [11.1097, 60.8013], [11.1095, 60.8012], [11.1094, 60.8013], [11.1093, 60.8013], [11.1093, 60.8014], [11.1092, 60.8014], [11.109, 60.8014], [11.1088, 60.8014], [11.1086, 60.8015], [11.1084, 60.8016], [11.1082, 60.8016], [11.1078, 60.8017], [11.1077, 60.8017], [11.1076, 60.8018], [11.1075, 60.8019], [11.1074, 60.802], [11.1073, 60.8021], [11.1071, 60.8022], [11.107, 60.8023], [11.1069, 60.8023], [11.1069, 60.8023], [11.1067, 60.8024], [11.1066, 60.8024], [11.1067, 60.8024], [11.1076, 60.8026], [11.1081, 60.8026], [11.1083, 60.8025], [11.1085, 60.8024], [11.1085, 60.8024], [11.1086, 60.8024], [11.1087, 60.8023], [11.1088, 60.8023], [11.1089, 60.8023], [11.1091, 60.8022], [11.1093, 60.8021], [11.1094, 60.8021], [11.1096, 60.8021], [11.1098, 60.8021], [11.1098, 60.8022], [11.1098, 60.8022], [11.1097, 60.8022], [11.1096, 60.8023], [11.1095, 60.8023], [11.1095, 60.8024], [11.1097, 60.8024], [11.1098, 60.8024], [11.1098, 60.8025], [11.1097, 60.8025], [11.1097, 60.8025], [11.1096, 60.8026], [11.1096, 60.8026], [11.1095, 60.8026], [11.1095, 60.8027], [11.1097, 60.8026], [11.1098, 60.8026], [11.1099, 60.8026], [11.11, 60.8026], [11.1099, 60.8027], [11.1098, 60.8027], [11.1098, 60.8028], [11.1096, 60.8028], [11.1095, 60.8028], [11.1095, 60.8028], [11.1094, 60.8028], [11.1095, 60.8028], [11.1096, 60.8028], [11.1098, 60.8028], [11.11, 60.8028], [11.1101, 60.8027], [11.1102, 60.8027], [11.1104, 60.8027], [11.1104, 60.7988], [11.1101, 60.7987], [11.1096, 60.7987], [11.1095, 60.7986], [11.1093, 60.7986], [11.1092, 60.7986], [11.1091, 60.7986], [11.1089, 60.7987], [11.1087, 60.7987], [11.1086, 60.7987], [11.1085, 60.7987], [11.1081, 60.7989], [11.1079, 60.799], [11.1078, 60.799], [11.1077, 60.799], [11.1077, 60.799], [11.1075, 60.799], [11.1073, 60.799], [11.1072, 60.799], [11.1071, 60.7991], [11.1067, 60.7992], [11.1064, 60.7992], [11.1061, 60.7993], [11.1058, 60.7993], [11.1056, 60.7993], [11.1052, 60.7993], [11.1052, 60.7992], [11.105, 60.7992], [11.105, 60.7991], [11.1049, 60.7991], [11.1048, 60.799], [11.1047, 60.7989], [11.1047, 60.7987], [11.1046, 60.7987], [11.1045, 60.7986], [11.1044, 60.7984], [11.1043, 60.7983], [11.1043, 60.7983], [11.1043, 60.7982], [11.1043, 60.7982], [11.1041, 60.7982], [11.104, 60.7981], [11.104, 60.7979], [11.1041, 60.7978], [11.1042, 60.7977], [11.1045, 60.7978], [11.1047, 60.7978], [11.1049, 60.7978], [11.1049, 60.7978], [11.1049, 60.7977], [11.1049, 60.7976], [11.1048, 60.7976], [11.1046, 60.7973], [11.1043, 60.7971], [11.1044, 60.797], [11.1044, 60.797], [11.1043, 60.7969], [11.1042, 60.7969], [11.104, 60.7969], [11.104, 60.7969], [11.104, 60.7969], [11.1032, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "125", "sub_div_center": [60.796601, 11.110273]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.7969], [11.1104, 60.7966], [11.1104, 60.7967], [11.1103, 60.7969], [11.1104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "126", "sub_div_center": [60.796856, 11.110235]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1103, 60.7969], [11.1103, 60.7969], [11.1102, 60.797], [11.1104, 60.797], [11.1104, 60.7969], [11.1103, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "127", "sub_div_center": [60.616856, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1504, 60.6369], [11.1504, 60.6169], [11.1162, 60.6169], [11.1161, 60.617], [11.1159, 60.6173], [11.1158, 60.6176], [11.1152, 60.6182], [11.1152, 60.6184], [11.1154, 60.6186], [11.1152, 60.6189], [11.1153, 60.6191], [11.1157, 60.6193], [11.1155, 60.6196], [11.115, 60.6201], [11.1147, 60.6202], [11.1144, 60.6207], [11.1136, 60.621], [11.1127, 60.6218], [11.1121, 60.6221], [11.1113, 60.6224], [11.1104, 60.6227], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "128", "sub_div_center": [60.636856, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6369], [11.1104, 60.6569], [11.1466, 60.6569], [11.1467, 60.6568], [11.1467, 60.6567], [11.1467, 60.6567], [11.1469, 60.6565], [11.147, 60.6564], [11.1471, 60.6562], [11.1471, 60.6561], [11.1471, 60.6561], [11.1471, 60.6561], [11.1472, 60.656], [11.1473, 60.6559], [11.1474, 60.6558], [11.1474, 60.6556], [11.1474, 60.6555], [11.1475, 60.6554], [11.1474, 60.6553], [11.1475, 60.6552], [11.1475, 60.655], [11.1476, 60.655], [11.1476, 60.6549], [11.1478, 60.6548], [11.1479, 60.6545], [11.148, 60.6544], [11.148, 60.6542], [11.1481, 60.6541], [11.1481, 60.6539], [11.1483, 60.6538], [11.1484, 60.6535], [11.1485, 60.6533], [11.1486, 60.6529], [11.1487, 60.6526], [11.1488, 60.6525], [11.1489, 60.6524], [11.1489, 60.6522], [11.1489, 60.6521], [11.149, 60.652], [11.1492, 60.6518], [11.1493, 60.6516], [11.1495, 60.6511], [11.1496, 60.6508], [11.1497, 60.6506], [11.1499, 60.6504], [11.1499, 60.6504], [11.15, 60.6503], [11.15, 60.6502], [11.15, 60.6501], [11.1501, 60.65], [11.1503, 60.6498], [11.1504, 60.6495], [11.1504, 60.6494], [11.1504, 60.6369], [11.1104, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "129", "sub_div_center": [60.656856, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6569], [11.1104, 60.6769], [11.1162, 60.6769], [11.1162, 60.6767], [11.1164, 60.6766], [11.1166, 60.6764], [11.1168, 60.6763], [11.1169, 60.6762], [11.117, 60.6761], [11.1172, 60.6757], [11.1174, 60.6755], [11.1174, 60.6754], [11.1175, 60.6753], [11.1175, 60.6752], [11.1174, 60.6751], [11.1174, 60.6749], [11.1173, 60.6747], [11.1172, 60.6745], [11.1173, 60.6744], [11.1172, 60.6743], [11.1169, 60.674], [11.1165, 60.6738], [11.1165, 60.6736], [11.1165, 60.6735], [11.1166, 60.6734], [11.1166, 60.6733], [11.1166, 60.6732], [11.1166, 60.6731], [11.1166, 60.673], [11.1166, 60.6728], [11.1165, 60.6727], [11.1166, 60.6726], [11.1166, 60.6725], [11.1167, 60.6724], [11.1167, 60.6724], [11.1167, 60.6724], [11.1168, 60.6723], [11.1168, 60.6723], [11.1169, 60.6722], [11.117, 60.6721], [11.1171, 60.672], [11.1172, 60.672], [11.1172, 60.672], [11.1173, 60.672], [11.1173, 60.672], [11.1172, 60.672], [11.1173, 60.6719], [11.1174, 60.672], [11.1175, 60.6719], [11.1177, 60.6718], [11.1178, 60.6717], [11.1181, 60.6716], [11.1182, 60.6714], [11.1183, 60.6714], [11.1185, 60.6712], [11.1187, 60.6712], [11.1189, 60.6711], [11.1191, 60.6709], [11.1192, 60.6708], [11.1195, 60.6707], [11.1198, 60.6704], [11.1201, 60.6703], [11.1202, 60.6701], [11.1204, 60.6699], [11.1204, 60.6698], [11.1205, 60.6698], [11.1207, 60.6696], [11.1208, 60.6695], [11.1209, 60.6694], [11.1211, 60.6694], [11.1212, 60.6693], [11.1215, 60.6692], [11.1221, 60.6691], [11.1222, 60.669], [11.1224, 60.669], [11.1226, 60.6689], [11.1226, 60.6689], [11.1226, 60.6688], [11.1228, 60.6688], [11.1229, 60.6688], [11.1231, 60.6688], [11.1233, 60.6689], [11.1236, 60.669], [11.1239, 60.669], [11.1239, 60.669], [11.1242, 60.669], [11.1246, 60.669], [11.1248, 60.669], [11.125, 60.669], [11.1253, 60.669], [11.1255, 60.669], [11.1255, 60.6689], [11.1257, 60.6689], [11.1258, 60.6688], [11.1259, 60.6688], [11.1259, 60.6689], [11.126, 60.6689], [11.126, 60.6688], [11.1261, 60.6688], [11.1263, 60.6688], [11.1265, 60.6688], [11.1266, 60.6689], [11.1267, 60.6691], [11.1266, 60.6694], [11.1266, 60.6695], [11.1266, 60.6696], [11.1267, 60.6697], [11.1268, 60.6698], [11.127, 60.6699], [11.1271, 60.6699], [11.1272, 60.6699], [11.1273, 60.6699], [11.1273, 60.6698], [11.1273, 60.6698], [11.1274, 60.6699], [11.1274, 60.6699], [11.1275, 60.6698], [11.1275, 60.6698], [11.1276, 60.6698], [11.1276, 60.6698], [11.1276, 60.6697], [11.1277, 60.6697], [11.1277, 60.6697], [11.1278, 60.6697], [11.1279, 60.6696], [11.1279, 60.6696], [11.1279, 60.6696], [11.1279, 60.6695], [11.1279, 60.6695], [11.128, 60.6695], [11.128, 60.6695], [11.1281, 60.6694], [11.1281, 60.6694], [11.1281, 60.6693], [11.128, 60.6693], [11.128, 60.6693], [11.1281, 60.6693], [11.1281, 60.6693], [11.1281, 60.6692], [11.1281, 60.6691], [11.1282, 60.6691], [11.1283, 60.669], [11.1283, 60.6689], [11.1283, 60.6689], [11.1283, 60.6688], [11.1284, 60.6688], [11.1284, 60.6689], [11.1283, 60.6689], [11.1283, 60.6689], [11.1284, 60.6689], [11.1284, 60.6689], [11.1285, 60.6689], [11.1285, 60.6689], [11.1285, 60.6688], [11.1284, 60.6688], [11.1284, 60.6688], [11.1283, 60.6688], [11.1283, 60.6688], [11.1284, 60.6688], [11.1285, 60.6688], [11.1286, 60.6688], [11.1286, 60.6688], [11.1287, 60.6688], [11.1287, 60.6687], [11.1287, 60.6687], [11.1288, 60.6688], [11.1289, 60.6687], [11.1289, 60.6686], [11.1289, 60.6686], [11.1289, 60.6686], [11.129, 60.6685], [11.1291, 60.6685], [11.1291, 60.6685], [11.1293, 60.6684], [11.1294, 60.6684], [11.1295, 60.6683], [11.1296, 60.6683], [11.1295, 60.6682], [11.1295, 60.6682], [11.1295, 60.6682], [11.1298, 60.6682], [11.1298, 60.6682], [11.13, 60.6681], [11.13, 60.6681], [11.1299, 60.668], [11.1295, 60.6681], [11.1295, 60.6681], [11.1295, 60.6681], [11.1296, 60.6681], [11.1299, 60.668], [11.13, 60.668], [11.13, 60.668], [11.1301, 60.6681], [11.1302, 60.668], [11.1302, 60.668], [11.1303, 60.668], [11.1304, 60.668], [11.1305, 60.6679], [11.1305, 60.6679], [11.1306, 60.6679], [11.1306, 60.6678], [11.1307, 60.6678], [11.1307, 60.6677], [11.1305, 60.6677], [11.1304, 60.6677], [11.1303, 60.6677], [11.1303, 60.6677], [11.1302, 60.6678], [11.1301, 60.6678], [11.1302, 60.6677], [11.1302, 60.6677], [11.1304, 60.6677], [11.1305, 60.6676], [11.1307, 60.6676], [11.1307, 60.6676], [11.1308, 60.6676], [11.1309, 60.6675], [11.131, 60.6675], [11.1309, 60.6675], [11.1309, 60.6675], [11.131, 60.6674], [11.131, 60.6674], [11.1311, 60.6674], [11.1311, 60.6674], [11.1312, 60.6674], [11.1312, 60.6673], [11.1313, 60.6673], [11.1312, 60.6673], [11.1311, 60.6673], [11.131, 60.6674], [11.1309, 60.6674], [11.1309, 60.6674], [11.1309, 60.6673], [11.1309, 60.6673], [11.1311, 60.6673], [11.1312, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1313, 60.6672], [11.1314, 60.6672], [11.1314, 60.6672], [11.1315, 60.6672], [11.1316, 60.6672], [11.1316, 60.6673], [11.1317, 60.6672], [11.1317, 60.6672], [11.1318, 60.6672], [11.1315, 60.6671], [11.1315, 60.667], [11.1314, 60.6671], [11.1313, 60.6671], [11.1313, 60.6671], [11.1314, 60.667], [11.1315, 60.667], [11.1315, 60.667], [11.1316, 60.667], [11.1317, 60.6671], [11.1319, 60.6671], [11.1319, 60.6671], [11.132, 60.6671], [11.132, 60.667], [11.132, 60.667], [11.132, 60.6669], [11.132, 60.6669], [11.132, 60.6668], [11.1321, 60.6668], [11.1322, 60.6667], [11.1324, 60.6666], [11.1325, 60.6665], [11.1326, 60.6665], [11.1326, 60.6664], [11.1327, 60.6663], [11.1327, 60.6662], [11.1328, 60.6661], [11.1329, 60.666], [11.133, 60.6659], [11.1331, 60.6659], [11.1332, 60.6659], [11.1333, 60.6659], [11.1335, 60.666], [11.1337, 60.666], [11.134, 60.6659], [11.1341, 60.6659], [11.1342, 60.666], [11.1344, 60.666], [11.1345, 60.666], [11.1345, 60.6661], [11.1346, 60.6661], [11.1347, 60.666], [11.1349, 60.666], [11.1349, 60.6661], [11.1348, 60.6662], [11.1348, 60.6664], [11.1347, 60.6665], [11.1348, 60.6666], [11.1348, 60.6666], [11.1349, 60.6667], [11.135, 60.6667], [11.1351, 60.6667], [11.1353, 60.6667], [11.1354, 60.6667], [11.1355, 60.6666], [11.1356, 60.6666], [11.1357, 60.6665], [11.1358, 60.6665], [11.1358, 60.6664], [11.1358, 60.6663], [11.1358, 60.6663], [11.1358, 60.6662], [11.1358, 60.6661], [11.1359, 60.666], [11.1359, 60.666], [11.136, 60.6659], [11.136, 60.6658], [11.1362, 60.6658], [11.1363, 60.6657], [11.1364, 60.6656], [11.1365, 60.6656], [11.1366, 60.6656], [11.1369, 60.6656], [11.1371, 60.6656], [11.1373, 60.6656], [11.1376, 60.6656], [11.1377, 60.6656], [11.1378, 60.6656], [11.138, 60.6655], [11.1382, 60.6655], [11.1383, 60.6655], [11.1384, 60.6654], [11.1384, 60.6653], [11.1383, 60.6652], [11.1384, 60.6652], [11.1384, 60.6653], [11.1384, 60.6653], [11.1385, 60.6653], [11.1386, 60.6653], [11.1386, 60.6654], [11.1386, 60.6654], [11.1385, 60.6654], [11.1386, 60.6655], [11.1388, 60.6656], [11.1389, 60.6657], [11.139, 60.6657], [11.1391, 60.6658], [11.1393, 60.6658], [11.1394, 60.6659], [11.1394, 60.666], [11.1394, 60.6661], [11.1395, 60.6663], [11.1395, 60.6664], [11.1394, 60.6665], [11.1394, 60.6666], [11.1394, 60.6668], [11.1392, 60.667], [11.1392, 60.667], [11.1394, 60.667], [11.1396, 60.667], [11.1397, 60.667], [11.1399, 60.6668], [11.1401, 60.6667], [11.1401, 60.6666], [11.1402, 60.6665], [11.1402, 60.6665], [11.1402, 60.6664], [11.1403, 60.6663], [11.1402, 60.6662], [11.1403, 60.6662], [11.1403, 60.6661], [11.1404, 60.6661], [11.1405, 60.6661], [11.1405, 60.6661], [11.1405, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1406, 60.6661], [11.1403, 60.666], [11.1402, 60.666], [11.1401, 60.6659], [11.14, 60.6659], [11.14, 60.6659], [11.14, 60.6659], [11.14, 60.6658], [11.14, 60.6658], [11.1401, 60.6658], [11.1401, 60.6658], [11.1402, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6657], [11.1403, 60.6656], [11.1403, 60.6656], [11.1403, 60.6655], [11.1402, 60.6654], [11.1402, 60.6653], [11.1402, 60.6652], [11.1402, 60.6652], [11.1402, 60.6651], [11.1402, 60.665], [11.1402, 60.665], [11.1401, 60.665], [11.1402, 60.6649], [11.1402, 60.6649], [11.1402, 60.6648], [11.1401, 60.6648], [11.1401, 60.6647], [11.1402, 60.6647], [11.1401, 60.6646], [11.1401, 60.6646], [11.14, 60.6646], [11.1402, 60.6645], [11.1402, 60.6645], [11.1402, 60.6644], [11.1401, 60.6643], [11.1402, 60.6643], [11.1402, 60.6642], [11.1402, 60.6642], [11.1403, 60.6642], [11.1403, 60.6641], [11.1404, 60.6641], [11.1403, 60.6641], [11.1403, 60.6641], [11.1402, 60.6641], [11.1402, 60.6641], [11.1401, 60.6641], [11.1401, 60.6641], [11.1401, 60.6641], [11.14, 60.6641], [11.14, 60.6642], [11.1399, 60.6642], [11.1399, 60.6641], [11.1399, 60.664], [11.1399, 60.664], [11.1399, 60.6639], [11.1399, 60.6638], [11.14, 60.6638], [11.1401, 60.6637], [11.1404, 60.6637], [11.1403, 60.6636], [11.1402, 60.6635], [11.1402, 60.6634], [11.1401, 60.6633], [11.1401, 60.6633], [11.14, 60.6632], [11.1399, 60.6631], [11.1398, 60.6631], [11.1397, 60.663], [11.1395, 60.663], [11.1395, 60.663], [11.1394, 60.663], [11.1393, 60.663], [11.1392, 60.663], [11.1391, 60.663], [11.139, 60.663], [11.1389, 60.6629], [11.1389, 60.6629], [11.1389, 60.6628], [11.1388, 60.6628], [11.1386, 60.6628], [11.1383, 60.6628], [11.1383, 60.6628], [11.1382, 60.6628], [11.1381, 60.6627], [11.1381, 60.6627], [11.1381, 60.6626], [11.1381, 60.6625], [11.138, 60.6625], [11.1381, 60.6623], [11.138, 60.6622], [11.1379, 60.6621], [11.1379, 60.662], [11.1379, 60.662], [11.1379, 60.6619], [11.138, 60.6619], [11.1381, 60.6618], [11.138, 60.6618], [11.1379, 60.6617], [11.1379, 60.6618], [11.1378, 60.6617], [11.1378, 60.6617], [11.1377, 60.6617], [11.1377, 60.6616], [11.1377, 60.6616], [11.1376, 60.6615], [11.1377, 60.6614], [11.1378, 60.6613], [11.1378, 60.6612], [11.1379, 60.6611], [11.1379, 60.661], [11.1379, 60.6609], [11.1379, 60.6609], [11.138, 60.6609], [11.1381, 60.6608], [11.1382, 60.6606], [11.1382, 60.6605], [11.1383, 60.6605], [11.1385, 60.6605], [11.1386, 60.6605], [11.1387, 60.6605], [11.1387, 60.6605], [11.1388, 60.6605], [11.1388, 60.6605], [11.1388, 60.6605], [11.1387, 60.6605], [11.1387, 60.6605], [11.1389, 60.6605], [11.1389, 60.6604], [11.1389, 60.6603], [11.139, 60.6603], [11.1388, 60.6602], [11.1388, 60.6602], [11.1389, 60.6601], [11.1389, 60.66], [11.1391, 60.66], [11.1392, 60.6599], [11.1393, 60.6599], [11.1393, 60.6598], [11.1394, 60.6596], [11.1394, 60.6596], [11.1394, 60.6595], [11.1394, 60.6595], [11.1395, 60.6595], [11.1395, 60.6594], [11.1395, 60.6594], [11.1397, 60.6593], [11.1399, 60.6593], [11.1398, 60.6593], [11.1398, 60.6593], [11.14, 60.6592], [11.1401, 60.6592], [11.1403, 60.6592], [11.1405, 60.6592], [11.1407, 60.6592], [11.1408, 60.6592], [11.1409, 60.6592], [11.141, 60.6592], [11.1411, 60.6592], [11.1413, 60.6593], [11.1413, 60.6593], [11.1413, 60.6593], [11.1414, 60.6593], [11.1415, 60.6593], [11.1418, 60.6593], [11.1418, 60.6593], [11.1418, 60.6592], [11.1419, 60.6592], [11.1419, 60.6592], [11.1421, 60.6592], [11.1422, 60.6592], [11.1425, 60.6591], [11.1427, 60.6591], [11.143, 60.659], [11.1433, 60.6589], [11.1435, 60.6588], [11.1436, 60.6587], [11.1437, 60.6586], [11.1438, 60.6586], [11.1441, 60.6585], [11.1442, 60.6585], [11.1442, 60.6585], [11.1443, 60.6584], [11.1444, 60.6584], [11.1445, 60.6584], [11.1445, 60.6584], [11.1445, 60.6584], [11.1446, 60.6583], [11.1446, 60.6583], [11.1447, 60.6583], [11.1446, 60.6583], [11.1447, 60.6583], [11.1448, 60.6583], [11.1449, 60.6582], [11.1451, 60.6582], [11.1453, 60.6581], [11.1453, 60.6579], [11.1454, 60.6578], [11.1456, 60.6577], [11.1457, 60.6576], [11.1458, 60.6576], [11.1458, 60.6576], [11.1459, 60.6575], [11.146, 60.6575], [11.1462, 60.6574], [11.1464, 60.6572], [11.1465, 60.657], [11.1466, 60.6569], [11.1466, 60.6569], [11.1104, 60.6569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "130", "sub_div_center": [60.676856, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.6769], [11.1104, 60.6923], [11.1104, 60.6923], [11.1105, 60.6921], [11.1106, 60.6921], [11.1106, 60.692], [11.1108, 60.6918], [11.111, 60.6917], [11.1111, 60.6916], [11.1113, 60.6915], [11.1114, 60.6914], [11.1116, 60.6912], [11.1117, 60.6911], [11.1119, 60.691], [11.112, 60.6908], [11.1122, 60.6907], [11.1121, 60.6907], [11.112, 60.6906], [11.1121, 60.6906], [11.1121, 60.6905], [11.1123, 60.6905], [11.1124, 60.6905], [11.1124, 60.6904], [11.1123, 60.6903], [11.1123, 60.6903], [11.1122, 60.6902], [11.1121, 60.6901], [11.1121, 60.69], [11.1122, 60.6899], [11.1123, 60.6899], [11.1124, 60.6898], [11.1125, 60.6897], [11.1127, 60.6896], [11.1128, 60.6896], [11.113, 60.6895], [11.1131, 60.6895], [11.1132, 60.6896], [11.1132, 60.6896], [11.1133, 60.6896], [11.1134, 60.6896], [11.1135, 60.6895], [11.1135, 60.6895], [11.1134, 60.6894], [11.1133, 60.6894], [11.1131, 60.6895], [11.1131, 60.6895], [11.1132, 60.6894], [11.1132, 60.6894], [11.1133, 60.6893], [11.1134, 60.6893], [11.1135, 60.6893], [11.1137, 60.6892], [11.1137, 60.6892], [11.1138, 60.6891], [11.1139, 60.6891], [11.114, 60.6889], [11.1141, 60.6889], [11.1143, 60.6888], [11.1144, 60.6887], [11.1145, 60.6886], [11.1145, 60.6885], [11.1144, 60.6884], [11.1144, 60.6883], [11.1144, 60.6882], [11.1144, 60.6881], [11.1145, 60.688], [11.1146, 60.6879], [11.1146, 60.6879], [11.1146, 60.6878], [11.1148, 60.6878], [11.1148, 60.6878], [11.1147, 60.6878], [11.1147, 60.6877], [11.1149, 60.6877], [11.1149, 60.6877], [11.1151, 60.6876], [11.1152, 60.6874], [11.1152, 60.6873], [11.1153, 60.6872], [11.1153, 60.6871], [11.1153, 60.6869], [11.1153, 60.6868], [11.1153, 60.6868], [11.1153, 60.6867], [11.1154, 60.6865], [11.1154, 60.6864], [11.1153, 60.6862], [11.1153, 60.6861], [11.1154, 60.686], [11.1154, 60.6859], [11.1154, 60.6858], [11.1155, 60.6856], [11.1155, 60.6854], [11.1155, 60.6853], [11.1154, 60.6853], [11.1154, 60.6852], [11.1154, 60.6852], [11.1155, 60.6851], [11.1155, 60.6851], [11.1155, 60.685], [11.1156, 60.685], [11.1158, 60.6847], [11.1159, 60.6845], [11.1161, 60.6842], [11.1163, 60.684], [11.1165, 60.6838], [11.1166, 60.6836], [11.1166, 60.6834], [11.1167, 60.6832], [11.1167, 60.6831], [11.1167, 60.6828], [11.1166, 60.6825], [11.1166, 60.6824], [11.1166, 60.6821], [11.1165, 60.6819], [11.1164, 60.6818], [11.1163, 60.6816], [11.1161, 60.6813], [11.116, 60.681], [11.1159, 60.681], [11.1158, 60.6809], [11.1158, 60.6808], [11.1158, 60.6807], [11.1159, 60.6806], [11.1159, 60.6805], [11.1158, 60.6803], [11.1158, 60.6802], [11.1157, 60.6801], [11.1157, 60.6801], [11.1157, 60.68], [11.1156, 60.68], [11.1156, 60.6799], [11.1157, 60.6798], [11.1156, 60.6797], [11.1156, 60.6795], [11.1156, 60.6793], [11.1155, 60.6791], [11.1154, 60.679], [11.1153, 60.679], [11.1152, 60.6789], [11.1152, 60.6788], [11.1152, 60.6787], [11.1152, 60.6787], [11.1151, 60.6785], [11.115, 60.6784], [11.115, 60.6784], [11.115, 60.6783], [11.1151, 60.6783], [11.1151, 60.6782], [11.1151, 60.6782], [11.1152, 60.6781], [11.1153, 60.678], [11.1154, 60.6779], [11.1155, 60.6778], [11.1156, 60.6776], [11.1156, 60.6775], [11.1156, 60.6774], [11.1157, 60.6773], [11.1159, 60.6771], [11.116, 60.677], [11.1161, 60.6769], [11.1162, 60.6769], [11.1104, 60.6769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "131", "sub_div_center": [60.788145, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1254, 60.7968], [11.1256, 60.7968], [11.126, 60.7968], [11.1262, 60.7968], [11.1265, 60.7968], [11.1269, 60.7968], [11.1271, 60.7968], [11.1273, 60.7967], [11.1273, 60.7966], [11.1274, 60.7966], [11.1277, 60.7964], [11.1276, 60.7964], [11.1279, 60.7963], [11.1281, 60.7962], [11.1283, 60.7962], [11.1283, 60.7962], [11.1282, 60.7961], [11.1283, 60.796], [11.1285, 60.7958], [11.1286, 60.7958], [11.1287, 60.7958], [11.1289, 60.7957], [11.129, 60.7956], [11.129, 60.7955], [11.1291, 60.7954], [11.1295, 60.7953], [11.1299, 60.7953], [11.1305, 60.7951], [11.1309, 60.795], [11.1315, 60.7949], [11.1317, 60.7949], [11.1318, 60.795], [11.1319, 60.795], [11.1319, 60.7951], [11.1319, 60.7952], [11.1321, 60.7951], [11.133, 60.7951], [11.1331, 60.7951], [11.1332, 60.795], [11.1332, 60.7949], [11.1331, 60.7949], [11.1331, 60.7948], [11.133, 60.7948], [11.1328, 60.7947], [11.1326, 60.7947], [11.1325, 60.7947], [11.1325, 60.7946], [11.1325, 60.7945], [11.1328, 60.7945], [11.133, 60.7944], [11.1331, 60.7943], [11.1335, 60.7942], [11.1336, 60.7942], [11.1341, 60.7941], [11.1346, 60.7939], [11.1347, 60.7939], [11.1348, 60.7939], [11.1349, 60.794], [11.1349, 60.794], [11.1349, 60.794], [11.135, 60.794], [11.135, 60.794], [11.135, 60.794], [11.1351, 60.794], [11.1351, 60.794], [11.1351, 60.794], [11.1352, 60.794], [11.1352, 60.794], [11.1352, 60.794], [11.1352, 60.7939], [11.1353, 60.7939], [11.1353, 60.7939], [11.1353, 60.7939], [11.1354, 60.7938], [11.1354, 60.7938], [11.1355, 60.7938], [11.1356, 60.7938], [11.1356, 60.7938], [11.1356, 60.7938], [11.1357, 60.7938], [11.1357, 60.7938], [11.1357, 60.7938], [11.1358, 60.7938], [11.1358, 60.7937], [11.1359, 60.7937], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.136, 60.7936], [11.1361, 60.7935], [11.1361, 60.7935], [11.1361, 60.7935], [11.1361, 60.7934], [11.1361, 60.7934], [11.1361, 60.7934], [11.1361, 60.7934], [11.1362, 60.7933], [11.1365, 60.7932], [11.137, 60.793], [11.1376, 60.7928], [11.1379, 60.7928], [11.1383, 60.7929], [11.1385, 60.7926], [11.1387, 60.7925], [11.1391, 60.7923], [11.1394, 60.7923], [11.1396, 60.7922], [11.1395, 60.7921], [11.1397, 60.792], [11.1399, 60.792], [11.1399, 60.7919], [11.1401, 60.7919], [11.1402, 60.7917], [11.1404, 60.7915], [11.1404, 60.7914], [11.1405, 60.7913], [11.1405, 60.7912], [11.1404, 60.7912], [11.1403, 60.7913], [11.1402, 60.7914], [11.1398, 60.7918], [11.1393, 60.7919], [11.139, 60.792], [11.1389, 60.792], [11.1387, 60.7921], [11.1386, 60.7921], [11.1384, 60.7921], [11.1383, 60.7921], [11.1382, 60.7921], [11.1384, 60.792], [11.1385, 60.7919], [11.1387, 60.7919], [11.139, 60.7918], [11.1394, 60.7917], [11.1396, 60.7916], [11.14, 60.7913], [11.1404, 60.7911], [11.1405, 60.791], [11.1406, 60.7908], [11.1407, 60.7907], [11.1408, 60.7907], [11.1409, 60.7909], [11.1411, 60.7909], [11.1411, 60.7909], [11.1412, 60.7908], [11.1414, 60.7908], [11.1417, 60.7908], [11.1419, 60.7908], [11.1423, 60.7908], [11.1428, 60.7907], [11.1432, 60.7907], [11.1434, 60.7906], [11.1438, 60.7905], [11.1438, 60.7903], [11.1439, 60.7901], [11.144, 60.7899], [11.1442, 60.7898], [11.144, 60.7898], [11.1439, 60.7899], [11.1438, 60.7899], [11.1437, 60.79], [11.1438, 60.79], [11.1438, 60.7901], [11.1437, 60.7902], [11.1436, 60.7904], [11.1433, 60.7905], [11.1429, 60.7905], [11.1424, 60.7905], [11.1421, 60.7906], [11.1419, 60.7905], [11.1416, 60.7906], [11.1414, 60.7906], [11.1414, 60.7905], [11.1413, 60.7905], [11.1412, 60.7906], [11.141, 60.7906], [11.1409, 60.7905], [11.1409, 60.7904], [11.1409, 60.7903], [11.141, 60.7902], [11.141, 60.7902], [11.141, 60.79], [11.1411, 60.79], [11.1412, 60.7899], [11.141, 60.7895], [11.1407, 60.7891], [11.1406, 60.7892], [11.1405, 60.7892], [11.1404, 60.7893], [11.1403, 60.7894], [11.1402, 60.7894], [11.1401, 60.7894], [11.1398, 60.7894], [11.1396, 60.7894], [11.1395, 60.7894], [11.1392, 60.7894], [11.1391, 60.7895], [11.1389, 60.7895], [11.1388, 60.7896], [11.1386, 60.7896], [11.1385, 60.7896], [11.1384, 60.7895], [11.1382, 60.7895], [11.138, 60.7895], [11.1379, 60.7894], [11.1378, 60.7893], [11.1377, 60.7893], [11.1376, 60.7893], [11.1375, 60.7892], [11.1374, 60.7891], [11.1373, 60.7891], [11.1372, 60.789], [11.137, 60.789], [11.1369, 60.7889], [11.1368, 60.7889], [11.1367, 60.7889], [11.1366, 60.7888], [11.1365, 60.7888], [11.1364, 60.7888], [11.1363, 60.7887], [11.1361, 60.7887], [11.1359, 60.7887], [11.1358, 60.7887], [11.1358, 60.7886], [11.1357, 60.7886], [11.1356, 60.7886], [11.1355, 60.7885], [11.1354, 60.7885], [11.1353, 60.7884], [11.1353, 60.7884], [11.1352, 60.7884], [11.135, 60.7884], [11.1348, 60.7884], [11.1347, 60.7884], [11.1346, 60.7884], [11.1344, 60.7884], [11.1343, 60.7884], [11.1342, 60.7884], [11.134, 60.7884], [11.1339, 60.7884], [11.1338, 60.7884], [11.1336, 60.7884], [11.1335, 60.7884], [11.1333, 60.7884], [11.1331, 60.7884], [11.1329, 60.7884], [11.1328, 60.7884], [11.1326, 60.7884], [11.1324, 60.7884], [11.1323, 60.7885], [11.1322, 60.7885], [11.132, 60.7885], [11.1318, 60.7885], [11.1316, 60.7885], [11.1315, 60.7885], [11.1313, 60.7885], [11.1311, 60.7886], [11.1309, 60.7886], [11.1307, 60.7887], [11.1305, 60.7887], [11.1303, 60.7888], [11.1301, 60.7888], [11.13, 60.7889], [11.1299, 60.789], [11.1299, 60.789], [11.1299, 60.7891], [11.1297, 60.7892], [11.1296, 60.7892], [11.1295, 60.7892], [11.1294, 60.7893], [11.1293, 60.7893], [11.1292, 60.7894], [11.1291, 60.7894], [11.129, 60.7894], [11.1288, 60.7895], [11.1287, 60.7895], [11.1285, 60.7895], [11.1283, 60.7895], [11.128, 60.7896], [11.1279, 60.7896], [11.1278, 60.7896], [11.1278, 60.7896], [11.1277, 60.7896], [11.1277, 60.7897], [11.1276, 60.7898], [11.1275, 60.7898], [11.1274, 60.7899], [11.1273, 60.7899], [11.1272, 60.7899], [11.1271, 60.79], [11.127, 60.7901], [11.1269, 60.7901], [11.1267, 60.7902], [11.1266, 60.7901], [11.1264, 60.7901], [11.1264, 60.7901], [11.1263, 60.7901], [11.1263, 60.7901], [11.1262, 60.7901], [11.1261, 60.7901], [11.126, 60.7901], [11.1259, 60.7901], [11.1258, 60.7901], [11.1257, 60.7903], [11.1253, 60.7902], [11.1252, 60.7903], [11.1254, 60.7904], [11.1254, 60.7904], [11.1254, 60.7904], [11.1255, 60.7905], [11.1255, 60.7905], [11.1255, 60.7906], [11.1257, 60.7906], [11.1259, 60.7907], [11.1261, 60.7907], [11.1264, 60.7907], [11.1264, 60.7907], [11.1265, 60.7908], [11.1265, 60.7908], [11.1265, 60.7908], [11.1265, 60.7909], [11.1265, 60.791], [11.1265, 60.7911], [11.1264, 60.7911], [11.1263, 60.7913], [11.1263, 60.7913], [11.1262, 60.7914], [11.1261, 60.7915], [11.1259, 60.7916], [11.1256, 60.7917], [11.1254, 60.7916], [11.1251, 60.7915], [11.1249, 60.7915], [11.1248, 60.7914], [11.1244, 60.7921], [11.1245, 60.7921], [11.1246, 60.7922], [11.1247, 60.7922], [11.1248, 60.7922], [11.1249, 60.7922], [11.125, 60.7923], [11.1251, 60.7923], [11.1253, 60.7923], [11.1253, 60.7924], [11.1254, 60.7924], [11.1253, 60.7925], [11.1253, 60.7927], [11.1251, 60.7928], [11.1249, 60.7929], [11.1248, 60.7929], [11.1248, 60.793], [11.1248, 60.793], [11.1247, 60.793], [11.1247, 60.7932], [11.1247, 60.7933], [11.1248, 60.7933], [11.1248, 60.7934], [11.1247, 60.7935], [11.1247, 60.7935], [11.1247, 60.7937], [11.1246, 60.7937], [11.1246, 60.7938], [11.1245, 60.7939], [11.1243, 60.794], [11.1241, 60.794], [11.1239, 60.794], [11.1238, 60.794], [11.1236, 60.7939], [11.1234, 60.7939], [11.1232, 60.7939], [11.1231, 60.7941], [11.1231, 60.7942], [11.123, 60.7942], [11.1229, 60.7943], [11.1226, 60.7943], [11.1223, 60.7942], [11.1223, 60.7942], [11.1222, 60.7942], [11.1222, 60.7941], [11.1223, 60.794], [11.1224, 60.7939], [11.1224, 60.7938], [11.1224, 60.7937], [11.1223, 60.7937], [11.1223, 60.7936], [11.1222, 60.7936], [11.1221, 60.7935], [11.122, 60.7935], [11.1218, 60.7935], [11.1217, 60.7935], [11.1216, 60.7935], [11.1215, 60.7935], [11.1215, 60.7935], [11.1214, 60.7934], [11.1212, 60.7934], [11.1212, 60.7933], [11.1213, 60.7933], [11.1215, 60.7933], [11.1216, 60.7932], [11.1217, 60.7932], [11.1218, 60.7932], [11.122, 60.7931], [11.1221, 60.7931], [11.1222, 60.7931], [11.1224, 60.793], [11.1223, 60.7929], [11.1221, 60.7928], [11.1221, 60.7927], [11.1221, 60.7927], [11.122, 60.7926], [11.1221, 60.7925], [11.1221, 60.7924], [11.122, 60.7923], [11.122, 60.7922], [11.122, 60.792], [11.122, 60.792], [11.1221, 60.7919], [11.1222, 60.7918], [11.1225, 60.7918], [11.1227, 60.7918], [11.1229, 60.7917], [11.1232, 60.7917], [11.1234, 60.7917], [11.1237, 60.7917], [11.1237, 60.7916], [11.1238, 60.7916], [11.1238, 60.7915], [11.1239, 60.7914], [11.1239, 60.7913], [11.1239, 60.7912], [11.1237, 60.7912], [11.1236, 60.7913], [11.1235, 60.7913], [11.1234, 60.7913], [11.1232, 60.7913], [11.1232, 60.7912], [11.1233, 60.7911], [11.1233, 60.791], [11.1235, 60.791], [11.1236, 60.7909], [11.1236, 60.7908], [11.1237, 60.7907], [11.1238, 60.7906], [11.1239, 60.7906], [11.1241, 60.7906], [11.1242, 60.7906], [11.1243, 60.7905], [11.1245, 60.7902], [11.1248, 60.7903], [11.1248, 60.7902], [11.1245, 60.7901], [11.1244, 60.7901], [11.1243, 60.79], [11.1242, 60.79], [11.1241, 60.79], [11.1239, 60.7901], [11.1238, 60.7901], [11.1236, 60.7902], [11.1235, 60.7902], [11.1233, 60.7902], [11.1232, 60.7902], [11.1231, 60.7902], [11.123, 60.7902], [11.1229, 60.7902], [11.1229, 60.7902], [11.1228, 60.7902], [11.1227, 60.7902], [11.1226, 60.7902], [11.1224, 60.7902], [11.1223, 60.7901], [11.1223, 60.7901], [11.1223, 60.7901], [11.1224, 60.79], [11.1224, 60.79], [11.1223, 60.79], [11.1223, 60.7899], [11.1222, 60.7899], [11.1222, 60.7899], [11.1222, 60.7898], [11.1221, 60.7898], [11.1221, 60.7898], [11.122, 60.7897], [11.1219, 60.7897], [11.1219, 60.7897], [11.1218, 60.7897], [11.1217, 60.7896], [11.1216, 60.7896], [11.1215, 60.7896], [11.1214, 60.7896], [11.1214, 60.7896], [11.1213, 60.7896], [11.1213, 60.7896], [11.1212, 60.7895], [11.1211, 60.7895], [11.121, 60.7896], [11.1209, 60.7896], [11.1208, 60.7895], [11.1207, 60.7895], [11.1206, 60.7895], [11.1205, 60.7895], [11.1204, 60.7895], [11.1203, 60.7895], [11.1202, 60.7895], [11.1201, 60.7895], [11.12, 60.7896], [11.1199, 60.7896], [11.1199, 60.7895], [11.1198, 60.7895], [11.1197, 60.7895], [11.1196, 60.7895], [11.1195, 60.7895], [11.1194, 60.7895], [11.1193, 60.7896], [11.1192, 60.7896], [11.1191, 60.7896], [11.119, 60.7896], [11.1189, 60.7896], [11.1187, 60.7896], [11.1186, 60.7896], [11.1185, 60.7897], [11.1184, 60.7897], [11.1183, 60.7898], [11.1182, 60.7897], [11.1181, 60.7897], [11.118, 60.7897], [11.1179, 60.7898], [11.1178, 60.7898], [11.1178, 60.7897], [11.1176, 60.7896], [11.1175, 60.7895], [11.1173, 60.7894], [11.1171, 60.7893], [11.117, 60.7892], [11.1167, 60.7891], [11.1165, 60.7891], [11.1163, 60.789], [11.1161, 60.7889], [11.1158, 60.7889], [11.1157, 60.7889], [11.1154, 60.7889], [11.1152, 60.789], [11.1149, 60.789], [11.1148, 60.789], [11.1145, 60.789], [11.1143, 60.789], [11.114, 60.7889], [11.1136, 60.7889], [11.1134, 60.7889], [11.1132, 60.7889], [11.1129, 60.7889], [11.1126, 60.7889], [11.1123, 60.7888], [11.1121, 60.7889], [11.1119, 60.7889], [11.1117, 60.7889], [11.1114, 60.7888], [11.1112, 60.7888], [11.1111, 60.7887], [11.111, 60.7887], [11.1109, 60.7886], [11.1108, 60.7884], [11.1107, 60.7884], [11.1106, 60.7882], [11.1105, 60.7882], [11.1104, 60.7881], [11.1104, 60.7964], [11.1104, 60.7964], [11.1105, 60.7965], [11.1105, 60.7965], [11.1105, 60.7965], [11.1104, 60.7966], [11.1104, 60.7969], [11.1106, 60.7969], [11.1107, 60.7968], [11.1108, 60.7967], [11.111, 60.7967], [11.1112, 60.7967], [11.1113, 60.7967], [11.1115, 60.7967], [11.1117, 60.7968], [11.1119, 60.7968], [11.1121, 60.7968], [11.1124, 60.7969], [11.1133, 60.7968], [11.1138, 60.7968], [11.1141, 60.7968], [11.1142, 60.7968], [11.1143, 60.7967], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7968], [11.1144, 60.7967], [11.1144, 60.7967], [11.1145, 60.7967], [11.1146, 60.7966], [11.1146, 60.7966], [11.1147, 60.7966], [11.1147, 60.7966], [11.1148, 60.7965], [11.1149, 60.7964], [11.115, 60.7963], [11.1152, 60.7961], [11.1159, 60.796], [11.1162, 60.7959], [11.1164, 60.7958], [11.1165, 60.7957], [11.1166, 60.7956], [11.1166, 60.7955], [11.1168, 60.7954], [11.1169, 60.7954], [11.117, 60.7953], [11.1171, 60.7952], [11.1172, 60.7952], [11.1172, 60.7952], [11.1174, 60.7952], [11.1175, 60.7952], [11.1176, 60.7952], [11.1177, 60.7952], [11.1178, 60.7952], [11.1177, 60.7953], [11.1176, 60.7954], [11.1175, 60.7955], [11.1175, 60.7955], [11.1175, 60.7955], [11.1174, 60.7957], [11.1173, 60.7957], [11.1172, 60.7958], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1171, 60.796], [11.1169, 60.796], [11.1169, 60.7961], [11.1168, 60.7963], [11.1168, 60.7964], [11.1169, 60.7965], [11.1168, 60.7966], [11.1169, 60.7967], [11.1169, 60.7968], [11.117, 60.7968], [11.1172, 60.7968], [11.1172, 60.7969], [11.1174, 60.7969], [11.1174, 60.7968], [11.1176, 60.7966], [11.1175, 60.7966], [11.1175, 60.7966], [11.1176, 60.7965], [11.1176, 60.7965], [11.1177, 60.7965], [11.1178, 60.7964], [11.1178, 60.7964], [11.1178, 60.7964], [11.1178, 60.7963], [11.1179, 60.7962], [11.1179, 60.7962], [11.1179, 60.7961], [11.1179, 60.796], [11.118, 60.7959], [11.118, 60.7959], [11.1182, 60.7958], [11.1186, 60.7956], [11.1189, 60.7955], [11.119, 60.7955], [11.1193, 60.7956], [11.1194, 60.7956], [11.1195, 60.7956], [11.1197, 60.7957], [11.1198, 60.7956], [11.12, 60.7956], [11.12, 60.7956], [11.1201, 60.7956], [11.1202, 60.7956], [11.1203, 60.7956], [11.1203, 60.7955], [11.1203, 60.7954], [11.1204, 60.7952], [11.1205, 60.7952], [11.1206, 60.7952], [11.1206, 60.7951], [11.1207, 60.795], [11.1206, 60.795], [11.1207, 60.7949], [11.1207, 60.7949], [11.1207, 60.7948], [11.1208, 60.7948], [11.1209, 60.7947], [11.1211, 60.7947], [11.1212, 60.7946], [11.1213, 60.7946], [11.1213, 60.7945], [11.1214, 60.7945], [11.1215, 60.7945], [11.1217, 60.7945], [11.1218, 60.7945], [11.122, 60.7945], [11.1223, 60.7945], [11.1225, 60.7946], [11.1227, 60.7946], [11.1227, 60.7946], [11.1228, 60.7947], [11.1228, 60.7948], [11.1228, 60.7949], [11.123, 60.795], [11.1231, 60.7951], [11.1233, 60.7951], [11.1234, 60.7951], [11.1235, 60.7951], [11.1237, 60.7951], [11.1238, 60.7951], [11.1238, 60.7951], [11.124, 60.795], [11.1241, 60.7951], [11.1242, 60.7951], [11.1242, 60.7951], [11.1243, 60.7951], [11.1245, 60.7951], [11.1247, 60.7952], [11.1248, 60.7952], [11.1249, 60.7953], [11.1251, 60.7953], [11.1252, 60.7954], [11.1252, 60.7956], [11.1252, 60.7957], [11.1251, 60.7959], [11.125, 60.7959], [11.1249, 60.7959], [11.1244, 60.7963], [11.1241, 60.7969], [11.1241, 60.7969], [11.1253, 60.7969], [11.1254, 60.7968]]]}}, {"type": "Feature", "properties": {"sub_div_id": "132", "sub_div_center": [60.796856, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.7969], [11.1104, 60.797], [11.1105, 60.797], [11.1106, 60.7969], [11.1104, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "133", "sub_div_center": [60.798764, 11.110419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1107, 60.8039], [11.111, 60.8038], [11.1114, 60.8038], [11.1117, 60.8037], [11.112, 60.8036], [11.1124, 60.8034], [11.1126, 60.8032], [11.1128, 60.803], [11.1129, 60.8029], [11.1131, 60.8029], [11.1134, 60.8027], [11.1132, 60.8027], [11.1131, 60.8027], [11.1131, 60.8028], [11.113, 60.8028], [11.113, 60.8027], [11.1129, 60.8025], [11.1129, 60.8024], [11.1129, 60.8023], [11.113, 60.8022], [11.1131, 60.8023], [11.1132, 60.8023], [11.1132, 60.8024], [11.1133, 60.8024], [11.1134, 60.8023], [11.1135, 60.8023], [11.1137, 60.8023], [11.1139, 60.8023], [11.1139, 60.8023], [11.1142, 60.8021], [11.1144, 60.8019], [11.1145, 60.8019], [11.1144, 60.8019], [11.1144, 60.8018], [11.1144, 60.8018], [11.1143, 60.8018], [11.1143, 60.8018], [11.1142, 60.8018], [11.1142, 60.8018], [11.1142, 60.8017], [11.1142, 60.8017], [11.1142, 60.8017], [11.1142, 60.8016], [11.1143, 60.8016], [11.1143, 60.8016], [11.1143, 60.8017], [11.1143, 60.8017], [11.1143, 60.8017], [11.1143, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1145, 60.8017], [11.1145, 60.8017], [11.1145, 60.8017], [11.1144, 60.8017], [11.1144, 60.8017], [11.1145, 60.8017], [11.1145, 60.8018], [11.1145, 60.8018], [11.1146, 60.8018], [11.1147, 60.8017], [11.1152, 60.8012], [11.1152, 60.8011], [11.1151, 60.801], [11.1146, 60.8009], [11.1143, 60.8009], [11.1141, 60.801], [11.1139, 60.8009], [11.1136, 60.801], [11.1134, 60.801], [11.1132, 60.801], [11.1132, 60.8009], [11.1132, 60.8008], [11.1132, 60.8007], [11.1135, 60.8005], [11.1136, 60.8004], [11.1135, 60.8002], [11.1134, 60.8001], [11.1131, 60.7998], [11.1129, 60.7998], [11.1124, 60.7996], [11.1121, 60.7995], [11.112, 60.7994], [11.1117, 60.7991], [11.1114, 60.7989], [11.1111, 60.7989], [11.1104, 60.7988], [11.1104, 60.8027], [11.1105, 60.8027], [11.1107, 60.8027], [11.1109, 60.8027], [11.1111, 60.8028], [11.1112, 60.8028], [11.1113, 60.8029], [11.1114, 60.8029], [11.1115, 60.803], [11.1115, 60.8031], [11.1116, 60.8032], [11.1116, 60.8032], [11.1117, 60.8032], [11.1117, 60.8031], [11.1116, 60.8031], [11.1116, 60.803], [11.1117, 60.803], [11.1118, 60.803], [11.1118, 60.8031], [11.1119, 60.8031], [11.1119, 60.8031], [11.1117, 60.8033], [11.1116, 60.8034], [11.1113, 60.8034], [11.1108, 60.8035], [11.1105, 60.8036], [11.1104, 60.8036], [11.1104, 60.8039], [11.1107, 60.8039]]]}}, {"type": "Feature", "properties": {"sub_div_id": "134", "sub_div_center": [60.80362, 11.10909]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1104, 60.8036], [11.1103, 60.8036], [11.1102, 60.8036], [11.11, 60.8037], [11.1097, 60.8037], [11.1096, 60.8038], [11.1094, 60.8039], [11.1092, 60.804], [11.1091, 60.8041], [11.1093, 60.8042], [11.1098, 60.8042], [11.1099, 60.8041], [11.11, 60.804], [11.11, 60.804], [11.1104, 60.804], [11.1104, 60.8039], [11.1104, 60.8036]]]}}, {"type": "Feature", "properties": {"sub_div_id": "135", "sub_div_center": [60.596856, 11.116219]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6169], [11.1504, 60.5969], [11.1329, 60.5969], [11.1329, 60.5969], [11.1329, 60.5971], [11.1325, 60.5974], [11.1322, 60.5976], [11.1317, 60.5978], [11.1309, 60.5988], [11.1306, 60.599], [11.1302, 60.5993], [11.1297, 60.5997], [11.1295, 60.6], [11.1294, 60.6002], [11.1293, 60.6007], [11.1291, 60.6011], [11.1289, 60.6013], [11.1286, 60.6014], [11.1282, 60.6017], [11.1275, 60.6019], [11.1272, 60.6021], [11.1268, 60.6023], [11.1256, 60.6035], [11.125, 60.6043], [11.125, 60.606], [11.1239, 60.6068], [11.1235, 60.6074], [11.1231, 60.6077], [11.1227, 60.6079], [11.1219, 60.608], [11.1216, 60.6082], [11.1219, 60.6088], [11.1216, 60.6094], [11.1216, 60.6099], [11.1214, 60.6101], [11.1216, 60.6106], [11.1218, 60.6108], [11.1218, 60.6111], [11.1216, 60.6113], [11.1214, 60.6118], [11.1213, 60.6119], [11.1197, 60.6125], [11.1195, 60.6128], [11.1195, 60.613], [11.1195, 60.6138], [11.1194, 60.6142], [11.1193, 60.6147], [11.1192, 60.615], [11.1189, 60.6155], [11.1183, 60.6158], [11.1172, 60.6162], [11.1165, 60.6165], [11.1162, 60.6169], [11.1504, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "136", "sub_div_center": [60.796856, 11.117172]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1172, 60.7969], [11.1172, 60.7969], [11.1173, 60.797], [11.1172, 60.797], [11.1173, 60.7971], [11.1173, 60.797], [11.1174, 60.797], [11.1173, 60.7969], [11.1174, 60.7969], [11.1172, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "137", "sub_div_center": [60.796856, 11.12389]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1241, 60.7969], [11.124, 60.7971], [11.1239, 60.7973], [11.1239, 60.7973], [11.1239, 60.7974], [11.1239, 60.7974], [11.124, 60.7974], [11.1241, 60.7974], [11.1243, 60.7974], [11.1244, 60.7974], [11.1245, 60.7975], [11.1245, 60.7975], [11.1246, 60.7975], [11.1246, 60.7974], [11.1246, 60.7974], [11.1246, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1247, 60.7974], [11.1253, 60.7974], [11.1254, 60.7974], [11.1255, 60.7974], [11.1256, 60.7974], [11.1257, 60.7973], [11.1257, 60.7973], [11.1255, 60.7972], [11.1255, 60.7971], [11.1254, 60.797], [11.1253, 60.797], [11.1252, 60.7969], [11.1253, 60.7969], [11.1241, 60.7969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "138", "sub_div_center": [60.585456, 11.132883]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1504, 60.5855], [11.1503, 60.5855], [11.1497, 60.5857], [11.1492, 60.586], [11.1478, 60.5872], [11.1478, 60.5872], [11.1478, 60.5873], [11.1477, 60.5875], [11.1477, 60.5878], [11.1477, 60.5878], [11.1477, 60.588], [11.1475, 60.5882], [11.1471, 60.5884], [11.1464, 60.5888], [11.1463, 60.5889], [11.1461, 60.589], [11.1452, 60.5894], [11.1446, 60.5897], [11.1442, 60.5898], [11.1427, 60.5898], [11.1421, 60.59], [11.1415, 60.5903], [11.1405, 60.5912], [11.1394, 60.5923], [11.1388, 60.5928], [11.1383, 60.5933], [11.1382, 60.5936], [11.1379, 60.5938], [11.1365, 60.5942], [11.1357, 60.5949], [11.1351, 60.5956], [11.1342, 60.5961], [11.1329, 60.5967], [11.1329, 60.5968], [11.1329, 60.5969], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "139", "sub_div_center": [60.576856, 11.150419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1904, 60.5969], [11.1904, 60.5769], [11.1603, 60.5769], [11.1602, 60.577], [11.1595, 60.5774], [11.1588, 60.5782], [11.1583, 60.5787], [11.1578, 60.579], [11.1567, 60.5797], [11.1562, 60.5799], [11.1559, 60.5802], [11.1558, 60.5805], [11.1557, 60.5812], [11.1555, 60.5814], [11.1551, 60.5818], [11.155, 60.5821], [11.1544, 60.5824], [11.1539, 60.583], [11.1528, 60.5839], [11.1511, 60.5848], [11.1508, 60.5852], [11.1504, 60.5855], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "140", "sub_div_center": [60.596856, 11.150419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.5969], [11.1504, 60.6169], [11.1653, 60.6169], [11.1653, 60.6168], [11.1652, 60.6168], [11.1652, 60.6167], [11.1653, 60.6167], [11.1655, 60.6165], [11.1656, 60.6164], [11.1658, 60.6164], [11.1659, 60.6162], [11.166, 60.6162], [11.166, 60.616], [11.1661, 60.616], [11.1661, 60.616], [11.1662, 60.616], [11.1662, 60.6159], [11.1662, 60.6158], [11.1663, 60.6158], [11.1662, 60.6157], [11.1662, 60.6156], [11.1663, 60.6156], [11.1663, 60.6155], [11.1664, 60.6155], [11.1666, 60.6155], [11.1667, 60.6154], [11.1669, 60.6154], [11.1671, 60.6153], [11.1671, 60.6153], [11.1672, 60.6153], [11.1675, 60.6153], [11.1677, 60.6152], [11.168, 60.6151], [11.1681, 60.6151], [11.1683, 60.6151], [11.1683, 60.615], [11.1683, 60.615], [11.1684, 60.615], [11.1684, 60.6149], [11.1684, 60.6149], [11.1685, 60.6148], [11.1685, 60.6148], [11.1685, 60.6147], [11.1686, 60.6147], [11.1687, 60.6146], [11.1688, 60.6146], [11.169, 60.6145], [11.1692, 60.6145], [11.1693, 60.6145], [11.1694, 60.6145], [11.1694, 60.6145], [11.1695, 60.6145], [11.1695, 60.6145], [11.1696, 60.6144], [11.1696, 60.6143], [11.1697, 60.6143], [11.1698, 60.6143], [11.1699, 60.6142], [11.17, 60.6141], [11.17, 60.614], [11.1701, 60.614], [11.1701, 60.6139], [11.1701, 60.6139], [11.1701, 60.6138], [11.1701, 60.6138], [11.1702, 60.6138], [11.1702, 60.6137], [11.1702, 60.6137], [11.1703, 60.6137], [11.1703, 60.6137], [11.1703, 60.6137], [11.1703, 60.6136], [11.1704, 60.6136], [11.1704, 60.6136], [11.1705, 60.6134], [11.1704, 60.6134], [11.1704, 60.6133], [11.1705, 60.6133], [11.1705, 60.6132], [11.1704, 60.6132], [11.1703, 60.6131], [11.1702, 60.6131], [11.1702, 60.6131], [11.1702, 60.6131], [11.1702, 60.6132], [11.1701, 60.6132], [11.1701, 60.6132], [11.1701, 60.6131], [11.1701, 60.6131], [11.1701, 60.613], [11.1701, 60.6128], [11.1701, 60.6128], [11.1702, 60.6128], [11.1703, 60.6127], [11.1703, 60.6126], [11.1702, 60.6126], [11.1702, 60.6126], [11.1703, 60.6126], [11.1703, 60.6125], [11.1702, 60.6125], [11.1702, 60.6124], [11.1702, 60.6122], [11.1704, 60.6121], [11.1705, 60.612], [11.1705, 60.6119], [11.1704, 60.6119], [11.1704, 60.6118], [11.1705, 60.6117], [11.1707, 60.6116], [11.1708, 60.6115], [11.1709, 60.6114], [11.171, 60.6114], [11.1713, 60.6114], [11.1713, 60.6115], [11.1714, 60.6116], [11.1715, 60.6116], [11.1715, 60.6117], [11.1715, 60.6118], [11.1714, 60.6118], [11.1714, 60.6119], [11.1714, 60.612], [11.1714, 60.612], [11.1715, 60.6121], [11.1716, 60.6121], [11.1716, 60.6121], [11.1717, 60.6121], [11.1719, 60.6121], [11.1721, 60.6121], [11.1723, 60.6122], [11.1725, 60.6122], [11.1726, 60.6121], [11.1726, 60.6121], [11.1727, 60.6121], [11.1728, 60.6121], [11.1729, 60.612], [11.1729, 60.612], [11.1728, 60.612], [11.1728, 60.6119], [11.1729, 60.6119], [11.1729, 60.6119], [11.173, 60.6119], [11.173, 60.6119], [11.173, 60.6118], [11.1731, 60.6118], [11.173, 60.6118], [11.1728, 60.6118], [11.1728, 60.6118], [11.1728, 60.6117], [11.1729, 60.6117], [11.173, 60.6117], [11.1731, 60.6117], [11.1731, 60.6118], [11.1732, 60.6118], [11.1732, 60.6118], [11.1733, 60.6118], [11.1733, 60.6118], [11.1733, 60.6118], [11.1734, 60.6118], [11.1734, 60.6118], [11.1734, 60.6119], [11.1735, 60.6119], [11.1735, 60.6118], [11.1736, 60.6118], [11.1737, 60.6118], [11.1737, 60.6118], [11.1738, 60.6118], [11.1738, 60.6118], [11.1738, 60.6118], [11.1739, 60.6118], [11.1739, 60.6118], [11.1739, 60.6118], [11.174, 60.6119], [11.174, 60.6119], [11.174, 60.6119], [11.1741, 60.6118], [11.1742, 60.6118], [11.1742, 60.6118], [11.1744, 60.6118], [11.1747, 60.6117], [11.1747, 60.6117], [11.1748, 60.6117], [11.1749, 60.6118], [11.1749, 60.6117], [11.1749, 60.6117], [11.1749, 60.6117], [11.1751, 60.6116], [11.1751, 60.6116], [11.1752, 60.6116], [11.1754, 60.6115], [11.1758, 60.6115], [11.1762, 60.6115], [11.1764, 60.6115], [11.1765, 60.6115], [11.1766, 60.6115], [11.1767, 60.6114], [11.1767, 60.6114], [11.1768, 60.6113], [11.1769, 60.6113], [11.1769, 60.6113], [11.1769, 60.6113], [11.1769, 60.6112], [11.177, 60.6112], [11.1771, 60.6112], [11.1771, 60.6112], [11.1772, 60.6112], [11.1772, 60.6112], [11.1773, 60.6112], [11.1773, 60.6112], [11.1773, 60.6112], [11.1774, 60.6112], [11.1775, 60.6113], [11.1775, 60.6113], [11.1776, 60.6113], [11.1777, 60.6113], [11.1778, 60.6113], [11.1778, 60.6113], [11.178, 60.6112], [11.1782, 60.6112], [11.1784, 60.6111], [11.1786, 60.6109], [11.1786, 60.6108], [11.1788, 60.6107], [11.1789, 60.6105], [11.1789, 60.6104], [11.1789, 60.6103], [11.179, 60.6102], [11.1792, 60.6101], [11.1793, 60.61], [11.1793, 60.6099], [11.1795, 60.6099], [11.1796, 60.6098], [11.1798, 60.6097], [11.1799, 60.6095], [11.18, 60.6094], [11.1801, 60.6092], [11.1804, 60.6091], [11.1806, 60.6089], [11.1807, 60.6087], [11.1808, 60.6085], [11.1809, 60.6084], [11.181, 60.6083], [11.181, 60.6081], [11.181, 60.608], [11.1811, 60.6079], [11.1811, 60.6078], [11.1812, 60.6077], [11.1813, 60.6076], [11.1814, 60.6076], [11.1815, 60.6075], [11.1817, 60.6074], [11.1818, 60.6073], [11.1821, 60.6072], [11.1823, 60.6071], [11.1824, 60.6071], [11.1826, 60.607], [11.1828, 60.6069], [11.1829, 60.6068], [11.183, 60.6067], [11.1833, 60.6067], [11.1835, 60.6066], [11.1836, 60.6065], [11.1838, 60.6064], [11.1841, 60.6064], [11.1845, 60.6063], [11.1847, 60.6063], [11.185, 60.6061], [11.1851, 60.6061], [11.1853, 60.6061], [11.1854, 60.606], [11.1855, 60.606], [11.1858, 60.606], [11.1859, 60.6059], [11.1862, 60.6059], [11.1864, 60.6058], [11.1865, 60.6058], [11.1867, 60.6058], [11.1869, 60.6057], [11.1872, 60.6057], [11.1873, 60.6056], [11.1874, 60.6056], [11.1877, 60.6055], [11.1879, 60.6055], [11.1881, 60.6054], [11.1883, 60.6053], [11.1885, 60.6053], [11.1887, 60.6054], [11.1888, 60.6054], [11.1888, 60.6053], [11.1889, 60.6053], [11.189, 60.6053], [11.1889, 60.6052], [11.189, 60.6052], [11.1891, 60.6051], [11.1892, 60.6051], [11.1892, 60.605], [11.1893, 60.605], [11.1894, 60.6049], [11.1895, 60.6048], [11.1897, 60.6048], [11.1897, 60.6047], [11.1898, 60.6046], [11.1899, 60.6045], [11.1901, 60.6045], [11.1903, 60.6043], [11.1904, 60.6042], [11.1904, 60.5969], [11.1504, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "141", "sub_div_center": [60.616856, 11.150419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6169], [11.1504, 60.6369], [11.1529, 60.6369], [11.1529, 60.6368], [11.1529, 60.6366], [11.1529, 60.6365], [11.153, 60.6364], [11.1531, 60.6362], [11.1531, 60.6361], [11.1532, 60.636], [11.1535, 60.6357], [11.1537, 60.6354], [11.1539, 60.6352], [11.1542, 60.6348], [11.1543, 60.6346], [11.1544, 60.6345], [11.1545, 60.6344], [11.1547, 60.6344], [11.1548, 60.6344], [11.1548, 60.6343], [11.155, 60.6343], [11.1552, 60.6342], [11.1553, 60.634], [11.1555, 60.6339], [11.1556, 60.6337], [11.1558, 60.6335], [11.1559, 60.6334], [11.156, 60.6332], [11.1561, 60.633], [11.1561, 60.6329], [11.1562, 60.6328], [11.1562, 60.6327], [11.1563, 60.6326], [11.1564, 60.6325], [11.1565, 60.6323], [11.1567, 60.6322], [11.1567, 60.6321], [11.1568, 60.6319], [11.1568, 60.6318], [11.1568, 60.6317], [11.1567, 60.6316], [11.1568, 60.6315], [11.157, 60.6314], [11.1572, 60.6313], [11.1574, 60.6311], [11.1575, 60.631], [11.1575, 60.6308], [11.1576, 60.6306], [11.1576, 60.6305], [11.1577, 60.6303], [11.1577, 60.6302], [11.1577, 60.6301], [11.1577, 60.6299], [11.1576, 60.6298], [11.1575, 60.6296], [11.1574, 60.6295], [11.1574, 60.6294], [11.1574, 60.6294], [11.1574, 60.6293], [11.1573, 60.6292], [11.1573, 60.629], [11.1573, 60.6289], [11.1572, 60.6288], [11.157, 60.6287], [11.157, 60.6285], [11.1571, 60.6283], [11.1572, 60.6282], [11.1573, 60.6279], [11.1574, 60.6279], [11.1575, 60.6278], [11.1578, 60.6276], [11.1579, 60.6274], [11.158, 60.6273], [11.158, 60.6271], [11.1581, 60.627], [11.1581, 60.6269], [11.1582, 60.6269], [11.1583, 60.6268], [11.1584, 60.6267], [11.1585, 60.6266], [11.1585, 60.6265], [11.1586, 60.6265], [11.1587, 60.6264], [11.1588, 60.6263], [11.1588, 60.6262], [11.1589, 60.626], [11.1589, 60.6259], [11.159, 60.6258], [11.159, 60.6257], [11.1591, 60.6256], [11.1591, 60.6255], [11.1592, 60.6253], [11.1594, 60.6252], [11.1594, 60.625], [11.1594, 60.6248], [11.1594, 60.6247], [11.1595, 60.6246], [11.1594, 60.6246], [11.1595, 60.6246], [11.1596, 60.6244], [11.1597, 60.6243], [11.1597, 60.6242], [11.1598, 60.6241], [11.1598, 60.624], [11.16, 60.6238], [11.16, 60.6237], [11.1602, 60.6235], [11.1604, 60.6234], [11.1606, 60.6233], [11.1608, 60.6232], [11.1609, 60.6231], [11.1609, 60.623], [11.1609, 60.6228], [11.1609, 60.6227], [11.1611, 60.6225], [11.1611, 60.6224], [11.1612, 60.6223], [11.1613, 60.6222], [11.1614, 60.622], [11.1615, 60.6219], [11.1615, 60.6218], [11.1616, 60.6216], [11.1618, 60.6214], [11.1619, 60.6212], [11.162, 60.6211], [11.1619, 60.6209], [11.1617, 60.6209], [11.1617, 60.6208], [11.1618, 60.6207], [11.1618, 60.6207], [11.1619, 60.6206], [11.162, 60.6206], [11.1621, 60.6205], [11.162, 60.6205], [11.1622, 60.6204], [11.1621, 60.6203], [11.1623, 60.6203], [11.1622, 60.6202], [11.1623, 60.6202], [11.1623, 60.6201], [11.1623, 60.62], [11.1622, 60.6199], [11.1621, 60.6198], [11.1621, 60.6197], [11.1621, 60.6196], [11.1622, 60.6195], [11.1622, 60.6194], [11.1623, 60.6192], [11.1624, 60.6192], [11.1626, 60.6191], [11.1628, 60.619], [11.163, 60.6189], [11.1632, 60.6187], [11.1633, 60.6186], [11.1635, 60.6184], [11.1637, 60.6183], [11.164, 60.6181], [11.164, 60.618], [11.1642, 60.618], [11.1643, 60.6178], [11.1644, 60.6177], [11.1645, 60.6176], [11.1646, 60.6175], [11.1649, 60.6174], [11.1649, 60.6173], [11.165, 60.6172], [11.1651, 60.6171], [11.1651, 60.617], [11.1652, 60.6169], [11.1653, 60.6169], [11.1504, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "142", "sub_div_center": [60.636856, 11.150419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1504, 60.6369], [11.1504, 60.6494], [11.1504, 60.6494], [11.1505, 60.6494], [11.1505, 60.6493], [11.1505, 60.6492], [11.1506, 60.6491], [11.1506, 60.649], [11.1507, 60.6489], [11.1506, 60.6489], [11.1505, 60.6489], [11.1504, 60.6489], [11.1504, 60.6489], [11.1505, 60.6489], [11.1506, 60.6489], [11.1507, 60.6489], [11.1508, 60.6489], [11.1508, 60.6488], [11.1508, 60.6488], [11.1508, 60.6488], [11.1509, 60.6487], [11.1509, 60.6486], [11.1509, 60.6485], [11.1509, 60.6484], [11.1509, 60.6483], [11.1508, 60.6483], [11.1508, 60.6483], [11.1509, 60.6483], [11.1509, 60.6483], [11.1508, 60.6482], [11.1508, 60.6482], [11.1509, 60.6482], [11.1509, 60.6481], [11.1509, 60.648], [11.1509, 60.6479], [11.1509, 60.6479], [11.151, 60.6478], [11.151, 60.6478], [11.1509, 60.6477], [11.1509, 60.6477], [11.151, 60.6477], [11.151, 60.6477], [11.151, 60.6476], [11.151, 60.6476], [11.151, 60.6476], [11.151, 60.6475], [11.1511, 60.6475], [11.1511, 60.6473], [11.1512, 60.6472], [11.1513, 60.647], [11.1513, 60.6467], [11.1513, 60.6465], [11.1513, 60.6463], [11.1514, 60.6461], [11.1515, 60.646], [11.1516, 60.6459], [11.1516, 60.6458], [11.1517, 60.6456], [11.1517, 60.6455], [11.1517, 60.6454], [11.1518, 60.6452], [11.1519, 60.6451], [11.152, 60.6449], [11.152, 60.6447], [11.1521, 60.6445], [11.1521, 60.6443], [11.1521, 60.6442], [11.1522, 60.644], [11.1522, 60.6439], [11.1522, 60.6436], [11.1522, 60.6433], [11.1522, 60.6432], [11.1522, 60.643], [11.1522, 60.643], [11.1522, 60.6428], [11.1523, 60.6427], [11.1524, 60.6426], [11.1525, 60.6425], [11.1525, 60.6424], [11.1525, 60.6423], [11.1525, 60.6421], [11.1525, 60.6419], [11.1524, 60.6416], [11.1525, 60.6414], [11.1525, 60.6412], [11.1525, 60.6409], [11.1526, 60.6407], [11.1526, 60.6405], [11.1525, 60.6404], [11.1525, 60.6403], [11.1525, 60.6402], [11.1526, 60.64], [11.1526, 60.6397], [11.1526, 60.6395], [11.1527, 60.6393], [11.1528, 60.6391], [11.1528, 60.6389], [11.1528, 60.6388], [11.1529, 60.6386], [11.153, 60.6385], [11.1531, 60.6383], [11.1531, 60.6382], [11.1531, 60.638], [11.1531, 60.6378], [11.1531, 60.6377], [11.153, 60.6376], [11.153, 60.6374], [11.153, 60.6371], [11.1529, 60.6369], [11.1529, 60.6369], [11.1504, 60.6369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "143", "sub_div_center": [60.557727, 11.160261]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.1904, 60.5577], [11.1899, 60.558], [11.188, 60.5592], [11.1874, 60.5597], [11.187, 60.5598], [11.185, 60.5608], [11.1831, 60.5616], [11.1824, 60.562], [11.1814, 60.5628], [11.1806, 60.5632], [11.1798, 60.5637], [11.1778, 60.5649], [11.1771, 60.5651], [11.1766, 60.5652], [11.1759, 60.5653], [11.1747, 60.5655], [11.1741, 60.5657], [11.173, 60.5663], [11.172, 60.5669], [11.1719, 60.5669], [11.1717, 60.5671], [11.1715, 60.5673], [11.1697, 60.5686], [11.1694, 60.5689], [11.169, 60.5691], [11.1669, 60.57], [11.1662, 60.5704], [11.1657, 60.5709], [11.1656, 60.571], [11.1645, 60.5719], [11.1643, 60.5721], [11.1636, 60.5728], [11.1629, 60.5738], [11.1623, 60.5746], [11.1621, 60.5747], [11.1621, 60.5748], [11.1615, 60.5753], [11.1614, 60.5755], [11.1612, 60.5758], [11.1609, 60.5763], [11.1603, 60.5767], [11.1603, 60.5769], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "144", "sub_div_center": [60.476856, 11.161517]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1702, 60.4969], [11.1705, 60.4967], [11.171, 60.4967], [11.1714, 60.4967], [11.1717, 60.4968], [11.1718, 60.4969], [11.1744, 60.4969], [11.1745, 60.4968], [11.1747, 60.4968], [11.1752, 60.4968], [11.1754, 60.4968], [11.1755, 60.4969], [11.1904, 60.4969], [11.1904, 60.4769], [11.1705, 60.4769], [11.1703, 60.477], [11.1699, 60.4773], [11.1695, 60.4776], [11.1695, 60.4778], [11.1695, 60.4781], [11.1695, 60.4785], [11.1696, 60.4786], [11.17, 60.4788], [11.1705, 60.479], [11.1707, 60.4791], [11.1708, 60.4791], [11.171, 60.479], [11.1712, 60.4792], [11.1713, 60.4793], [11.1713, 60.4796], [11.1713, 60.4798], [11.1711, 60.4799], [11.1708, 60.48], [11.1707, 60.4801], [11.1705, 60.4803], [11.17, 60.4805], [11.1696, 60.4808], [11.1692, 60.481], [11.169, 60.4811], [11.169, 60.4812], [11.1689, 60.4814], [11.1686, 60.4817], [11.1684, 60.4819], [11.1684, 60.4824], [11.1683, 60.4825], [11.1682, 60.4827], [11.1681, 60.4828], [11.1681, 60.4832], [11.168, 60.4833], [11.1678, 60.4836], [11.1677, 60.4836], [11.1674, 60.4837], [11.167, 60.4837], [11.1666, 60.4836], [11.1661, 60.4836], [11.166, 60.4836], [11.1658, 60.4837], [11.1657, 60.484], [11.1658, 60.4842], [11.1659, 60.4845], [11.166, 60.4847], [11.166, 60.4848], [11.1658, 60.4849], [11.1657, 60.4851], [11.1657, 60.4853], [11.1657, 60.4855], [11.1656, 60.4856], [11.1654, 60.4857], [11.165, 60.4861], [11.165, 60.4862], [11.165, 60.4864], [11.165, 60.4865], [11.1648, 60.4868], [11.1646, 60.487], [11.1646, 60.487], [11.1649, 60.4871], [11.1649, 60.4872], [11.1648, 60.4874], [11.1646, 60.4877], [11.1644, 60.488], [11.164, 60.4883], [11.1639, 60.4884], [11.1635, 60.4885], [11.1633, 60.4885], [11.1631, 60.4887], [11.1631, 60.4888], [11.163, 60.4889], [11.1629, 60.4891], [11.1628, 60.4892], [11.163, 60.4894], [11.1632, 60.4895], [11.1633, 60.4895], [11.1633, 60.4897], [11.1632, 60.4898], [11.1632, 60.4899], [11.1632, 60.4899], [11.1633, 60.49], [11.1632, 60.4904], [11.163, 60.4906], [11.1627, 60.4909], [11.1623, 60.4911], [11.162, 60.4913], [11.1618, 60.4915], [11.1618, 60.4918], [11.1616, 60.492], [11.1616, 60.492], [11.1615, 60.4921], [11.1615, 60.4921], [11.1618, 60.4925], [11.1625, 60.4925], [11.1627, 60.4926], [11.1628, 60.4927], [11.1629, 60.4928], [11.1626, 60.493], [11.1627, 60.493], [11.1629, 60.4931], [11.1633, 60.4934], [11.1637, 60.4937], [11.1638, 60.494], [11.1639, 60.4942], [11.1639, 60.4944], [11.1641, 60.4945], [11.1645, 60.4946], [11.1648, 60.4946], [11.1649, 60.4946], [11.165, 60.4947], [11.1653, 60.4951], [11.1655, 60.4952], [11.1657, 60.4953], [11.1659, 60.4953], [11.166, 60.4953], [11.1661, 60.4953], [11.1661, 60.4949], [11.1661, 60.4949], [11.1663, 60.4948], [11.1667, 60.4948], [11.1667, 60.4948], [11.1668, 60.4947], [11.1668, 60.4944], [11.1669, 60.4942], [11.167, 60.494], [11.1672, 60.494], [11.1675, 60.4939], [11.1677, 60.4939], [11.1678, 60.494], [11.1681, 60.4944], [11.1681, 60.4946], [11.1681, 60.4948], [11.1681, 60.4949], [11.1676, 60.4951], [11.1675, 60.4952], [11.1676, 60.4952], [11.1678, 60.4953], [11.1682, 60.4953], [11.1683, 60.4953], [11.1685, 60.4954], [11.1685, 60.4955], [11.1684, 60.4956], [11.1679, 60.4958], [11.1677, 60.496], [11.1676, 60.4962], [11.1677, 60.4963], [11.1678, 60.4967], [11.1679, 60.4969], [11.1702, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "145", "sub_div_center": [60.496856, 11.167853]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1679, 60.4969], [11.1679, 60.497], [11.1679, 60.4971], [11.1681, 60.4972], [11.1685, 60.4972], [11.1691, 60.4973], [11.1693, 60.4973], [11.1695, 60.4972], [11.17, 60.4969], [11.1702, 60.4969], [11.1679, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "146", "sub_div_center": [60.459534, 11.16978]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.1904, 60.4595], [11.1904, 60.4595], [11.1903, 60.4598], [11.1901, 60.46], [11.1899, 60.4601], [11.1897, 60.4602], [11.1895, 60.4604], [11.1895, 60.4606], [11.1896, 60.4608], [11.1896, 60.4609], [11.1895, 60.4612], [11.1894, 60.4615], [11.1894, 60.4617], [11.1893, 60.462], [11.1894, 60.4621], [11.1894, 60.4622], [11.1893, 60.4623], [11.189, 60.4625], [11.1889, 60.4628], [11.1888, 60.4629], [11.1882, 60.463], [11.1881, 60.463], [11.188, 60.463], [11.1879, 60.4632], [11.1878, 60.4635], [11.1876, 60.4636], [11.1872, 60.4637], [11.1868, 60.464], [11.1863, 60.4642], [11.1859, 60.4645], [11.1857, 60.4646], [11.1855, 60.4647], [11.1854, 60.4647], [11.1848, 60.4651], [11.1844, 60.4654], [11.1841, 60.4657], [11.1838, 60.4659], [11.1837, 60.4659], [11.1838, 60.466], [11.1838, 60.4661], [11.1837, 60.4661], [11.1836, 60.4662], [11.183, 60.4665], [11.183, 60.4667], [11.1828, 60.4669], [11.1825, 60.467], [11.1821, 60.4672], [11.1819, 60.4673], [11.1815, 60.4675], [11.1812, 60.4678], [11.1811, 60.4679], [11.181, 60.468], [11.1805, 60.4683], [11.1802, 60.4685], [11.1798, 60.4688], [11.1797, 60.469], [11.1797, 60.4691], [11.1796, 60.4693], [11.1795, 60.4693], [11.1794, 60.4693], [11.1793, 60.4693], [11.1792, 60.4695], [11.1794, 60.4697], [11.1795, 60.4698], [11.1795, 60.4699], [11.1793, 60.4703], [11.1792, 60.4705], [11.1792, 60.4707], [11.1795, 60.471], [11.1797, 60.4712], [11.1797, 60.4716], [11.1797, 60.4719], [11.1795, 60.4721], [11.1795, 60.4723], [11.1793, 60.4726], [11.1791, 60.4732], [11.179, 60.4733], [11.1788, 60.4733], [11.1787, 60.4733], [11.1783, 60.4729], [11.1779, 60.4727], [11.1778, 60.4726], [11.1773, 60.4726], [11.1771, 60.4726], [11.1767, 60.4727], [11.1761, 60.4729], [11.1757, 60.473], [11.1752, 60.4733], [11.1748, 60.4735], [11.1744, 60.4738], [11.1739, 60.474], [11.1737, 60.4742], [11.1736, 60.4742], [11.1736, 60.4743], [11.1737, 60.4744], [11.1737, 60.4746], [11.1736, 60.4747], [11.1734, 60.4747], [11.1731, 60.4747], [11.1727, 60.4748], [11.1724, 60.4749], [11.172, 60.4751], [11.1716, 60.4753], [11.1713, 60.4754], [11.1712, 60.4755], [11.171, 60.4754], [11.1708, 60.4754], [11.1704, 60.4756], [11.1702, 60.4757], [11.1701, 60.476], [11.17, 60.4761], [11.1698, 60.4763], [11.1703, 60.4765], [11.1699, 60.4765], [11.1698, 60.4766], [11.1702, 60.4767], [11.1704, 60.4766], [11.1708, 60.4761], [11.171, 60.4761], [11.1705, 60.4768], [11.1705, 60.4769], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "147", "sub_div_center": [60.496856, 11.171759]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1718, 60.4969], [11.1722, 60.4971], [11.1725, 60.4971], [11.1728, 60.4971], [11.173, 60.4972], [11.1731, 60.4973], [11.1732, 60.4974], [11.1733, 60.4974], [11.1735, 60.4974], [11.1738, 60.4973], [11.1742, 60.497], [11.1744, 60.4969], [11.1718, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "148", "sub_div_center": [60.496856, 11.173286]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1755, 60.4969], [11.1756, 60.4969], [11.1757, 60.497], [11.1758, 60.4973], [11.1758, 60.498], [11.1758, 60.4981], [11.1755, 60.4983], [11.1747, 60.4989], [11.1745, 60.499], [11.1741, 60.4991], [11.1739, 60.4991], [11.1737, 60.4991], [11.1735, 60.4992], [11.1735, 60.4993], [11.1735, 60.4994], [11.1736, 60.4995], [11.1738, 60.4995], [11.174, 60.4995], [11.1742, 60.4995], [11.1744, 60.4996], [11.1745, 60.4997], [11.1745, 60.4997], [11.1744, 60.4998], [11.1742, 60.4999], [11.1741, 60.5], [11.174, 60.5], [11.1738, 60.4999], [11.1737, 60.4998], [11.1737, 60.4998], [11.1734, 60.4998], [11.1733, 60.4998], [11.1733, 60.5], [11.1733, 60.5], [11.1735, 60.5003], [11.1738, 60.501], [11.1743, 60.5013], [11.1749, 60.5013], [11.1753, 60.5013], [11.1755, 60.5014], [11.1757, 60.5017], [11.1759, 60.5017], [11.1763, 60.5018], [11.1768, 60.5021], [11.1769, 60.5022], [11.1774, 60.5022], [11.1777, 60.5023], [11.1778, 60.503], [11.1781, 60.5034], [11.1782, 60.5037], [11.1782, 60.5045], [11.1779, 60.505], [11.1779, 60.5054], [11.1785, 60.5065], [11.1786, 60.507], [11.1786, 60.5077], [11.1791, 60.5081], [11.1794, 60.5086], [11.1797, 60.5087], [11.1799, 60.5087], [11.1799, 60.5089], [11.1796, 60.5091], [11.1796, 60.5093], [11.1798, 60.5094], [11.1803, 60.5093], [11.1805, 60.5093], [11.1808, 60.5095], [11.1809, 60.5099], [11.1809, 60.5104], [11.1806, 60.5108], [11.1802, 60.5113], [11.1803, 60.5114], [11.1804, 60.5115], [11.1803, 60.5118], [11.1799, 60.5122], [11.1798, 60.5124], [11.18, 60.5125], [11.1805, 60.5125], [11.1813, 60.5122], [11.1818, 60.5119], [11.1823, 60.5118], [11.1826, 60.5117], [11.1827, 60.5113], [11.183, 60.5111], [11.1833, 60.5108], [11.1833, 60.5107], [11.1836, 60.5107], [11.184, 60.5104], [11.1842, 60.5102], [11.1844, 60.5101], [11.1846, 60.5101], [11.1852, 60.5102], [11.1858, 60.5102], [11.1861, 60.5101], [11.1861, 60.5098], [11.1863, 60.5096], [11.1865, 60.5096], [11.1868, 60.5096], [11.1875, 60.5097], [11.1885, 60.5098], [11.1889, 60.5099], [11.1903, 60.5107], [11.1904, 60.5108], [11.1904, 60.4969], [11.1755, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "149", "sub_div_center": [60.514111, 11.187842]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5169], [11.1904, 60.5141], [11.1903, 60.5142], [11.1898, 60.5146], [11.1894, 60.5155], [11.1892, 60.5157], [11.189, 60.516], [11.1885, 60.5165], [11.1882, 60.5166], [11.1879, 60.5168], [11.1878, 60.5169], [11.1904, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "150", "sub_div_center": [60.516856, 11.18635]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1878, 60.5169], [11.1868, 60.5171], [11.1866, 60.5173], [11.1864, 60.5183], [11.1865, 60.5185], [11.1868, 60.5187], [11.1877, 60.5189], [11.1878, 60.5192], [11.188, 60.5198], [11.1879, 60.52], [11.1874, 60.5201], [11.1868, 60.5201], [11.1865, 60.5203], [11.1865, 60.5207], [11.1866, 60.5209], [11.1866, 60.5216], [11.1864, 60.522], [11.1864, 60.5222], [11.1867, 60.5223], [11.1868, 60.5224], [11.1868, 60.5224], [11.1871, 60.5225], [11.1872, 60.5228], [11.1873, 60.5229], [11.1876, 60.523], [11.1879, 60.5231], [11.1881, 60.5233], [11.1882, 60.5234], [11.1885, 60.5236], [11.1884, 60.5239], [11.1882, 60.5242], [11.1877, 60.5244], [11.1877, 60.5248], [11.1879, 60.5251], [11.1878, 60.5253], [11.1876, 60.5256], [11.1876, 60.5259], [11.1877, 60.5262], [11.188, 60.5273], [11.1883, 60.5276], [11.1886, 60.5278], [11.1889, 60.528], [11.1901, 60.5286], [11.1899, 60.5287], [11.1894, 60.5287], [11.1895, 60.5289], [11.1897, 60.5291], [11.1902, 60.5298], [11.1904, 60.5301], [11.1904, 60.5169], [11.1878, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "151", "sub_div_center": [60.531544, 11.188434]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5315], [11.1904, 60.5316], [11.1903, 60.5317], [11.1904, 60.5321], [11.1902, 60.5325], [11.1899, 60.5329], [11.1891, 60.5331], [11.1887, 60.5337], [11.1887, 60.5348], [11.1884, 60.5359], [11.1885, 60.5367], [11.1886, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "152", "sub_div_center": [60.536856, 11.188626]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1886, 60.5369], [11.1889, 60.5373], [11.1898, 60.5386], [11.19, 60.5391], [11.1902, 60.5394], [11.1904, 60.5397], [11.1904, 60.5369], [11.1886, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "153", "sub_div_center": [60.456856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.2304, 60.4769], [11.2304, 60.4569], [11.1923, 60.4569], [11.1923, 60.4569], [11.1921, 60.4571], [11.192, 60.4575], [11.1917, 60.4579], [11.1913, 60.4585], [11.191, 60.4588], [11.1909, 60.459], [11.1907, 60.4593], [11.1904, 60.4595], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "154", "sub_div_center": [60.476856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4769], [11.1904, 60.4969], [11.2304, 60.4969], [11.2304, 60.4769], [11.1904, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "155", "sub_div_center": [60.496856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.4969], [11.1904, 60.5108], [11.1905, 60.5108], [11.1909, 60.5116], [11.191, 60.5117], [11.191, 60.5123], [11.1912, 60.5126], [11.1908, 60.5133], [11.1907, 60.5138], [11.1904, 60.5141], [11.1904, 60.5169], [11.2304, 60.5169], [11.2304, 60.4969], [11.1904, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "156", "sub_div_center": [60.516856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5169], [11.1904, 60.5301], [11.1904, 60.5301], [11.1907, 60.5308], [11.1906, 60.531], [11.1905, 60.5312], [11.1904, 60.5315], [11.1904, 60.5369], [11.2304, 60.5369], [11.2304, 60.5169], [11.1904, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "157", "sub_div_center": [60.536856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5397], [11.1905, 60.54], [11.1908, 60.5401], [11.191, 60.5402], [11.1912, 60.5403], [11.1919, 60.5404], [11.1924, 60.5406], [11.1931, 60.541], [11.1934, 60.5418], [11.1934, 60.5428], [11.1941, 60.5445], [11.1943, 60.545], [11.1946, 60.5456], [11.1947, 60.5463], [11.1944, 60.5472], [11.1945, 60.5476], [11.1946, 60.548], [11.1947, 60.5483], [11.1946, 60.5487], [11.1946, 60.5489], [11.1948, 60.549], [11.1948, 60.5494], [11.1949, 60.5498], [11.1949, 60.55], [11.1947, 60.5507], [11.1943, 60.5515], [11.194, 60.5526], [11.1939, 60.5537], [11.1943, 60.5543], [11.1942, 60.5545], [11.1938, 60.555], [11.1935, 60.5556], [11.1934, 60.5557], [11.1922, 60.5565], [11.1917, 60.5569], [11.2304, 60.5569], [11.2304, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "158", "sub_div_center": [60.556856, 11.191123]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5369], [11.1904, 60.5397], [11.1905, 60.54], [11.1908, 60.5401], [11.191, 60.5402], [11.1912, 60.5403], [11.1919, 60.5404], [11.1924, 60.5406], [11.1931, 60.541], [11.1934, 60.5418], [11.1934, 60.5428], [11.1941, 60.5445], [11.1943, 60.545], [11.1946, 60.5456], [11.1947, 60.5463], [11.1944, 60.5472], [11.1945, 60.5476], [11.1946, 60.548], [11.1947, 60.5483], [11.1946, 60.5487], [11.1946, 60.5489], [11.1948, 60.549], [11.1948, 60.5494], [11.1949, 60.5498], [11.1949, 60.55], [11.1947, 60.5507], [11.1943, 60.5515], [11.194, 60.5526], [11.1939, 60.5537], [11.1943, 60.5543], [11.1942, 60.5545], [11.1938, 60.555], [11.1935, 60.5556], [11.1934, 60.5557], [11.1922, 60.5565], [11.1917, 60.5569], [11.2304, 60.5569], [11.2304, 60.5369], [11.1904, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "159", "sub_div_center": [60.556856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.2304, 60.5769], [11.2304, 60.5569], [11.1917, 60.5569], [11.1911, 60.5574], [11.1904, 60.5577], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "160", "sub_div_center": [60.576856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5769], [11.1904, 60.5969], [11.1987, 60.5969], [11.1987, 60.5969], [11.1987, 60.5969], [11.1996, 60.5969], [11.1997, 60.5968], [11.1999, 60.5967], [11.1998, 60.5967], [11.1998, 60.5966], [11.1998, 60.5966], [11.1999, 60.5966], [11.2, 60.5965], [11.2002, 60.5966], [11.2002, 60.5966], [11.2002, 60.5966], [11.2004, 60.5966], [11.2003, 60.5967], [11.2002, 60.5968], [11.2002, 60.5969], [11.2024, 60.5969], [11.2025, 60.5968], [11.2027, 60.5968], [11.2028, 60.5967], [11.2027, 60.5966], [11.2029, 60.5965], [11.2029, 60.5964], [11.203, 60.5963], [11.2031, 60.5962], [11.2031, 60.5961], [11.2031, 60.596], [11.2032, 60.5958], [11.2035, 60.5956], [11.2039, 60.5952], [11.2041, 60.595], [11.2043, 60.595], [11.2045, 60.5949], [11.2047, 60.5949], [11.2048, 60.595], [11.2049, 60.5951], [11.2049, 60.5951], [11.2049, 60.5952], [11.205, 60.5952], [11.2053, 60.5951], [11.2053, 60.5952], [11.2054, 60.5952], [11.2056, 60.5952], [11.2057, 60.5952], [11.2058, 60.5952], [11.2061, 60.5951], [11.2062, 60.5951], [11.2063, 60.5951], [11.2065, 60.5951], [11.2066, 60.595], [11.2067, 60.595], [11.2068, 60.5948], [11.207, 60.5948], [11.207, 60.5947], [11.2071, 60.5947], [11.2072, 60.5948], [11.2073, 60.5948], [11.2074, 60.5947], [11.2075, 60.5946], [11.2077, 60.5945], [11.2078, 60.5945], [11.2078, 60.5944], [11.2079, 60.5943], [11.2081, 60.5942], [11.2081, 60.5941], [11.2082, 60.5939], [11.2082, 60.5938], [11.2083, 60.5938], [11.2084, 60.5937], [11.2083, 60.5936], [11.2082, 60.5935], [11.2081, 60.5935], [11.2082, 60.5934], [11.2081, 60.5932], [11.2082, 60.593], [11.2083, 60.5928], [11.2085, 60.5926], [11.2086, 60.5924], [11.2088, 60.5923], [11.209, 60.5922], [11.2089, 60.5921], [11.209, 60.592], [11.2091, 60.5919], [11.2092, 60.5919], [11.2093, 60.592], [11.2093, 60.5921], [11.2094, 60.5921], [11.2095, 60.5921], [11.2097, 60.592], [11.2096, 60.5919], [11.2096, 60.5918], [11.2096, 60.5917], [11.2094, 60.5915], [11.2094, 60.5914], [11.2095, 60.5914], [11.2095, 60.5912], [11.2096, 60.5912], [11.2096, 60.5911], [11.2097, 60.5909], [11.2097, 60.5908], [11.2097, 60.5906], [11.2098, 60.5905], [11.2098, 60.5903], [11.2098, 60.5902], [11.2099, 60.5901], [11.2099, 60.5899], [11.21, 60.5897], [11.21, 60.5895], [11.21, 60.5894], [11.2099, 60.5892], [11.2098, 60.5891], [11.2098, 60.589], [11.21, 60.5889], [11.2099, 60.5889], [11.2098, 60.5888], [11.2099, 60.5887], [11.2101, 60.5886], [11.2104, 60.5885], [11.2106, 60.5885], [11.2105, 60.5883], [11.2104, 60.5882], [11.2103, 60.5881], [11.2102, 60.588], [11.2102, 60.5878], [11.2104, 60.5875], [11.2106, 60.5872], [11.2109, 60.587], [11.2114, 60.5867], [11.2116, 60.5865], [11.2117, 60.5862], [11.212, 60.5859], [11.2123, 60.5858], [11.2125, 60.5858], [11.2131, 60.5852], [11.2139, 60.5846], [11.2143, 60.5843], [11.2147, 60.5842], [11.2149, 60.5842], [11.215, 60.5842], [11.2154, 60.5842], [11.2155, 60.5841], [11.2157, 60.584], [11.2157, 60.5837], [11.2157, 60.5836], [11.2158, 60.5835], [11.2159, 60.5834], [11.2162, 60.5835], [11.2165, 60.5835], [11.2168, 60.5835], [11.217, 60.5833], [11.2172, 60.5831], [11.2175, 60.5829], [11.2177, 60.5827], [11.2179, 60.5824], [11.218, 60.5823], [11.2182, 60.5822], [11.2186, 60.582], [11.2189, 60.5818], [11.2191, 60.5816], [11.2194, 60.5813], [11.2198, 60.5811], [11.2202, 60.5809], [11.2204, 60.5808], [11.2205, 60.5807], [11.2204, 60.5805], [11.2204, 60.5805], [11.2202, 60.5804], [11.22, 60.5804], [11.2199, 60.5803], [11.2198, 60.5802], [11.2197, 60.5801], [11.2198, 60.5798], [11.2199, 60.5797], [11.2201, 60.5797], [11.2202, 60.5797], [11.2204, 60.5795], [11.2205, 60.5795], [11.2206, 60.5796], [11.2208, 60.5796], [11.221, 60.5795], [11.2211, 60.5795], [11.2212, 60.5794], [11.2215, 60.5794], [11.2217, 60.5795], [11.2219, 60.5795], [11.222, 60.5794], [11.2222, 60.5794], [11.2226, 60.5794], [11.2228, 60.5793], [11.2229, 60.5794], [11.2233, 60.5796], [11.2234, 60.5798], [11.2238, 60.58], [11.224, 60.5802], [11.224, 60.5804], [11.2241, 60.5806], [11.2241, 60.5807], [11.2241, 60.581], [11.2242, 60.5814], [11.2242, 60.5816], [11.2242, 60.5817], [11.2242, 60.5819], [11.2242, 60.5821], [11.2241, 60.5823], [11.224, 60.5823], [11.224, 60.5825], [11.2241, 60.5827], [11.2241, 60.5829], [11.224, 60.583], [11.2242, 60.5831], [11.2244, 60.5832], [11.2245, 60.5833], [11.2246, 60.5834], [11.2248, 60.5836], [11.2249, 60.5837], [11.225, 60.5838], [11.2253, 60.5841], [11.2254, 60.5841], [11.2258, 60.5842], [11.2259, 60.5843], [11.2261, 60.5842], [11.2262, 60.5842], [11.2263, 60.5841], [11.2264, 60.5841], [11.2266, 60.5841], [11.2266, 60.5843], [11.2268, 60.5844], [11.227, 60.5845], [11.2274, 60.5845], [11.2277, 60.5846], [11.2279, 60.5846], [11.2281, 60.5846], [11.2282, 60.5847], [11.2284, 60.5849], [11.2285, 60.585], [11.2286, 60.5852], [11.2287, 60.5854], [11.2288, 60.5856], [11.2287, 60.5857], [11.2286, 60.5859], [11.2284, 60.5861], [11.2283, 60.5862], [11.2283, 60.5863], [11.2282, 60.5864], [11.2281, 60.5865], [11.2281, 60.5866], [11.2281, 60.5868], [11.2282, 60.5869], [11.2282, 60.5871], [11.2283, 60.5873], [11.2284, 60.5874], [11.2285, 60.5875], [11.2286, 60.5876], [11.2286, 60.5878], [11.2286, 60.5879], [11.2288, 60.588], [11.229, 60.5881], [11.2291, 60.5882], [11.2292, 60.5884], [11.2293, 60.5885], [11.2292, 60.5887], [11.229, 60.5889], [11.2287, 60.5891], [11.2285, 60.5892], [11.2284, 60.5894], [11.2286, 60.5895], [11.2287, 60.5896], [11.2289, 60.5896], [11.2288, 60.5898], [11.2288, 60.5899], [11.2288, 60.59], [11.2288, 60.5902], [11.229, 60.5903], [11.2295, 60.5904], [11.2298, 60.5904], [11.2301, 60.5903], [11.2304, 60.5904], [11.2304, 60.5903], [11.2304, 60.5769], [11.1904, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "161", "sub_div_center": [60.596856, 11.190419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1904, 60.5969], [11.1904, 60.6042], [11.1905, 60.6041], [11.1906, 60.604], [11.1907, 60.604], [11.1908, 60.6039], [11.1909, 60.6038], [11.1911, 60.6037], [11.1912, 60.6037], [11.1912, 60.6036], [11.1914, 60.6036], [11.1914, 60.6036], [11.1914, 60.6037], [11.1914, 60.6037], [11.1914, 60.6038], [11.1914, 60.6038], [11.1913, 60.6039], [11.1914, 60.6039], [11.1914, 60.604], [11.1913, 60.604], [11.1912, 60.6041], [11.191, 60.6042], [11.1909, 60.6043], [11.1911, 60.6043], [11.1911, 60.6043], [11.1909, 60.6044], [11.1907, 60.6046], [11.1906, 60.6047], [11.1906, 60.6048], [11.1906, 60.6049], [11.1906, 60.605], [11.1908, 60.6052], [11.1908, 60.6052], [11.1911, 60.6054], [11.1912, 60.6054], [11.1913, 60.6054], [11.1913, 60.6053], [11.1914, 60.6053], [11.1913, 60.6053], [11.1913, 60.6053], [11.1914, 60.6053], [11.1915, 60.6053], [11.1916, 60.6053], [11.1917, 60.6053], [11.1915, 60.6054], [11.1915, 60.6054], [11.1917, 60.6055], [11.192, 60.6055], [11.1922, 60.6055], [11.1924, 60.6055], [11.1927, 60.6055], [11.1929, 60.6054], [11.193, 60.6054], [11.1932, 60.6053], [11.1934, 60.6053], [11.1935, 60.6052], [11.1937, 60.6051], [11.1939, 60.6051], [11.1941, 60.6051], [11.1943, 60.6051], [11.1945, 60.605], [11.1946, 60.6051], [11.1948, 60.6051], [11.195, 60.6052], [11.1952, 60.6051], [11.1954, 60.6051], [11.1955, 60.6052], [11.1957, 60.6052], [11.1958, 60.6053], [11.196, 60.6052], [11.1963, 60.6052], [11.1964, 60.6053], [11.1966, 60.6052], [11.1967, 60.6052], [11.1969, 60.6052], [11.1973, 60.6052], [11.1974, 60.6052], [11.1974, 60.6053], [11.1974, 60.6054], [11.1975, 60.6054], [11.1976, 60.6055], [11.1975, 60.6056], [11.1976, 60.6056], [11.1977, 60.6057], [11.1977, 60.6058], [11.1977, 60.6058], [11.1979, 60.6059], [11.198, 60.606], [11.1982, 60.606], [11.1984, 60.606], [11.1985, 60.606], [11.1985, 60.606], [11.1985, 60.606], [11.1986, 60.606], [11.1988, 60.606], [11.1989, 60.606], [11.199, 60.606], [11.1993, 60.6059], [11.1996, 60.6059], [11.1997, 60.6058], [11.2, 60.6058], [11.2002, 60.6058], [11.2004, 60.6058], [11.2005, 60.6057], [11.2006, 60.6057], [11.2008, 60.6055], [11.2009, 60.6054], [11.2009, 60.6053], [11.2009, 60.605], [11.2008, 60.6049], [11.2007, 60.6047], [11.2006, 60.6046], [11.2005, 60.6046], [11.2004, 60.6045], [11.2004, 60.6045], [11.2002, 60.6044], [11.2001, 60.6044], [11.2002, 60.6043], [11.2003, 60.6042], [11.2002, 60.604], [11.2001, 60.604], [11.2001, 60.6039], [11.2002, 60.6039], [11.2002, 60.6038], [11.2002, 60.6038], [11.2002, 60.6037], [11.2003, 60.6036], [11.2002, 60.6035], [11.2001, 60.6034], [11.2001, 60.6033], [11.2001, 60.6031], [11.2002, 60.603], [11.2002, 60.6029], [11.2002, 60.6029], [11.2002, 60.6028], [11.2002, 60.6027], [11.2001, 60.6027], [11.2002, 60.6026], [11.2004, 60.6025], [11.2005, 60.6024], [11.2005, 60.6023], [11.2004, 60.6021], [11.2004, 60.6019], [11.2004, 60.6019], [11.2001, 60.6019], [11.2001, 60.6018], [11.2003, 60.6017], [11.2005, 60.6017], [11.2006, 60.6017], [11.2007, 60.6016], [11.2007, 60.6015], [11.2005, 60.6014], [11.2005, 60.6013], [11.2005, 60.6012], [11.2003, 60.6011], [11.2003, 60.601], [11.2002, 60.6008], [11.2001, 60.6007], [11.2002, 60.6005], [11.2002, 60.6004], [11.2002, 60.6003], [11.2, 60.6001], [11.1998, 60.6001], [11.1996, 60.6001], [11.1994, 60.6], [11.1993, 60.5999], [11.1992, 60.5999], [11.1991, 60.5997], [11.1991, 60.5996], [11.199, 60.5994], [11.1989, 60.5994], [11.1989, 60.5992], [11.199, 60.5991], [11.1991, 60.599], [11.1989, 60.599], [11.1988, 60.5991], [11.1986, 60.599], [11.1985, 60.5989], [11.1984, 60.5988], [11.1983, 60.5987], [11.1984, 60.5987], [11.1983, 60.5986], [11.1982, 60.5985], [11.1981, 60.5984], [11.1981, 60.5983], [11.198, 60.5982], [11.198, 60.5981], [11.1982, 60.598], [11.1984, 60.5979], [11.1985, 60.5978], [11.1984, 60.5977], [11.1983, 60.5976], [11.1983, 60.5975], [11.1984, 60.5975], [11.1983, 60.5975], [11.1983, 60.5974], [11.1984, 60.5974], [11.1986, 60.5973], [11.1987, 60.5973], [11.1988, 60.5973], [11.1986, 60.5972], [11.1986, 60.5972], [11.1987, 60.5972], [11.1988, 60.5971], [11.1985, 60.5971], [11.1987, 60.5969], [11.1904, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "162", "sub_div_center": [60.436856, 11.192276]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4569], [11.2304, 60.4369], [11.1966, 60.4369], [11.1966, 60.4372], [11.1968, 60.4377], [11.1968, 60.4401], [11.197, 60.4403], [11.1977, 60.4409], [11.1978, 60.4412], [11.1974, 60.4423], [11.1973, 60.4432], [11.1972, 60.4443], [11.1972, 60.4444], [11.1971, 60.4449], [11.1971, 60.4449], [11.1974, 60.4454], [11.1974, 60.4456], [11.1974, 60.4458], [11.197, 60.4461], [11.1969, 60.4463], [11.1968, 60.4467], [11.1961, 60.4481], [11.196, 60.4486], [11.1959, 60.4491], [11.1956, 60.4495], [11.1954, 60.45], [11.1951, 60.4508], [11.1951, 60.4513], [11.195, 60.4515], [11.1949, 60.4517], [11.195, 60.4524], [11.195, 60.4528], [11.1949, 60.453], [11.1948, 60.4532], [11.1946, 60.4535], [11.1939, 60.4542], [11.1935, 60.4549], [11.1929, 60.4555], [11.1924, 60.4563], [11.1923, 60.4569], [11.2304, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "163", "sub_div_center": [60.398055, 11.196474]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2304, 60.3981], [11.2304, 60.3981], [11.2301, 60.3982], [11.2296, 60.3983], [11.2291, 60.3982], [11.2286, 60.3981], [11.2282, 60.3981], [11.2275, 60.3981], [11.2274, 60.3981], [11.2267, 60.3981], [11.2261, 60.3983], [11.2257, 60.3983], [11.225, 60.3984], [11.2243, 60.3984], [11.2237, 60.3984], [11.2215, 60.3985], [11.2208, 60.3985], [11.2207, 60.3985], [11.2207, 60.3985], [11.2201, 60.3986], [11.2198, 60.3986], [11.2191, 60.3987], [11.2184, 60.3986], [11.2183, 60.3986], [11.2164, 60.3987], [11.2144, 60.3987], [11.2134, 60.3988], [11.2126, 60.399], [11.2106, 60.3994], [11.2089, 60.3999], [11.2086, 60.4], [11.2081, 60.4002], [11.2076, 60.4004], [11.2067, 60.4008], [11.2063, 60.4012], [11.2063, 60.4021], [11.2065, 60.4023], [11.2064, 60.4027], [11.2059, 60.4033], [11.2054, 60.4037], [11.2044, 60.4048], [11.2041, 60.4055], [11.2042, 60.4058], [11.2044, 60.406], [11.2048, 60.4061], [11.205, 60.4064], [11.2052, 60.4069], [11.2054, 60.4073], [11.2054, 60.4076], [11.2051, 60.4083], [11.2051, 60.4085], [11.2053, 60.4085], [11.2055, 60.4083], [11.2057, 60.4083], [11.2056, 60.4085], [11.2051, 60.409], [11.2049, 60.4094], [11.205, 60.4097], [11.2047, 60.4102], [11.2046, 60.4105], [11.2041, 60.4109], [11.204, 60.4112], [11.204, 60.4114], [11.2042, 60.4118], [11.2042, 60.4122], [11.2041, 60.4123], [11.204, 60.4125], [11.2035, 60.413], [11.2021, 60.4135], [11.2012, 60.4137], [11.2003, 60.4139], [11.2, 60.4141], [11.1999, 60.4142], [11.1993, 60.4144], [11.1986, 60.4147], [11.1978, 60.4149], [11.1974, 60.4151], [11.1972, 60.4153], [11.197, 60.4156], [11.1965, 60.416], [11.1966, 60.4164], [11.1965, 60.4165], [11.1966, 60.4169], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "164", "sub_div_center": [60.416856, 11.194886]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1966, 60.4169], [11.1966, 60.4171], [11.1968, 60.4173], [11.1971, 60.4173], [11.1969, 60.4175], [11.1968, 60.418], [11.1962, 60.4193], [11.1962, 60.4197], [11.1956, 60.4206], [11.1955, 60.4208], [11.1953, 60.4214], [11.1953, 60.4216], [11.195, 60.4222], [11.195, 60.4226], [11.1949, 60.4235], [11.1953, 60.4243], [11.1953, 60.4248], [11.1955, 60.425], [11.1952, 60.4253], [11.1957, 60.4272], [11.1959, 60.4277], [11.196, 60.4279], [11.1961, 60.4287], [11.1965, 60.4293], [11.1968, 60.4303], [11.197, 60.4308], [11.1971, 60.4315], [11.1973, 60.432], [11.1974, 60.4332], [11.1974, 60.4339], [11.1973, 60.4344], [11.1973, 60.4356], [11.197, 60.4359], [11.1968, 60.4365], [11.1966, 60.4367], [11.1966, 60.4369], [11.2304, 60.4369], [11.2304, 60.4169], [11.1966, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "165", "sub_div_center": [60.596856, 11.198655]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1966, 60.4169], [11.1966, 60.4171], [11.1968, 60.4173], [11.1971, 60.4173], [11.1969, 60.4175], [11.1968, 60.418], [11.1962, 60.4193], [11.1962, 60.4197], [11.1956, 60.4206], [11.1955, 60.4208], [11.1953, 60.4214], [11.1953, 60.4216], [11.195, 60.4222], [11.195, 60.4226], [11.1949, 60.4235], [11.1953, 60.4243], [11.1953, 60.4248], [11.1955, 60.425], [11.1952, 60.4253], [11.1957, 60.4272], [11.1959, 60.4277], [11.196, 60.4279], [11.1961, 60.4287], [11.1965, 60.4293], [11.1968, 60.4303], [11.197, 60.4308], [11.1971, 60.4315], [11.1973, 60.432], [11.1974, 60.4332], [11.1974, 60.4339], [11.1973, 60.4344], [11.1973, 60.4356], [11.197, 60.4359], [11.1968, 60.4365], [11.1966, 60.4367], [11.1966, 60.4369], [11.2304, 60.4369], [11.2304, 60.4169], [11.1966, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "166", "sub_div_center": [60.596856, 11.198657]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1987, 60.5969], [11.1988, 60.5969], [11.1987, 60.597], [11.1988, 60.597], [11.199, 60.597], [11.1992, 60.597], [11.1992, 60.597], [11.1993, 60.597], [11.1996, 60.5969], [11.1996, 60.5969], [11.1987, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "167", "sub_div_center": [60.596856, 11.200229]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2002, 60.5969], [11.2002, 60.5969], [11.2002, 60.597], [11.2002, 60.597], [11.2004, 60.5971], [11.2004, 60.5972], [11.2006, 60.5972], [11.2007, 60.5973], [11.2008, 60.5974], [11.2007, 60.5974], [11.2008, 60.5975], [11.2008, 60.5976], [11.2007, 60.5978], [11.2008, 60.5978], [11.2009, 60.5979], [11.201, 60.5978], [11.2011, 60.5978], [11.201, 60.5977], [11.201, 60.5976], [11.2011, 60.5975], [11.2011, 60.5975], [11.2012, 60.5974], [11.2014, 60.5974], [11.2014, 60.5974], [11.2014, 60.5973], [11.2014, 60.5973], [11.2014, 60.5972], [11.2015, 60.5972], [11.2015, 60.5972], [11.2016, 60.5971], [11.2017, 60.5971], [11.2017, 60.5971], [11.2018, 60.5971], [11.2019, 60.597], [11.202, 60.597], [11.2021, 60.5971], [11.2022, 60.597], [11.2023, 60.5969], [11.2024, 60.5969], [11.2002, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "168", "sub_div_center": [60.396856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2377, 60.4169], [11.2378, 60.4165], [11.2375, 60.4162], [11.2374, 60.4158], [11.2376, 60.4155], [11.2378, 60.4153], [11.2379, 60.4151], [11.2378, 60.4149], [11.2377, 60.4146], [11.2378, 60.4143], [11.2378, 60.4135], [11.2378, 60.4128], [11.2378, 60.4125], [11.2379, 60.4119], [11.2377, 60.4112], [11.2375, 60.4104], [11.2372, 60.4097], [11.2369, 60.4091], [11.2365, 60.4083], [11.2363, 60.4078], [11.2362, 60.4073], [11.236, 60.4067], [11.236, 60.4066], [11.2358, 60.4059], [11.2358, 60.4053], [11.2358, 60.4052], [11.2357, 60.4046], [11.2355, 60.404], [11.2355, 60.4036], [11.2355, 60.4031], [11.2353, 60.4027], [11.2349, 60.4023], [11.2347, 60.402], [11.2345, 60.4016], [11.2344, 60.4014], [11.2345, 60.4013], [11.2349, 60.4012], [11.2354, 60.4011], [11.2361, 60.4011], [11.2365, 60.4011], [11.2368, 60.4009], [11.2368, 60.4006], [11.2366, 60.4001], [11.2366, 60.3999], [11.2362, 60.3993], [11.2362, 60.3991], [11.2363, 60.3989], [11.2362, 60.3986], [11.2361, 60.3983], [11.2368, 60.3981], [11.2359, 60.3974], [11.2348, 60.3969], [11.2345, 60.3969], [11.2343, 60.397], [11.234, 60.3972], [11.2338, 60.3973], [11.2335, 60.3974], [11.2329, 60.3975], [11.2323, 60.3976], [11.2319, 60.3976], [11.2316, 60.3977], [11.2314, 60.3977], [11.2309, 60.3979], [11.2305, 60.3981], [11.2304, 60.3981], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "169", "sub_div_center": [60.416856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4169], [11.2304, 60.4369], [11.2366, 60.4369], [11.2365, 60.4365], [11.2361, 60.4362], [11.2359, 60.4359], [11.2357, 60.4357], [11.2357, 60.4354], [11.2359, 60.4352], [11.2366, 60.435], [11.2375, 60.4345], [11.2379, 60.4343], [11.2382, 60.4338], [11.2385, 60.4335], [11.2387, 60.4331], [11.2387, 60.4328], [11.2385, 60.4327], [11.2383, 60.4326], [11.2382, 60.4321], [11.2388, 60.4309], [11.2386, 60.4304], [11.2385, 60.43], [11.2386, 60.4299], [11.2386, 60.4297], [11.2381, 60.4295], [11.2381, 60.4293], [11.2385, 60.4289], [11.2384, 60.4285], [11.2384, 60.4282], [11.2385, 60.428], [11.2389, 60.4276], [11.2391, 60.4268], [11.2391, 60.4263], [11.2391, 60.4262], [11.239, 60.4259], [11.2388, 60.4257], [11.2388, 60.4256], [11.2384, 60.4253], [11.238, 60.4251], [11.2375, 60.4252], [11.2368, 60.4251], [11.2364, 60.4249], [11.2363, 60.4245], [11.2361, 60.4233], [11.2361, 60.4226], [11.2362, 60.4224], [11.2362, 60.4223], [11.2369, 60.4218], [11.2372, 60.4214], [11.2373, 60.4211], [11.2372, 60.4206], [11.2372, 60.4205], [11.2375, 60.4199], [11.2384, 60.419], [11.2384, 60.419], [11.2385, 60.4187], [11.2384, 60.4186], [11.2382, 60.4185], [11.2379, 60.4183], [11.2379, 60.4178], [11.2377, 60.4176], [11.2376, 60.4173], [11.2377, 60.4169], [11.2304, 60.4169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "170", "sub_div_center": [60.436856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4369], [11.2304, 60.4569], [11.2379, 60.4569], [11.2378, 60.4568], [11.2379, 60.4566], [11.2381, 60.4563], [11.2381, 60.4562], [11.2382, 60.456], [11.2383, 60.4558], [11.2382, 60.4554], [11.2383, 60.4551], [11.2384, 60.4547], [11.2384, 60.4547], [11.2383, 60.4547], [11.2383, 60.4546], [11.2384, 60.4545], [11.2385, 60.4543], [11.2386, 60.4543], [11.2387, 60.4543], [11.2387, 60.4538], [11.2387, 60.4536], [11.2385, 60.4535], [11.2383, 60.4533], [11.2383, 60.4532], [11.2384, 60.4529], [11.2386, 60.4528], [11.2388, 60.4525], [11.239, 60.4524], [11.2389, 60.4523], [11.2389, 60.4521], [11.2392, 60.4519], [11.2393, 60.4517], [11.2395, 60.4515], [11.2397, 60.4513], [11.2401, 60.4511], [11.2404, 60.4508], [11.2408, 60.4505], [11.2409, 60.4503], [11.2411, 60.4501], [11.2413, 60.4498], [11.2414, 60.4494], [11.2414, 60.4492], [11.2413, 60.4491], [11.2413, 60.449], [11.241, 60.4481], [11.2407, 60.4477], [11.2406, 60.4473], [11.2405, 60.4472], [11.2401, 60.4468], [11.24, 60.4467], [11.24, 60.4462], [11.24, 60.4461], [11.24, 60.446], [11.2402, 60.4459], [11.2404, 60.4457], [11.2404, 60.4457], [11.2404, 60.4456], [11.2404, 60.4452], [11.2402, 60.4447], [11.2401, 60.4442], [11.2401, 60.4438], [11.2402, 60.4436], [11.2403, 60.4433], [11.24, 60.443], [11.2396, 60.443], [11.2392, 60.4428], [11.2393, 60.4425], [11.2396, 60.4418], [11.2402, 60.4412], [11.24, 60.4405], [11.2403, 60.4401], [11.2403, 60.4399], [11.2401, 60.4396], [11.2395, 60.4392], [11.2393, 60.4391], [11.2391, 60.439], [11.239, 60.4387], [11.2386, 60.4385], [11.2386, 60.4382], [11.2384, 60.438], [11.2379, 60.4378], [11.2377, 60.4374], [11.2373, 60.4373], [11.2372, 60.4371], [11.2371, 60.437], [11.2368, 60.4369], [11.2366, 60.4369], [11.2366, 60.4369], [11.2304, 60.4369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "171", "sub_div_center": [60.456856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4569], [11.2304, 60.4769], [11.2381, 60.4769], [11.2382, 60.4768], [11.2383, 60.4766], [11.2386, 60.4764], [11.2388, 60.4762], [11.2389, 60.4761], [11.2389, 60.476], [11.2389, 60.476], [11.2388, 60.4758], [11.2389, 60.4756], [11.239, 60.4755], [11.2391, 60.4754], [11.2393, 60.4754], [11.2394, 60.4753], [11.2394, 60.4752], [11.2394, 60.4749], [11.2394, 60.4747], [11.2394, 60.4744], [11.2393, 60.4743], [11.239, 60.4742], [11.2389, 60.4741], [11.2389, 60.4739], [11.2388, 60.4738], [11.2385, 60.4738], [11.2384, 60.4738], [11.2382, 60.4737], [11.2381, 60.4735], [11.238, 60.4734], [11.2379, 60.4733], [11.2378, 60.473], [11.2379, 60.4729], [11.238, 60.4728], [11.2379, 60.4727], [11.2376, 60.4725], [11.2375, 60.4725], [11.2372, 60.4725], [11.2371, 60.4724], [11.2371, 60.4723], [11.2373, 60.472], [11.2375, 60.4719], [11.2376, 60.4718], [11.2378, 60.4719], [11.2379, 60.4719], [11.238, 60.4719], [11.2385, 60.4721], [11.2387, 60.4721], [11.2393, 60.472], [11.2393, 60.4719], [11.2394, 60.4719], [11.2393, 60.4717], [11.2393, 60.4713], [11.2393, 60.4712], [11.2392, 60.4712], [11.239, 60.4712], [11.2387, 60.4713], [11.2383, 60.4712], [11.2381, 60.4712], [11.2379, 60.4712], [11.2377, 60.4712], [11.2377, 60.4711], [11.2377, 60.4708], [11.2378, 60.4707], [11.2382, 60.4705], [11.2384, 60.4704], [11.2385, 60.4703], [11.2387, 60.47], [11.2389, 60.4698], [11.2391, 60.4696], [11.2391, 60.4695], [11.2391, 60.4691], [11.2391, 60.4688], [11.239, 60.4684], [11.239, 60.4681], [11.2387, 60.468], [11.2387, 60.4679], [11.2388, 60.4678], [11.2393, 60.4675], [11.2394, 60.4674], [11.2393, 60.4671], [11.2393, 60.4668], [11.2394, 60.4665], [11.2395, 60.4662], [11.2402, 60.4656], [11.2402, 60.4655], [11.2402, 60.4652], [11.2402, 60.4648], [11.2404, 60.4645], [11.2405, 60.4644], [11.2408, 60.4642], [11.241, 60.464], [11.2411, 60.4639], [11.2412, 60.4638], [11.2411, 60.4636], [11.2411, 60.4636], [11.2407, 60.4636], [11.2406, 60.4635], [11.2406, 60.4634], [11.2408, 60.4631], [11.241, 60.4627], [11.241, 60.4625], [11.241, 60.4619], [11.241, 60.4618], [11.2409, 60.4618], [11.2406, 60.4616], [11.2404, 60.4614], [11.2402, 60.4612], [11.2401, 60.4612], [11.2401, 60.4608], [11.2399, 60.4606], [11.2396, 60.4605], [11.2394, 60.4605], [11.2387, 60.4605], [11.2385, 60.4604], [11.2383, 60.4603], [11.2382, 60.46], [11.2381, 60.4599], [11.2382, 60.4595], [11.2382, 60.4592], [11.2381, 60.459], [11.238, 60.459], [11.238, 60.4586], [11.238, 60.4583], [11.2379, 60.458], [11.2379, 60.4579], [11.2378, 60.4579], [11.2377, 60.4578], [11.2378, 60.4575], [11.238, 60.4571], [11.2379, 60.4569], [11.2304, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "172", "sub_div_center": [60.476856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4769], [11.2304, 60.4969], [11.2319, 60.4969], [11.2318, 60.4968], [11.2316, 60.4963], [11.2314, 60.4955], [11.2314, 60.4952], [11.2314, 60.495], [11.2315, 60.4947], [11.2314, 60.4943], [11.2314, 60.494], [11.2313, 60.4935], [11.2314, 60.4932], [11.2314, 60.4927], [11.2314, 60.4922], [11.2316, 60.4916], [11.2318, 60.4912], [11.2319, 60.4907], [11.232, 60.4904], [11.2321, 60.4899], [11.2323, 60.4895], [11.2325, 60.4889], [11.2328, 60.4884], [11.2329, 60.4881], [11.2333, 60.4874], [11.2338, 60.4866], [11.2342, 60.4861], [11.2343, 60.4859], [11.2346, 60.4856], [11.2347, 60.4854], [11.2348, 60.4853], [11.235, 60.4851], [11.2352, 60.4848], [11.2355, 60.4844], [11.2355, 60.4844], [11.2354, 60.4843], [11.2352, 60.4841], [11.2351, 60.4841], [11.2349, 60.4839], [11.2342, 60.484], [11.2341, 60.484], [11.234, 60.4838], [11.2341, 60.4833], [11.2342, 60.483], [11.2343, 60.4827], [11.2344, 60.4825], [11.2346, 60.4824], [11.2352, 60.4822], [11.2357, 60.4819], [11.2357, 60.4819], [11.2358, 60.4818], [11.2358, 60.4815], [11.236, 60.4813], [11.236, 60.4809], [11.2361, 60.4805], [11.236, 60.4804], [11.236, 60.4802], [11.2361, 60.4799], [11.2362, 60.4797], [11.2364, 60.4795], [11.2367, 60.4793], [11.2367, 60.4793], [11.2368, 60.4789], [11.2369, 60.4787], [11.2372, 60.4786], [11.2375, 60.4784], [11.2378, 60.478], [11.2379, 60.4777], [11.2381, 60.4775], [11.2382, 60.4773], [11.2381, 60.4772], [11.238, 60.4771], [11.2381, 60.4769], [11.2304, 60.4769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "173", "sub_div_center": [60.496856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.4969], [11.2304, 60.5169], [11.2414, 60.5169], [11.2414, 60.5168], [11.2416, 60.5166], [11.2417, 60.5165], [11.2417, 60.5165], [11.2418, 60.5163], [11.2418, 60.5162], [11.2418, 60.5162], [11.2419, 60.5161], [11.2419, 60.5161], [11.2419, 60.5159], [11.242, 60.5156], [11.2419, 60.5156], [11.2418, 60.5156], [11.2417, 60.5155], [11.2417, 60.5155], [11.2417, 60.5154], [11.2418, 60.5153], [11.2417, 60.5153], [11.2418, 60.5153], [11.2418, 60.5152], [11.2416, 60.5152], [11.2417, 60.5151], [11.2418, 60.515], [11.2417, 60.515], [11.2418, 60.5149], [11.2418, 60.5148], [11.2419, 60.5148], [11.2419, 60.5148], [11.2419, 60.5147], [11.2418, 60.5147], [11.2419, 60.5145], [11.242, 60.5144], [11.2421, 60.5142], [11.2421, 60.5138], [11.2421, 60.5137], [11.242, 60.5136], [11.242, 60.5135], [11.242, 60.5134], [11.2421, 60.5133], [11.242, 60.5132], [11.242, 60.5132], [11.2419, 60.5132], [11.2419, 60.5132], [11.2419, 60.5131], [11.2419, 60.5131], [11.2418, 60.5131], [11.2418, 60.513], [11.2417, 60.5131], [11.2417, 60.513], [11.2417, 60.513], [11.2416, 60.513], [11.2415, 60.513], [11.2415, 60.5129], [11.2415, 60.5129], [11.2415, 60.5129], [11.2415, 60.5128], [11.2416, 60.5128], [11.2415, 60.5127], [11.2414, 60.5127], [11.2413, 60.5127], [11.2414, 60.5127], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5127], [11.2414, 60.5127], [11.2415, 60.5127], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5126], [11.2414, 60.5125], [11.2414, 60.5124], [11.2414, 60.5124], [11.2414, 60.5124], [11.2415, 60.5123], [11.2415, 60.5123], [11.2415, 60.5123], [11.2415, 60.5122], [11.2415, 60.5122], [11.2414, 60.5121], [11.2415, 60.5121], [11.2416, 60.512], [11.2416, 60.5119], [11.2416, 60.5119], [11.2416, 60.5118], [11.2417, 60.5118], [11.2417, 60.5117], [11.2417, 60.5117], [11.2418, 60.5116], [11.2418, 60.5116], [11.2417, 60.5116], [11.2417, 60.5115], [11.2417, 60.5115], [11.2418, 60.5115], [11.2418, 60.5114], [11.2419, 60.5114], [11.2419, 60.5113], [11.2419, 60.5112], [11.2419, 60.511], [11.2419, 60.5109], [11.2419, 60.5109], [11.2419, 60.5108], [11.2419, 60.5107], [11.2418, 60.5107], [11.2417, 60.5105], [11.2417, 60.5104], [11.2416, 60.5104], [11.2416, 60.5103], [11.2415, 60.5104], [11.2414, 60.5103], [11.2414, 60.5103], [11.2414, 60.5102], [11.2414, 60.5101], [11.2413, 60.5101], [11.2414, 60.5101], [11.2415, 60.5101], [11.2415, 60.5101], [11.2414, 60.51], [11.2414, 60.51], [11.2414, 60.5099], [11.2414, 60.5098], [11.2414, 60.5097], [11.2414, 60.5097], [11.2413, 60.5096], [11.2413, 60.5096], [11.2412, 60.5096], [11.2412, 60.5097], [11.2412, 60.5097], [11.2411, 60.5097], [11.2411, 60.5097], [11.2411, 60.5096], [11.2411, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5096], [11.2412, 60.5095], [11.2412, 60.5095], [11.2412, 60.5094], [11.2412, 60.5094], [11.2412, 60.5094], [11.2412, 60.5093], [11.2412, 60.5093], [11.2411, 60.5091], [11.2411, 60.5089], [11.2409, 60.5088], [11.2408, 60.5087], [11.2408, 60.5086], [11.2408, 60.5085], [11.2408, 60.5084], [11.2408, 60.5083], [11.2409, 60.5083], [11.2409, 60.5082], [11.2408, 60.5082], [11.2408, 60.5082], [11.2408, 60.5081], [11.2407, 60.5081], [11.2406, 60.5081], [11.2405, 60.508], [11.2405, 60.5079], [11.2405, 60.5079], [11.2403, 60.5078], [11.2403, 60.5078], [11.2403, 60.5077], [11.2402, 60.5076], [11.2401, 60.5075], [11.2401, 60.5074], [11.2402, 60.5074], [11.2403, 60.5073], [11.2403, 60.5073], [11.2402, 60.5073], [11.2403, 60.5073], [11.2403, 60.5072], [11.2403, 60.5072], [11.2402, 60.507], [11.2401, 60.5068], [11.24, 60.5067], [11.24, 60.5066], [11.2399, 60.5066], [11.2399, 60.5065], [11.2397, 60.5063], [11.2395, 60.5061], [11.2395, 60.506], [11.2393, 60.5058], [11.2391, 60.5055], [11.2388, 60.5053], [11.2387, 60.5051], [11.2386, 60.505], [11.2385, 60.505], [11.2384, 60.5049], [11.2382, 60.5049], [11.2381, 60.5048], [11.2379, 60.5048], [11.2378, 60.5048], [11.2376, 60.5047], [11.2374, 60.5046], [11.2371, 60.5046], [11.2369, 60.5046], [11.2366, 60.5045], [11.2365, 60.5045], [11.2364, 60.5046], [11.2363, 60.5046], [11.2362, 60.5045], [11.2362, 60.5045], [11.2362, 60.5044], [11.2361, 60.5043], [11.236, 60.5042], [11.2359, 60.5041], [11.2357, 60.504], [11.2357, 60.5039], [11.2357, 60.5038], [11.2358, 60.5037], [11.2359, 60.5036], [11.2359, 60.5035], [11.2359, 60.5034], [11.2359, 60.5034], [11.2358, 60.5033], [11.2359, 60.5032], [11.2359, 60.5032], [11.2358, 60.503], [11.2358, 60.5029], [11.2357, 60.5028], [11.2357, 60.5027], [11.2356, 60.5026], [11.2356, 60.5025], [11.2355, 60.5024], [11.2355, 60.5024], [11.2355, 60.5023], [11.2353, 60.5022], [11.2352, 60.502], [11.235, 60.5018], [11.235, 60.5018], [11.2351, 60.5017], [11.2349, 60.5016], [11.2347, 60.5014], [11.2344, 60.5011], [11.2342, 60.5009], [11.234, 60.5007], [11.2339, 60.5006], [11.2339, 60.5006], [11.2338, 60.5005], [11.2335, 60.5001], [11.2331, 60.4994], [11.2329, 60.4993], [11.2327, 60.4991], [11.2326, 60.4987], [11.2323, 60.4981], [11.2321, 60.4976], [11.232, 60.497], [11.2319, 60.4969], [11.2304, 60.4969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "174", "sub_div_center": [60.516856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5169], [11.2304, 60.5369], [11.2423, 60.5369], [11.2423, 60.5368], [11.2422, 60.5367], [11.2422, 60.5366], [11.2422, 60.5366], [11.2421, 60.5365], [11.2421, 60.5365], [11.2422, 60.5364], [11.2421, 60.5364], [11.2421, 60.5364], [11.242, 60.5363], [11.2419, 60.5363], [11.242, 60.5363], [11.242, 60.5362], [11.242, 60.5362], [11.242, 60.5361], [11.242, 60.536], [11.2419, 60.536], [11.2419, 60.5359], [11.2419, 60.5358], [11.2419, 60.5357], [11.2419, 60.5356], [11.2419, 60.5356], [11.242, 60.5355], [11.242, 60.5355], [11.2419, 60.5354], [11.2419, 60.5353], [11.2419, 60.5351], [11.2419, 60.5349], [11.2418, 60.5343], [11.2418, 60.5342], [11.2418, 60.534], [11.2418, 60.5336], [11.2418, 60.5335], [11.2418, 60.5333], [11.2418, 60.533], [11.2418, 60.5328], [11.2418, 60.5327], [11.2418, 60.5325], [11.2418, 60.5322], [11.2418, 60.5319], [11.2418, 60.5317], [11.2418, 60.5317], [11.2418, 60.5314], [11.2417, 60.5313], [11.2417, 60.5311], [11.2417, 60.5309], [11.2417, 60.5308], [11.2417, 60.5305], [11.2417, 60.5304], [11.2416, 60.5301], [11.2416, 60.5299], [11.2416, 60.5297], [11.2415, 60.5294], [11.2415, 60.5293], [11.2415, 60.5291], [11.2415, 60.5289], [11.2414, 60.5287], [11.2414, 60.5285], [11.2414, 60.5282], [11.2413, 60.528], [11.2413, 60.5278], [11.2412, 60.5274], [11.2411, 60.5266], [11.2411, 60.5261], [11.241, 60.5258], [11.241, 60.5254], [11.2409, 60.5248], [11.2408, 60.5243], [11.2407, 60.524], [11.2407, 60.5235], [11.2406, 60.5227], [11.2406, 60.5223], [11.2406, 60.522], [11.2406, 60.5218], [11.2406, 60.5216], [11.2406, 60.5214], [11.2406, 60.5214], [11.2404, 60.5213], [11.2403, 60.5213], [11.2402, 60.5213], [11.2393, 60.5214], [11.2391, 60.5214], [11.239, 60.5213], [11.2389, 60.5213], [11.239, 60.5205], [11.239, 60.5203], [11.239, 60.5203], [11.2391, 60.5203], [11.2392, 60.5203], [11.2392, 60.5204], [11.2391, 60.521], [11.2391, 60.5212], [11.2392, 60.5212], [11.2392, 60.5213], [11.2395, 60.5213], [11.2399, 60.5212], [11.2399, 60.5212], [11.2398, 60.5212], [11.2398, 60.5211], [11.2399, 60.5211], [11.2399, 60.5211], [11.24, 60.521], [11.24, 60.5208], [11.24, 60.5208], [11.24, 60.5206], [11.24, 60.5206], [11.24, 60.5206], [11.24, 60.5202], [11.24, 60.5201], [11.2398, 60.5201], [11.2392, 60.5201], [11.2391, 60.5201], [11.239, 60.52], [11.2391, 60.52], [11.2391, 60.52], [11.2397, 60.52], [11.24, 60.52], [11.2401, 60.52], [11.24, 60.5198], [11.24, 60.5195], [11.2401, 60.5191], [11.2401, 60.5189], [11.2402, 60.5187], [11.2403, 60.5187], [11.2404, 60.5186], [11.2404, 60.5185], [11.2405, 60.5184], [11.2405, 60.5183], [11.2406, 60.5183], [11.2405, 60.5182], [11.2405, 60.5182], [11.2406, 60.5182], [11.2407, 60.5182], [11.2407, 60.5182], [11.2407, 60.5182], [11.2407, 60.5181], [11.2407, 60.5181], [11.2408, 60.5181], [11.2409, 60.5179], [11.241, 60.5179], [11.2411, 60.5178], [11.2412, 60.5176], [11.2413, 60.5174], [11.2414, 60.5173], [11.2414, 60.5172], [11.2413, 60.5171], [11.2413, 60.5171], [11.2414, 60.5169], [11.2413, 60.5169], [11.2414, 60.5169], [11.2304, 60.5169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "175", "sub_div_center": [60.536856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5369], [11.2304, 60.5569], [11.249, 60.5569], [11.249, 60.5568], [11.249, 60.5567], [11.249, 60.5565], [11.249, 60.5564], [11.2492, 60.5564], [11.2492, 60.5563], [11.2491, 60.5561], [11.2491, 60.5559], [11.249, 60.5558], [11.2489, 60.5556], [11.2487, 60.5555], [11.2486, 60.5553], [11.2484, 60.5551], [11.2483, 60.5549], [11.2481, 60.5547], [11.248, 60.5545], [11.2478, 60.5543], [11.2477, 60.554], [11.2476, 60.5538], [11.2475, 60.5537], [11.2474, 60.5536], [11.2474, 60.5535], [11.2472, 60.5534], [11.2472, 60.5534], [11.2471, 60.5533], [11.2471, 60.5533], [11.2471, 60.5532], [11.247, 60.5531], [11.2469, 60.5531], [11.2468, 60.5529], [11.2467, 60.5528], [11.2467, 60.5528], [11.2467, 60.5528], [11.2466, 60.5528], [11.2466, 60.5527], [11.2466, 60.5526], [11.2467, 60.5525], [11.2468, 60.5525], [11.2468, 60.5524], [11.2468, 60.5524], [11.2469, 60.5523], [11.2469, 60.5523], [11.2468, 60.5523], [11.2467, 60.5523], [11.2467, 60.5522], [11.2467, 60.5522], [11.2466, 60.5522], [11.2467, 60.5521], [11.2468, 60.552], [11.2468, 60.552], [11.2468, 60.5519], [11.2467, 60.5518], [11.2466, 60.5518], [11.2466, 60.5517], [11.2465, 60.5515], [11.2464, 60.5515], [11.2462, 60.5514], [11.2461, 60.5513], [11.2459, 60.5513], [11.2459, 60.5512], [11.2459, 60.5512], [11.2459, 60.5511], [11.2459, 60.5511], [11.2459, 60.551], [11.2458, 60.5509], [11.2457, 60.5508], [11.2457, 60.5507], [11.2457, 60.5505], [11.2457, 60.5504], [11.2458, 60.5503], [11.2458, 60.5502], [11.2458, 60.5501], [11.2457, 60.55], [11.2458, 60.5499], [11.2459, 60.5498], [11.2459, 60.5497], [11.2459, 60.5496], [11.2459, 60.5495], [11.2459, 60.5494], [11.2459, 60.5492], [11.2459, 60.5491], [11.2458, 60.5489], [11.2458, 60.5487], [11.2458, 60.5486], [11.2458, 60.5484], [11.2459, 60.5483], [11.2459, 60.5481], [11.2459, 60.548], [11.2459, 60.5479], [11.2459, 60.5477], [11.2458, 60.5473], [11.2458, 60.5469], [11.2458, 60.5467], [11.2458, 60.5465], [11.2458, 60.5462], [11.2458, 60.5458], [11.2457, 60.5454], [11.2457, 60.545], [11.2456, 60.5446], [11.2455, 60.5442], [11.2454, 60.5439], [11.2453, 60.5435], [11.2452, 60.5432], [11.2451, 60.5429], [11.245, 60.5426], [11.2449, 60.5425], [11.2448, 60.5424], [11.2448, 60.5424], [11.2448, 60.5424], [11.2448, 60.5423], [11.2448, 60.5422], [11.2448, 60.5421], [11.2447, 60.5419], [11.2444, 60.5413], [11.2443, 60.5411], [11.2441, 60.5407], [11.244, 60.5407], [11.244, 60.5407], [11.244, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5407], [11.2439, 60.5406], [11.244, 60.5406], [11.244, 60.5406], [11.244, 60.5406], [11.2439, 60.5404], [11.2438, 60.5402], [11.2437, 60.54], [11.2436, 60.5398], [11.2435, 60.5397], [11.2435, 60.5395], [11.2433, 60.5393], [11.2432, 60.5391], [11.2432, 60.539], [11.2431, 60.5388], [11.243, 60.5387], [11.243, 60.5385], [11.2429, 60.5384], [11.2427, 60.538], [11.2426, 60.5378], [11.2425, 60.5375], [11.2424, 60.5372], [11.2423, 60.537], [11.2423, 60.5369], [11.2423, 60.5369], [11.2304, 60.5369]]]}}, {"type": "Feature", "properties": {"sub_div_id": "176", "sub_div_center": [60.556856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5569], [11.2304, 60.5769], [11.2665, 60.5769], [11.2665, 60.5769], [11.2664, 60.5767], [11.2663, 60.5767], [11.2662, 60.5767], [11.2662, 60.5767], [11.2662, 60.5766], [11.2661, 60.5766], [11.2661, 60.5765], [11.2662, 60.5765], [11.266, 60.5764], [11.2658, 60.5761], [11.2655, 60.5759], [11.2653, 60.5758], [11.2653, 60.5757], [11.2652, 60.5756], [11.2652, 60.5755], [11.2651, 60.5755], [11.265, 60.5754], [11.2648, 60.5753], [11.2647, 60.5752], [11.2646, 60.5751], [11.2646, 60.5751], [11.2645, 60.5751], [11.2644, 60.5751], [11.2644, 60.5751], [11.2643, 60.575], [11.2643, 60.575], [11.2643, 60.5749], [11.2642, 60.5749], [11.2642, 60.5748], [11.2641, 60.5747], [11.264, 60.5746], [11.2639, 60.5745], [11.2637, 60.5744], [11.2637, 60.5744], [11.2636, 60.5743], [11.2636, 60.5743], [11.2635, 60.5742], [11.2634, 60.5741], [11.2633, 60.574], [11.2633, 60.574], [11.2633, 60.5739], [11.2633, 60.5739], [11.2632, 60.5738], [11.2631, 60.5738], [11.2631, 60.5737], [11.2631, 60.5736], [11.2631, 60.5736], [11.263, 60.5736], [11.263, 60.5736], [11.2631, 60.5735], [11.263, 60.5735], [11.2629, 60.5733], [11.2627, 60.5731], [11.2625, 60.573], [11.2624, 60.5729], [11.2624, 60.5729], [11.2623, 60.5728], [11.2621, 60.5726], [11.262, 60.5725], [11.2619, 60.5724], [11.2619, 60.5723], [11.2618, 60.5722], [11.2616, 60.5721], [11.2615, 60.572], [11.2613, 60.5719], [11.2612, 60.5717], [11.2611, 60.5717], [11.2611, 60.5716], [11.2609, 60.5716], [11.2609, 60.5715], [11.2608, 60.5714], [11.2607, 60.5714], [11.2606, 60.5713], [11.2605, 60.5713], [11.2604, 60.5712], [11.2603, 60.5711], [11.2603, 60.571], [11.2602, 60.571], [11.2601, 60.5709], [11.2601, 60.5709], [11.2599, 60.5709], [11.2598, 60.5708], [11.2596, 60.5706], [11.2596, 60.5704], [11.2595, 60.5704], [11.2594, 60.5704], [11.2594, 60.5703], [11.2593, 60.5704], [11.2593, 60.5704], [11.2593, 60.5703], [11.2593, 60.5703], [11.2593, 60.5702], [11.2591, 60.5701], [11.259, 60.57], [11.2589, 60.5699], [11.2588, 60.5698], [11.2587, 60.5697], [11.2587, 60.5697], [11.2586, 60.5697], [11.2585, 60.5695], [11.2583, 60.5694], [11.2581, 60.5693], [11.2581, 60.5692], [11.258, 60.5691], [11.2579, 60.5691], [11.2578, 60.569], [11.2577, 60.5689], [11.2577, 60.5688], [11.2577, 60.5688], [11.2577, 60.5688], [11.2578, 60.5688], [11.2577, 60.5688], [11.2576, 60.5688], [11.2576, 60.5687], [11.2576, 60.5687], [11.2575, 60.5687], [11.2574, 60.5687], [11.2575, 60.5687], [11.2575, 60.5686], [11.2574, 60.5686], [11.2574, 60.5686], [11.2573, 60.5685], [11.2573, 60.5685], [11.2572, 60.5685], [11.2572, 60.5685], [11.2571, 60.5684], [11.2571, 60.5684], [11.257, 60.5684], [11.2569, 60.5683], [11.2569, 60.5682], [11.2569, 60.5682], [11.2569, 60.5681], [11.2568, 60.5681], [11.2568, 60.5681], [11.2568, 60.568], [11.2567, 60.568], [11.2566, 60.5679], [11.2567, 60.5679], [11.2566, 60.5678], [11.2565, 60.5677], [11.2565, 60.5676], [11.2565, 60.5676], [11.2564, 60.5676], [11.2564, 60.5676], [11.2564, 60.5676], [11.2563, 60.5675], [11.2563, 60.5675], [11.2562, 60.5674], [11.2562, 60.5673], [11.2562, 60.5673], [11.2561, 60.5673], [11.2561, 60.5672], [11.2559, 60.5671], [11.2558, 60.567], [11.2557, 60.5669], [11.2556, 60.5668], [11.2555, 60.5668], [11.2554, 60.5666], [11.2553, 60.5665], [11.2552, 60.5664], [11.255, 60.5663], [11.2549, 60.5661], [11.2549, 60.5661], [11.2548, 60.5661], [11.2548, 60.566], [11.2547, 60.5659], [11.2546, 60.5659], [11.2546, 60.5658], [11.2545, 60.5658], [11.2545, 60.5657], [11.2544, 60.5656], [11.2542, 60.5656], [11.2541, 60.5656], [11.2541, 60.5655], [11.254, 60.5654], [11.2541, 60.5654], [11.254, 60.5654], [11.254, 60.5654], [11.2539, 60.5653], [11.254, 60.5653], [11.2539, 60.5653], [11.2539, 60.5653], [11.2536, 60.5651], [11.2535, 60.5651], [11.2535, 60.565], [11.2534, 60.565], [11.2533, 60.5649], [11.2532, 60.5648], [11.2532, 60.5648], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.2531, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.253, 60.5647], [11.253, 60.5646], [11.253, 60.5646], [11.2529, 60.5646], [11.2528, 60.5646], [11.2529, 60.5646], [11.2529, 60.5645], [11.2528, 60.5646], [11.2528, 60.5645], [11.2528, 60.5645], [11.2527, 60.5645], [11.2527, 60.5644], [11.2527, 60.5644], [11.2527, 60.5643], [11.2527, 60.5643], [11.2526, 60.5643], [11.2526, 60.5642], [11.2526, 60.5641], [11.2526, 60.5641], [11.2525, 60.5641], [11.2525, 60.564], [11.2525, 60.5639], [11.2525, 60.5639], [11.2522, 60.5635], [11.2521, 60.5633], [11.2521, 60.5632], [11.252, 60.563], [11.2518, 60.5628], [11.2518, 60.5628], [11.2516, 60.5626], [11.2515, 60.5625], [11.2514, 60.5624], [11.2514, 60.5624], [11.2513, 60.5624], [11.2513, 60.5623], [11.2512, 60.5621], [11.2511, 60.562], [11.251, 60.5619], [11.251, 60.5619], [11.251, 60.5619], [11.251, 60.5618], [11.2509, 60.5618], [11.2508, 60.5618], [11.2508, 60.5618], [11.2506, 60.5618], [11.2506, 60.5619], [11.2507, 60.562], [11.2508, 60.562], [11.2508, 60.5621], [11.2508, 60.5621], [11.2508, 60.5621], [11.2508, 60.5621], [11.2507, 60.5621], [11.2507, 60.5621], [11.2506, 60.562], [11.2506, 60.5619], [11.2505, 60.5618], [11.2506, 60.5618], [11.2506, 60.5618], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5617], [11.2507, 60.5616], [11.2507, 60.5615], [11.2506, 60.5615], [11.2506, 60.5614], [11.2506, 60.5613], [11.2507, 60.5613], [11.2507, 60.5612], [11.2507, 60.5612], [11.2507, 60.5611], [11.2507, 60.5611], [11.2506, 60.561], [11.2507, 60.5609], [11.2507, 60.5609], [11.2506, 60.5608], [11.2506, 60.5607], [11.2506, 60.5607], [11.2506, 60.5606], [11.2506, 60.5606], [11.2506, 60.5606], [11.2505, 60.5605], [11.2505, 60.5604], [11.2504, 60.5604], [11.2503, 60.5602], [11.2503, 60.5602], [11.2503, 60.5602], [11.2503, 60.5601], [11.2502, 60.5601], [11.2502, 60.5601], [11.2501, 60.5601], [11.25, 60.56], [11.2499, 60.56], [11.2498, 60.5599], [11.2498, 60.5598], [11.2499, 60.5598], [11.2498, 60.5597], [11.2498, 60.5597], [11.2499, 60.5597], [11.2498, 60.5597], [11.2497, 60.5597], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5596], [11.2497, 60.5595], [11.2496, 60.5595], [11.2496, 60.5594], [11.2497, 60.5594], [11.2496, 60.5594], [11.2496, 60.5594], [11.2495, 60.5594], [11.2496, 60.5593], [11.2495, 60.5593], [11.2495, 60.5593], [11.2495, 60.5592], [11.2495, 60.5592], [11.2495, 60.5592], [11.2495, 60.5591], [11.2495, 60.5591], [11.2494, 60.559], [11.2495, 60.559], [11.2495, 60.559], [11.2494, 60.5589], [11.2495, 60.5589], [11.2494, 60.5589], [11.2494, 60.5588], [11.2494, 60.5588], [11.2493, 60.5588], [11.2493, 60.5587], [11.2492, 60.5587], [11.2493, 60.5586], [11.2492, 60.5586], [11.2492, 60.5585], [11.2492, 60.5584], [11.2492, 60.5584], [11.2492, 60.5583], [11.2491, 60.5583], [11.2491, 60.5581], [11.2491, 60.5581], [11.249, 60.5579], [11.249, 60.5579], [11.249, 60.5578], [11.2489, 60.5578], [11.249, 60.5577], [11.2489, 60.5576], [11.2489, 60.5575], [11.2488, 60.5575], [11.2489, 60.5574], [11.249, 60.5573], [11.249, 60.5572], [11.2489, 60.5572], [11.249, 60.5571], [11.249, 60.557], [11.249, 60.5569], [11.249, 60.5569], [11.249, 60.5569], [11.2304, 60.5569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "177", "sub_div_center": [60.576856, 11.230419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2304, 60.5769], [11.2304, 60.5903], [11.2309, 60.5903], [11.2314, 60.5903], [11.2316, 60.5902], [11.2319, 60.59], [11.2322, 60.5899], [11.2323, 60.5898], [11.2323, 60.5898], [11.2323, 60.5897], [11.2327, 60.5896], [11.2328, 60.5896], [11.233, 60.5897], [11.2334, 60.5895], [11.2337, 60.5893], [11.2339, 60.5893], [11.234, 60.5894], [11.234, 60.5895], [11.234, 60.5896], [11.2338, 60.5897], [11.2337, 60.5897], [11.2338, 60.5899], [11.2339, 60.59], [11.2341, 60.59], [11.2343, 60.5901], [11.2345, 60.5901], [11.2348, 60.59], [11.2349, 60.5901], [11.235, 60.59], [11.2351, 60.59], [11.2352, 60.5901], [11.2352, 60.5902], [11.236, 60.5902], [11.2361, 60.5904], [11.2362, 60.5905], [11.2363, 60.5907], [11.2364, 60.5908], [11.2364, 60.5909], [11.2366, 60.5909], [11.2366, 60.591], [11.2366, 60.5911], [11.2366, 60.5911], [11.2368, 60.5911], [11.2369, 60.5912], [11.237, 60.5912], [11.2373, 60.5912], [11.2375, 60.5912], [11.2375, 60.5912], [11.2375, 60.5913], [11.2377, 60.5913], [11.2378, 60.5913], [11.2379, 60.5913], [11.2379, 60.5913], [11.2379, 60.5914], [11.2379, 60.5914], [11.2381, 60.5914], [11.2382, 60.5914], [11.2382, 60.5914], [11.2383, 60.5914], [11.2386, 60.5914], [11.2388, 60.5914], [11.2389, 60.5914], [11.239, 60.5913], [11.239, 60.5913], [11.2391, 60.5911], [11.2392, 60.591], [11.2393, 60.591], [11.2394, 60.591], [11.2394, 60.5909], [11.2395, 60.5908], [11.2397, 60.5908], [11.2397, 60.5907], [11.2397, 60.5906], [11.24, 60.5905], [11.2399, 60.5905], [11.2398, 60.5905], [11.24, 60.5904], [11.2401, 60.5904], [11.2402, 60.5904], [11.2404, 60.5905], [11.2405, 60.5906], [11.2407, 60.5907], [11.2408, 60.5908], [11.241, 60.5909], [11.2411, 60.5909], [11.2412, 60.5908], [11.2415, 60.5909], [11.2416, 60.591], [11.2416, 60.5911], [11.2417, 60.5912], [11.242, 60.5912], [11.2421, 60.5912], [11.2422, 60.5913], [11.2424, 60.5914], [11.2425, 60.5915], [11.2426, 60.5917], [11.2429, 60.5918], [11.2431, 60.5919], [11.2432, 60.592], [11.2434, 60.592], [11.2436, 60.5922], [11.2438, 60.5923], [11.244, 60.5924], [11.2442, 60.5924], [11.2444, 60.5925], [11.2446, 60.5926], [11.2447, 60.5926], [11.2448, 60.5927], [11.2449, 60.5928], [11.245, 60.5929], [11.2452, 60.593], [11.2452, 60.5931], [11.2455, 60.5932], [11.2458, 60.5933], [11.2461, 60.5934], [11.2464, 60.5935], [11.2468, 60.5935], [11.2471, 60.5937], [11.2473, 60.5937], [11.2475, 60.5937], [11.2477, 60.5937], [11.2479, 60.5937], [11.2479, 60.5937], [11.2481, 60.5938], [11.2483, 60.5938], [11.2485, 60.5937], [11.2485, 60.5937], [11.2485, 60.5936], [11.2486, 60.5935], [11.2486, 60.5935], [11.2487, 60.5934], [11.2487, 60.5932], [11.2487, 60.5931], [11.2486, 60.5931], [11.2486, 60.593], [11.2485, 60.5929], [11.2485, 60.5928], [11.2485, 60.5927], [11.2485, 60.5925], [11.2485, 60.5924], [11.2486, 60.5923], [11.2486, 60.5923], [11.2487, 60.5923], [11.2488, 60.5921], [11.2489, 60.592], [11.2491, 60.592], [11.2493, 60.592], [11.2495, 60.5919], [11.2497, 60.5918], [11.2497, 60.5917], [11.2498, 60.5916], [11.2498, 60.5915], [11.2499, 60.5913], [11.2499, 60.5913], [11.2499, 60.5912], [11.2499, 60.5911], [11.25, 60.5908], [11.2498, 60.5907], [11.2497, 60.5906], [11.2495, 60.5906], [11.2493, 60.5906], [11.2491, 60.5906], [11.249, 60.5906], [11.2488, 60.5904], [11.2487, 60.5903], [11.2487, 60.5902], [11.2487, 60.5901], [11.2487, 60.59], [11.2487, 60.5899], [11.2489, 60.5898], [11.2489, 60.5898], [11.249, 60.5896], [11.2492, 60.5895], [11.2492, 60.5893], [11.2494, 60.5893], [11.2496, 60.5891], [11.2496, 60.589], [11.2495, 60.5889], [11.2496, 60.5889], [11.2498, 60.5888], [11.2499, 60.5887], [11.2499, 60.5886], [11.2498, 60.5886], [11.2499, 60.5885], [11.25, 60.5884], [11.25, 60.5884], [11.2502, 60.5884], [11.2503, 60.5884], [11.2504, 60.5883], [11.2505, 60.5882], [11.2506, 60.5881], [11.2507, 60.588], [11.2507, 60.5879], [11.2505, 60.5879], [11.2504, 60.5879], [11.2504, 60.5878], [11.2503, 60.5878], [11.2504, 60.5877], [11.2504, 60.5877], [11.2504, 60.5877], [11.2505, 60.5876], [11.2506, 60.5875], [11.2506, 60.5875], [11.2507, 60.5875], [11.2508, 60.5875], [11.2508, 60.5875], [11.2509, 60.5874], [11.251, 60.5874], [11.251, 60.5874], [11.251, 60.5874], [11.2511, 60.5873], [11.2512, 60.5873], [11.2512, 60.5873], [11.2513, 60.5872], [11.2513, 60.5873], [11.2512, 60.5873], [11.2513, 60.5873], [11.2514, 60.5873], [11.2515, 60.5873], [11.2516, 60.5873], [11.2516, 60.5873], [11.2518, 60.5873], [11.2518, 60.5873], [11.2519, 60.5873], [11.2519, 60.5872], [11.252, 60.5872], [11.2521, 60.5873], [11.2523, 60.5873], [11.2523, 60.5872], [11.2524, 60.5871], [11.2525, 60.5871], [11.2526, 60.5871], [11.2527, 60.587], [11.2527, 60.587], [11.2528, 60.587], [11.2528, 60.5871], [11.2528, 60.5871], [11.2527, 60.5871], [11.2527, 60.5871], [11.2527, 60.5872], [11.2527, 60.5872], [11.2526, 60.5873], [11.2526, 60.5873], [11.2526, 60.5873], [11.2525, 60.5874], [11.2524, 60.5874], [11.2524, 60.5874], [11.2524, 60.5873], [11.2523, 60.5873], [11.2522, 60.5874], [11.2522, 60.5874], [11.2522, 60.5875], [11.2522, 60.5876], [11.2523, 60.5877], [11.2522, 60.5878], [11.2522, 60.5878], [11.2522, 60.5879], [11.2522, 60.588], [11.2524, 60.5881], [11.2526, 60.5881], [11.2526, 60.5882], [11.2528, 60.5882], [11.2529, 60.5881], [11.253, 60.588], [11.2531, 60.5881], [11.2532, 60.588], [11.2533, 60.588], [11.2535, 60.5879], [11.2535, 60.5879], [11.2535, 60.5878], [11.2535, 60.5878], [11.2536, 60.5878], [11.2536, 60.5879], [11.2537, 60.5879], [11.2537, 60.5878], [11.2537, 60.5878], [11.2537, 60.5877], [11.2537, 60.5876], [11.2538, 60.5876], [11.2538, 60.5875], [11.2538, 60.5875], [11.2539, 60.5875], [11.254, 60.5875], [11.254, 60.5875], [11.2541, 60.5875], [11.2541, 60.5876], [11.2541, 60.5877], [11.2542, 60.5878], [11.2542, 60.5879], [11.2543, 60.5879], [11.2544, 60.588], [11.2545, 60.5882], [11.2545, 60.5883], [11.2545, 60.5883], [11.2546, 60.5884], [11.2548, 60.5883], [11.2551, 60.5884], [11.2554, 60.5883], [11.2555, 60.5882], [11.2558, 60.5882], [11.256, 60.5882], [11.2561, 60.5882], [11.2562, 60.5882], [11.2566, 60.5881], [11.257, 60.5881], [11.2576, 60.588], [11.2579, 60.5879], [11.2581, 60.5878], [11.2582, 60.5876], [11.2583, 60.5875], [11.2583, 60.5873], [11.2583, 60.5872], [11.2586, 60.5871], [11.2589, 60.5871], [11.2591, 60.5871], [11.2594, 60.587], [11.2597, 60.587], [11.2599, 60.5869], [11.2602, 60.5868], [11.2606, 60.5866], [11.2609, 60.5866], [11.261, 60.5867], [11.2612, 60.5867], [11.2614, 60.5866], [11.2617, 60.5867], [11.2619, 60.5868], [11.2621, 60.5869], [11.2622, 60.5869], [11.2625, 60.5869], [11.2626, 60.587], [11.2627, 60.587], [11.2628, 60.5871], [11.263, 60.5872], [11.2632, 60.5873], [11.2637, 60.5873], [11.264, 60.5873], [11.2645, 60.5873], [11.2647, 60.5874], [11.265, 60.5875], [11.2651, 60.5876], [11.2651, 60.5877], [11.2653, 60.5878], [11.2654, 60.5877], [11.2656, 60.5878], [11.2656, 60.5878], [11.2659, 60.588], [11.2661, 60.5881], [11.2663, 60.5882], [11.2666, 60.5882], [11.2667, 60.5883], [11.2667, 60.5885], [11.2668, 60.5886], [11.2668, 60.5887], [11.2672, 60.5889], [11.2673, 60.5891], [11.2674, 60.5893], [11.2674, 60.5894], [11.2675, 60.5895], [11.2674, 60.5896], [11.2674, 60.5897], [11.2673, 60.5898], [11.2675, 60.59], [11.2677, 60.5901], [11.2678, 60.5903], [11.268, 60.5905], [11.2679, 60.5906], [11.2678, 60.5909], [11.2678, 60.591], [11.2678, 60.5911], [11.2678, 60.5912], [11.2677, 60.5913], [11.2676, 60.5915], [11.2676, 60.5915], [11.268, 60.5916], [11.2682, 60.5916], [11.268, 60.5917], [11.2678, 60.5919], [11.2676, 60.5921], [11.2674, 60.5922], [11.2675, 60.5923], [11.2676, 60.5924], [11.268, 60.5926], [11.2682, 60.5928], [11.2683, 60.5929], [11.2683, 60.5932], [11.2682, 60.5933], [11.2684, 60.5934], [11.2686, 60.5934], [11.2689, 60.5934], [11.269, 60.5934], [11.2692, 60.5934], [11.2692, 60.5933], [11.2693, 60.5932], [11.2694, 60.5931], [11.2695, 60.5931], [11.2697, 60.5931], [11.2698, 60.5932], [11.27, 60.5933], [11.2704, 60.5933], [11.2704, 60.5933], [11.2704, 60.5824], [11.2704, 60.5824], [11.2704, 60.5824], [11.2703, 60.5822], [11.2702, 60.5822], [11.27, 60.582], [11.2699, 60.5818], [11.2698, 60.5816], [11.2699, 60.5814], [11.27, 60.5813], [11.27, 60.5812], [11.2701, 60.5811], [11.2701, 60.581], [11.2701, 60.5809], [11.27, 60.5808], [11.2699, 60.5806], [11.2698, 60.5804], [11.2697, 60.5803], [11.2696, 60.5801], [11.2693, 60.5798], [11.2691, 60.5797], [11.2691, 60.5797], [11.2691, 60.5797], [11.2691, 60.5796], [11.2691, 60.5796], [11.2691, 60.5796], [11.269, 60.5795], [11.269, 60.5795], [11.2689, 60.5795], [11.2689, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5795], [11.2688, 60.5794], [11.2688, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2688, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5794], [11.2687, 60.5793], [11.2687, 60.5793], [11.2686, 60.5793], [11.2686, 60.5793], [11.2687, 60.5793], [11.2686, 60.5793], [11.2686, 60.5793], [11.2686, 60.5792], [11.2685, 60.5792], [11.2684, 60.5791], [11.2683, 60.5791], [11.2682, 60.5789], [11.2681, 60.5788], [11.2681, 60.5788], [11.2679, 60.5786], [11.2677, 60.5785], [11.2677, 60.5784], [11.2676, 60.5783], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2676, 60.5782], [11.2675, 60.5782], [11.2675, 60.5782], [11.2675, 60.5781], [11.2674, 60.5781], [11.2674, 60.5781], [11.2675, 60.5781], [11.2674, 60.578], [11.2674, 60.578], [11.2674, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.578], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5779], [11.2673, 60.5778], [11.2673, 60.5778], [11.2672, 60.5778], [11.2673, 60.5778], [11.2673, 60.5778], [11.2673, 60.5778], [11.2672, 60.5778], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2672, 60.5777], [11.2671, 60.5776], [11.2671, 60.5775], [11.267, 60.5774], [11.2669, 60.5773], [11.2666, 60.577], [11.2665, 60.5769], [11.2304, 60.5769]]]}}, {"type": "Feature", "properties": {"sub_div_id": "178", "sub_div_center": [60.596856, 11.2539]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2559, 60.6169], [11.2559, 60.6168], [11.256, 60.6168], [11.2561, 60.6167], [11.2563, 60.6167], [11.2564, 60.6167], [11.2566, 60.6167], [11.2566, 60.6166], [11.2566, 60.6165], [11.2567, 60.6165], [11.2567, 60.6164], [11.2568, 60.6164], [11.2568, 60.6163], [11.2569, 60.6162], [11.257, 60.6161], [11.2571, 60.616], [11.2574, 60.6159], [11.2576, 60.6158], [11.2577, 60.6156], [11.2578, 60.6156], [11.258, 60.6154], [11.2581, 60.6153], [11.2582, 60.6152], [11.2582, 60.615], [11.2583, 60.6149], [11.2583, 60.6147], [11.2583, 60.6146], [11.2584, 60.6146], [11.2584, 60.6145], [11.2585, 60.6144], [11.2585, 60.6143], [11.2585, 60.6143], [11.2587, 60.6142], [11.2587, 60.6142], [11.2588, 60.6141], [11.259, 60.6139], [11.259, 60.6138], [11.2591, 60.6137], [11.2593, 60.6136], [11.2594, 60.6135], [11.2597, 60.6134], [11.2598, 60.6134], [11.2599, 60.6134], [11.2599, 60.6134], [11.2603, 60.6134], [11.2603, 60.6134], [11.2603, 60.6134], [11.2604, 60.6134], [11.2604, 60.6134], [11.2606, 60.6134], [11.2608, 60.6134], [11.261, 60.6133], [11.2611, 60.6133], [11.2612, 60.6133], [11.2613, 60.6132], [11.2613, 60.6132], [11.2615, 60.6131], [11.2616, 60.6131], [11.2617, 60.6132], [11.2618, 60.6132], [11.2618, 60.6131], [11.2619, 60.6131], [11.262, 60.613], [11.2622, 60.6129], [11.2623, 60.6128], [11.2624, 60.6128], [11.2624, 60.6128], [11.2625, 60.6128], [11.2624, 60.6129], [11.2624, 60.6129], [11.2623, 60.613], [11.2623, 60.613], [11.2622, 60.6131], [11.2621, 60.6131], [11.262, 60.6132], [11.2619, 60.6132], [11.2619, 60.6132], [11.262, 60.6133], [11.262, 60.6133], [11.2621, 60.6134], [11.2622, 60.6134], [11.2623, 60.6135], [11.2623, 60.6135], [11.2624, 60.6136], [11.2624, 60.6136], [11.2625, 60.6136], [11.2626, 60.6137], [11.2626, 60.6137], [11.2627, 60.6137], [11.2628, 60.6137], [11.2629, 60.6138], [11.2629, 60.6138], [11.2629, 60.6138], [11.263, 60.6139], [11.263, 60.6139], [11.263, 60.614], [11.2631, 60.614], [11.2631, 60.614], [11.2632, 60.614], [11.2633, 60.614], [11.2634, 60.614], [11.2636, 60.614], [11.2638, 60.6139], [11.264, 60.6137], [11.264, 60.6136], [11.264, 60.6136], [11.2639, 60.6135], [11.2637, 60.6135], [11.2635, 60.6134], [11.2634, 60.6133], [11.2633, 60.6132], [11.2632, 60.6131], [11.2631, 60.613], [11.2631, 60.6128], [11.2629, 60.6127], [11.2628, 60.6127], [11.2629, 60.6127], [11.2629, 60.6126], [11.263, 60.6127], [11.2631, 60.6127], [11.2631, 60.6128], [11.2632, 60.6128], [11.2633, 60.6129], [11.2633, 60.613], [11.2634, 60.613], [11.2634, 60.6131], [11.2634, 60.6131], [11.2634, 60.6132], [11.2635, 60.6132], [11.2636, 60.6133], [11.2637, 60.6134], [11.2639, 60.6134], [11.264, 60.6135], [11.2642, 60.6135], [11.2642, 60.6135], [11.2643, 60.6134], [11.2643, 60.6132], [11.2644, 60.6132], [11.2646, 60.6131], [11.2647, 60.613], [11.265, 60.6129], [11.2649, 60.6128], [11.2649, 60.6128], [11.2649, 60.6128], [11.265, 60.6128], [11.2652, 60.6127], [11.2652, 60.6127], [11.2653, 60.6126], [11.2653, 60.6126], [11.2653, 60.6125], [11.2654, 60.6124], [11.2655, 60.6124], [11.2657, 60.6124], [11.266, 60.6124], [11.266, 60.6124], [11.2661, 60.6124], [11.2663, 60.6124], [11.2663, 60.6123], [11.2664, 60.6123], [11.2666, 60.6123], [11.2667, 60.6124], [11.2668, 60.6124], [11.2669, 60.6123], [11.2669, 60.6123], [11.2671, 60.6122], [11.2672, 60.6122], [11.2673, 60.6122], [11.2673, 60.6123], [11.2672, 60.6124], [11.2671, 60.6124], [11.2671, 60.6124], [11.2671, 60.6125], [11.2672, 60.6125], [11.2673, 60.6125], [11.2673, 60.6125], [11.2674, 60.6125], [11.2674, 60.6124], [11.2674, 60.6124], [11.2675, 60.6124], [11.2675, 60.6124], [11.2677, 60.6124], [11.2679, 60.6123], [11.2681, 60.6123], [11.2682, 60.6122], [11.2683, 60.6122], [11.2684, 60.6122], [11.2683, 60.6121], [11.2682, 60.6121], [11.2682, 60.6121], [11.2683, 60.6121], [11.2683, 60.6121], [11.2684, 60.6121], [11.2686, 60.6121], [11.2688, 60.612], [11.2689, 60.612], [11.269, 60.6119], [11.2692, 60.6119], [11.2692, 60.6118], [11.2694, 60.6118], [11.2695, 60.6116], [11.2695, 60.6115], [11.2694, 60.6114], [11.2696, 60.6114], [11.2696, 60.6114], [11.2697, 60.6113], [11.2698, 60.6112], [11.27, 60.6111], [11.2701, 60.611], [11.2702, 60.6109], [11.2704, 60.6108], [11.2704, 60.6108], [11.2704, 60.5969], [11.2684, 60.5969], [11.2683, 60.597], [11.2681, 60.5972], [11.2681, 60.5973], [11.2678, 60.5973], [11.2676, 60.5973], [11.2674, 60.5973], [11.2671, 60.5974], [11.2668, 60.5974], [11.2667, 60.5976], [11.2667, 60.5977], [11.2668, 60.5978], [11.2669, 60.5979], [11.267, 60.5981], [11.267, 60.5982], [11.2671, 60.5983], [11.2672, 60.5983], [11.2673, 60.5984], [11.2674, 60.5986], [11.2676, 60.5987], [11.2678, 60.5988], [11.2679, 60.5989], [11.2679, 60.5991], [11.2679, 60.5992], [11.2678, 60.5993], [11.2678, 60.5994], [11.2677, 60.5995], [11.2674, 60.5997], [11.2674, 60.5998], [11.2672, 60.5998], [11.2671, 60.5999], [11.2669, 60.6], [11.2669, 60.6001], [11.2668, 60.6002], [11.2668, 60.6003], [11.2666, 60.6004], [11.2665, 60.6004], [11.2663, 60.6005], [11.2663, 60.6005], [11.2662, 60.6006], [11.2661, 60.6007], [11.266, 60.6007], [11.2659, 60.6008], [11.2658, 60.6009], [11.2655, 60.6009], [11.2654, 60.6011], [11.2651, 60.6012], [11.2649, 60.6014], [11.2647, 60.6015], [11.2646, 60.6016], [11.2646, 60.6017], [11.2646, 60.6017], [11.2645, 60.6018], [11.2646, 60.6018], [11.2645, 60.6021], [11.2645, 60.6021], [11.2646, 60.6022], [11.2646, 60.6023], [11.2646, 60.6024], [11.2646, 60.6024], [11.2645, 60.6025], [11.2644, 60.6026], [11.2643, 60.6027], [11.2643, 60.6029], [11.2642, 60.603], [11.2641, 60.6031], [11.2641, 60.6032], [11.2643, 60.6033], [11.2643, 60.6034], [11.2642, 60.6035], [11.2641, 60.6038], [11.2641, 60.604], [11.2641, 60.6043], [11.264, 60.6045], [11.264, 60.6048], [11.264, 60.6049], [11.2639, 60.6051], [11.2638, 60.6052], [11.2637, 60.6054], [11.2636, 60.6056], [11.2636, 60.6057], [11.2637, 60.6058], [11.2638, 60.6059], [11.2639, 60.606], [11.2638, 60.6061], [11.2637, 60.6061], [11.2636, 60.6062], [11.2637, 60.6062], [11.2636, 60.6063], [11.2636, 60.6064], [11.2636, 60.6063], [11.2636, 60.6064], [11.2635, 60.6064], [11.2635, 60.6065], [11.2635, 60.6066], [11.2635, 60.6067], [11.2634, 60.607], [11.2632, 60.6071], [11.2631, 60.6073], [11.2629, 60.6075], [11.2627, 60.6076], [11.2625, 60.6078], [11.2624, 60.6079], [11.2622, 60.6081], [11.2621, 60.6083], [11.262, 60.6085], [11.2619, 60.6086], [11.2618, 60.6087], [11.2616, 60.6088], [11.2615, 60.609], [11.2613, 60.609], [11.2612, 60.6091], [11.2609, 60.6093], [11.2606, 60.6096], [11.2604, 60.6098], [11.2602, 60.6099], [11.2598, 60.6102], [11.2595, 60.6103], [11.2594, 60.6104], [11.2593, 60.6105], [11.2594, 60.6107], [11.2594, 60.6108], [11.2594, 60.6109], [11.2592, 60.611], [11.2591, 60.6112], [11.259, 60.6114], [11.2589, 60.6116], [11.2588, 60.6119], [11.2586, 60.6121], [11.2585, 60.6122], [11.2584, 60.6124], [11.2583, 60.6126], [11.2581, 60.6126], [11.258, 60.6128], [11.2579, 60.6129], [11.2577, 60.613], [11.2576, 60.6131], [11.2576, 60.6133], [11.2574, 60.6135], [11.2573, 60.6135], [11.2571, 60.6136], [11.2569, 60.6136], [11.2567, 60.6136], [11.2567, 60.6137], [11.2565, 60.6137], [11.2564, 60.6137], [11.2564, 60.6137], [11.2564, 60.6137], [11.2563, 60.6138], [11.2563, 60.6138], [11.2562, 60.6138], [11.2562, 60.6138], [11.2562, 60.6138], [11.2561, 60.6138], [11.256, 60.6139], [11.256, 60.6139], [11.256, 60.6139], [11.256, 60.614], [11.2559, 60.6139], [11.2558, 60.614], [11.2558, 60.614], [11.2559, 60.614], [11.2558, 60.614], [11.2559, 60.6141], [11.2559, 60.6141], [11.256, 60.6141], [11.2559, 60.6141], [11.2559, 60.6142], [11.2559, 60.6142], [11.256, 60.6142], [11.2561, 60.6142], [11.2561, 60.6143], [11.2561, 60.6144], [11.256, 60.6145], [11.2559, 60.6146], [11.2559, 60.6148], [11.2558, 60.6149], [11.2557, 60.6149], [11.2554, 60.6151], [11.2554, 60.6151], [11.2554, 60.6152], [11.2553, 60.6153], [11.255, 60.6155], [11.2549, 60.6155], [11.2549, 60.6157], [11.2546, 60.6159], [11.2544, 60.616], [11.2542, 60.6161], [11.254, 60.6163], [11.254, 60.6165], [11.2539, 60.6166], [11.2539, 60.6167], [11.254, 60.6167], [11.2542, 60.6167], [11.2543, 60.6168], [11.2546, 60.6168], [11.2546, 60.6169], [11.2559, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "179", "sub_div_center": [60.616856, 11.254579]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2546, 60.6169], [11.2547, 60.6169], [11.2548, 60.617], [11.255, 60.617], [11.2551, 60.617], [11.2551, 60.6169], [11.2552, 60.6169], [11.2553, 60.6169], [11.2555, 60.6169], [11.2556, 60.6169], [11.2557, 60.617], [11.2559, 60.6171], [11.2559, 60.6171], [11.256, 60.6171], [11.2559, 60.6169], [11.2559, 60.6169], [11.2546, 60.6169]]]}}, {"type": "Feature", "properties": {"sub_div_id": "180", "sub_div_center": [60.594202, 11.267833]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2704, 60.5969], [11.2704, 60.5942], [11.2703, 60.5943], [11.27, 60.5944], [11.27, 60.5945], [11.27, 60.5946], [11.2698, 60.5946], [11.2696, 60.5946], [11.2695, 60.5947], [11.2695, 60.5948], [11.2694, 60.5948], [11.2692, 60.5949], [11.269, 60.5949], [11.2689, 60.5949], [11.2687, 60.5949], [11.2684, 60.5949], [11.2684, 60.5949], [11.2681, 60.595], [11.2678, 60.5951], [11.2678, 60.5953], [11.2679, 60.5954], [11.268, 60.5954], [11.268, 60.5954], [11.268, 60.5955], [11.2679, 60.5955], [11.2679, 60.5955], [11.2678, 60.5955], [11.2678, 60.5956], [11.2679, 60.5957], [11.268, 60.5959], [11.2681, 60.596], [11.2683, 60.5961], [11.2684, 60.5961], [11.2685, 60.5962], [11.2684, 60.5963], [11.2684, 60.5965], [11.2684, 60.5968], [11.2684, 60.5969], [11.2704, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "181", "sub_div_center": [60.58244, 11.270419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.289, 60.5968], [11.2889, 60.5967], [11.2889, 60.5966], [11.2888, 60.5966], [11.2887, 60.5966], [11.2887, 60.5965], [11.2886, 60.5965], [11.2886, 60.5965], [11.2885, 60.5964], [11.2885, 60.5964], [11.2884, 60.5964], [11.2884, 60.5964], [11.2884, 60.5964], [11.2883, 60.5964], [11.2882, 60.5963], [11.2882, 60.5963], [11.2881, 60.5963], [11.2881, 60.5962], [11.2881, 60.5962], [11.2881, 60.5961], [11.2881, 60.5961], [11.2882, 60.5961], [11.2882, 60.5961], [11.2882, 60.596], [11.2882, 60.596], [11.2882, 60.596], [11.2882, 60.5959], [11.2882, 60.5959], [11.2882, 60.5958], [11.2881, 60.5957], [11.2881, 60.5956], [11.2881, 60.5956], [11.288, 60.5955], [11.288, 60.5955], [11.2879, 60.5955], [11.2879, 60.5955], [11.2879, 60.5955], [11.2878, 60.5955], [11.2878, 60.5955], [11.2879, 60.5955], [11.2878, 60.5955], [11.2879, 60.5955], [11.2879, 60.5954], [11.2879, 60.5953], [11.2878, 60.5953], [11.2878, 60.5952], [11.2877, 60.5952], [11.2876, 60.5951], [11.2875, 60.5949], [11.2874, 60.5948], [11.2872, 60.5947], [11.2872, 60.5946], [11.2871, 60.5946], [11.2869, 60.5944], [11.2868, 60.5943], [11.2867, 60.5942], [11.2864, 60.5942], [11.2863, 60.594], [11.2861, 60.5939], [11.286, 60.5938], [11.2858, 60.5937], [11.2857, 60.5936], [11.2856, 60.5935], [11.2855, 60.5934], [11.2853, 60.5933], [11.2853, 60.5932], [11.2853, 60.5931], [11.2852, 60.5929], [11.2852, 60.5929], [11.2852, 60.5927], [11.2853, 60.5926], [11.2853, 60.5926], [11.2852, 60.5924], [11.2852, 60.5923], [11.2852, 60.5923], [11.2852, 60.5922], [11.2852, 60.5921], [11.2852, 60.592], [11.2852, 60.592], [11.2851, 60.592], [11.2851, 60.592], [11.2851, 60.592], [11.2847, 60.5921], [11.2846, 60.5921], [11.2845, 60.5921], [11.2844, 60.5921], [11.2848, 60.592], [11.2848, 60.5919], [11.2848, 60.5919], [11.2848, 60.5919], [11.2848, 60.5918], [11.2849, 60.5918], [11.2849, 60.5918], [11.2848, 60.5918], [11.2848, 60.5917], [11.2847, 60.5916], [11.2847, 60.5916], [11.2846, 60.5915], [11.2847, 60.5914], [11.2847, 60.5914], [11.2847, 60.5913], [11.2848, 60.5913], [11.2847, 60.5913], [11.2847, 60.5912], [11.2847, 60.5912], [11.2846, 60.5912], [11.2846, 60.5912], [11.2845, 60.5911], [11.2845, 60.5911], [11.2845, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2844, 60.5911], [11.2845, 60.5911], [11.2845, 60.591], [11.2845, 60.591], [11.2844, 60.5909], [11.2844, 60.5909], [11.2844, 60.5908], [11.2844, 60.5908], [11.2843, 60.5907], [11.2842, 60.5906], [11.2839, 60.5904], [11.2837, 60.5903], [11.2836, 60.5902], [11.2834, 60.5901], [11.2833, 60.59], [11.283, 60.5898], [11.2828, 60.5896], [11.2824, 60.5894], [11.2822, 60.5892], [11.2821, 60.5891], [11.282, 60.589], [11.2819, 60.5889], [11.2819, 60.5888], [11.2818, 60.5888], [11.2816, 60.5887], [11.2816, 60.5887], [11.2815, 60.5885], [11.2815, 60.5885], [11.2814, 60.5884], [11.2812, 60.5883], [11.2811, 60.5883], [11.281, 60.5882], [11.2808, 60.5881], [11.2807, 60.588], [11.2805, 60.5878], [11.2804, 60.5877], [11.2803, 60.5876], [11.2802, 60.5876], [11.2801, 60.5875], [11.2801, 60.5874], [11.28, 60.5873], [11.2796, 60.5872], [11.2795, 60.5872], [11.2794, 60.5871], [11.2794, 60.587], [11.2794, 60.587], [11.2794, 60.587], [11.2794, 60.587], [11.2793, 60.5869], [11.2793, 60.5869], [11.2792, 60.5868], [11.2789, 60.5866], [11.2786, 60.5865], [11.2785, 60.5864], [11.2783, 60.5864], [11.2781, 60.5862], [11.2779, 60.5862], [11.2777, 60.5861], [11.2776, 60.5861], [11.2775, 60.5861], [11.2775, 60.586], [11.2774, 60.586], [11.2774, 60.5859], [11.2774, 60.5858], [11.2773, 60.5857], [11.2772, 60.5856], [11.2771, 60.5855], [11.277, 60.5854], [11.2768, 60.5852], [11.2768, 60.5852], [11.2768, 60.5851], [11.2767, 60.5851], [11.2767, 60.5851], [11.2767, 60.585], [11.2766, 60.585], [11.2766, 60.585], [11.2765, 60.5849], [11.2765, 60.5849], [11.2764, 60.5848], [11.2763, 60.5848], [11.2762, 60.5847], [11.2761, 60.5846], [11.276, 60.5846], [11.276, 60.5845], [11.2759, 60.5845], [11.2759, 60.5845], [11.2758, 60.5844], [11.2757, 60.5843], [11.2756, 60.5842], [11.2755, 60.5842], [11.2753, 60.5841], [11.275, 60.5839], [11.2748, 60.5838], [11.2746, 60.5837], [11.2742, 60.5836], [11.2741, 60.5835], [11.2739, 60.5834], [11.2738, 60.5833], [11.2737, 60.5833], [11.2737, 60.5833], [11.2736, 60.5832], [11.2735, 60.5832], [11.2732, 60.5831], [11.273, 60.583], [11.2729, 60.583], [11.2729, 60.583], [11.2729, 60.583], [11.2729, 60.5829], [11.2728, 60.5829], [11.2727, 60.5829], [11.2726, 60.5828], [11.2725, 60.5828], [11.2725, 60.5828], [11.2724, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2723, 60.5828], [11.2722, 60.5828], [11.2721, 60.5828], [11.2719, 60.5827], [11.2718, 60.5827], [11.2718, 60.5827], [11.2717, 60.5827], [11.2716, 60.5827], [11.2715, 60.5827], [11.2714, 60.5827], [11.2713, 60.5827], [11.2713, 60.5828], [11.2712, 60.5827], [11.2713, 60.5827], [11.2712, 60.5827], [11.2712, 60.5827], [11.2711, 60.5827], [11.2711, 60.5827], [11.271, 60.5827], [11.271, 60.5828], [11.2709, 60.5827], [11.2708, 60.5827], [11.2708, 60.5827], [11.2707, 60.5827], [11.2707, 60.5827], [11.2708, 60.5826], [11.2708, 60.5826], [11.2706, 60.5826], [11.2706, 60.5826], [11.2704, 60.5824], [11.2704, 60.5933], [11.2707, 60.5934], [11.2709, 60.5936], [11.271, 60.5937], [11.271, 60.5939], [11.2708, 60.5939], [11.2706, 60.5941], [11.2705, 60.5941], [11.2704, 60.5942], [11.2704, 60.5969], [11.2891, 60.5969], [11.289, 60.5968]]]}}, {"type": "Feature", "properties": {"sub_div_id": "182", "sub_div_center": [60.596856, 11.270419]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2704, 60.5969], [11.2704, 60.6108], [11.2705, 60.6107], [11.2707, 60.6106], [11.2707, 60.6106], [11.2707, 60.6106], [11.2708, 60.6106], [11.271, 60.6105], [11.271, 60.6104], [11.271, 60.6104], [11.2711, 60.6104], [11.2712, 60.6103], [11.2714, 60.6102], [11.2716, 60.61], [11.2718, 60.6099], [11.2719, 60.6098], [11.2721, 60.6097], [11.2722, 60.6096], [11.2724, 60.6095], [11.2727, 60.6094], [11.2728, 60.6093], [11.2729, 60.6093], [11.2731, 60.6092], [11.2733, 60.6091], [11.2735, 60.6091], [11.2737, 60.609], [11.2739, 60.609], [11.2739, 60.6089], [11.2742, 60.6089], [11.2743, 60.6088], [11.2747, 60.6086], [11.2747, 60.6086], [11.2749, 60.6085], [11.2749, 60.6084], [11.2751, 60.6084], [11.2751, 60.6083], [11.275, 60.6083], [11.2749, 60.6083], [11.2748, 60.6083], [11.2748, 60.6082], [11.2749, 60.6082], [11.275, 60.6082], [11.2751, 60.6081], [11.2751, 60.6081], [11.2751, 60.608], [11.2752, 60.6079], [11.2753, 60.6079], [11.2755, 60.6078], [11.2756, 60.6078], [11.2757, 60.6078], [11.2758, 60.6078], [11.2758, 60.6078], [11.2759, 60.6078], [11.276, 60.6078], [11.2761, 60.6078], [11.2762, 60.6077], [11.2761, 60.6076], [11.2761, 60.6076], [11.2762, 60.6076], [11.2762, 60.6076], [11.2763, 60.6076], [11.2763, 60.6076], [11.2765, 60.6076], [11.2766, 60.6076], [11.2767, 60.6076], [11.2768, 60.6076], [11.2768, 60.6075], [11.2769, 60.6076], [11.277, 60.6076], [11.2771, 60.6076], [11.2773, 60.6076], [11.2779, 60.6075], [11.2783, 60.6075], [11.2785, 60.6075], [11.2787, 60.6074], [11.2787, 60.6074], [11.2789, 60.6074], [11.2789, 60.6074], [11.2791, 60.6073], [11.2792, 60.6072], [11.2793, 60.6072], [11.2795, 60.6071], [11.2797, 60.6071], [11.2798, 60.607], [11.2799, 60.6069], [11.2801, 60.6067], [11.2802, 60.6067], [11.2803, 60.6066], [11.2804, 60.6065], [11.2804, 60.6065], [11.2805, 60.6064], [11.2806, 60.6064], [11.2807, 60.6063], [11.2807, 60.6063], [11.2808, 60.6062], [11.2809, 60.6062], [11.2809, 60.6062], [11.281, 60.6062], [11.281, 60.6061], [11.2812, 60.606], [11.2813, 60.6059], [11.2814, 60.6058], [11.2814, 60.6058], [11.2815, 60.6058], [11.2816, 60.6057], [11.2818, 60.6057], [11.2819, 60.6056], [11.2821, 60.6055], [11.2823, 60.6054], [11.2824, 60.6053], [11.2826, 60.6052], [11.2827, 60.6051], [11.2827, 60.6051], [11.2827, 60.605], [11.2828, 60.605], [11.2828, 60.605], [11.283, 60.6049], [11.2831, 60.6049], [11.2832, 60.6048], [11.2834, 60.6048], [11.2836, 60.6047], [11.2837, 60.6046], [11.2838, 60.6046], [11.2839, 60.6045], [11.284, 60.6045], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.284, 60.6044], [11.2841, 60.6044], [11.2843, 60.6043], [11.2844, 60.6042], [11.2845, 60.6042], [11.2846, 60.6041], [11.2846, 60.6041], [11.2847, 60.6041], [11.2848, 60.604], [11.2849, 60.604], [11.285, 60.6039], [11.2851, 60.6039], [11.2853, 60.6038], [11.2854, 60.6038], [11.2855, 60.6038], [11.2856, 60.6037], [11.2857, 60.6037], [11.2858, 60.6037], [11.2859, 60.6036], [11.286, 60.6036], [11.2861, 60.6036], [11.2862, 60.6036], [11.2862, 60.6035], [11.2863, 60.6035], [11.2863, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2863, 60.6035], [11.2863, 60.6035], [11.2864, 60.6035], [11.2864, 60.6035], [11.2865, 60.6035], [11.2865, 60.6035], [11.2866, 60.6034], [11.2867, 60.6034], [11.2869, 60.6033], [11.287, 60.6033], [11.2871, 60.6032], [11.2872, 60.6032], [11.2872, 60.6032], [11.2873, 60.6032], [11.2873, 60.6031], [11.2873, 60.6031], [11.2874, 60.6032], [11.2874, 60.6032], [11.2874, 60.6032], [11.2874, 60.6032], [11.2875, 60.6031], [11.2875, 60.6031], [11.2875, 60.6031], [11.2875, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2876, 60.6031], [11.2877, 60.6031], [11.2877, 60.6031], [11.2878, 60.6031], [11.2879, 60.6031], [11.2879, 60.603], [11.288, 60.603], [11.2879, 60.603], [11.288, 60.603], [11.288, 60.603], [11.288, 60.603], [11.288, 60.603], [11.2881, 60.603], [11.2881, 60.603], [11.2881, 60.6029], [11.2881, 60.603], [11.2882, 60.603], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2882, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6029], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2883, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2884, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2885, 60.6028], [11.2886, 60.6028], [11.2885, 60.6027], [11.2885, 60.6027], [11.2886, 60.6027], [11.2886, 60.6027], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6026], [11.2887, 60.6025], [11.2887, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2888, 60.6025], [11.2889, 60.6025], [11.2889, 60.6025], [11.2889, 60.6025], [11.2889, 60.6024], [11.289, 60.6024], [11.2891, 60.6024], [11.2891, 60.6023], [11.2892, 60.6023], [11.2893, 60.6023], [11.2894, 60.6023], [11.2894, 60.6022], [11.2895, 60.6022], [11.2896, 60.6021], [11.2897, 60.6021], [11.2897, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.6021], [11.2898, 60.602], [11.2898, 60.602], [11.2898, 60.602], [11.2899, 60.602], [11.2899, 60.602], [11.29, 60.602], [11.2901, 60.602], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2902, 60.6019], [11.2903, 60.6019], [11.2903, 60.6019], [11.2904, 60.6019], [11.2903, 60.6019], [11.2903, 60.6018], [11.2903, 60.6019], [11.2904, 60.6019], [11.2904, 60.6019], [11.2904, 60.6018], [11.2904, 60.6018], [11.2905, 60.6018], [11.2906, 60.6018], [11.2906, 60.6017], [11.2907, 60.6017], [11.2908, 60.6016], [11.2908, 60.6016], [11.2909, 60.6016], [11.2908, 60.6016], [11.2908, 60.6015], [11.2908, 60.6015], [11.2907, 60.6014], [11.2906, 60.6014], [11.2905, 60.6013], [11.2902, 60.6012], [11.29, 60.6012], [11.2899, 60.6012], [11.2899, 60.6011], [11.2897, 60.6011], [11.2897, 60.601], [11.2896, 60.601], [11.2895, 60.601], [11.2894, 60.6009], [11.2894, 60.6009], [11.2893, 60.6006], [11.2891, 60.6005], [11.2891, 60.6004], [11.289, 60.6002], [11.2891, 60.5999], [11.2892, 60.5999], [11.2892, 60.5997], [11.289, 60.5997], [11.2889, 60.5996], [11.2889, 60.5995], [11.289, 60.5995], [11.289, 60.5993], [11.2888, 60.5991], [11.2888, 60.599], [11.2888, 60.5989], [11.2889, 60.5989], [11.2889, 60.5988], [11.289, 60.5987], [11.2892, 60.5987], [11.2892, 60.5986], [11.2891, 60.5986], [11.2891, 60.5985], [11.2891, 60.5985], [11.2891, 60.5984], [11.289, 60.5984], [11.289, 60.5984], [11.2891, 60.5984], [11.2891, 60.5984], [11.2891, 60.5983], [11.289, 60.5983], [11.289, 60.5983], [11.289, 60.5982], [11.289, 60.5981], [11.2891, 60.598], [11.2891, 60.598], [11.2892, 60.5979], [11.2892, 60.5979], [11.2892, 60.5979], [11.2891, 60.5979], [11.2891, 60.5979], [11.2892, 60.5979], [11.2892, 60.5978], [11.2892, 60.5978], [11.2892, 60.5977], [11.2891, 60.5977], [11.2891, 60.5977], [11.2891, 60.5977], [11.2891, 60.5976], [11.2891, 60.5975], [11.2891, 60.5975], [11.289, 60.5974], [11.2891, 60.5974], [11.2891, 60.5973], [11.2891, 60.5973], [11.2891, 60.5973], [11.2891, 60.5972], [11.2891, 60.5971], [11.2891, 60.5971], [11.2891, 60.597], [11.2891, 60.5969], [11.2891, 60.5969], [11.2891, 60.5969], [11.2704, 60.5969]]]}}, {"type": "Feature", "properties": {"sub_div_id": "183", "sub_div_center": [60.709163, 11.014734]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0169, 60.7092], [11.0168, 60.7092], [11.0167, 60.7092], [11.0165, 60.7092], [11.0164, 60.7093], [11.0163, 60.7093], [11.0162, 60.7093], [11.0162, 60.7095], [11.0162, 60.7095], [11.0162, 60.7095], [11.0161, 60.7097], [11.0161, 60.7098], [11.016, 60.7099], [11.0158, 60.7099], [11.0158, 60.7101], [11.0156, 60.7102], [11.0154, 60.7104], [11.0152, 60.7104], [11.0151, 60.7106], [11.015, 60.7106], [11.0149, 60.7107], [11.0148, 60.7108], [11.0148, 60.7108], [11.0149, 60.711], [11.0149, 60.7111], [11.0148, 60.7112], [11.0148, 60.7112], [11.0148, 60.7113], [11.0149, 60.7115], [11.0149, 60.7115], [11.0149, 60.7116], [11.0149, 60.7117], [11.0149, 60.7117], [11.0149, 60.7118], [11.0148, 60.7119], [11.0148, 60.7119], [11.0147, 60.712], [11.0147, 60.712], [11.0147, 60.7121], [11.0148, 60.712], [11.0149, 60.712], [11.015, 60.712], [11.0151, 60.712], [11.0152, 60.712], [11.0153, 60.712], [11.0154, 60.712], [11.0155, 60.712], [11.0156, 60.712], [11.0156, 60.712], [11.0159, 60.7119], [11.0161, 60.7119], [11.0162, 60.7119], [11.0162, 60.7118], [11.0164, 60.7118], [11.0165, 60.7117], [11.0166, 60.7117], [11.0167, 60.7117], [11.0167, 60.7117], [11.0168, 60.7117], [11.0168, 60.7116], [11.0168, 60.7116], [11.0169, 60.7115], [11.0169, 60.7115], [11.017, 60.7114], [11.017, 60.7114], [11.0171, 60.7113], [11.0172, 60.7114], [11.0173, 60.7114], [11.0174, 60.7114], [11.0175, 60.7114], [11.0176, 60.7114], [11.0177, 60.7114], [11.0177, 60.7114], [11.0178, 60.7114], [11.0179, 60.7113], [11.018, 60.7113], [11.018, 60.7112], [11.0181, 60.7111], [11.0181, 60.7111], [11.0181, 60.711], [11.0181, 60.711], [11.0181, 60.7108], [11.0182, 60.7107], [11.0181, 60.7107], [11.0182, 60.7106], [11.0182, 60.7106], [11.0182, 60.7106], [11.0183, 60.7105], [11.0183, 60.7104], [11.0183, 60.7104], [11.0182, 60.7103], [11.0183, 60.7103], [11.0182, 60.7102], [11.0182, 60.7102], [11.0181, 60.7101], [11.0181, 60.71], [11.0181, 60.71], [11.0181, 60.7099], [11.0179, 60.7097], [11.0178, 60.7096], [11.0177, 60.7096], [11.0176, 60.7095], [11.0176, 60.7095], [11.0176, 60.7094], [11.0175, 60.7093], [11.0175, 60.7093], [11.0174, 60.7093], [11.0174, 60.7092], [11.0173, 60.7092], [11.0172, 60.7092], [11.0171, 60.7092], [11.017, 60.7092], [11.0169, 60.7092]]]}}, {"type": "Feature", "properties": {"sub_div_id": "184", "sub_div_center": [60.851609, 10.951163]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9512, 60.8519], [10.9513, 60.852], [10.9513, 60.852], [10.9514, 60.852], [10.9515, 60.8521], [10.9516, 60.8522], [10.9517, 60.8522], [10.9517, 60.8523], [10.9518, 60.8523], [10.9518, 60.8523], [10.9518, 60.8522], [10.9518, 60.8522], [10.9517, 60.8522], [10.9517, 60.8521], [10.9518, 60.8521], [10.9518, 60.8521], [10.952, 60.8521], [10.952, 60.852], [10.9521, 60.852], [10.9522, 60.852], [10.9522, 60.852], [10.9522, 60.8519], [10.9522, 60.8519], [10.9522, 60.8519], [10.9521, 60.8518], [10.952, 60.8518], [10.9519, 60.8518], [10.9519, 60.8517], [10.9518, 60.8516], [10.9517, 60.8516], [10.9516, 60.8516], [10.9515, 60.8516], [10.9514, 60.8517], [10.9513, 60.8517], [10.9513, 60.8518], [10.9512, 60.8518], [10.9512, 60.8519], [10.9512, 60.8519]]]}}, {"type": "Feature", "properties": {"sub_div_id": "185", "sub_div_center": [60.791794, 11.13261]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1332, 60.7934], [11.1333, 60.7935], [11.1332, 60.7936], [11.1344, 60.7933], [11.1352, 60.793], [11.1355, 60.7929], [11.1358, 60.7925], [11.136, 60.7924], [11.1361, 60.7922], [11.1362, 60.7921], [11.1363, 60.792], [11.1361, 60.792], [11.136, 60.7919], [11.136, 60.7918], [11.1357, 60.7918], [11.1354, 60.7918], [11.1353, 60.792], [11.1351, 60.7919], [11.1349, 60.7919], [11.1348, 60.792], [11.1348, 60.7922], [11.135, 60.7923], [11.1349, 60.7924], [11.1348, 60.7925], [11.1349, 60.7925], [11.135, 60.7925], [11.1353, 60.7923], [11.1353, 60.792], [11.1355, 60.7921], [11.1354, 60.7923], [11.135, 60.7926], [11.1348, 60.7926], [11.1346, 60.7927], [11.1347, 60.7927], [11.1351, 60.7928], [11.1351, 60.7929], [11.1346, 60.7929], [11.1339, 60.7931], [11.134, 60.7932], [11.1339, 60.7933], [11.1336, 60.7932], [11.1335, 60.7931], [11.1333, 60.7932], [11.1326, 60.7933], [11.1332, 60.7934]]]}}, {"type": "Feature", "properties": {"sub_div_id": "186", "sub_div_center": [60.790083, 11.137386]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1375, 60.7914], [11.1378, 60.7915], [11.1382, 60.7914], [11.1386, 60.7912], [11.1389, 60.7911], [11.139, 60.7909], [11.139, 60.7908], [11.1391, 60.7907], [11.1394, 60.7907], [11.1397, 60.7907], [11.14, 60.7906], [11.1401, 60.7903], [11.1402, 60.7901], [11.1396, 60.7901], [11.1385, 60.7902], [11.1381, 60.7903], [11.1383, 60.7904], [11.1382, 60.7907], [11.138, 60.7909], [11.1378, 60.7911], [11.1376, 60.7912], [11.1374, 60.7913], [11.1375, 60.7914]]]}}, {"type": "Feature", "properties": {"sub_div_id": "187", "sub_div_center": [60.789971, 11.133341]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1334, 60.7901], [11.1335, 60.7902], [11.1335, 60.7903], [11.1336, 60.7903], [11.1341, 60.7903], [11.1344, 60.7903], [11.1346, 60.7904], [11.135, 60.7904], [11.1348, 60.7904], [11.1341, 60.7907], [11.1337, 60.7908], [11.1341, 60.7908], [11.1342, 60.7909], [11.1345, 60.791], [11.1347, 60.7911], [11.1349, 60.7911], [11.1353, 60.7909], [11.1356, 60.7908], [11.136, 60.7904], [11.1362, 60.7902], [11.1363, 60.7902], [11.1364, 60.7901], [11.1359, 60.7901], [11.1355, 60.7902], [11.135, 60.7902], [11.1346, 60.7902], [11.1343, 60.7901], [11.1339, 60.79], [11.1333, 60.7901], [11.1334, 60.7901]]]}}, {"type": "Feature", "properties": {"sub_div_id": "188", "sub_div_center": [60.789971, 11.133341]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1334, 60.7901], [11.1335, 60.7902], [11.1335, 60.7903], [11.1336, 60.7903], [11.1341, 60.7903], [11.1344, 60.7903], [11.1346, 60.7904], [11.135, 60.7904], [11.1348, 60.7904], [11.1341, 60.7907], [11.1337, 60.7908], [11.1341, 60.7908], [11.1342, 60.7909], [11.1345, 60.791], [11.1347, 60.7911], [11.1349, 60.7911], [11.1353, 60.7909], [11.1356, 60.7908], [11.136, 60.7904], [11.1362, 60.7902], [11.1363, 60.7902], [11.1364, 60.7901], [11.1359, 60.7901], [11.1355, 60.7902], [11.135, 60.7902], [11.1346, 60.7902], [11.1343, 60.7901], [11.1339, 60.79], [11.1333, 60.7901], [11.1334, 60.7901]]]}}, {"type": "Feature", "properties": {"sub_div_id": "189", "sub_div_center": [60.791854, 11.062579]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0626, 60.792], [11.0626, 60.792], [11.0626, 60.792], [11.0627, 60.792], [11.0627, 60.792], [11.063, 60.792], [11.0631, 60.7921], [11.0632, 60.7921], [11.0633, 60.7921], [11.0634, 60.7921], [11.0636, 60.7921], [11.0636, 60.7922], [11.0637, 60.7923], [11.0638, 60.7923], [11.0639, 60.7923], [11.0639, 60.7923], [11.064, 60.7923], [11.0641, 60.7923], [11.0641, 60.7923], [11.0642, 60.7923], [11.0643, 60.7923], [11.0643, 60.7923], [11.0644, 60.7923], [11.0644, 60.7923], [11.0644, 60.7922], [11.0644, 60.7922], [11.0644, 60.7922], [11.0644, 60.7922], [11.0643, 60.7921], [11.0643, 60.7921], [11.0642, 60.7921], [11.0641, 60.792], [11.064, 60.792], [11.0638, 60.7919], [11.0637, 60.7919], [11.0636, 60.7919], [11.0634, 60.7919], [11.0632, 60.7919], [11.063, 60.7919], [11.0628, 60.7919], [11.0627, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.7919], [11.0626, 60.792]]]}}, {"type": "Feature", "properties": {"sub_div_id": "190", "sub_div_center": [60.695498, 11.108473]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6957], [11.1085, 60.6957], [11.1085, 60.6957], [11.1085, 60.6958], [11.1086, 60.6959], [11.1086, 60.6959], [11.1087, 60.6959], [11.1088, 60.6958], [11.1088, 60.6958], [11.1088, 60.6958], [11.1089, 60.6957], [11.1089, 60.6957], [11.1088, 60.6957], [11.1088, 60.6956], [11.1088, 60.6956], [11.1087, 60.6956], [11.1087, 60.6956], [11.1088, 60.6956], [11.1088, 60.6955], [11.1088, 60.6955], [11.1088, 60.6955], [11.1088, 60.6955], [11.1087, 60.6955], [11.1087, 60.6955], [11.1086, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956], [11.1085, 60.6956]]]}}, {"type": "Feature", "properties": {"sub_div_id": "191", "sub_div_center": [60.598438, 11.194773]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1949, 60.5997], [11.195, 60.5997], [11.1951, 60.5996], [11.1952, 60.5996], [11.1952, 60.5997], [11.1952, 60.5998], [11.1952, 60.5998], [11.1953, 60.5998], [11.1953, 60.5998], [11.1954, 60.5998], [11.1956, 60.5997], [11.1957, 60.5998], [11.1958, 60.6], [11.1959, 60.6], [11.1959, 60.6001], [11.1961, 60.6001], [11.1962, 60.6], [11.1962, 60.6], [11.1963, 60.5999], [11.1963, 60.5997], [11.1963, 60.5996], [11.1962, 60.5996], [11.1962, 60.5996], [11.1962, 60.5995], [11.1966, 60.5994], [11.1967, 60.5994], [11.1969, 60.5994], [11.1971, 60.5993], [11.1973, 60.5992], [11.1974, 60.5992], [11.1975, 60.5991], [11.1975, 60.599], [11.1975, 60.599], [11.1975, 60.599], [11.1975, 60.5989], [11.1974, 60.5989], [11.1974, 60.5988], [11.1974, 60.5987], [11.1973, 60.5987], [11.1973, 60.5987], [11.1972, 60.5987], [11.1971, 60.5987], [11.1971, 60.5987], [11.197, 60.5987], [11.197, 60.5987], [11.1969, 60.5986], [11.1968, 60.5986], [11.1968, 60.5986], [11.1969, 60.5985], [11.1968, 60.5985], [11.1967, 60.5984], [11.1966, 60.5985], [11.1965, 60.5986], [11.1964, 60.5986], [11.1963, 60.5987], [11.1961, 60.5987], [11.196, 60.5988], [11.1959, 60.5988], [11.1957, 60.5989], [11.1956, 60.5989], [11.1955, 60.599], [11.1953, 60.5991], [11.1951, 60.5993], [11.1949, 60.5995], [11.1948, 60.5997], [11.1948, 60.5997], [11.1949, 60.5997]]]}}, {"type": "Feature", "properties": {"sub_div_id": "192", "sub_div_center": [60.594366, 11.205802]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2059, 60.5947], [11.206, 60.5947], [11.2061, 60.5947], [11.2061, 60.5946], [11.2062, 60.5945], [11.2063, 60.5944], [11.2063, 60.5944], [11.206, 60.5944], [11.2058, 60.5945], [11.2058, 60.5946], [11.2059, 60.5947]]]}}, {"type": "Feature", "properties": {"sub_div_id": "193", "sub_div_center": [60.603532, 11.197614]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1977, 60.6038], [11.1978, 60.6038], [11.1979, 60.6037], [11.1979, 60.6037], [11.1979, 60.6036], [11.1979, 60.6035], [11.1978, 60.6036], [11.1977, 60.6037], [11.1977, 60.6037], [11.1976, 60.6038], [11.1977, 60.6038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "194", "sub_div_center": [60.470625, 11.18065]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1807, 60.4709], [11.1807, 60.4709], [11.1807, 60.471], [11.1808, 60.4711], [11.1807, 60.4712], [11.1808, 60.4712], [11.1809, 60.4712], [11.1809, 60.4712], [11.181, 60.4712], [11.1811, 60.4712], [11.1811, 60.4712], [11.1812, 60.4712], [11.1813, 60.4711], [11.1814, 60.471], [11.1814, 60.4709], [11.1815, 60.4709], [11.1815, 60.4708], [11.1815, 60.4707], [11.1815, 60.4707], [11.1814, 60.4706], [11.1814, 60.4706], [11.1813, 60.4706], [11.1813, 60.4707], [11.1812, 60.4706], [11.1811, 60.4707], [11.1809, 60.4707], [11.1809, 60.4707], [11.1807, 60.4708], [11.1807, 60.4708], [11.1807, 60.4709]]]}}, {"type": "Feature", "properties": {"sub_div_id": "195", "sub_div_center": [60.501046, 11.179674]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1797, 60.5014], [11.1797, 60.5015], [11.1798, 60.5015], [11.1798, 60.5016], [11.1798, 60.5016], [11.1799, 60.5016], [11.1799, 60.5016], [11.18, 60.5015], [11.1801, 60.5014], [11.1801, 60.5014], [11.1801, 60.5013], [11.1801, 60.5013], [11.1801, 60.5012], [11.1801, 60.5012], [11.18, 60.5012], [11.18, 60.5012], [11.1799, 60.5011], [11.18, 60.5011], [11.1799, 60.5011], [11.1799, 60.501], [11.1798, 60.501], [11.1798, 60.5011], [11.1797, 60.5012], [11.1797, 60.5012], [11.1797, 60.5013], [11.1797, 60.5013], [11.1797, 60.5014], [11.1797, 60.5014]]]}}, {"type": "Feature", "properties": {"sub_div_id": "196", "sub_div_center": [60.905868, 10.689829]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6899, 60.9066], [10.6899, 60.9067], [10.6899, 60.9067], [10.6899, 60.9068], [10.6899, 60.9069], [10.6899, 60.9069], [10.6898, 60.9069], [10.6899, 60.907], [10.6899, 60.9071], [10.6899, 60.9071], [10.6901, 60.9072], [10.6902, 60.9072], [10.6903, 60.9072], [10.6904, 60.9073], [10.6905, 60.9073], [10.6905, 60.9072], [10.6906, 60.9072], [10.6906, 60.9072], [10.6906, 60.9071], [10.6906, 60.9071], [10.6907, 60.907], [10.6907, 60.9069], [10.6907, 60.9068], [10.6908, 60.9067], [10.6908, 60.9066], [10.6908, 60.9066], [10.6908, 60.9065], [10.6909, 60.9064], [10.691, 60.9064], [10.6911, 60.9063], [10.6913, 60.9063], [10.6913, 60.9062], [10.6914, 60.9062], [10.6915, 60.9062], [10.6915, 60.9061], [10.6915, 60.9061], [10.6916, 60.9061], [10.6917, 60.9061], [10.6917, 60.906], [10.6917, 60.906], [10.6917, 60.906], [10.6918, 60.906], [10.6918, 60.906], [10.6918, 60.906], [10.6919, 60.906], [10.6919, 60.906], [10.6921, 60.906], [10.6922, 60.906], [10.6923, 60.906], [10.6923, 60.906], [10.6923, 60.9059], [10.6923, 60.9059], [10.6922, 60.9059], [10.6922, 60.9059], [10.6922, 60.9059], [10.692, 60.9059], [10.6918, 60.9059], [10.6918, 60.906], [10.6917, 60.906], [10.6917, 60.906], [10.6916, 60.906], [10.6915, 60.9059], [10.6913, 60.9059], [10.6912, 60.906], [10.6911, 60.906], [10.6909, 60.906], [10.6906, 60.906], [10.6905, 60.9061], [10.6905, 60.9061], [10.6905, 60.9062], [10.6903, 60.9062], [10.6902, 60.9063], [10.6901, 60.9063], [10.69, 60.9064], [10.6899, 60.9064], [10.6899, 60.9065], [10.6899, 60.9065], [10.6899, 60.9065], [10.6898, 60.9066], [10.6899, 60.9066]]]}}, {"type": "Feature", "properties": {"sub_div_id": "197", "sub_div_center": [60.838422, 10.91768]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9177, 60.8392], [10.9179, 60.8393], [10.9182, 60.8394], [10.9185, 60.8393], [10.9188, 60.8393], [10.9188, 60.8392], [10.9188, 60.839], [10.9186, 60.8389], [10.9187, 60.8387], [10.9188, 60.8386], [10.9188, 60.8385], [10.9186, 60.8384], [10.9184, 60.8386], [10.918, 60.8387], [10.9179, 60.8388], [10.9178, 60.8388], [10.9178, 60.8388], [10.9178, 60.8389], [10.9177, 60.839], [10.9177, 60.839], [10.9177, 60.8392]]]}}, {"type": "Feature", "properties": {"sub_div_id": "198", "sub_div_center": [60.903709, 10.698046]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6981, 60.9038], [10.6982, 60.9038], [10.6983, 60.9038], [10.6983, 60.9038], [10.6984, 60.9038], [10.6984, 60.9038], [10.6984, 60.9037], [10.6984, 60.9037], [10.6983, 60.9037], [10.6983, 60.9037], [10.6982, 60.9037], [10.6982, 60.9037], [10.6981, 60.9037], [10.6981, 60.9037], [10.6981, 60.9038], [10.698, 60.9038], [10.6981, 60.9038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "199", "sub_div_center": [60.838089, 10.921051]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9211, 60.8381], [10.9211, 60.8381], [10.9211, 60.8382], [10.9212, 60.8382], [10.9212, 60.8382], [10.9213, 60.8382], [10.9212, 60.8382], [10.9212, 60.8381], [10.9212, 60.8381], [10.9212, 60.8381], [10.9211, 60.8381], [10.9211, 60.8381], [10.9211, 60.8381]]]}}, {"type": "Feature", "properties": {"sub_div_id": "200", "sub_div_center": [60.585086, 11.250495]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2505, 60.5852], [11.2506, 60.5852], [11.2506, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5854], [11.2507, 60.5854], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2507, 60.5853], [11.2508, 60.5852], [11.2508, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2507, 60.5852], [11.2506, 60.5852], [11.2506, 60.5852], [11.2506, 60.5852], [11.2506, 60.5851], [11.2506, 60.5851], [11.2505, 60.5851], [11.2505, 60.5851], [11.2505, 60.5851], [11.2505, 60.5852], [11.2505, 60.5852]]]}}, {"type": "Feature", "properties": {"sub_div_id": "201", "sub_div_center": [60.579584, 11.25879]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2588, 60.5797], [11.2588, 60.5798], [11.2588, 60.5798], [11.2589, 60.5799], [11.2588, 60.5799], [11.2589, 60.58], [11.2589, 60.58], [11.259, 60.58], [11.2591, 60.5799], [11.2592, 60.5799], [11.2591, 60.5798], [11.259, 60.5798], [11.2589, 60.5797], [11.2589, 60.5797], [11.2589, 60.5796], [11.2589, 60.5796], [11.2589, 60.5796], [11.2589, 60.5796], [11.2588, 60.5796], [11.2588, 60.5796], [11.2588, 60.5797]]]}}, {"type": "Feature", "properties": {"sub_div_id": "202", "sub_div_center": [60.579382, 11.258976]}, "geometry": {"type": "Polygon", "coordinates": [[[11.259, 60.5795], [11.2591, 60.5795], [11.2592, 60.5795], [11.2592, 60.5795], [11.2592, 60.5795], [11.2592, 60.5794], [11.2591, 60.5794], [11.2591, 60.5794], [11.259, 60.5794], [11.259, 60.5794], [11.259, 60.5795], [11.259, 60.5795]]]}}, {"type": "Feature", "properties": {"sub_div_id": "203", "sub_div_center": [60.703615, 11.103431]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1035, 60.7038], [11.1035, 60.7038], [11.1036, 60.7038], [11.1035, 60.7039], [11.1036, 60.7039], [11.1036, 60.7038], [11.1036, 60.7038], [11.1036, 60.7038], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7037], [11.1036, 60.7036], [11.1035, 60.7036], [11.1035, 60.7037], [11.1035, 60.7037], [11.1034, 60.7037], [11.1035, 60.7038]]]}}, {"type": "Feature", "properties": {"sub_div_id": "204", "sub_div_center": [60.761127, 10.896987]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8972, 60.7612], [10.8972, 60.7612], [10.8972, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7612], [10.8973, 60.7613], [10.8972, 60.7613], [10.8971, 60.7613], [10.8971, 60.7613], [10.8971, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8972, 60.7614], [10.8974, 60.7613], [10.8975, 60.7614], [10.8976, 60.7614], [10.8977, 60.7613], [10.8977, 60.7613], [10.8978, 60.7613], [10.8979, 60.7613], [10.8979, 60.7613], [10.8979, 60.7613], [10.8978, 60.7613], [10.8976, 60.7612], [10.8974, 60.7611], [10.8973, 60.7611], [10.8972, 60.7611], [10.8972, 60.7611], [10.8971, 60.7612], [10.897, 60.7612], [10.897, 60.7612], [10.8972, 60.7612]]]}}, {"type": "Feature", "properties": {"sub_div_id": "205", "sub_div_center": [60.878193, 10.918664]}, "geometry": {"type": "Polygon", "coordinates": [[[10.9187, 60.8783], [10.9187, 60.8783], [10.9187, 60.8784], [10.9188, 60.8785], [10.9188, 60.8786], [10.9188, 60.8786], [10.9188, 60.8786], [10.9189, 60.8787], [10.919, 60.8787], [10.9192, 60.8788], [10.9193, 60.8788], [10.9194, 60.8788], [10.9195, 60.8788], [10.9195, 60.8788], [10.9196, 60.8788], [10.9196, 60.8788], [10.9197, 60.8788], [10.9197, 60.8788], [10.9197, 60.8788], [10.9198, 60.8788], [10.9198, 60.8787], [10.9198, 60.8787], [10.9197, 60.8787], [10.9197, 60.8787], [10.9196, 60.8786], [10.9195, 60.8786], [10.9195, 60.8786], [10.9194, 60.8786], [10.9194, 60.8786], [10.9194, 60.8786], [10.9193, 60.8786], [10.9193, 60.8786], [10.9193, 60.8785], [10.9193, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8785], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8784], [10.9192, 60.8783], [10.9192, 60.8783], [10.9191, 60.8782], [10.9191, 60.8782], [10.919, 60.8782], [10.9189, 60.8782], [10.9189, 60.8782], [10.9188, 60.8782], [10.9187, 60.8782], [10.9187, 60.8782], [10.9187, 60.8782], [10.9187, 60.8783], [10.9187, 60.8783]]]}}, {"type": "Feature", "properties": {"sub_div_id": "206", "sub_div_center": [60.928129, 10.681347]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6814, 60.9284], [10.6814, 60.9285], [10.6816, 60.9285], [10.6818, 60.9285], [10.6819, 60.9285], [10.6822, 60.9285], [10.6822, 60.9285], [10.6823, 60.9285], [10.6824, 60.9285], [10.6825, 60.9284], [10.6824, 60.9284], [10.6824, 60.9284], [10.6825, 60.9283], [10.6824, 60.9283], [10.6824, 60.9283], [10.6823, 60.9282], [10.6823, 60.9282], [10.6822, 60.9281], [10.6821, 60.9281], [10.682, 60.9281], [10.6819, 60.9281], [10.6817, 60.9282], [10.6817, 60.9282], [10.6817, 60.9282], [10.6817, 60.9282], [10.6816, 60.9282], [10.6815, 60.9282], [10.6816, 60.9283], [10.6816, 60.9283], [10.6816, 60.9284], [10.6815, 60.9283], [10.6814, 60.9283], [10.6813, 60.9284], [10.6814, 60.9284]]]}}, {"type": "Feature", "properties": {"sub_div_id": "207", "sub_div_center": [60.784292, 11.100514]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1005, 60.7845], [11.1005, 60.7845], [11.1005, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7845], [11.1006, 60.7846], [11.1006, 60.7846], [11.1007, 60.7846], [11.1007, 60.7846], [11.1007, 60.7845], [11.1007, 60.7845], [11.1007, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1008, 60.7845], [11.1009, 60.7845], [11.1009, 60.7845], [11.1009, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7844], [11.1008, 60.7843], [11.1008, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7843], [11.1007, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1006, 60.7844], [11.1005, 60.7844], [11.1005, 60.7844], [11.1005, 60.7845], [11.1005, 60.7845], [11.1005, 60.7845]]]}}, {"type": "Feature", "properties": {"sub_div_id": "208", "sub_div_center": [60.921457, 10.68839]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6884, 60.9216], [10.6884, 60.9215], [10.6885, 60.9215], [10.6885, 60.9216], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6885, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9215], [10.6884, 60.9216]]]}}, {"type": "Feature", "properties": {"sub_div_id": "209", "sub_div_center": [60.972552, 10.609377]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6094, 60.9726], [10.6094, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6095, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726], [10.6094, 60.9726]]]}}, {"type": "Feature", "properties": {"sub_div_id": "210", "sub_div_center": [60.972654, 10.608064]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6081, 60.9728], [10.6081, 60.9729], [10.6081, 60.9729], [10.6081, 60.9729], [10.6082, 60.9729], [10.6083, 60.9729], [10.6083, 60.9729], [10.6084, 60.973], [10.6085, 60.973], [10.6085, 60.9731], [10.6085, 60.9731], [10.6084, 60.9731], [10.6084, 60.9732], [10.6083, 60.9732], [10.6083, 60.9732], [10.6084, 60.9732], [10.6084, 60.9732], [10.6085, 60.9732], [10.6087, 60.9732], [10.6089, 60.9732], [10.6089, 60.9732], [10.6089, 60.9731], [10.6089, 60.9731], [10.609, 60.9731], [10.609, 60.973], [10.609, 60.973], [10.6091, 60.973], [10.6091, 60.9729], [10.6091, 60.9729], [10.609, 60.9729], [10.6091, 60.9728], [10.6093, 60.9728], [10.6093, 60.9728], [10.6093, 60.9727], [10.6094, 60.9727], [10.6093, 60.9727], [10.6092, 60.9727], [10.6091, 60.9727], [10.6091, 60.9727], [10.609, 60.9727], [10.6089, 60.9727], [10.6089, 60.9727], [10.6086, 60.9727], [10.6085, 60.9727], [10.6084, 60.9727], [10.6084, 60.9728], [10.6084, 60.9727], [10.6083, 60.9728], [10.6082, 60.9728], [10.6081, 60.9728], [10.6081, 60.9728], [10.6081, 60.9728]]]}}, {"type": "Feature", "properties": {"sub_div_id": "211", "sub_div_center": [60.961766, 10.625351]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6254, 60.9622], [10.6254, 60.9622], [10.6255, 60.9622], [10.6255, 60.9622], [10.6255, 60.9623], [10.6255, 60.9623], [10.6256, 60.9623], [10.6257, 60.9623], [10.6258, 60.9622], [10.626, 60.9622], [10.6261, 60.9622], [10.6262, 60.9622], [10.6263, 60.9622], [10.6264, 60.9621], [10.6264, 60.9621], [10.6265, 60.962], [10.6265, 60.962], [10.6266, 60.962], [10.6266, 60.9619], [10.6266, 60.9619], [10.6267, 60.9619], [10.6267, 60.9618], [10.6267, 60.9618], [10.6266, 60.9618], [10.6266, 60.9618], [10.6265, 60.9618], [10.6264, 60.9618], [10.6264, 60.9618], [10.6263, 60.9618], [10.6262, 60.9618], [10.6262, 60.9618], [10.6262, 60.9619], [10.6262, 60.9619], [10.6261, 60.9619], [10.6261, 60.9619], [10.626, 60.9619], [10.6259, 60.962], [10.6258, 60.962], [10.6258, 60.962], [10.6257, 60.962], [10.6256, 60.9621], [10.6255, 60.9621], [10.6254, 60.9621], [10.6254, 60.9621], [10.6254, 60.9621], [10.6254, 60.9622]]]}}, {"type": "Feature", "properties": {"sub_div_id": "212", "sub_div_center": [60.605472, 11.186995]}, "geometry": {"type": "Polygon", "coordinates": [[[11.187, 60.6056], [11.1871, 60.6056], [11.1872, 60.6055], [11.1872, 60.6055], [11.1872, 60.6055], [11.1871, 60.6055], [11.1871, 60.6055], [11.187, 60.6055], [11.187, 60.6055], [11.187, 60.6055], [11.187, 60.6056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "213", "sub_div_center": [60.887264, 10.677153]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6775, 60.8874], [10.6776, 60.8874], [10.678, 60.8874], [10.6781, 60.8873], [10.6781, 60.8873], [10.6781, 60.8873], [10.6781, 60.8873], [10.6778, 60.8873], [10.6777, 60.8873], [10.6775, 60.8873], [10.6773, 60.8873], [10.6772, 60.8873], [10.6772, 60.8874], [10.6775, 60.8874]]]}}, {"type": "Feature", "properties": {"sub_div_id": "214", "sub_div_center": [60.910343, 10.692255]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9104], [10.6923, 60.9104], [10.6924, 60.9104], [10.6924, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6924, 60.9104], [10.6924, 60.9104], [10.6923, 60.9103], [10.6923, 60.9103], [10.6923, 60.9104], [10.6923, 60.9104], [10.6923, 60.9104]]]}}, {"type": "Feature", "properties": {"sub_div_id": "215", "sub_div_center": [60.910608, 10.692302]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9106], [10.6924, 60.9106], [10.6924, 60.9106], [10.6924, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106], [10.6923, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "216", "sub_div_center": [60.911343, 10.691923]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9114]]]}}, {"type": "Feature", "properties": {"sub_div_id": "217", "sub_div_center": [60.911343, 10.691923]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9114], [10.692, 60.9113], [10.6919, 60.9113], [10.6919, 60.9114]]]}}, {"type": "Feature", "properties": {"sub_div_id": "218", "sub_div_center": [60.911254, 10.691864]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113]]]}}, {"type": "Feature", "properties": {"sub_div_id": "219", "sub_div_center": [60.911254, 10.691864]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113], [10.6919, 60.9113]]]}}, {"type": "Feature", "properties": {"sub_div_id": "220", "sub_div_center": [60.730629, 11.093576]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0936, 60.7307], [11.0936, 60.7307], [11.0937, 60.7307], [11.0937, 60.7307], [11.0937, 60.7306], [11.0937, 60.7306], [11.0937, 60.7306], [11.0936, 60.7306], [11.0936, 60.7306], [11.0936, 60.7306], [11.0936, 60.7307], [11.0936, 60.7307], [11.0936, 60.7307]]]}}, {"type": "Feature", "properties": {"sub_div_id": "221", "sub_div_center": [60.453253, 11.238217]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2382, 60.4533], [11.2383, 60.4533], [11.2383, 60.4533], [11.2383, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533], [11.2382, 60.4533]]]}}, {"type": "Feature", "properties": {"sub_div_id": "222", "sub_div_center": [60.454663, 11.238263]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547]]]}}, {"type": "Feature", "properties": {"sub_div_id": "223", "sub_div_center": [60.454663, 11.238263]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547], [11.2383, 60.4547]]]}}, {"type": "Feature", "properties": {"sub_div_id": "224", "sub_div_center": [60.456773, 11.23772]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2377, 60.4569], [11.2378, 60.4569], [11.2378, 60.4569], [11.2378, 60.4569], [11.2379, 60.4569], [11.2378, 60.4569], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2378, 60.4568], [11.2377, 60.4568], [11.2377, 60.4568], [11.2377, 60.4568], [11.2377, 60.4569], [11.2377, 60.4569]]]}}, {"type": "Feature", "properties": {"sub_div_id": "225", "sub_div_center": [60.466409, 11.183273]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664], [11.1834, 60.4664], [11.1833, 60.4664], [11.1833, 60.4664]]]}}, {"type": "Feature", "properties": {"sub_div_id": "226", "sub_div_center": [60.478794, 11.170159]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1702, 60.4788], [11.1702, 60.4788], [11.1702, 60.4788], [11.1702, 60.4788], [11.1703, 60.4788], [11.1703, 60.4788], [11.1705, 60.4789], [11.1706, 60.479], [11.1707, 60.479], [11.1708, 60.479], [11.1709, 60.479], [11.1709, 60.479], [11.1708, 60.479], [11.1707, 60.479], [11.1707, 60.4789], [11.1706, 60.4789], [11.1705, 60.4789], [11.1704, 60.4788], [11.1704, 60.4788], [11.1704, 60.4788], [11.1703, 60.4788], [11.1702, 60.4788]]]}}, {"type": "Feature", "properties": {"sub_div_id": "227", "sub_div_center": [60.48836, 11.163964]}, "geometry": {"type": "Polygon", "coordinates": [[[11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884], [11.164, 60.4884]]]}}, {"type": "Feature", "properties": {"sub_div_id": "228", "sub_div_center": [60.48612, 11.165056]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1651, 60.487], [11.1651, 60.4871], [11.1651, 60.487], [11.1652, 60.487], [11.1652, 60.487], [11.1653, 60.4869], [11.1654, 60.4868], [11.1655, 60.4866], [11.1656, 60.4865], [11.1657, 60.4864], [11.1657, 60.4864], [11.1657, 60.4863], [11.1657, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4861], [11.1655, 60.4862], [11.1655, 60.4862], [11.1656, 60.4862], [11.1656, 60.4862], [11.1656, 60.4863], [11.1656, 60.4863], [11.1656, 60.4864], [11.1656, 60.4864], [11.1656, 60.4865], [11.1655, 60.4866], [11.1654, 60.4868], [11.1653, 60.4869], [11.1652, 60.487], [11.1651, 60.487], [11.1651, 60.487], [11.1651, 60.487], [11.1651, 60.487]]]}}, {"type": "Feature", "properties": {"sub_div_id": "229", "sub_div_center": [60.585029, 11.254976]}, "geometry": {"type": "Polygon", "coordinates": [[[11.255, 60.5851], [11.255, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.5851], [11.2551, 60.585], [11.2551, 60.585], [11.2551, 60.5851], [11.255, 60.5851], [11.255, 60.585], [11.255, 60.585], [11.255, 60.5851], [11.255, 60.5851]]]}}, {"type": "Feature", "properties": {"sub_div_id": "230", "sub_div_center": [60.709897, 11.015684]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099]]]}}, {"type": "Feature", "properties": {"sub_div_id": "231", "sub_div_center": [60.709897, 11.015684]}, "geometry": {"type": "Polygon", "coordinates": [[[11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099], [11.0157, 60.7099]]]}}, {"type": "Feature", "properties": {"sub_div_id": "232", "sub_div_center": [60.761301, 10.896791]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8968, 60.7613], [10.8968, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "233", "sub_div_center": [60.761301, 10.896791]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8968, 60.7613], [10.8968, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.897, 60.7613], [10.8969, 60.7613], [10.8969, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613], [10.8968, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "234", "sub_div_center": [60.761275, 10.896491]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8965, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "235", "sub_div_center": [60.761275, 10.896491]}, "geometry": {"type": "Polygon", "coordinates": [[[10.8965, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8966, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613], [10.8965, 60.7613]]]}}, {"type": "Feature", "properties": {"sub_div_id": "236", "sub_div_center": [60.906031, 10.7005]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906], [10.7005, 60.906]]]}}, {"type": "Feature", "properties": {"sub_div_id": "237", "sub_div_center": [60.906181, 10.7006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062]]]}}, {"type": "Feature", "properties": {"sub_div_id": "238", "sub_div_center": [60.906181, 10.7006]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062]]]}}, {"type": "Feature", "properties": {"sub_div_id": "239", "sub_div_center": [60.906051, 10.700536]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061]]]}}, {"type": "Feature", "properties": {"sub_div_id": "240", "sub_div_center": [60.906051, 10.700536]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9062], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7006, 60.9061], [10.7005, 60.9061], [10.7005, 60.9061], [10.7006, 60.9061]]]}}, {"type": "Feature", "properties": {"sub_div_id": "241", "sub_div_center": [60.905318, 10.700146]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7001, 60.9053], [10.7001, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7001, 60.9053], [10.7001, 60.9053]]]}}, {"type": "Feature", "properties": {"sub_div_id": "242", "sub_div_center": [60.905318, 10.700146]}, "geometry": {"type": "Polygon", "coordinates": [[[10.7001, 60.9053], [10.7001, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7002, 60.9053], [10.7001, 60.9053], [10.7001, 60.9053]]]}}, {"type": "Feature", "properties": {"sub_div_id": "243", "sub_div_center": [60.905618, 10.692686]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "244", "sub_div_center": [60.905609, 10.692712]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "245", "sub_div_center": [60.905712, 10.692441]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6924, 60.9057], [10.6924, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "246", "sub_div_center": [60.905712, 10.692441]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6924, 60.9057], [10.6924, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "247", "sub_div_center": [60.905659, 10.692489]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "248", "sub_div_center": [60.905632, 10.692552]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6926, 60.9057], [10.6926, 60.9057], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "249", "sub_div_center": [60.905573, 10.692659]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056]]]}}, {"type": "Feature", "properties": {"sub_div_id": "250", "sub_div_center": [60.905623, 10.69253]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9057], [10.6926, 60.9057], [10.6926, 60.9057], [10.6926, 60.9057], [10.6927, 60.9057], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6927, 60.9056], [10.6926, 60.9056], [10.6926, 60.9056], [10.6926, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057], [10.6925, 60.9057]]]}}, {"type": "Feature", "properties": {"sub_div_id": "251", "sub_div_center": [60.910694, 10.692352]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6924, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6925, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107], [10.6924, 60.9107]]]}}, {"type": "Feature", "properties": {"sub_div_id": "252", "sub_div_center": [60.911076, 10.692148]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6922, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "253", "sub_div_center": [60.911089, 10.692041]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.692, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "254", "sub_div_center": [60.911089, 10.692041]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.6921, 60.9111], [10.692, 60.9111], [10.6921, 60.9111]]]}}, {"type": "Feature", "properties": {"sub_div_id": "255", "sub_div_center": [60.910963, 10.692301]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911]]]}}, {"type": "Feature", "properties": {"sub_div_id": "256", "sub_div_center": [60.910963, 10.692301]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6924, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911], [10.6923, 60.911]]]}}, {"type": "Feature", "properties": {"sub_div_id": "257", "sub_div_center": [60.910917, 10.692259]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "258", "sub_div_center": [60.910917, 10.692259]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109], [10.6923, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "259", "sub_div_center": [60.91077, 10.69231]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "260", "sub_div_center": [60.91077, 10.69231]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108], [10.6923, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "261", "sub_div_center": [60.910795, 10.692103]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9108], [10.6922, 60.9108], [10.6922, 60.9109], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "262", "sub_div_center": [60.910795, 10.692103]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9108], [10.6922, 60.9108], [10.6922, 60.9109], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6922, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108], [10.6921, 60.9108]]]}}, {"type": "Feature", "properties": {"sub_div_id": "263", "sub_div_center": [60.910852, 10.692088]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6922, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109], [10.6921, 60.9109]]]}}, {"type": "Feature", "properties": {"sub_div_id": "264", "sub_div_center": [60.910616, 10.691774]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "265", "sub_div_center": [60.910616, 10.691774]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106], [10.6918, 60.9106]]]}}, {"type": "Feature", "properties": {"sub_div_id": "266", "sub_div_center": [60.910363, 10.692515]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6926, 60.9104], [10.6925, 60.9104], [10.6925, 60.9104]]]}}, {"type": "Feature", "properties": {"sub_div_id": "267", "sub_div_center": [60.921047, 10.688709]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6887, 60.9211], [10.6887, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.9211], [10.6888, 60.921], [10.6888, 60.921], [10.6888, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211], [10.6887, 60.9211]]]}}, {"type": "Feature", "properties": {"sub_div_id": "268", "sub_div_center": [60.921491, 10.688591]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6887, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215], [10.6886, 60.9215]]]}}, {"type": "Feature", "properties": {"sub_div_id": "269", "sub_div_center": [60.921414, 10.68854]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6885, 60.9214], [10.6886, 60.9214], [10.6886, 60.9214], [10.6885, 60.9214], [10.6885, 60.9214]]]}}, {"type": "Feature", "properties": {"sub_div_id": "270", "sub_div_center": [60.921414, 10.68854]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6885, 60.9214], [10.6886, 60.9214], [10.6886, 60.9214], [10.6885, 60.9214], [10.6885, 60.9214]]]}}, {"type": "Feature", "properties": {"sub_div_id": "271", "sub_div_center": [60.928621, 10.682313]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "272", "sub_div_center": [60.928621, 10.682313]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "273", "sub_div_center": [60.92863, 10.682341]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6824, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "274", "sub_div_center": [60.928636, 10.682315]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "275", "sub_div_center": [60.928636, 10.682315]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286], [10.6823, 60.9286]]]}}, {"type": "Feature", "properties": {"sub_div_id": "276", "sub_div_center": [60.928649, 10.68228]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "277", "sub_div_center": [60.928649, 10.68228]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9287], [10.6823, 60.9286], [10.6823, 60.9287], [10.6823, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "278", "sub_div_center": [60.928659, 10.682142]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "279", "sub_div_center": [60.928698, 10.682146]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "280", "sub_div_center": [60.928698, 10.682146]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "281", "sub_div_center": [60.928728, 10.682191]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "282", "sub_div_center": [60.928728, 10.682191]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287]]]}}, {"type": "Feature", "properties": {"sub_div_id": "283", "sub_div_center": [60.928719, 10.682125]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6821, 60.9288], [10.6822, 60.9287], [10.6822, 60.9287], [10.6822, 60.9287], [10.6821, 60.9287], [10.6821, 60.9287], [10.6821, 60.9288]]]}}, {"type": "Feature", "properties": {"sub_div_id": "284", "sub_div_center": [60.929105, 10.68157]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6816, 60.9292], [10.6816, 60.9292], [10.6816, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6817, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6817, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9291], [10.6816, 60.9292]]]}}, {"type": "Feature", "properties": {"sub_div_id": "285", "sub_div_center": [60.929058, 10.681407]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6815, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "286", "sub_div_center": [60.929077, 10.681287]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6814, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291], [10.6813, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "287", "sub_div_center": [60.929051, 10.681051]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291], [10.6811, 60.9291]]]}}, {"type": "Feature", "properties": {"sub_div_id": "288", "sub_div_center": [60.792643, 11.133552]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1336, 60.7928], [11.1336, 60.7929], [11.1337, 60.7929], [11.1342, 60.7928], [11.1344, 60.7928], [11.1344, 60.7927], [11.1344, 60.7927], [11.1342, 60.7927], [11.1341, 60.7927], [11.134, 60.7927], [11.134, 60.7926], [11.1338, 60.7927], [11.1338, 60.7927], [11.1337, 60.7927], [11.1337, 60.7927], [11.1336, 60.7927], [11.1336, 60.7927], [11.1336, 60.7928], [11.1336, 60.7928]]]}}, {"type": "Feature", "properties": {"sub_div_id": "289", "sub_div_center": [60.789848, 11.134821]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1349, 60.79], [11.1349, 60.79], [11.1349, 60.7901], [11.1349, 60.7901], [11.1351, 60.7901], [11.1354, 60.7901], [11.1355, 60.79], [11.1357, 60.79], [11.1359, 60.79], [11.136, 60.79], [11.1362, 60.79], [11.1363, 60.7899], [11.1362, 60.7899], [11.1359, 60.7899], [11.1357, 60.7899], [11.1356, 60.7899], [11.1354, 60.7898], [11.135, 60.7899], [11.1348, 60.7899], [11.1348, 60.7899], [11.1349, 60.79]]]}}, {"type": "Feature", "properties": {"sub_div_id": "290", "sub_div_center": [60.790189, 11.136317]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1364, 60.7906], [11.1366, 60.7905], [11.1367, 60.7905], [11.1368, 60.7904], [11.1369, 60.7904], [11.1368, 60.7905], [11.1367, 60.7905], [11.1366, 60.7906], [11.1367, 60.7906], [11.1368, 60.7906], [11.1369, 60.7906], [11.137, 60.7906], [11.1371, 60.7906], [11.1372, 60.7907], [11.1373, 60.7907], [11.1373, 60.7908], [11.1374, 60.7909], [11.1374, 60.7909], [11.1375, 60.7909], [11.1376, 60.7908], [11.1376, 60.7907], [11.1376, 60.7907], [11.1375, 60.7906], [11.1375, 60.7905], [11.1375, 60.7904], [11.1375, 60.7903], [11.1375, 60.7903], [11.1373, 60.7902], [11.1372, 60.7902], [11.137, 60.7902], [11.1369, 60.7902], [11.1368, 60.7903], [11.1365, 60.7903], [11.1364, 60.7903], [11.1364, 60.7904], [11.1364, 60.7904], [11.1364, 60.7905], [11.1363, 60.7906], [11.1364, 60.7906]]]}}, {"type": "Feature", "properties": {"sub_div_id": "291", "sub_div_center": [60.790675, 11.135995]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1361, 60.791], [11.1361, 60.7911], [11.1362, 60.7911], [11.1363, 60.7912], [11.1364, 60.7911], [11.1366, 60.7911], [11.1367, 60.791], [11.1369, 60.791], [11.137, 60.791], [11.1371, 60.7909], [11.137, 60.7908], [11.1369, 60.7907], [11.1368, 60.7907], [11.1366, 60.7907], [11.1364, 60.7907], [11.1363, 60.7907], [11.1362, 60.7908], [11.1361, 60.7909], [11.136, 60.791], [11.1361, 60.791]]]}}, {"type": "Feature", "properties": {"sub_div_id": "292", "sub_div_center": [60.791071, 11.138876]}, "geometry": {"type": "Polygon", "coordinates": [[[11.139, 60.7914], [11.139, 60.7915], [11.1392, 60.7914], [11.1393, 60.7914], [11.1395, 60.7913], [11.1397, 60.7912], [11.1398, 60.7911], [11.1397, 60.7911], [11.1395, 60.7911], [11.139, 60.7914], [11.1389, 60.7914], [11.139, 60.7914]]]}}, {"type": "Feature", "properties": {"sub_div_id": "293", "sub_div_center": [60.801345, 11.114357]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1144, 60.8015], [11.1145, 60.8015], [11.1145, 60.8014], [11.1145, 60.8014], [11.1145, 60.8014], [11.1144, 60.8013], [11.1144, 60.8014], [11.1144, 60.8014], [11.1144, 60.8015], [11.1144, 60.8015], [11.1144, 60.8015]]]}}, {"type": "Feature", "properties": {"sub_div_id": "294", "sub_div_center": [60.801489, 11.105788]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1058, 60.8017], [11.1059, 60.8017], [11.106, 60.8017], [11.106, 60.8017], [11.1061, 60.8016], [11.1061, 60.8016], [11.1061, 60.8015], [11.1061, 60.8015], [11.106, 60.8015], [11.106, 60.8015], [11.106, 60.8016], [11.1058, 60.8016], [11.1058, 60.8017], [11.1058, 60.8017]]]}}, {"type": "Feature", "properties": {"sub_div_id": "295", "sub_div_center": [60.802463, 11.112201]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1122, 60.8025], [11.1123, 60.8025], [11.1123, 60.8025], [11.1123, 60.8025], [11.1122, 60.8025], [11.1122, 60.8025], [11.1122, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "296", "sub_div_center": [60.802226, 11.108637]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1087, 60.8023], [11.1087, 60.8023], [11.1088, 60.8023], [11.1088, 60.8023], [11.1089, 60.8023], [11.1088, 60.8022], [11.1087, 60.8022], [11.1087, 60.8023], [11.1086, 60.8023], [11.1087, 60.8023]]]}}, {"type": "Feature", "properties": {"sub_div_id": "297", "sub_div_center": [60.80236, 11.110254]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1103, 60.8025], [11.1103, 60.8025], [11.1104, 60.8025], [11.1104, 60.8025], [11.1105, 60.8025], [11.1105, 60.8025], [11.1106, 60.8024], [11.1105, 60.8024], [11.1105, 60.8024], [11.1105, 60.8024], [11.1104, 60.8024], [11.1103, 60.8024], [11.1103, 60.8024], [11.1103, 60.8024], [11.1103, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "298", "sub_div_center": [60.801834, 11.108782]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1088, 60.8021], [11.1089, 60.8021], [11.109, 60.802], [11.109, 60.802], [11.1092, 60.802], [11.1094, 60.802], [11.1095, 60.802], [11.1095, 60.802], [11.1096, 60.8019], [11.1096, 60.8019], [11.1097, 60.8019], [11.1097, 60.8018], [11.1096, 60.8018], [11.1095, 60.8019], [11.1095, 60.8018], [11.1094, 60.8019], [11.1093, 60.8019], [11.1092, 60.8019], [11.1091, 60.8019], [11.109, 60.8019], [11.1089, 60.8019], [11.1089, 60.802], [11.1088, 60.802], [11.1088, 60.8021], [11.1088, 60.8021]]]}}, {"type": "Feature", "properties": {"sub_div_id": "299", "sub_div_center": [60.802167, 11.107325]}, "geometry": {"type": "Polygon", "coordinates": [[[11.1075, 60.8025], [11.1075, 60.8025], [11.1076, 60.8026], [11.1077, 60.8025], [11.1079, 60.8024], [11.108, 60.8024], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8023], [11.108, 60.8022], [11.108, 60.8022], [11.1078, 60.8022], [11.1078, 60.8023], [11.1077, 60.8023], [11.1077, 60.8023], [11.1076, 60.8023], [11.1076, 60.8024], [11.1075, 60.8024], [11.1074, 60.8024], [11.1073, 60.8025], [11.1075, 60.8025]]]}}, {"type": "Feature", "properties": {"sub_div_id": "300", "sub_div_center": [60.591876, 11.208782]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2088, 60.592], [11.2088, 60.592], [11.2089, 60.5919], [11.2089, 60.5919], [11.2088, 60.5919], [11.2088, 60.5919], [11.2088, 60.592], [11.2088, 60.592]]]}}, {"type": "Feature", "properties": {"sub_div_id": "301", "sub_div_center": [60.591439, 11.208611]}, "geometry": {"type": "Polygon", "coordinates": [[[11.2086, 60.5919], [11.2087, 60.592], [11.2087, 60.5919], [11.2088, 60.5918], [11.2088, 60.5918], [11.2088, 60.5917], [11.2089, 60.5917], [11.2089, 60.5917], [11.2089, 60.5916], [11.2089, 60.5916], [11.2089, 60.5915], [11.2089, 60.5915], [11.2089, 60.5914], [11.2088, 60.5914], [11.2087, 60.5915], [11.2087, 60.5915], [11.2087, 60.5916], [11.2087, 60.5917], [11.2086, 60.5918], [11.2086, 60.5918], [11.2086, 60.5919]]]}}, {"type": "Feature", "properties": {"sub_div_id": "302", "sub_div_center": [60.970138, 10.606669]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6067, 60.9703], [10.6068, 60.9704], [10.6069, 60.9705], [10.607, 60.9705], [10.607, 60.9704], [10.607, 60.9703], [10.607, 60.9702], [10.607, 60.9701], [10.6069, 60.9701], [10.6067, 60.9701], [10.6067, 60.9702], [10.6067, 60.9703], [10.6067, 60.9703]]]}}, {"type": "Feature", "properties": {"sub_div_id": "303", "sub_div_center": [60.962328, 10.624371]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6244, 60.9624], [10.6245, 60.9624], [10.6246, 60.9625], [10.6247, 60.9625], [10.625, 60.9625], [10.6251, 60.9624], [10.6253, 60.9624], [10.6254, 60.9624], [10.6253, 60.9624], [10.6251, 60.9624], [10.625, 60.9624], [10.6249, 60.9624], [10.6248, 60.9624], [10.6246, 60.9624], [10.6245, 60.9623], [10.6244, 60.9623], [10.6244, 60.9624], [10.6244, 60.9624]]]}}, {"type": "Feature", "properties": {"sub_div_id": "304", "sub_div_center": [60.887561, 10.678055]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6781, 60.8876], [10.6782, 60.8876], [10.6784, 60.8876], [10.6785, 60.8876], [10.6785, 60.8876], [10.6785, 60.8876], [10.6784, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876], [10.6781, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "305", "sub_div_center": [60.88758, 10.677589]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6776, 60.8876], [10.6777, 60.8877], [10.6779, 60.8877], [10.6779, 60.8877], [10.678, 60.8877], [10.6779, 60.8877], [10.6778, 60.8876], [10.6777, 60.8876], [10.6776, 60.8876], [10.6776, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "306", "sub_div_center": [60.88758, 10.677589]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6776, 60.8876], [10.6777, 60.8877], [10.6779, 60.8877], [10.6779, 60.8877], [10.678, 60.8877], [10.6779, 60.8877], [10.6778, 60.8876], [10.6777, 60.8876], [10.6776, 60.8876], [10.6776, 60.8876]]]}}, {"type": "Feature", "properties": {"sub_div_id": "307", "sub_div_center": [60.96972, 10.607269]}, "geometry": {"type": "Polygon", "coordinates": [[[10.6073, 60.9698], [10.6073, 60.9698], [10.6074, 60.9699], [10.6075, 60.9699], [10.6076, 60.9699], [10.6077, 60.9699], [10.6077, 60.9699], [10.6077, 60.9699], [10.6075, 60.9698], [10.6074, 60.9698], [10.6074, 60.9697], [10.6073, 60.9697], [10.6073, 60.9697], [10.6073, 60.9698], [10.6073, 60.9698]]]}}], "tile_count": 308} \ No newline at end of file diff --git "a/server/map_handler/lake_relations/skumsj\303\270en.geojson" "b/server/map_handler/lake_relations/skumsj\303\270en.geojson" new file mode 100644 index 0000000000000000000000000000000000000000..cced71e06df1383ff0bef125ecf035ba0d904243 --- /dev/null +++ "b/server/map_handler/lake_relations/skumsj\303\270en.geojson" @@ -0,0 +1,6200 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2024-04-10T08:33:45Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "relation/7682780", + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5295446, + 60.7688972 + ], + [ + 10.5295834, + 60.768867 + ], + [ + 10.5298009, + 60.768782 + ], + [ + 10.5299943, + 60.7686819 + ], + [ + 10.5300415, + 60.7686675 + ], + [ + 10.5301029, + 60.7686768 + ], + [ + 10.5302434, + 60.768798 + ], + [ + 10.5303093, + 60.7688123 + ], + [ + 10.5303609, + 60.7687907 + ], + [ + 10.5304154, + 60.7687271 + ], + [ + 10.5304225, + 60.7684335 + ], + [ + 10.5304403, + 60.7683538 + ], + [ + 10.5305059, + 60.7682816 + ], + [ + 10.5306405, + 60.7681958 + ], + [ + 10.5307289, + 60.7680822 + ], + [ + 10.5310732, + 60.7678503 + ], + [ + 10.531342, + 60.7675924 + ], + [ + 10.5313837, + 60.7675004 + ], + [ + 10.5314053, + 60.7673144 + ], + [ + 10.5314314, + 60.7672773 + ], + [ + 10.5315584, + 60.7671795 + ], + [ + 10.5315817, + 60.7669899 + ], + [ + 10.5316474, + 60.7668893 + ], + [ + 10.5316854, + 60.7667664 + ], + [ + 10.5316906, + 60.7665383 + ], + [ + 10.5317085, + 60.766504 + ], + [ + 10.5318374, + 60.7664135 + ], + [ + 10.5321279, + 60.7662753 + ], + [ + 10.5322138, + 60.7662146 + ], + [ + 10.5322719, + 60.7660539 + ], + [ + 10.5323046, + 60.7660155 + ], + [ + 10.5325603, + 60.7658573 + ], + [ + 10.5327834, + 60.7657472 + ], + [ + 10.5329212, + 60.7655968 + ], + [ + 10.5330142, + 60.765526 + ], + [ + 10.5331221, + 60.7654753 + ], + [ + 10.5333132, + 60.7654243 + ], + [ + 10.5335419, + 60.7653212 + ], + [ + 10.533667, + 60.7652835 + ], + [ + 10.5337941, + 60.7652745 + ], + [ + 10.5339896, + 60.7652862 + ], + [ + 10.5341092, + 60.7652767 + ], + [ + 10.5342288, + 60.7653035 + ], + [ + 10.5344055, + 60.765369 + ], + [ + 10.5345499, + 60.7654016 + ], + [ + 10.5346254, + 60.7654062 + ], + [ + 10.5346939, + 60.7653995 + ], + [ + 10.5347509, + 60.7653712 + ], + [ + 10.5348868, + 60.7652747 + ], + [ + 10.5349431, + 60.7652627 + ], + [ + 10.5352096, + 60.7653235 + ], + [ + 10.535293, + 60.765324 + ], + [ + 10.5355193, + 60.76527 + ], + [ + 10.5356701, + 60.7652601 + ], + [ + 10.535859, + 60.7653147 + ], + [ + 10.5359329, + 60.7653191 + ], + [ + 10.5359917, + 60.7653084 + ], + [ + 10.5360231, + 60.7652755 + ], + [ + 10.536005, + 60.7650816 + ], + [ + 10.5360313, + 60.765054 + ], + [ + 10.5362142, + 60.764964 + ], + [ + 10.5362778, + 60.764909 + ], + [ + 10.5364585, + 60.7646364 + ], + [ + 10.5365185, + 60.7645868 + ], + [ + 10.5366445, + 60.7645115 + ], + [ + 10.5367153, + 60.7644946 + ], + [ + 10.5367516, + 60.7644988 + ], + [ + 10.5367785, + 60.764501 + ], + [ + 10.5367949, + 60.7645618 + ], + [ + 10.5367685, + 60.7646255 + ], + [ + 10.5365823, + 60.7648316 + ], + [ + 10.5365521, + 60.7648969 + ], + [ + 10.5365455, + 60.7649905 + ], + [ + 10.5365846, + 60.7650486 + ], + [ + 10.5366683, + 60.7650939 + ], + [ + 10.5367408, + 60.7651077 + ], + [ + 10.5368242, + 60.7651089 + ], + [ + 10.5368951, + 60.7650959 + ], + [ + 10.536993, + 60.7650126 + ], + [ + 10.537112, + 60.7649354 + ], + [ + 10.5372124, + 60.7648516 + ], + [ + 10.5373477, + 60.7647019 + ], + [ + 10.5375461, + 60.7645674 + ], + [ + 10.5377234, + 60.7643782 + ], + [ + 10.5377289, + 60.7642828 + ], + [ + 10.5377145, + 60.7639516 + ], + [ + 10.5376974, + 60.7639095 + ], + [ + 10.5376381, + 60.7638583 + ], + [ + 10.5375692, + 60.7638412 + ], + [ + 10.5374967, + 60.7638433 + ], + [ + 10.5374387, + 60.7638587 + ], + [ + 10.537288, + 60.7640075 + ], + [ + 10.5370991, + 60.7641412 + ], + [ + 10.537031, + 60.7641488 + ], + [ + 10.5370267, + 60.7641368 + ], + [ + 10.537044, + 60.7640149 + ], + [ + 10.5369497, + 60.7638571 + ], + [ + 10.5368631, + 60.7638053 + ], + [ + 10.5366877, + 60.7637422 + ], + [ + 10.5366131, + 60.7636975 + ], + [ + 10.536561, + 60.7636334 + ], + [ + 10.5365555, + 60.7635027 + ], + [ + 10.5363208, + 60.7634435 + ], + [ + 10.536099, + 60.7634426 + ], + [ + 10.535945, + 60.7633964 + ], + [ + 10.535813, + 60.7634031 + ], + [ + 10.5357601, + 60.7633918 + ], + [ + 10.535667, + 60.7633132 + ], + [ + 10.5355996, + 60.7632987 + ], + [ + 10.5355349, + 60.7633081 + ], + [ + 10.5353404, + 60.763378 + ], + [ + 10.5352778, + 60.7633791 + ], + [ + 10.5352302, + 60.7633577 + ], + [ + 10.5352272, + 60.763245 + ], + [ + 10.5352467, + 60.7632007 + ], + [ + 10.5353356, + 60.7631403 + ], + [ + 10.5353871, + 60.7630844 + ], + [ + 10.5354655, + 60.763034 + ], + [ + 10.5355854, + 60.7630002 + ], + [ + 10.5356438, + 60.7629719 + ], + [ + 10.5358164, + 60.7628257 + ], + [ + 10.535868, + 60.7628043 + ], + [ + 10.5359278, + 60.7628027 + ], + [ + 10.5359918, + 60.762787 + ], + [ + 10.5360169, + 60.7627613 + ], + [ + 10.5361094, + 60.762573 + ], + [ + 10.5361918, + 60.7625231 + ], + [ + 10.5363336, + 60.7623987 + ], + [ + 10.5364232, + 60.762341 + ], + [ + 10.5365759, + 60.7622718 + ], + [ + 10.5366227, + 60.7622106 + ], + [ + 10.5366565, + 60.762108 + ], + [ + 10.5366851, + 60.7620734 + ], + [ + 10.5367686, + 60.7620254 + ], + [ + 10.536988, + 60.7619585 + ], + [ + 10.5370407, + 60.7619313 + ], + [ + 10.5371141, + 60.7618658 + ], + [ + 10.5371862, + 60.7617015 + ], + [ + 10.5372943, + 60.7616045 + ], + [ + 10.5373836, + 60.7614841 + ], + [ + 10.537488, + 60.7613787 + ], + [ + 10.5376181, + 60.7613085 + ], + [ + 10.537664, + 60.7612454 + ], + [ + 10.5376835, + 60.761146 + ], + [ + 10.5376959, + 60.7608643 + ], + [ + 10.5378123, + 60.7607074 + ], + [ + 10.5378973, + 60.7606466 + ], + [ + 10.5379625, + 60.7605472 + ], + [ + 10.5380543, + 60.7604609 + ], + [ + 10.5380686, + 60.7603837 + ], + [ + 10.5380518, + 60.7601868 + ], + [ + 10.5380193, + 60.7601206 + ], + [ + 10.537956, + 60.7600703 + ], + [ + 10.5378523, + 60.7600257 + ], + [ + 10.5378379, + 60.759969 + ], + [ + 10.5379325, + 60.7598033 + ], + [ + 10.5381672, + 60.7594827 + ], + [ + 10.5382192, + 60.7593278 + ], + [ + 10.5383817, + 60.7591993 + ], + [ + 10.5383928, + 60.7591627 + ], + [ + 10.5383807, + 60.759129 + ], + [ + 10.5381884, + 60.7590033 + ], + [ + 10.538173, + 60.7589028 + ], + [ + 10.5381458, + 60.7588379 + ], + [ + 10.5381414, + 60.7587719 + ], + [ + 10.5381866, + 60.7587428 + ], + [ + 10.5383243, + 60.7587207 + ], + [ + 10.538356, + 60.7586959 + ], + [ + 10.538358, + 60.7586686 + ], + [ + 10.5383122, + 60.7586442 + ], + [ + 10.5380335, + 60.7586463 + ], + [ + 10.5380021, + 60.7586185 + ], + [ + 10.5380023, + 60.7584552 + ], + [ + 10.5379594, + 60.7583935 + ], + [ + 10.5378034, + 60.758257 + ], + [ + 10.5378076, + 60.7581974 + ], + [ + 10.5378905, + 60.7581022 + ], + [ + 10.5379119, + 60.7580162 + ], + [ + 10.5380195, + 60.7578824 + ], + [ + 10.5380082, + 60.757854 + ], + [ + 10.5379188, + 60.7577618 + ], + [ + 10.537925, + 60.7577064 + ], + [ + 10.5379967, + 60.7576294 + ], + [ + 10.5380131, + 60.7574607 + ], + [ + 10.5379973, + 60.7574275 + ], + [ + 10.5379454, + 60.7574167 + ], + [ + 10.537889, + 60.7574228 + ], + [ + 10.5378624, + 60.7574577 + ], + [ + 10.5378456, + 60.7575555 + ], + [ + 10.5377905, + 60.7575691 + ], + [ + 10.5377255, + 60.7575646 + ], + [ + 10.5375599, + 60.7575102 + ], + [ + 10.5374842, + 60.7575075 + ], + [ + 10.5374162, + 60.7575169 + ], + [ + 10.537297, + 60.7575659 + ], + [ + 10.5372071, + 60.7576269 + ], + [ + 10.5371963, + 60.7576625 + ], + [ + 10.5372466, + 60.7577277 + ], + [ + 10.5372512, + 60.7578168 + ], + [ + 10.5372012, + 60.7578804 + ], + [ + 10.5371205, + 60.7579429 + ], + [ + 10.536987, + 60.7579982 + ], + [ + 10.5368157, + 60.7581382 + ], + [ + 10.5366931, + 60.7582089 + ], + [ + 10.5366021, + 60.758244 + ], + [ + 10.5364666, + 60.7582543 + ], + [ + 10.5364038, + 60.7582418 + ], + [ + 10.5363518, + 60.7582162 + ], + [ + 10.536319, + 60.7581843 + ], + [ + 10.5363136, + 60.7580634 + ], + [ + 10.5362845, + 60.7580307 + ], + [ + 10.5362174, + 60.7580279 + ], + [ + 10.5361158, + 60.7580684 + ], + [ + 10.5360502, + 60.7580784 + ], + [ + 10.5359874, + 60.7580664 + ], + [ + 10.5359311, + 60.7579637 + ], + [ + 10.535914, + 60.7578362 + ], + [ + 10.5358531, + 60.7577719 + ], + [ + 10.5357618, + 60.7577311 + ], + [ + 10.5357335, + 60.7577073 + ], + [ + 10.5357161, + 60.7576465 + ], + [ + 10.535672, + 60.7576179 + ], + [ + 10.5353097, + 60.7576189 + ], + [ + 10.5351836, + 60.7575485 + ], + [ + 10.535129, + 60.7575435 + ], + [ + 10.5350833, + 60.7575584 + ], + [ + 10.5349603, + 60.7576493 + ], + [ + 10.534806, + 60.757709 + ], + [ + 10.5346069, + 60.7578406 + ], + [ + 10.5344738, + 60.7578577 + ], + [ + 10.5343294, + 60.7579424 + ], + [ + 10.5342329, + 60.7579831 + ], + [ + 10.534145, + 60.7580363 + ], + [ + 10.5339875, + 60.7580888 + ], + [ + 10.5338643, + 60.7581737 + ], + [ + 10.5338151, + 60.7581953 + ], + [ + 10.5336363, + 60.7582212 + ], + [ + 10.5335419, + 60.7582666 + ], + [ + 10.5334002, + 60.7583786 + ], + [ + 10.5332436, + 60.7584461 + ], + [ + 10.5330367, + 60.7585059 + ], + [ + 10.5329888, + 60.7585326 + ], + [ + 10.5329395, + 60.7586047 + ], + [ + 10.5328957, + 60.7587169 + ], + [ + 10.5328517, + 60.7587798 + ], + [ + 10.5327456, + 60.7588765 + ], + [ + 10.5322962, + 60.7591539 + ], + [ + 10.5319958, + 60.7593086 + ], + [ + 10.5318445, + 60.7593701 + ], + [ + 10.5317497, + 60.759395 + ], + [ + 10.5316517, + 60.7593987 + ], + [ + 10.5315267, + 60.7593754 + ], + [ + 10.5314868, + 60.7593458 + ], + [ + 10.5314798, + 60.7593187 + ], + [ + 10.5315083, + 60.7592122 + ], + [ + 10.5314984, + 60.7591892 + ], + [ + 10.5315567, + 60.7591065 + ], + [ + 10.5316152, + 60.758963 + ], + [ + 10.5317605, + 60.7587598 + ], + [ + 10.5319153, + 60.7586302 + ], + [ + 10.5320761, + 60.7585566 + ], + [ + 10.5322926, + 60.7584292 + ], + [ + 10.5324908, + 60.7582928 + ], + [ + 10.5326183, + 60.7581765 + ], + [ + 10.5326348, + 60.7580032 + ], + [ + 10.5326551, + 60.7579754 + ], + [ + 10.5327368, + 60.7579294 + ], + [ + 10.5327651, + 60.7578923 + ], + [ + 10.5327417, + 60.7578013 + ], + [ + 10.5326715, + 60.7576692 + ], + [ + 10.5326671, + 60.7575963 + ], + [ + 10.5326855, + 60.7575697 + ], + [ + 10.5327487, + 60.7575511 + ], + [ + 10.5328596, + 60.7575372 + ], + [ + 10.5329131, + 60.7575205 + ], + [ + 10.5329634, + 60.7574863 + ], + [ + 10.5329829, + 60.7573951 + ], + [ + 10.5331093, + 60.7573208 + ], + [ + 10.5330544, + 60.7570779 + ], + [ + 10.5331595, + 60.7569576 + ], + [ + 10.5331639, + 60.7569193 + ], + [ + 10.5330917, + 60.7568324 + ], + [ + 10.5330922, + 60.756794 + ], + [ + 10.5331444, + 60.7567304 + ], + [ + 10.5331609, + 60.7566628 + ], + [ + 10.5332226, + 60.756602 + ], + [ + 10.5331748, + 60.7564634 + ], + [ + 10.5331763, + 60.7564208 + ], + [ + 10.5332101, + 60.7563833 + ], + [ + 10.5333053, + 60.7563328 + ], + [ + 10.5333559, + 60.7562382 + ], + [ + 10.5335233, + 60.7562049 + ], + [ + 10.5336285, + 60.7561594 + ], + [ + 10.5336161, + 60.756127 + ], + [ + 10.5334977, + 60.756072 + ], + [ + 10.5334351, + 60.7560212 + ], + [ + 10.5334123, + 60.7559479 + ], + [ + 10.5334997, + 60.755852 + ], + [ + 10.5335257, + 60.7557872 + ], + [ + 10.5335321, + 60.7554661 + ], + [ + 10.533518, + 60.7553984 + ], + [ + 10.5334423, + 60.7552376 + ], + [ + 10.5334191, + 60.755045 + ], + [ + 10.5334008, + 60.7550157 + ], + [ + 10.5333497, + 60.7549893 + ], + [ + 10.5332773, + 60.7549878 + ], + [ + 10.5332266, + 60.754999 + ], + [ + 10.532901, + 60.7551011 + ], + [ + 10.5327416, + 60.7551291 + ], + [ + 10.5326072, + 60.7551296 + ], + [ + 10.5324899, + 60.7551127 + ], + [ + 10.5323853, + 60.7550784 + ], + [ + 10.5322885, + 60.7550331 + ], + [ + 10.5322608, + 60.7550074 + ], + [ + 10.5322715, + 60.7549617 + ], + [ + 10.5323734, + 60.7549138 + ], + [ + 10.5323886, + 60.7548192 + ], + [ + 10.5324164, + 60.7547652 + ], + [ + 10.5325625, + 60.7546604 + ], + [ + 10.5325979, + 60.754542 + ], + [ + 10.532705, + 60.7544177 + ], + [ + 10.5327218, + 60.7542969 + ], + [ + 10.5327866, + 60.7542418 + ], + [ + 10.5328773, + 60.7541937 + ], + [ + 10.5331272, + 60.7541009 + ], + [ + 10.5332491, + 60.7540736 + ], + [ + 10.5332994, + 60.7540487 + ], + [ + 10.5333223, + 60.7540236 + ], + [ + 10.5333288, + 60.7539294 + ], + [ + 10.5333344, + 60.7536 + ], + [ + 10.533408, + 60.7535396 + ], + [ + 10.5334541, + 60.7534748 + ], + [ + 10.5334987, + 60.7534487 + ], + [ + 10.5338383, + 60.7533054 + ], + [ + 10.5339159, + 60.7532115 + ], + [ + 10.5340669, + 60.7531395 + ], + [ + 10.5340784, + 60.7531017 + ], + [ + 10.5340611, + 60.7530752 + ], + [ + 10.5340011, + 60.7530706 + ], + [ + 10.5338639, + 60.7530923 + ], + [ + 10.5335694, + 60.7530885 + ], + [ + 10.5334624, + 60.7531065 + ], + [ + 10.5332736, + 60.7531006 + ], + [ + 10.5331435, + 60.7530777 + ], + [ + 10.533032, + 60.7530364 + ], + [ + 10.5328605, + 60.7529412 + ], + [ + 10.5328323, + 60.7529117 + ], + [ + 10.5328233, + 60.7528493 + ], + [ + 10.532851, + 60.752785 + ], + [ + 10.5328455, + 60.7527581 + ], + [ + 10.532781, + 60.7526865 + ], + [ + 10.5327404, + 60.752585 + ], + [ + 10.5326187, + 60.7525693 + ], + [ + 10.532573, + 60.7525502 + ], + [ + 10.5324951, + 60.7524448 + ], + [ + 10.5324732, + 60.7523577 + ], + [ + 10.5324958, + 60.7523236 + ], + [ + 10.5325849, + 60.7522875 + ], + [ + 10.5326248, + 60.7522593 + ], + [ + 10.5326081, + 60.7521905 + ], + [ + 10.5325552, + 60.7521081 + ], + [ + 10.5325357, + 60.751911 + ], + [ + 10.532542, + 60.7518549 + ], + [ + 10.532611, + 60.7517968 + ], + [ + 10.5328082, + 60.7517071 + ], + [ + 10.532847, + 60.7516396 + ], + [ + 10.5329081, + 60.751589 + ], + [ + 10.5331275, + 60.7515029 + ], + [ + 10.5331567, + 60.7515001 + ], + [ + 10.5331763, + 60.7514843 + ], + [ + 10.5332446, + 60.7514623 + ], + [ + 10.533314, + 60.7514587 + ], + [ + 10.5333811, + 60.7514685 + ], + [ + 10.5335892, + 60.751565 + ], + [ + 10.5337182, + 60.7515775 + ], + [ + 10.5341572, + 60.7515676 + ], + [ + 10.5343084, + 60.7515281 + ], + [ + 10.5343815, + 60.7515225 + ], + [ + 10.5345045, + 60.7515502 + ], + [ + 10.534787, + 60.7516494 + ], + [ + 10.5349049, + 60.7516618 + ], + [ + 10.5352848, + 60.751659 + ], + [ + 10.5353898, + 60.7516385 + ], + [ + 10.5354821, + 60.7516033 + ], + [ + 10.5355133, + 60.7515812 + ], + [ + 10.5355836, + 60.7513847 + ], + [ + 10.5356341, + 60.7513624 + ], + [ + 10.535766, + 60.751362 + ], + [ + 10.5358276, + 60.7513489 + ], + [ + 10.5358523, + 60.7512782 + ], + [ + 10.5358517, + 60.7511022 + ], + [ + 10.5357694, + 60.7510075 + ], + [ + 10.5356837, + 60.750964 + ], + [ + 10.5356277, + 60.7509025 + ], + [ + 10.5355575, + 60.7507745 + ], + [ + 10.5354648, + 60.7506799 + ], + [ + 10.5354527, + 60.7505122 + ], + [ + 10.5354364, + 60.7504823 + ], + [ + 10.5353357, + 60.7504013 + ], + [ + 10.5352898, + 60.7503427 + ], + [ + 10.5352485, + 60.7503165 + ], + [ + 10.5351876, + 60.7502978 + ], + [ + 10.5350064, + 60.7502607 + ], + [ + 10.5349035, + 60.7502158 + ], + [ + 10.5346931, + 60.7500258 + ], + [ + 10.5346282, + 60.75 + ], + [ + 10.5345271, + 60.7499599 + ], + [ + 10.5344401, + 60.749911 + ], + [ + 10.5344146, + 60.7498792 + ], + [ + 10.5344036, + 60.7497799 + ], + [ + 10.5343664, + 60.7497458 + ], + [ + 10.5342763, + 60.7496951 + ], + [ + 10.5341037, + 60.7496553 + ], + [ + 10.5339094, + 60.7496238 + ], + [ + 10.5338592, + 60.7495873 + ], + [ + 10.5338435, + 60.7495695 + ], + [ + 10.5337957, + 60.7495497 + ], + [ + 10.5336189, + 60.7495196 + ], + [ + 10.5332472, + 60.7493971 + ], + [ + 10.5332366, + 60.7493636 + ], + [ + 10.533274, + 60.7493428 + ], + [ + 10.5332632, + 60.7492839 + ], + [ + 10.5328715, + 60.7491564 + ], + [ + 10.5328234, + 60.7491374 + ], + [ + 10.5327995, + 60.7491094 + ], + [ + 10.5327156, + 60.7490704 + ], + [ + 10.532596, + 60.7490707 + ], + [ + 10.532541, + 60.7490552 + ], + [ + 10.5325241, + 60.7490288 + ], + [ + 10.5325481, + 60.7490035 + ], + [ + 10.532655, + 60.7489806 + ], + [ + 10.5326749, + 60.7489509 + ], + [ + 10.5326755, + 60.7488638 + ], + [ + 10.5325958, + 60.7488195 + ], + [ + 10.5325977, + 60.7487898 + ], + [ + 10.532641, + 60.748768 + ], + [ + 10.5327052, + 60.7487665 + ], + [ + 10.5329902, + 60.7486647 + ], + [ + 10.5330253, + 60.7486837 + ], + [ + 10.5332039, + 60.7487055 + ], + [ + 10.5334415, + 60.7487124 + ], + [ + 10.5334923, + 60.7487284 + ], + [ + 10.5335552, + 60.7487358 + ], + [ + 10.5337316, + 60.7487355 + ], + [ + 10.5339803, + 60.7487532 + ], + [ + 10.534096, + 60.7487718 + ], + [ + 10.5341566, + 60.7487681 + ], + [ + 10.5342598, + 60.7487401 + ], + [ + 10.534287, + 60.7486861 + ], + [ + 10.5343164, + 60.74866 + ], + [ + 10.5345181, + 60.7485889 + ], + [ + 10.534619, + 60.74857 + ], + [ + 10.5347932, + 60.7484477 + ], + [ + 10.5348442, + 60.7483897 + ], + [ + 10.5348602, + 60.7482993 + ], + [ + 10.5348814, + 60.74827 + ], + [ + 10.5348928, + 60.7481834 + ], + [ + 10.5349919, + 60.74808 + ], + [ + 10.535003, + 60.7480501 + ], + [ + 10.5350655, + 60.747996 + ], + [ + 10.5350607, + 60.7479675 + ], + [ + 10.5350227, + 60.7479436 + ], + [ + 10.5350632, + 60.7477703 + ], + [ + 10.5350087, + 60.7477585 + ], + [ + 10.5349656, + 60.7476709 + ], + [ + 10.534869, + 60.7476334 + ], + [ + 10.5347496, + 60.7476196 + ], + [ + 10.5346591, + 60.7475833 + ], + [ + 10.534629, + 60.7475002 + ], + [ + 10.5345561, + 60.7474588 + ], + [ + 10.534536, + 60.747427 + ], + [ + 10.5345344, + 60.747243 + ], + [ + 10.5345586, + 60.7471817 + ], + [ + 10.5345893, + 60.7469021 + ], + [ + 10.5346251, + 60.7468061 + ], + [ + 10.5346334, + 60.7466042 + ], + [ + 10.5346213, + 60.7465728 + ], + [ + 10.5345181, + 60.7464606 + ], + [ + 10.5344007, + 60.7463836 + ], + [ + 10.5343749, + 60.7463585 + ], + [ + 10.5343848, + 60.7462276 + ], + [ + 10.5343656, + 60.7461985 + ], + [ + 10.5342883, + 60.7461507 + ], + [ + 10.5342648, + 60.746119 + ], + [ + 10.5341955, + 60.7460715 + ], + [ + 10.5341927, + 60.7460425 + ], + [ + 10.5342172, + 60.7459868 + ], + [ + 10.5341313, + 60.7459452 + ], + [ + 10.5341003, + 60.7458558 + ], + [ + 10.5340767, + 60.7458309 + ], + [ + 10.5340767, + 60.7456845 + ], + [ + 10.5341198, + 60.7456002 + ], + [ + 10.5340451, + 60.7455607 + ], + [ + 10.5339636, + 60.7453682 + ], + [ + 10.5338775, + 60.7452845 + ], + [ + 10.5338416, + 60.7450759 + ], + [ + 10.533788, + 60.7449515 + ], + [ + 10.5337832, + 60.7447046 + ], + [ + 10.5338185, + 60.7446444 + ], + [ + 10.5338914, + 60.7445928 + ], + [ + 10.533915, + 60.744565 + ], + [ + 10.5338984, + 60.7445046 + ], + [ + 10.5337907, + 60.7444204 + ], + [ + 10.5337863, + 60.7443552 + ], + [ + 10.5337666, + 60.7443297 + ], + [ + 10.5336926, + 60.744287 + ], + [ + 10.5336991, + 60.7442536 + ], + [ + 10.5337344, + 60.7442312 + ], + [ + 10.5337412, + 60.7441432 + ], + [ + 10.533685, + 60.7440848 + ], + [ + 10.5336736, + 60.7440275 + ], + [ + 10.5336041, + 60.7439736 + ], + [ + 10.5335807, + 60.7439099 + ], + [ + 10.5335014, + 60.7437968 + ], + [ + 10.533492, + 60.7436457 + ], + [ + 10.5334691, + 60.7435903 + ], + [ + 10.5334031, + 60.7435063 + ], + [ + 10.5333143, + 60.7434604 + ], + [ + 10.5333152, + 60.7434326 + ], + [ + 10.5333709, + 60.7433818 + ], + [ + 10.5333477, + 60.7433552 + ], + [ + 10.5333043, + 60.7433382 + ], + [ + 10.5332841, + 60.7433954 + ], + [ + 10.5332215, + 60.7433993 + ], + [ + 10.5330079, + 60.7433394 + ], + [ + 10.5329561, + 60.7433194 + ], + [ + 10.532845, + 60.7432167 + ], + [ + 10.5328466, + 60.7431881 + ], + [ + 10.5329565, + 60.7431608 + ], + [ + 10.5329614, + 60.7431336 + ], + [ + 10.532799, + 60.7430633 + ], + [ + 10.532797, + 60.7429594 + ], + [ + 10.5328155, + 60.7429281 + ], + [ + 10.5328177, + 60.7428365 + ], + [ + 10.5328594, + 60.7427495 + ], + [ + 10.5328647, + 60.7426015 + ], + [ + 10.5327995, + 60.7425516 + ], + [ + 10.5325772, + 60.7424507 + ], + [ + 10.5324873, + 60.7424283 + ], + [ + 10.5324054, + 60.7423035 + ], + [ + 10.5322597, + 60.7422907 + ], + [ + 10.5322384, + 60.7422782 + ], + [ + 10.5321797, + 60.7422748 + ], + [ + 10.5319723, + 60.7422109 + ], + [ + 10.5317432, + 60.7421775 + ], + [ + 10.5316528, + 60.742142 + ], + [ + 10.531563, + 60.7420913 + ], + [ + 10.5314771, + 60.7419507 + ], + [ + 10.531467, + 60.7418925 + ], + [ + 10.5313569, + 60.7418151 + ], + [ + 10.5312625, + 60.7417783 + ], + [ + 10.5311378, + 60.7416975 + ], + [ + 10.5311397, + 60.7416181 + ], + [ + 10.5311504, + 60.741563 + ], + [ + 10.5311246, + 60.7415373 + ], + [ + 10.5311163, + 60.7414902 + ], + [ + 10.5309973, + 60.7414061 + ], + [ + 10.5308428, + 60.7413632 + ], + [ + 10.530796, + 60.7412458 + ], + [ + 10.5308144, + 60.7411869 + ], + [ + 10.5308482, + 60.7411601 + ], + [ + 10.5308377, + 60.7411012 + ], + [ + 10.5307426, + 60.7410184 + ], + [ + 10.530733, + 60.7408625 + ], + [ + 10.5308172, + 60.7408178 + ], + [ + 10.5310052, + 60.7408049 + ], + [ + 10.5310655, + 60.7407888 + ], + [ + 10.5311174, + 60.7407537 + ], + [ + 10.5312564, + 60.7407135 + ], + [ + 10.5314967, + 60.7407033 + ], + [ + 10.5316795, + 60.7407391 + ], + [ + 10.5318709, + 60.7407415 + ], + [ + 10.531987, + 60.740756 + ], + [ + 10.5320922, + 60.7407811 + ], + [ + 10.5323495, + 60.7407843 + ], + [ + 10.5324123, + 60.7407748 + ], + [ + 10.5326155, + 60.740774 + ], + [ + 10.5327181, + 60.7407548 + ], + [ + 10.5328476, + 60.7407441 + ], + [ + 10.5329719, + 60.7407191 + ], + [ + 10.5331034, + 60.740707 + ], + [ + 10.5332206, + 60.740681 + ], + [ + 10.5334423, + 60.7405708 + ], + [ + 10.5336656, + 60.740499 + ], + [ + 10.53379, + 60.7404808 + ], + [ + 10.5339079, + 60.7404945 + ], + [ + 10.5339624, + 60.7405099 + ], + [ + 10.534093, + 60.7405762 + ], + [ + 10.5342178, + 60.7405694 + ], + [ + 10.534288, + 60.7405191 + ], + [ + 10.5344789, + 60.7405136 + ], + [ + 10.5345332, + 60.7404953 + ], + [ + 10.5345411, + 60.7404339 + ], + [ + 10.534697, + 60.7403719 + ], + [ + 10.534801, + 60.7403017 + ], + [ + 10.5349768, + 60.7402114 + ], + [ + 10.5351954, + 60.7401453 + ], + [ + 10.5353184, + 60.7401331 + ], + [ + 10.5354937, + 60.7400935 + ], + [ + 10.5356679, + 60.7400021 + ], + [ + 10.5358732, + 60.739915 + ], + [ + 10.5359129, + 60.7398589 + ], + [ + 10.5361186, + 60.7397802 + ], + [ + 10.5362233, + 60.7397 + ], + [ + 10.5363104, + 60.7395839 + ], + [ + 10.5364137, + 60.7395119 + ], + [ + 10.5365063, + 60.7394758 + ], + [ + 10.5366223, + 60.7394781 + ], + [ + 10.5366848, + 60.7394853 + ], + [ + 10.5368104, + 60.739518 + ], + [ + 10.5368968, + 60.7395304 + ], + [ + 10.5371009, + 60.7395826 + ], + [ + 10.5372528, + 60.7396293 + ], + [ + 10.5373421, + 60.7396698 + ], + [ + 10.5373711, + 60.7396929 + ], + [ + 10.5373832, + 60.7398134 + ], + [ + 10.5373504, + 60.7398705 + ], + [ + 10.537355, + 60.739902 + ], + [ + 10.5375735, + 60.740014 + ], + [ + 10.5375733, + 60.7400438 + ], + [ + 10.5374733, + 60.7400745 + ], + [ + 10.537275, + 60.7401627 + ], + [ + 10.5372377, + 60.7401869 + ], + [ + 10.5372249, + 60.7402487 + ], + [ + 10.5372566, + 60.740275 + ], + [ + 10.5373119, + 60.7402848 + ], + [ + 10.5373302, + 60.7403106 + ], + [ + 10.5373121, + 60.7403398 + ], + [ + 10.5374321, + 60.7404443 + ], + [ + 10.5375694, + 60.7406218 + ], + [ + 10.5375782, + 60.7406827 + ], + [ + 10.537555, + 60.7407422 + ], + [ + 10.5375531, + 60.7408677 + ], + [ + 10.5375949, + 60.7408867 + ], + [ + 10.537654, + 60.7408955 + ], + [ + 10.5376481, + 60.7409257 + ], + [ + 10.5376076, + 60.740946 + ], + [ + 10.5375986, + 60.7410064 + ], + [ + 10.5376227, + 60.7410309 + ], + [ + 10.537719, + 60.7410624 + ], + [ + 10.5378105, + 60.7411106 + ], + [ + 10.5380971, + 60.7412277 + ], + [ + 10.5382148, + 60.7412569 + ], + [ + 10.5383098, + 60.7412976 + ], + [ + 10.5384759, + 60.7413413 + ], + [ + 10.5387175, + 60.7413571 + ], + [ + 10.5388722, + 60.7414055 + ], + [ + 10.5389571, + 60.7414511 + ], + [ + 10.5389956, + 60.741531 + ], + [ + 10.5391694, + 60.7415596 + ], + [ + 10.5391834, + 60.741587 + ], + [ + 10.5391516, + 60.7416166 + ], + [ + 10.5390419, + 60.7416543 + ], + [ + 10.5387986, + 60.741634 + ], + [ + 10.5386824, + 60.7416133 + ], + [ + 10.5385631, + 60.7416148 + ], + [ + 10.5385115, + 60.7416295 + ], + [ + 10.5383383, + 60.7416396 + ], + [ + 10.5381779, + 60.7416892 + ], + [ + 10.5380625, + 60.7417033 + ], + [ + 10.5379244, + 60.741765 + ], + [ + 10.5377357, + 60.7417714 + ], + [ + 10.5377253, + 60.7419517 + ], + [ + 10.5376936, + 60.7420105 + ], + [ + 10.5376949, + 60.7421614 + ], + [ + 10.5376722, + 60.7422793 + ], + [ + 10.5376382, + 60.7423052 + ], + [ + 10.5375172, + 60.7423185 + ], + [ + 10.5374692, + 60.7423355 + ], + [ + 10.5374626, + 60.7423662 + ], + [ + 10.5375568, + 60.7424036 + ], + [ + 10.5379278, + 60.7424043 + ], + [ + 10.5379894, + 60.7424078 + ], + [ + 10.5380408, + 60.742427 + ], + [ + 10.5380437, + 60.7424874 + ], + [ + 10.5379547, + 60.7425337 + ], + [ + 10.5379023, + 60.7425428 + ], + [ + 10.5378546, + 60.742566 + ], + [ + 10.5378256, + 60.7426295 + ], + [ + 10.5377707, + 60.7426482 + ], + [ + 10.5376515, + 60.7426485 + ], + [ + 10.5375989, + 60.7426608 + ], + [ + 10.5376082, + 60.742722 + ], + [ + 10.53768, + 60.7427702 + ], + [ + 10.5376803, + 60.7428022 + ], + [ + 10.5377416, + 60.7428522 + ], + [ + 10.5377527, + 60.7428849 + ], + [ + 10.5377912, + 60.742908 + ], + [ + 10.537847, + 60.7429158 + ], + [ + 10.5379316, + 60.7429623 + ], + [ + 10.5379808, + 60.7429797 + ], + [ + 10.5381478, + 60.7430037 + ], + [ + 10.5384029, + 60.7430052 + ], + [ + 10.5384591, + 60.7430024 + ], + [ + 10.538571, + 60.7429799 + ], + [ + 10.5387014, + 60.7429679 + ], + [ + 10.5387546, + 60.742948 + ], + [ + 10.538861, + 60.7428832 + ], + [ + 10.5389202, + 60.7428788 + ], + [ + 10.5389421, + 60.742854 + ], + [ + 10.5388475, + 60.74282 + ], + [ + 10.5386635, + 60.7428163 + ], + [ + 10.5386319, + 60.742793 + ], + [ + 10.5386206, + 60.7427099 + ], + [ + 10.5385881, + 60.7426867 + ], + [ + 10.538596, + 60.7426548 + ], + [ + 10.5386882, + 60.7426197 + ], + [ + 10.5387505, + 60.7426179 + ], + [ + 10.5388004, + 60.7426325 + ], + [ + 10.5388193, + 60.7426612 + ], + [ + 10.5388734, + 60.7426715 + ], + [ + 10.5389367, + 60.7426674 + ], + [ + 10.5389805, + 60.7426373 + ], + [ + 10.538989, + 60.7425771 + ], + [ + 10.5390089, + 60.7425507 + ], + [ + 10.5390745, + 60.7425375 + ], + [ + 10.5392615, + 60.7425428 + ], + [ + 10.5393209, + 60.742532 + ], + [ + 10.5394514, + 60.7424376 + ], + [ + 10.5394145, + 60.7424126 + ], + [ + 10.539353, + 60.742409 + ], + [ + 10.539299, + 60.7423925 + ], + [ + 10.5392698, + 60.7423675 + ], + [ + 10.5392796, + 60.7423351 + ], + [ + 10.5394499, + 60.7422334 + ], + [ + 10.5395491, + 60.7421833 + ], + [ + 10.5396961, + 60.7421346 + ], + [ + 10.5396811, + 60.7420437 + ], + [ + 10.5397784, + 60.7420025 + ], + [ + 10.539845, + 60.7419984 + ], + [ + 10.539963, + 60.7420089 + ], + [ + 10.5400272, + 60.7420041 + ], + [ + 10.5400605, + 60.7419764 + ], + [ + 10.5400609, + 60.7419116 + ], + [ + 10.5401555, + 60.7418636 + ], + [ + 10.5402298, + 60.7418648 + ], + [ + 10.5403576, + 60.7419246 + ], + [ + 10.5405527, + 60.7419256 + ], + [ + 10.540682, + 60.741945 + ], + [ + 10.5407718, + 60.7419933 + ], + [ + 10.5408452, + 60.7420517 + ], + [ + 10.5408911, + 60.7421123 + ], + [ + 10.5409252, + 60.7421351 + ], + [ + 10.540981, + 60.7421509 + ], + [ + 10.5410001, + 60.7421787 + ], + [ + 10.5411148, + 60.7422492 + ], + [ + 10.5411771, + 60.7423383 + ], + [ + 10.5413316, + 60.7424285 + ], + [ + 10.5415712, + 60.7426075 + ], + [ + 10.5415945, + 60.7426382 + ], + [ + 10.5415581, + 60.7426605 + ], + [ + 10.541549, + 60.7426916 + ], + [ + 10.5418127, + 60.7428435 + ], + [ + 10.5420477, + 60.7428658 + ], + [ + 10.5422111, + 60.7429535 + ], + [ + 10.5425547, + 60.7430879 + ], + [ + 10.5426521, + 60.7431317 + ], + [ + 10.5426777, + 60.7431578 + ], + [ + 10.5427775, + 60.743188 + ], + [ + 10.5428365, + 60.7431952 + ], + [ + 10.5428802, + 60.7431721 + ], + [ + 10.5429339, + 60.7431596 + ], + [ + 10.5429531, + 60.7431048 + ], + [ + 10.5429868, + 60.7430814 + ], + [ + 10.5430399, + 60.7430647 + ], + [ + 10.543262, + 60.7430314 + ], + [ + 10.5433719, + 60.7430396 + ], + [ + 10.5434042, + 60.7431355 + ], + [ + 10.5433551, + 60.7432214 + ], + [ + 10.5433276, + 60.7432477 + ], + [ + 10.5432345, + 60.7432877 + ], + [ + 10.5432527, + 60.7433494 + ], + [ + 10.5434466, + 60.7434652 + ], + [ + 10.5436177, + 60.7436284 + ], + [ + 10.5436684, + 60.743709 + ], + [ + 10.5436457, + 60.743795 + ], + [ + 10.5435924, + 60.7438159 + ], + [ + 10.543569, + 60.7438403 + ], + [ + 10.5435998, + 60.7438666 + ], + [ + 10.5436509, + 60.7438834 + ], + [ + 10.543657, + 60.7439104 + ], + [ + 10.5436055, + 60.7439611 + ], + [ + 10.5436052, + 60.7439903 + ], + [ + 10.5435373, + 60.7440364 + ], + [ + 10.543519, + 60.7440665 + ], + [ + 10.5435178, + 60.7441255 + ], + [ + 10.5434971, + 60.7441505 + ], + [ + 10.5433983, + 60.7441815 + ], + [ + 10.5433538, + 60.7442336 + ], + [ + 10.5433318, + 60.744322 + ], + [ + 10.5432715, + 60.7443715 + ], + [ + 10.5432461, + 60.7444312 + ], + [ + 10.5431832, + 60.7444817 + ], + [ + 10.5431824, + 60.744602 + ], + [ + 10.5432997, + 60.7446726 + ], + [ + 10.543483, + 60.7447572 + ], + [ + 10.5435889, + 60.744789 + ], + [ + 10.5437636, + 60.7448012 + ], + [ + 10.5438511, + 60.7448464 + ], + [ + 10.5438834, + 60.7449892 + ], + [ + 10.5439283, + 60.7451138 + ], + [ + 10.5440101, + 60.7452054 + ], + [ + 10.5440706, + 60.7452546 + ], + [ + 10.5445396, + 60.7454611 + ], + [ + 10.5449181, + 60.7455807 + ], + [ + 10.5451184, + 60.7456601 + ], + [ + 10.5451989, + 60.7457111 + ], + [ + 10.545219, + 60.7457381 + ], + [ + 10.5452327, + 60.7459795 + ], + [ + 10.5452553, + 60.7460071 + ], + [ + 10.54526, + 60.7460663 + ], + [ + 10.5452337, + 60.7460915 + ], + [ + 10.5452498, + 60.7461212 + ], + [ + 10.545342, + 60.7461543 + ], + [ + 10.5453905, + 60.7462058 + ], + [ + 10.5455124, + 60.7462749 + ], + [ + 10.5456095, + 60.7463524 + ], + [ + 10.5456522, + 60.7464102 + ], + [ + 10.5456828, + 60.7465874 + ], + [ + 10.5457429, + 60.7466314 + ], + [ + 10.5457316, + 60.7466726 + ], + [ + 10.5457569, + 60.7467597 + ], + [ + 10.5458211, + 60.746809 + ], + [ + 10.5458262, + 60.7468412 + ], + [ + 10.5458537, + 60.7468649 + ], + [ + 10.5459902, + 60.7469216 + ], + [ + 10.5461036, + 60.7469334 + ], + [ + 10.5461723, + 60.7469306 + ], + [ + 10.5461995, + 60.7469629 + ], + [ + 10.5462449, + 60.7469843 + ], + [ + 10.5462614, + 60.747011 + ], + [ + 10.546261, + 60.7470675 + ], + [ + 10.546231, + 60.7470947 + ], + [ + 10.5460611, + 60.7471222 + ], + [ + 10.5459441, + 60.7471143 + ], + [ + 10.545895, + 60.7471273 + ], + [ + 10.5458956, + 60.7471598 + ], + [ + 10.5460007, + 60.7471901 + ], + [ + 10.5461215, + 60.7471865 + ], + [ + 10.5461742, + 60.7471659 + ], + [ + 10.5462305, + 60.7471613 + ], + [ + 10.5463223, + 60.7472009 + ], + [ + 10.5463872, + 60.7472039 + ], + [ + 10.5464858, + 60.7471748 + ], + [ + 10.5465359, + 60.7471212 + ], + [ + 10.5467095, + 60.7470457 + ], + [ + 10.5469232, + 60.7469807 + ], + [ + 10.5471766, + 60.746981 + ], + [ + 10.5474832, + 60.7471064 + ], + [ + 10.5476103, + 60.7471132 + ], + [ + 10.5477218, + 60.7470964 + ], + [ + 10.5477155, + 60.7471523 + ], + [ + 10.5476621, + 60.7472147 + ], + [ + 10.5476621, + 60.7472434 + ], + [ + 10.547771, + 60.7472884 + ], + [ + 10.5477465, + 60.7474232 + ], + [ + 10.5477287, + 60.7474783 + ], + [ + 10.5473021, + 60.7476368 + ], + [ + 10.547249, + 60.7476505 + ], + [ + 10.5471297, + 60.7476529 + ], + [ + 10.5469921, + 60.7477131 + ], + [ + 10.5469779, + 60.7477401 + ], + [ + 10.5469314, + 60.7477599 + ], + [ + 10.5468261, + 60.7477832 + ], + [ + 10.5467688, + 60.7477861 + ], + [ + 10.5466743, + 60.7478206 + ], + [ + 10.5466037, + 60.7478665 + ], + [ + 10.546494, + 60.7478965 + ], + [ + 10.5464346, + 60.7479059 + ], + [ + 10.5459529, + 60.7479149 + ], + [ + 10.5458928, + 60.7479663 + ], + [ + 10.5456835, + 60.7480794 + ], + [ + 10.5456822, + 60.7481429 + ], + [ + 10.5457369, + 60.7482277 + ], + [ + 10.5455625, + 60.7483094 + ], + [ + 10.5455009, + 60.7483097 + ], + [ + 10.5453841, + 60.7483814 + ], + [ + 10.5452771, + 60.7484097 + ], + [ + 10.5451992, + 60.7484165 + ], + [ + 10.5450964, + 60.7484158 + ], + [ + 10.5450352, + 60.7484199 + ], + [ + 10.5448315, + 60.7484762 + ], + [ + 10.5447456, + 60.7485188 + ], + [ + 10.5446845, + 60.7485222 + ], + [ + 10.5446397, + 60.7485399 + ], + [ + 10.5446315, + 60.7485718 + ], + [ + 10.5445606, + 60.7486207 + ], + [ + 10.5443409, + 60.7487281 + ], + [ + 10.5442829, + 60.7487295 + ], + [ + 10.5442501, + 60.7487534 + ], + [ + 10.5442678, + 60.7487804 + ], + [ + 10.5442686, + 60.7488354 + ], + [ + 10.5442258, + 60.7488948 + ], + [ + 10.5442228, + 60.7490209 + ], + [ + 10.5441696, + 60.7490738 + ], + [ + 10.5441479, + 60.7492261 + ], + [ + 10.5440884, + 60.7493811 + ], + [ + 10.5440584, + 60.749409 + ], + [ + 10.544056, + 60.7494669 + ], + [ + 10.544142, + 60.7495081 + ], + [ + 10.5442479, + 60.7495305 + ], + [ + 10.5443321, + 60.7495738 + ], + [ + 10.5443891, + 60.7495877 + ], + [ + 10.5444256, + 60.749609 + ], + [ + 10.5445474, + 60.7496422 + ], + [ + 10.5445676, + 60.7496588 + ], + [ + 10.5445662, + 60.7496948 + ], + [ + 10.5445389, + 60.749841 + ], + [ + 10.544558, + 60.7498755 + ], + [ + 10.5446033, + 60.7499021 + ], + [ + 10.5448299, + 60.75 + ], + [ + 10.5448655, + 60.7500153 + ], + [ + 10.5448689, + 60.7500874 + ], + [ + 10.5448445, + 60.7501202 + ], + [ + 10.5446738, + 60.75022 + ], + [ + 10.5446231, + 60.7504126 + ], + [ + 10.5445655, + 60.7504732 + ], + [ + 10.5444645, + 60.7505266 + ], + [ + 10.5444343, + 60.7505609 + ], + [ + 10.5444374, + 60.7505955 + ], + [ + 10.5445193, + 60.7506545 + ], + [ + 10.5445235, + 60.7507305 + ], + [ + 10.5444823, + 60.7508462 + ], + [ + 10.5444322, + 60.7509196 + ], + [ + 10.544331, + 60.7510159 + ], + [ + 10.544332, + 60.7510935 + ], + [ + 10.544374, + 60.7511244 + ], + [ + 10.5444427, + 60.751138 + ], + [ + 10.5445822, + 60.7511335 + ], + [ + 10.5447085, + 60.7510983 + ], + [ + 10.5448743, + 60.7510236 + ], + [ + 10.5449519, + 60.751007 + ], + [ + 10.5451417, + 60.7510093 + ], + [ + 10.5453244, + 60.750958 + ], + [ + 10.5454969, + 60.7509318 + ], + [ + 10.5457335, + 60.7508545 + ], + [ + 10.545856, + 60.7508524 + ], + [ + 10.5459122, + 60.7508641 + ], + [ + 10.5459565, + 60.7508975 + ], + [ + 10.5459377, + 60.7509673 + ], + [ + 10.5458923, + 60.7510236 + ], + [ + 10.5458905, + 60.7510881 + ], + [ + 10.5459125, + 60.7511524 + ], + [ + 10.545976, + 60.7512061 + ], + [ + 10.5461642, + 60.7513003 + ], + [ + 10.5461972, + 60.7513301 + ], + [ + 10.5462107, + 60.7513672 + ], + [ + 10.546208, + 60.7514395 + ], + [ + 10.5461638, + 60.7515124 + ], + [ + 10.5460828, + 60.7515762 + ], + [ + 10.5459929, + 60.7516255 + ], + [ + 10.5457827, + 60.7517054 + ], + [ + 10.5456398, + 60.7517776 + ], + [ + 10.5452881, + 60.7519956 + ], + [ + 10.5448648, + 60.7521888 + ], + [ + 10.5443312, + 60.7524212 + ], + [ + 10.5442558, + 60.7524677 + ], + [ + 10.5441244, + 60.7525903 + ], + [ + 10.5440236, + 60.752665 + ], + [ + 10.5439309, + 60.7527563 + ], + [ + 10.5438902, + 60.752818 + ], + [ + 10.5438605, + 60.7529505 + ], + [ + 10.5438569, + 60.7530551 + ], + [ + 10.5438785, + 60.7531318 + ], + [ + 10.5439988, + 60.7533888 + ], + [ + 10.5439997, + 60.7536723 + ], + [ + 10.5441019, + 60.7538012 + ], + [ + 10.5441149, + 60.7539104 + ], + [ + 10.544122, + 60.7542571 + ], + [ + 10.5441824, + 60.7544036 + ], + [ + 10.5442265, + 60.7545869 + ], + [ + 10.5443283, + 60.7547243 + ], + [ + 10.5443485, + 60.7547886 + ], + [ + 10.5443493, + 60.7548888 + ], + [ + 10.5443715, + 60.7549655 + ], + [ + 10.5444759, + 60.7551439 + ], + [ + 10.544573, + 60.7554438 + ], + [ + 10.5445821, + 60.7555944 + ], + [ + 10.5446891, + 60.7558428 + ], + [ + 10.5447392, + 60.7559148 + ], + [ + 10.5449095, + 60.7560781 + ], + [ + 10.544991, + 60.7561859 + ], + [ + 10.5451042, + 60.7562769 + ], + [ + 10.5451265, + 60.7563137 + ], + [ + 10.5451452, + 60.7564682 + ], + [ + 10.5451847, + 60.7565349 + ], + [ + 10.545254, + 60.7566022 + ], + [ + 10.5455926, + 60.7568464 + ], + [ + 10.5459086, + 60.75714 + ], + [ + 10.5460812, + 60.7572588 + ], + [ + 10.5461723, + 60.7573629 + ], + [ + 10.5463505, + 60.7575243 + ], + [ + 10.5463882, + 60.7575978 + ], + [ + 10.5464524, + 60.757859 + ], + [ + 10.5465054, + 60.7579233 + ], + [ + 10.5467583, + 60.758069 + ], + [ + 10.5468409, + 60.7581333 + ], + [ + 10.5470357, + 60.7583334 + ], + [ + 10.5472105, + 60.7584524 + ], + [ + 10.5472845, + 60.7585192 + ], + [ + 10.5473283, + 60.7585859 + ], + [ + 10.547358, + 60.7587405 + ], + [ + 10.5474208, + 60.7588521 + ], + [ + 10.5474585, + 60.7589599 + ], + [ + 10.5474843, + 60.7593057 + ], + [ + 10.5476084, + 60.7594806 + ], + [ + 10.5476131, + 60.7598306 + ], + [ + 10.5476334, + 60.7599079 + ], + [ + 10.5477396, + 60.7600865 + ], + [ + 10.5477617, + 60.7601635 + ], + [ + 10.547763, + 60.7603541 + ], + [ + 10.5477796, + 60.7604315 + ], + [ + 10.5478393, + 60.7605362 + ], + [ + 10.5479136, + 60.7606035 + ], + [ + 10.5480173, + 60.7606605 + ], + [ + 10.5481857, + 60.7607308 + ], + [ + 10.5485586, + 60.7608637 + ], + [ + 10.5488217, + 60.7610053 + ], + [ + 10.5492064, + 60.7612784 + ], + [ + 10.5492598, + 60.7613508 + ], + [ + 10.549276, + 60.7614283 + ], + [ + 10.5492711, + 60.7615406 + ], + [ + 10.5492515, + 60.7615785 + ], + [ + 10.5491205, + 60.7617214 + ], + [ + 10.5491086, + 60.7618731 + ], + [ + 10.5490599, + 60.7619475 + ], + [ + 10.5489664, + 60.762012 + ], + [ + 10.5488464, + 60.762044 + ], + [ + 10.5487037, + 60.762054 + ], + [ + 10.5486423, + 60.7620736 + ], + [ + 10.5485339, + 60.7621329 + ], + [ + 10.548419, + 60.7621632 + ], + [ + 10.548288, + 60.7621561 + ], + [ + 10.5481797, + 60.7620721 + ], + [ + 10.5481221, + 60.7620593 + ], + [ + 10.5480485, + 60.7620591 + ], + [ + 10.5479735, + 60.7620722 + ], + [ + 10.5479269, + 60.7620906 + ], + [ + 10.5477855, + 60.7621697 + ], + [ + 10.5477242, + 60.7622301 + ], + [ + 10.5477107, + 60.7622631 + ], + [ + 10.5477185, + 60.7623606 + ], + [ + 10.5477785, + 60.7624215 + ], + [ + 10.548107, + 60.7626588 + ], + [ + 10.5481649, + 60.7627303 + ], + [ + 10.5481969, + 60.7627991 + ], + [ + 10.5482521, + 60.7629916 + ], + [ + 10.5482986, + 60.7630581 + ], + [ + 10.5483958, + 60.7631181 + ], + [ + 10.5486616, + 60.763251 + ], + [ + 10.5488319, + 60.7633791 + ], + [ + 10.5490467, + 60.7636188 + ], + [ + 10.5492065, + 60.7637434 + ], + [ + 10.5495536, + 60.7640356 + ], + [ + 10.5496431, + 60.7641375 + ], + [ + 10.5497056, + 60.7642375 + ], + [ + 10.5497446, + 60.7643467 + ], + [ + 10.5497402, + 60.7644487 + ], + [ + 10.5496881, + 60.7645142 + ], + [ + 10.5496388, + 60.7645389 + ], + [ + 10.5493022, + 60.7646696 + ], + [ + 10.5491499, + 60.764747 + ], + [ + 10.549076, + 60.7648159 + ], + [ + 10.5490596, + 60.7648539 + ], + [ + 10.5490597, + 60.7649324 + ], + [ + 10.5491087, + 60.7650043 + ], + [ + 10.5491422, + 60.7650199 + ], + [ + 10.5492147, + 60.7650731 + ], + [ + 10.549218, + 60.7651419 + ], + [ + 10.5491673, + 60.7652089 + ], + [ + 10.5489749, + 60.7653361 + ], + [ + 10.5488089, + 60.7654146 + ], + [ + 10.5486725, + 60.7654589 + ], + [ + 10.5482808, + 60.7655295 + ], + [ + 10.5481317, + 60.7655434 + ], + [ + 10.5478027, + 60.76555 + ], + [ + 10.5477254, + 60.7655608 + ], + [ + 10.5475935, + 60.7655977 + ], + [ + 10.5474697, + 60.7656501 + ], + [ + 10.5473148, + 60.7657799 + ], + [ + 10.5472609, + 60.7658044 + ], + [ + 10.5471236, + 60.7658049 + ], + [ + 10.5469211, + 60.7657808 + ], + [ + 10.5466987, + 60.7656737 + ], + [ + 10.5464931, + 60.7656608 + ], + [ + 10.5464254, + 60.7656429 + ], + [ + 10.5463952, + 60.7656157 + ], + [ + 10.5463671, + 60.7655531 + ], + [ + 10.5463302, + 60.7655315 + ], + [ + 10.546272, + 60.7655235 + ], + [ + 10.5458699, + 60.7655217 + ], + [ + 10.5457689, + 60.7654969 + ], + [ + 10.5456939, + 60.765446 + ], + [ + 10.5455104, + 60.7652608 + ], + [ + 10.5454145, + 60.7652099 + ], + [ + 10.5453067, + 60.7651791 + ], + [ + 10.5452496, + 60.7651736 + ], + [ + 10.5451786, + 60.7651789 + ], + [ + 10.5451355, + 60.7652108 + ], + [ + 10.5451363, + 60.7652378 + ], + [ + 10.545162, + 60.765266 + ], + [ + 10.545313, + 60.7653782 + ], + [ + 10.5454247, + 60.7655127 + ], + [ + 10.5454454, + 60.765588 + ], + [ + 10.5454468, + 60.7657354 + ], + [ + 10.545467, + 60.7658036 + ], + [ + 10.5456008, + 60.7658832 + ], + [ + 10.545598, + 60.7659137 + ], + [ + 10.5455675, + 60.7659475 + ], + [ + 10.5454127, + 60.766039 + ], + [ + 10.5450789, + 60.7662045 + ], + [ + 10.5448934, + 60.7664121 + ], + [ + 10.5448066, + 60.7664786 + ], + [ + 10.5445533, + 60.7665699 + ], + [ + 10.544392, + 60.7666599 + ], + [ + 10.5441544, + 60.7667615 + ], + [ + 10.5441073, + 60.7667936 + ], + [ + 10.5440947, + 60.7668292 + ], + [ + 10.5441131, + 60.7668581 + ], + [ + 10.5441786, + 60.7668714 + ], + [ + 10.5442555, + 60.766869 + ], + [ + 10.5443146, + 60.7668857 + ], + [ + 10.5443383, + 60.7669172 + ], + [ + 10.5443304, + 60.7669898 + ], + [ + 10.5442698, + 60.7670555 + ], + [ + 10.5441777, + 60.7671205 + ], + [ + 10.5440616, + 60.767177 + ], + [ + 10.5439929, + 60.7671952 + ], + [ + 10.5438609, + 60.7672069 + ], + [ + 10.5437382, + 60.7672012 + ], + [ + 10.5436517, + 60.7671854 + ], + [ + 10.5434439, + 60.7671823 + ], + [ + 10.5433813, + 60.7671662 + ], + [ + 10.5433739, + 60.7671106 + ], + [ + 10.5434129, + 60.7670565 + ], + [ + 10.5434133, + 60.7668934 + ], + [ + 10.5433667, + 60.7668654 + ], + [ + 10.5432418, + 60.7668564 + ], + [ + 10.5430332, + 60.7669175 + ], + [ + 10.5428478, + 60.7669533 + ], + [ + 10.5427586, + 60.7669991 + ], + [ + 10.5426144, + 60.7671041 + ], + [ + 10.5424637, + 60.7671655 + ], + [ + 10.5424317, + 60.7671876 + ], + [ + 10.5424201, + 60.7672243 + ], + [ + 10.5424229, + 60.767343 + ], + [ + 10.5423471, + 60.7673945 + ], + [ + 10.5422252, + 60.7674334 + ], + [ + 10.5421096, + 60.7674445 + ], + [ + 10.5419249, + 60.7674458 + ], + [ + 10.5418457, + 60.7674624 + ], + [ + 10.541794, + 60.7674858 + ], + [ + 10.5417088, + 60.7675506 + ], + [ + 10.5415326, + 60.7677201 + ], + [ + 10.541431, + 60.767869 + ], + [ + 10.5413792, + 60.7678975 + ], + [ + 10.5411426, + 60.7679867 + ], + [ + 10.5408945, + 60.7680434 + ], + [ + 10.5407767, + 60.7680856 + ], + [ + 10.5406719, + 60.7681449 + ], + [ + 10.540509, + 60.7682743 + ], + [ + 10.5404053, + 60.7683352 + ], + [ + 10.5403396, + 60.768355 + ], + [ + 10.540193, + 60.7683747 + ], + [ + 10.5399543, + 60.768455 + ], + [ + 10.5398311, + 60.7684635 + ], + [ + 10.5396382, + 60.76843 + ], + [ + 10.5395979, + 60.7684075 + ], + [ + 10.5395736, + 60.768373 + ], + [ + 10.5395584, + 60.7682998 + ], + [ + 10.5395274, + 60.7682602 + ], + [ + 10.5394803, + 60.7682427 + ], + [ + 10.5394227, + 60.7682397 + ], + [ + 10.5393651, + 60.768248 + ], + [ + 10.5392654, + 60.768298 + ], + [ + 10.5391627, + 60.7683876 + ], + [ + 10.5390756, + 60.7684433 + ], + [ + 10.5388209, + 60.7685599 + ], + [ + 10.5387079, + 60.7685975 + ], + [ + 10.5386604, + 60.7686254 + ], + [ + 10.5385027, + 60.7687563 + ], + [ + 10.5381754, + 60.7689326 + ], + [ + 10.5380513, + 60.7689521 + ], + [ + 10.5376909, + 60.768956 + ], + [ + 10.5374888, + 60.7689799 + ], + [ + 10.5372765, + 60.7689928 + ], + [ + 10.5370274, + 60.7690244 + ], + [ + 10.5369019, + 60.7690273 + ], + [ + 10.5367876, + 60.7690139 + ], + [ + 10.5366925, + 60.7689519 + ], + [ + 10.5365744, + 60.7687963 + ], + [ + 10.5364603, + 60.7687 + ], + [ + 10.536428, + 60.7686186 + ], + [ + 10.5364285, + 60.7684193 + ], + [ + 10.5363461, + 60.7682725 + ], + [ + 10.5363341, + 60.7680874 + ], + [ + 10.5362917, + 60.7680259 + ], + [ + 10.5362854, + 60.7679863 + ], + [ + 10.5362513, + 60.7679656 + ], + [ + 10.5362426, + 60.7679359 + ], + [ + 10.536249, + 60.7678163 + ], + [ + 10.5363619, + 60.7676634 + ], + [ + 10.536507, + 60.7675232 + ], + [ + 10.5365961, + 60.7674586 + ], + [ + 10.5366928, + 60.7674121 + ], + [ + 10.5367269, + 60.7673838 + ], + [ + 10.5367225, + 60.7673159 + ], + [ + 10.536686, + 60.7672813 + ], + [ + 10.5365784, + 60.7672275 + ], + [ + 10.5364249, + 60.767196 + ], + [ + 10.5361035, + 60.7671625 + ], + [ + 10.5359569, + 60.7671606 + ], + [ + 10.5355057, + 60.7671809 + ], + [ + 10.53528, + 60.7671728 + ], + [ + 10.5350462, + 60.7671319 + ], + [ + 10.5348232, + 60.7671057 + ], + [ + 10.5346641, + 60.7671034 + ], + [ + 10.5344497, + 60.7671298 + ], + [ + 10.5340613, + 60.7671596 + ], + [ + 10.5337664, + 60.767208 + ], + [ + 10.5331538, + 60.7673848 + ], + [ + 10.5330377, + 60.7674371 + ], + [ + 10.5328552, + 60.7675602 + ], + [ + 10.532605, + 60.7677057 + ], + [ + 10.5323086, + 60.7680209 + ], + [ + 10.5321908, + 60.7682411 + ], + [ + 10.5321287, + 60.7683132 + ], + [ + 10.5319952, + 60.7684048 + ], + [ + 10.5319628, + 60.7684676 + ], + [ + 10.5319552, + 60.7685705 + ], + [ + 10.5319692, + 60.7685941 + ], + [ + 10.5319495, + 60.7686038 + ], + [ + 10.5319159, + 60.7686662 + ], + [ + 10.5318791, + 60.7686995 + ], + [ + 10.5317703, + 60.7687592 + ], + [ + 10.5313949, + 60.7689049 + ], + [ + 10.5311905, + 60.7689727 + ], + [ + 10.5308271, + 60.7690491 + ], + [ + 10.5304939, + 60.7691454 + ], + [ + 10.5303611, + 60.7691749 + ], + [ + 10.530234, + 60.7691888 + ], + [ + 10.5299737, + 60.7691791 + ], + [ + 10.5299211, + 60.769188 + ], + [ + 10.5298763, + 60.7692157 + ], + [ + 10.5297471, + 60.7693402 + ], + [ + 10.5296482, + 60.769375 + ], + [ + 10.5295284, + 60.7693807 + ], + [ + 10.5294702, + 60.7693938 + ], + [ + 10.5293914, + 60.7694422 + ], + [ + 10.5293419, + 60.7695092 + ], + [ + 10.5292865, + 60.7696408 + ], + [ + 10.5292693, + 60.7697938 + ], + [ + 10.5292368, + 60.7698241 + ], + [ + 10.5291062, + 60.7698958 + ], + [ + 10.5289642, + 60.7701129 + ], + [ + 10.528804, + 60.7702381 + ], + [ + 10.5287399, + 60.770307 + ], + [ + 10.5286224, + 60.7705507 + ], + [ + 10.5284494, + 60.770634 + ], + [ + 10.5282012, + 60.7707097 + ], + [ + 10.5281203, + 60.7707179 + ], + [ + 10.5280478, + 60.7707098 + ], + [ + 10.5280209, + 60.7706854 + ], + [ + 10.5280367, + 60.7706154 + ], + [ + 10.528189, + 60.7705375 + ], + [ + 10.528224, + 60.7705084 + ], + [ + 10.5282185, + 60.7704444 + ], + [ + 10.5281595, + 60.770395 + ], + [ + 10.528112, + 60.7703314 + ], + [ + 10.5281018, + 60.7701022 + ], + [ + 10.5282042, + 60.7699744 + ], + [ + 10.5281992, + 60.7699458 + ], + [ + 10.5280605, + 60.7698751 + ], + [ + 10.528022, + 60.7698373 + ], + [ + 10.5280947, + 60.7697824 + ], + [ + 10.528209, + 60.769751 + ], + [ + 10.528471, + 60.7697462 + ], + [ + 10.5285398, + 60.7697295 + ], + [ + 10.5286579, + 60.7696807 + ], + [ + 10.5287242, + 60.7696201 + ], + [ + 10.528738, + 60.7695855 + ], + [ + 10.5287356, + 60.7694495 + ], + [ + 10.5287571, + 60.7694131 + ], + [ + 10.5288538, + 60.7693533 + ], + [ + 10.5289789, + 60.7692959 + ], + [ + 10.5291766, + 60.7692278 + ], + [ + 10.529176, + 60.7691988 + ], + [ + 10.5291284, + 60.7691823 + ], + [ + 10.5290086, + 60.7691616 + ], + [ + 10.5288896, + 60.7691529 + ], + [ + 10.528205, + 60.7691445 + ], + [ + 10.528153, + 60.7691302 + ], + [ + 10.5281302, + 60.7691015 + ], + [ + 10.5281682, + 60.7690697 + ], + [ + 10.5282205, + 60.7690586 + ], + [ + 10.5289235, + 60.7690596 + ], + [ + 10.5291314, + 60.7690525 + ], + [ + 10.5292697, + 60.7690345 + ], + [ + 10.5293311, + 60.7690167 + ], + [ + 10.5295446, + 60.7688972 + ] + ], + [ + [ + 10.5371364, + 60.7425025 + ], + [ + 10.5371612, + 60.7424432 + ], + [ + 10.5371599, + 60.7423805 + ], + [ + 10.5370879, + 60.7423284 + ], + [ + 10.5369814, + 60.7422935 + ], + [ + 10.536924, + 60.7422824 + ], + [ + 10.5367964, + 60.7422824 + ], + [ + 10.5366748, + 60.7423016 + ], + [ + 10.5366378, + 60.7423229 + ], + [ + 10.5364823, + 60.7424997 + ], + [ + 10.5364311, + 60.7426189 + ], + [ + 10.5364259, + 60.7428517 + ], + [ + 10.5364431, + 60.7430192 + ], + [ + 10.5364323, + 60.7431167 + ], + [ + 10.5363936, + 60.7431363 + ], + [ + 10.536377, + 60.7431643 + ], + [ + 10.5363812, + 60.7432216 + ], + [ + 10.536494, + 60.7432896 + ], + [ + 10.5365604, + 60.7433051 + ], + [ + 10.5367465, + 60.7433033 + ], + [ + 10.5367927, + 60.7432882 + ], + [ + 10.5368487, + 60.7432348 + ], + [ + 10.5369475, + 60.7431993 + ], + [ + 10.5369639, + 60.7431424 + ], + [ + 10.5370223, + 60.7430871 + ], + [ + 10.5370344, + 60.742968 + ], + [ + 10.5370634, + 60.7429101 + ], + [ + 10.5370645, + 60.7428516 + ], + [ + 10.5371031, + 60.7427922 + ], + [ + 10.5371364, + 60.7425025 + ] + ], + [ + [ + 10.5448866, + 60.7482449 + ], + [ + 10.5448992, + 60.7482975 + ], + [ + 10.5450067, + 60.7483705 + ], + [ + 10.5451818, + 60.7483709 + ], + [ + 10.5452358, + 60.7483577 + ], + [ + 10.545303, + 60.7483044 + ], + [ + 10.5453684, + 60.7482261 + ], + [ + 10.5453614, + 60.748169 + ], + [ + 10.5452416, + 60.7480997 + ], + [ + 10.5451824, + 60.7481013 + ], + [ + 10.544957, + 60.7482012 + ], + [ + 10.5449312, + 60.7482266 + ], + [ + 10.5448866, + 60.7482449 + ] + ], + [ + [ + 10.5433311, + 60.7515144 + ], + [ + 10.5434011, + 60.7514483 + ], + [ + 10.5436012, + 60.7513126 + ], + [ + 10.5436298, + 60.7512558 + ], + [ + 10.5436218, + 60.7511924 + ], + [ + 10.5435629, + 60.7511688 + ], + [ + 10.5435041, + 60.7511709 + ], + [ + 10.5434613, + 60.7511881 + ], + [ + 10.5434408, + 60.7512816 + ], + [ + 10.5433179, + 60.7513471 + ], + [ + 10.5431902, + 60.7515356 + ], + [ + 10.5432362, + 60.7515524 + ], + [ + 10.5432971, + 60.7515373 + ], + [ + 10.5433311, + 60.7515144 + ] + ], + [ + [ + 10.5437658, + 60.7495875 + ], + [ + 10.5438436, + 60.7496325 + ], + [ + 10.5439093, + 60.7496359 + ], + [ + 10.5439485, + 60.7496164 + ], + [ + 10.5439646, + 60.7495876 + ], + [ + 10.5439807, + 60.749541 + ], + [ + 10.5439036, + 60.7494988 + ], + [ + 10.5438927, + 60.7494702 + ], + [ + 10.543833, + 60.7494227 + ], + [ + 10.5437764, + 60.7494172 + ], + [ + 10.5437353, + 60.749436 + ], + [ + 10.5437256, + 60.7494952 + ], + [ + 10.5437651, + 60.7495193 + ], + [ + 10.5437658, + 60.7495875 + ] + ], + [ + [ + 10.5425466, + 60.7507998 + ], + [ + 10.5426289, + 60.7507904 + ], + [ + 10.5426185, + 60.7507537 + ], + [ + 10.5425479, + 60.7507354 + ], + [ + 10.5424305, + 60.7507438 + ], + [ + 10.5423088, + 60.7507836 + ], + [ + 10.5422354, + 60.7508376 + ], + [ + 10.5422259, + 60.7508661 + ], + [ + 10.5422499, + 60.750896 + ], + [ + 10.5423057, + 60.7508885 + ], + [ + 10.5424144, + 60.750821 + ], + [ + 10.5425466, + 60.7507998 + ] + ], + [ + [ + 10.5430668, + 60.7507773 + ], + [ + 10.5430552, + 60.7508218 + ], + [ + 10.5430671, + 60.7508595 + ], + [ + 10.5431233, + 60.750872 + ], + [ + 10.5431906, + 60.750859 + ], + [ + 10.5432347, + 60.7508369 + ], + [ + 10.5432992, + 60.7507833 + ], + [ + 10.5433042, + 60.7507443 + ], + [ + 10.5432468, + 60.7507308 + ], + [ + 10.5431118, + 60.7507502 + ], + [ + 10.5430668, + 60.7507773 + ] + ] + ] + }, + "id": "relation/7682780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/535531961", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5371364, + 60.7425025 + ], + [ + 10.5371031, + 60.7427922 + ], + [ + 10.5370645, + 60.7428516 + ], + [ + 10.5370634, + 60.7429101 + ], + [ + 10.5370344, + 60.742968 + ], + [ + 10.5370223, + 60.7430871 + ], + [ + 10.5369639, + 60.7431424 + ], + [ + 10.5369475, + 60.7431993 + ], + [ + 10.5368487, + 60.7432348 + ], + [ + 10.5367927, + 60.7432882 + ], + [ + 10.5367465, + 60.7433033 + ], + [ + 10.5365604, + 60.7433051 + ], + [ + 10.536494, + 60.7432896 + ], + [ + 10.5363812, + 60.7432216 + ], + [ + 10.536377, + 60.7431643 + ], + [ + 10.5363936, + 60.7431363 + ], + [ + 10.5364323, + 60.7431167 + ], + [ + 10.5364431, + 60.7430192 + ], + [ + 10.5364259, + 60.7428517 + ], + [ + 10.5364311, + 60.7426189 + ], + [ + 10.5364823, + 60.7424997 + ], + [ + 10.5366378, + 60.7423229 + ], + [ + 10.5366748, + 60.7423016 + ], + [ + 10.5367964, + 60.7422824 + ], + [ + 10.536924, + 60.7422824 + ], + [ + 10.5369814, + 60.7422935 + ], + [ + 10.5370879, + 60.7423284 + ], + [ + 10.5371599, + 60.7423805 + ], + [ + 10.5371612, + 60.7424432 + ], + [ + 10.5371364, + 60.7425025 + ] + ] + ] + }, + "id": "way/535531961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/785964288", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5448866, + 60.7482449 + ], + [ + 10.5449312, + 60.7482266 + ], + [ + 10.544957, + 60.7482012 + ], + [ + 10.5451824, + 60.7481013 + ], + [ + 10.5452416, + 60.7480997 + ], + [ + 10.5453614, + 60.748169 + ], + [ + 10.5453684, + 60.7482261 + ], + [ + 10.545303, + 60.7483044 + ], + [ + 10.5452358, + 60.7483577 + ], + [ + 10.5451818, + 60.7483709 + ], + [ + 10.5450067, + 60.7483705 + ], + [ + 10.5448992, + 60.7482975 + ], + [ + 10.5448866, + 60.7482449 + ] + ] + ] + }, + "id": "way/785964288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212280668", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5430668, + 60.7507773 + ], + [ + 10.5431118, + 60.7507502 + ], + [ + 10.5432468, + 60.7507308 + ], + [ + 10.5433042, + 60.7507443 + ], + [ + 10.5432992, + 60.7507833 + ], + [ + 10.5432347, + 60.7508369 + ], + [ + 10.5431906, + 60.750859 + ], + [ + 10.5431233, + 60.750872 + ], + [ + 10.5430671, + 60.7508595 + ], + [ + 10.5430552, + 60.7508218 + ], + [ + 10.5430668, + 60.7507773 + ] + ] + ] + }, + "id": "way/1212280668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212280669", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5425466, + 60.7507998 + ], + [ + 10.5424144, + 60.750821 + ], + [ + 10.5423057, + 60.7508885 + ], + [ + 10.5422499, + 60.750896 + ], + [ + 10.5422259, + 60.7508661 + ], + [ + 10.5422354, + 60.7508376 + ], + [ + 10.5423088, + 60.7507836 + ], + [ + 10.5424305, + 60.7507438 + ], + [ + 10.5425479, + 60.7507354 + ], + [ + 10.5426185, + 60.7507537 + ], + [ + 10.5426289, + 60.7507904 + ], + [ + 10.5425466, + 60.7507998 + ] + ] + ] + }, + "id": "way/1212280669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212280670", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5433311, + 60.7515144 + ], + [ + 10.5432971, + 60.7515373 + ], + [ + 10.5432362, + 60.7515524 + ], + [ + 10.5431902, + 60.7515356 + ], + [ + 10.5433179, + 60.7513471 + ], + [ + 10.5434408, + 60.7512816 + ], + [ + 10.5434613, + 60.7511881 + ], + [ + 10.5435041, + 60.7511709 + ], + [ + 10.5435629, + 60.7511688 + ], + [ + 10.5436218, + 60.7511924 + ], + [ + 10.5436298, + 60.7512558 + ], + [ + 10.5436012, + 60.7513126 + ], + [ + 10.5434011, + 60.7514483 + ], + [ + 10.5433311, + 60.7515144 + ] + ] + ] + }, + "id": "way/1212280670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212280699", + "natural": "wood", + "place": "islet", + "@relations": [ + { + "role": "inner", + "rel": 7682780, + "reltags": { + "ele": "432", + "ele:min": "429", + "name": "Skumsjøen", + "natural": "water", + "ref:nve:magasin": "46", + "ref:nve:vann": "195", + "ssr:stedsnr": "856500", + "type": "multipolygon", + "water": "reservoir", + "wikidata": "Q19389125" + } + } + ] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.5437658, + 60.7495875 + ], + [ + 10.5437651, + 60.7495193 + ], + [ + 10.5437256, + 60.7494952 + ], + [ + 10.5437353, + 60.749436 + ], + [ + 10.5437764, + 60.7494172 + ], + [ + 10.543833, + 60.7494227 + ], + [ + 10.5438927, + 60.7494702 + ], + [ + 10.5439036, + 60.7494988 + ], + [ + 10.5439807, + 60.749541 + ], + [ + 10.5439646, + 60.7495876 + ], + [ + 10.5439485, + 60.7496164 + ], + [ + 10.5439093, + 60.7496359 + ], + [ + 10.5438436, + 60.7496325 + ], + [ + 10.5437658, + 60.7495875 + ] + ] + ] + }, + "id": "way/1212280699" + } + ] +} \ No newline at end of file diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_centers.txt" "b/server/map_handler/lake_relations/skumsj\303\270en_centers.txt" deleted file mode 100644 index 00f077ca9aeced6542f9ba25e32bc85d363eee93..0000000000000000000000000000000000000000 --- "a/server/map_handler/lake_relations/skumsj\303\270en_centers.txt" +++ /dev/null @@ -1,9 +0,0 @@ -0, 0.0217, 0.0112 -1, 0.017, 0.02 -2, 0.0008, 0.001 -3, 0.0005, 0.0003 -4, 0.0002, 0.0001 -5, 0.0004, 0.0002 -6, 0.0004, 0.0004 -7, 0.0003, 0.0002 - diff --git "a/server/map_handler/lake_relations/skumsj\303\270en_div.json" "b/server/map_handler/lake_relations/skumsj\303\270en_div.json" new file mode 100644 index 0000000000000000000000000000000000000000..81acb8d635b3089f21674e16fa56dbb2660c4310 --- /dev/null +++ "b/server/map_handler/lake_relations/skumsj\303\270en_div.json" @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"sub_div_id": "0", "sub_div_center": [60.759476, 10.528021]}, "geometry": {"type": "Polygon", "coordinates": [[[10.528, 60.7707], [10.5281, 60.7707], [10.5282, 60.7707], [10.5284, 60.7706], [10.5286, 60.7706], [10.5287, 60.7703], [10.5288, 60.7702], [10.529, 60.7701], [10.5291, 60.7699], [10.5292, 60.7698], [10.5293, 60.7698], [10.5293, 60.7696], [10.5293, 60.7695], [10.5294, 60.7694], [10.5295, 60.7694], [10.5295, 60.7694], [10.5296, 60.7694], [10.5297, 60.7693], [10.5299, 60.7692], [10.5299, 60.7692], [10.53, 60.7692], [10.5302, 60.7692], [10.5304, 60.7692], [10.5305, 60.7691], [10.5308, 60.769], [10.5312, 60.769], [10.5314, 60.7689], [10.5318, 60.7688], [10.5319, 60.7687], [10.5319, 60.7687], [10.5319, 60.7686], [10.532, 60.7686], [10.532, 60.7686], [10.532, 60.7685], [10.532, 60.7684], [10.5321, 60.7683], [10.5322, 60.7682], [10.5323, 60.768], [10.5326, 60.7677], [10.5329, 60.7676], [10.533, 60.7674], [10.5332, 60.7674], [10.5338, 60.7672], [10.5341, 60.7672], [10.5344, 60.7671], [10.5347, 60.7671], [10.5348, 60.7671], [10.535, 60.7671], [10.5353, 60.7672], [10.5355, 60.7672], [10.536, 60.7672], [10.5361, 60.7672], [10.5364, 60.7672], [10.5366, 60.7672], [10.5367, 60.7673], [10.5367, 60.7673], [10.5367, 60.7674], [10.5367, 60.7674], [10.5366, 60.7675], [10.5365, 60.7675], [10.5364, 60.7677], [10.5362, 60.7678], [10.5362, 60.7679], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.768], [10.5363, 60.7681], [10.5363, 60.7683], [10.5364, 60.7684], [10.5364, 60.7686], [10.5365, 60.7687], [10.5366, 60.7688], [10.5367, 60.769], [10.5368, 60.769], [10.5369, 60.769], [10.537, 60.769], [10.5373, 60.769], [10.5375, 60.769], [10.5377, 60.769], [10.5381, 60.769], [10.5382, 60.7689], [10.5385, 60.7688], [10.5387, 60.7686], [10.5387, 60.7686], [10.5388, 60.7686], [10.5391, 60.7684], [10.5392, 60.7684], [10.5393, 60.7683], [10.5394, 60.7682], [10.5394, 60.7682], [10.5395, 60.7682], [10.5395, 60.7683], [10.5396, 60.7683], [10.5396, 60.7684], [10.5396, 60.7684], [10.5396, 60.7684], [10.5398, 60.7685], [10.54, 60.7685], [10.5402, 60.7684], [10.5403, 60.7684], [10.5404, 60.7683], [10.5405, 60.7683], [10.5407, 60.7681], [10.5408, 60.7681], [10.5409, 60.768], [10.5411, 60.768], [10.5414, 60.7679], [10.5414, 60.7679], [10.5415, 60.7677], [10.5417, 60.7676], [10.5418, 60.7675], [10.5418, 60.7675], [10.5419, 60.7674], [10.5421, 60.7674], [10.5422, 60.7674], [10.5423, 60.7674], [10.5424, 60.7673], [10.5424, 60.7672], [10.5424, 60.7672], [10.5425, 60.7672], [10.5426, 60.7671], [10.5428, 60.767], [10.5428, 60.767], [10.543, 60.7669], [10.5432, 60.7669], [10.5434, 60.7669], [10.5434, 60.7669], [10.5434, 60.7671], [10.5434, 60.7671], [10.5434, 60.7672], [10.5434, 60.7672], [10.5437, 60.7672], [10.5437, 60.7672], [10.5439, 60.7672], [10.544, 60.7672], [10.5441, 60.7672], [10.5442, 60.7671], [10.5443, 60.7671], [10.5443, 60.767], [10.5443, 60.7669], [10.5443, 60.7669], [10.5443, 60.7669], [10.5442, 60.7669], [10.5441, 60.7669], [10.5441, 60.7668], [10.5441, 60.7668], [10.5442, 60.7668], [10.5444, 60.7667], [10.5446, 60.7666], [10.5448, 60.7665], [10.5449, 60.7664], [10.5451, 60.7662], [10.5454, 60.766], [10.5456, 60.7659], [10.5456, 60.7659], [10.5456, 60.7659], [10.5455, 60.7658], [10.5454, 60.7657], [10.5454, 60.7656], [10.5454, 60.7655], [10.5453, 60.7654], [10.5452, 60.7653], [10.5451, 60.7652], [10.5451, 60.7652], [10.5452, 60.7652], [10.5452, 60.7652], [10.5453, 60.7652], [10.5454, 60.7652], [10.5455, 60.7653], [10.5457, 60.7654], [10.5458, 60.7655], [10.5459, 60.7655], [10.5463, 60.7655], [10.5463, 60.7655], [10.5464, 60.7656], [10.5464, 60.7656], [10.5464, 60.7656], [10.5465, 60.7657], [10.5467, 60.7657], [10.5469, 60.7658], [10.5471, 60.7658], [10.5473, 60.7658], [10.5473, 60.7658], [10.5475, 60.7657], [10.5476, 60.7656], [10.5477, 60.7656], [10.5478, 60.7655], [10.5481, 60.7655], [10.5483, 60.7655], [10.5487, 60.7655], [10.5488, 60.7654], [10.549, 60.7653], [10.5492, 60.7652], [10.5492, 60.7651], [10.5492, 60.7651], [10.5491, 60.765], [10.5491, 60.765], [10.5491, 60.7649], [10.5491, 60.7649], [10.5491, 60.7648], [10.5491, 60.7647], [10.5493, 60.7647], [10.5496, 60.7645], [10.5497, 60.7645], [10.5497, 60.7644], [10.5497, 60.7643], [10.5497, 60.7642], [10.5496, 60.7641], [10.5496, 60.764], [10.5492, 60.7637], [10.549, 60.7636], [10.5488, 60.7634], [10.5487, 60.7633], [10.5484, 60.7631], [10.5483, 60.7631], [10.5483, 60.763], [10.5482, 60.7628], [10.5482, 60.7627], [10.5481, 60.7627], [10.5478, 60.7624], [10.5477, 60.7624], [10.5477, 60.7623], [10.5477, 60.7622], [10.5478, 60.7622], [10.5479, 60.7621], [10.548, 60.7621], [10.548, 60.7621], [10.5481, 60.7621], [10.5482, 60.7621], [10.5483, 60.7622], [10.5484, 60.7622], [10.5485, 60.7621], [10.5486, 60.7621], [10.5487, 60.7621], [10.5488, 60.762], [10.549, 60.762], [10.5491, 60.7619], [10.5491, 60.7619], [10.5491, 60.7617], [10.5493, 60.7616], [10.5493, 60.7615], [10.5493, 60.7614], [10.5493, 60.7614], [10.5492, 60.7613], [10.5488, 60.761], [10.5486, 60.7609], [10.5482, 60.7607], [10.548, 60.7607], [10.5479, 60.7606], [10.5478, 60.7605], [10.5478, 60.7604], [10.5478, 60.7604], [10.5478, 60.7602], [10.5477, 60.7601], [10.5476, 60.7599], [10.5476, 60.7598], [10.5476, 60.7595], [10.5476, 60.7595], [10.5382, 60.7595], [10.5382, 60.7595], [10.5379, 60.7598], [10.5378, 60.76], [10.5379, 60.76], [10.538, 60.7601], [10.538, 60.7601], [10.5381, 60.7602], [10.5381, 60.7604], [10.5381, 60.7605], [10.538, 60.7605], [10.5379, 60.7606], [10.5378, 60.7607], [10.5377, 60.7609], [10.5377, 60.7611], [10.5377, 60.7612], [10.5376, 60.7613], [10.5375, 60.7614], [10.5374, 60.7615], [10.5373, 60.7616], [10.5372, 60.7617], [10.5371, 60.7619], [10.537, 60.7619], [10.537, 60.762], [10.5368, 60.762], [10.5367, 60.7621], [10.5367, 60.7621], [10.5366, 60.7622], [10.5366, 60.7623], [10.5364, 60.7623], [10.5363, 60.7624], [10.5362, 60.7625], [10.5361, 60.7626], [10.536, 60.7628], [10.536, 60.7628], [10.5359, 60.7628], [10.5359, 60.7628], [10.5358, 60.7628], [10.5356, 60.763], [10.5356, 60.763], [10.5355, 60.763], [10.5354, 60.7631], [10.5353, 60.7631], [10.5352, 60.7632], [10.5352, 60.7632], [10.5352, 60.7634], [10.5353, 60.7634], [10.5353, 60.7634], [10.5355, 60.7633], [10.5356, 60.7633], [10.5357, 60.7633], [10.5358, 60.7634], [10.5358, 60.7634], [10.5359, 60.7634], [10.5361, 60.7634], [10.5363, 60.7634], [10.5366, 60.7635], [10.5366, 60.7636], [10.5366, 60.7637], [10.5367, 60.7637], [10.5369, 60.7638], [10.5369, 60.7639], [10.537, 60.764], [10.537, 60.7641], [10.537, 60.7641], [10.5371, 60.7641], [10.5373, 60.764], [10.5374, 60.7639], [10.5375, 60.7638], [10.5376, 60.7638], [10.5376, 60.7639], [10.5377, 60.7639], [10.5377, 60.764], [10.5377, 60.7643], [10.5377, 60.7644], [10.5375, 60.7646], [10.5373, 60.7647], [10.5372, 60.7649], [10.5371, 60.7649], [10.537, 60.765], [10.5369, 60.7651], [10.5368, 60.7651], [10.5367, 60.7651], [10.5367, 60.7651], [10.5366, 60.765], [10.5365, 60.765], [10.5366, 60.7649], [10.5366, 60.7648], [10.5368, 60.7646], [10.5368, 60.7646], [10.5368, 60.7645], [10.5368, 60.7645], [10.5367, 60.7645], [10.5366, 60.7645], [10.5365, 60.7646], [10.5365, 60.7646], [10.5363, 60.7649], [10.5362, 60.765], [10.536, 60.7651], [10.536, 60.7651], [10.536, 60.7653], [10.536, 60.7653], [10.5359, 60.7653], [10.5359, 60.7653], [10.5357, 60.7653], [10.5355, 60.7653], [10.5353, 60.7653], [10.5352, 60.7653], [10.5349, 60.7653], [10.5349, 60.7653], [10.5348, 60.7654], [10.5347, 60.7654], [10.5346, 60.7654], [10.5345, 60.7654], [10.5344, 60.7654], [10.5342, 60.7653], [10.5341, 60.7653], [10.534, 60.7653], [10.5338, 60.7653], [10.5337, 60.7653], [10.5335, 60.7653], [10.5333, 60.7654], [10.5331, 60.7655], [10.533, 60.7655], [10.5329, 60.7656], [10.5328, 60.7657], [10.5326, 60.7659], [10.5323, 60.766], [10.5323, 60.7661], [10.5322, 60.7662], [10.5321, 60.7663], [10.5318, 60.7664], [10.5317, 60.7665], [10.5317, 60.7665], [10.5317, 60.7668], [10.5316, 60.7669], [10.5316, 60.767], [10.5316, 60.7672], [10.5314, 60.7673], [10.5314, 60.7673], [10.5314, 60.7675], [10.5313, 60.7676], [10.5311, 60.7679], [10.5307, 60.7681], [10.5306, 60.7682], [10.5305, 60.7683], [10.5304, 60.7684], [10.5304, 60.7684], [10.5304, 60.7687], [10.5304, 60.7688], [10.5303, 60.7688], [10.5302, 60.7688], [10.5301, 60.7687], [10.53, 60.7687], [10.53, 60.7687], [10.5298, 60.7688], [10.5296, 60.7689], [10.5295, 60.7689], [10.5293, 60.769], [10.5293, 60.769], [10.5291, 60.7691], [10.5289, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5281, 60.7691], [10.5282, 60.7691], [10.5282, 60.7691], [10.5289, 60.7692], [10.529, 60.7692], [10.5291, 60.7692], [10.5292, 60.7692], [10.5292, 60.7692], [10.529, 60.7693], [10.5289, 60.7694], [10.5288, 60.7694], [10.5287, 60.7694], [10.5287, 60.7696], [10.5287, 60.7696], [10.5287, 60.7697], [10.5285, 60.7697], [10.5285, 60.7697], [10.5282, 60.7698], [10.5281, 60.7698], [10.528, 60.7698], [10.5281, 60.7699], [10.5282, 60.7699], [10.5282, 60.77], [10.5281, 60.7701], [10.5281, 60.7703], [10.5282, 60.7704], [10.5282, 60.7704], [10.5282, 60.7705], [10.5282, 60.7705], [10.528, 60.7706], [10.528, 60.7707], [10.528, 60.7707]]]}}, {"type": "Feature", "properties": {"sub_div_id": "1", "sub_div_center": [60.739476, 10.530733]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5475, 60.7593], [10.5475, 60.759], [10.5474, 60.7589], [10.5474, 60.7587], [10.5473, 60.7586], [10.5473, 60.7585], [10.5472, 60.7585], [10.547, 60.7583], [10.5468, 60.7581], [10.5468, 60.7581], [10.5465, 60.7579], [10.5465, 60.7579], [10.5464, 60.7576], [10.5464, 60.7575], [10.5462, 60.7574], [10.5461, 60.7573], [10.5459, 60.7571], [10.5456, 60.7568], [10.5453, 60.7566], [10.5452, 60.7565], [10.5451, 60.7565], [10.5451, 60.7563], [10.5451, 60.7563], [10.545, 60.7562], [10.5449, 60.7561], [10.5447, 60.7559], [10.5447, 60.7558], [10.5446, 60.7556], [10.5446, 60.7554], [10.5445, 60.7551], [10.5444, 60.755], [10.5443, 60.7549], [10.5443, 60.7548], [10.5443, 60.7547], [10.5442, 60.7546], [10.5442, 60.7544], [10.5441, 60.7543], [10.5441, 60.7539], [10.5441, 60.7538], [10.544, 60.7537], [10.544, 60.7534], [10.5439, 60.7531], [10.5439, 60.7531], [10.5439, 60.753], [10.5439, 60.7528], [10.5439, 60.7528], [10.544, 60.7527], [10.5441, 60.7526], [10.5443, 60.7525], [10.5443, 60.7524], [10.5449, 60.7522], [10.5453, 60.752], [10.5456, 60.7518], [10.5458, 60.7517], [10.546, 60.7516], [10.5461, 60.7516], [10.5462, 60.7515], [10.5462, 60.7514], [10.5462, 60.7514], [10.5462, 60.7513], [10.5462, 60.7513], [10.546, 60.7512], [10.5459, 60.7512], [10.5459, 60.7511], [10.5459, 60.751], [10.5459, 60.751], [10.546, 60.7509], [10.5459, 60.7509], [10.5459, 60.7509], [10.5457, 60.7509], [10.5455, 60.7509], [10.5453, 60.751], [10.5451, 60.751], [10.545, 60.751], [10.5449, 60.751], [10.5447, 60.7511], [10.5446, 60.7511], [10.5444, 60.7511], [10.5444, 60.7511], [10.5443, 60.7511], [10.5443, 60.751], [10.5444, 60.7509], [10.5445, 60.7508], [10.5445, 60.7507], [10.5445, 60.7507], [10.5444, 60.7506], [10.5444, 60.7506], [10.5445, 60.7505], [10.5446, 60.7505], [10.5446, 60.7504], [10.5447, 60.7502], [10.5448, 60.7501], [10.5449, 60.7501], [10.5449, 60.75], [10.5448, 60.75], [10.5446, 60.7499], [10.5446, 60.7499], [10.5445, 60.7498], [10.5446, 60.7497], [10.5446, 60.7497], [10.5445, 60.7496], [10.5444, 60.7496], [10.5444, 60.7496], [10.5443, 60.7496], [10.5442, 60.7495], [10.5441, 60.7495], [10.5441, 60.7495], [10.5441, 60.7494], [10.5441, 60.7494], [10.5441, 60.7492], [10.5442, 60.7491], [10.5442, 60.749], [10.5442, 60.7489], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7488], [10.5443, 60.7487], [10.5443, 60.7487], [10.5446, 60.7486], [10.5446, 60.7486], [10.5446, 60.7485], [10.5447, 60.7485], [10.5447, 60.7485], [10.5448, 60.7485], [10.545, 60.7484], [10.5451, 60.7484], [10.5452, 60.7484], [10.5453, 60.7484], [10.5454, 60.7484], [10.5455, 60.7483], [10.5456, 60.7483], [10.5457, 60.7482], [10.5457, 60.7481], [10.5457, 60.7481], [10.5459, 60.748], [10.546, 60.7479], [10.5464, 60.7479], [10.5465, 60.7479], [10.5466, 60.7479], [10.5467, 60.7478], [10.5468, 60.7478], [10.5468, 60.7478], [10.5469, 60.7478], [10.547, 60.7477], [10.547, 60.7477], [10.5471, 60.7477], [10.5472, 60.7477], [10.5473, 60.7476], [10.5477, 60.7475], [10.5477, 60.7474], [10.5478, 60.7473], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7472], [10.5477, 60.7471], [10.5476, 60.7471], [10.5475, 60.7471], [10.5472, 60.747], [10.5469, 60.747], [10.5467, 60.747], [10.5465, 60.7471], [10.5465, 60.7472], [10.5464, 60.7472], [10.5463, 60.7472], [10.5462, 60.7472], [10.5462, 60.7472], [10.5461, 60.7472], [10.546, 60.7472], [10.5459, 60.7472], [10.5459, 60.7471], [10.5459, 60.7471], [10.5461, 60.7471], [10.5462, 60.7471], [10.5463, 60.7471], [10.5463, 60.747], [10.5462, 60.747], [10.5462, 60.747], [10.5462, 60.7469], [10.5461, 60.7469], [10.546, 60.7469], [10.5459, 60.7469], [10.5458, 60.7468], [10.5458, 60.7468], [10.5458, 60.7468], [10.5457, 60.7467], [10.5457, 60.7466], [10.5457, 60.7466], [10.5457, 60.7464], [10.5456, 60.7464], [10.5455, 60.7463], [10.5454, 60.7462], [10.5453, 60.7462], [10.5452, 60.7461], [10.5452, 60.7461], [10.5453, 60.7461], [10.5453, 60.746], [10.5452, 60.746], [10.5452, 60.7457], [10.5452, 60.7457], [10.5451, 60.7457], [10.5449, 60.7456], [10.5445, 60.7455], [10.5441, 60.7453], [10.544, 60.7452], [10.5439, 60.7451], [10.5439, 60.745], [10.5439, 60.7448], [10.5438, 60.7448], [10.5436, 60.7448], [10.5435, 60.7448], [10.5433, 60.7447], [10.5432, 60.7446], [10.5432, 60.7445], [10.5432, 60.7444], [10.5433, 60.7444], [10.5433, 60.7443], [10.5434, 60.7442], [10.5434, 60.7442], [10.5435, 60.7442], [10.5435, 60.7441], [10.5435, 60.7441], [10.5435, 60.744], [10.5436, 60.744], [10.5436, 60.744], [10.5437, 60.7439], [10.5437, 60.7439], [10.5436, 60.7439], [10.5436, 60.7438], [10.5436, 60.7438], [10.5436, 60.7438], [10.5437, 60.7437], [10.5436, 60.7436], [10.5434, 60.7435], [10.5433, 60.7433], [10.5432, 60.7433], [10.5433, 60.7432], [10.5434, 60.7432], [10.5434, 60.7431], [10.5434, 60.743], [10.5433, 60.743], [10.543, 60.7431], [10.543, 60.7431], [10.543, 60.7431], [10.5429, 60.7432], [10.5429, 60.7432], [10.5428, 60.7432], [10.5428, 60.7432], [10.5427, 60.7432], [10.5427, 60.7431], [10.5426, 60.7431], [10.5422, 60.743], [10.542, 60.7429], [10.5418, 60.7428], [10.5415, 60.7427], [10.5416, 60.7427], [10.5416, 60.7426], [10.5416, 60.7426], [10.5413, 60.7424], [10.5412, 60.7423], [10.5411, 60.7422], [10.541, 60.7422], [10.541, 60.7422], [10.5409, 60.7421], [10.5409, 60.7421], [10.5408, 60.7421], [10.5408, 60.742], [10.5407, 60.7419], [10.5406, 60.7419], [10.5404, 60.7419], [10.5402, 60.7419], [10.5402, 60.7419], [10.5401, 60.7419], [10.5401, 60.742], [10.54, 60.742], [10.54, 60.742], [10.5398, 60.742], [10.5398, 60.742], [10.5397, 60.742], [10.5397, 60.7421], [10.5395, 60.7422], [10.5394, 60.7422], [10.5393, 60.7423], [10.5393, 60.7424], [10.5393, 60.7424], [10.5394, 60.7424], [10.5394, 60.7424], [10.5395, 60.7424], [10.5393, 60.7425], [10.5393, 60.7425], [10.5391, 60.7425], [10.539, 60.7426], [10.539, 60.7426], [10.539, 60.7426], [10.5389, 60.7427], [10.5389, 60.7427], [10.5388, 60.7427], [10.5388, 60.7426], [10.5388, 60.7426], [10.5387, 60.7426], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7427], [10.5386, 60.7428], [10.5387, 60.7428], [10.5388, 60.7428], [10.5389, 60.7429], [10.5389, 60.7429], [10.5389, 60.7429], [10.5388, 60.7429], [10.5387, 60.743], [10.5386, 60.743], [10.5385, 60.743], [10.5384, 60.743], [10.5381, 60.743], [10.538, 60.743], [10.5379, 60.743], [10.5378, 60.7429], [10.5378, 60.7429], [10.5378, 60.7429], [10.5377, 60.7429], [10.5377, 60.7428], [10.5377, 60.7428], [10.5376, 60.7427], [10.5376, 60.7427], [10.5377, 60.7426], [10.5378, 60.7426], [10.5378, 60.7426], [10.5379, 60.7426], [10.5379, 60.7425], [10.538, 60.7425], [10.538, 60.7425], [10.538, 60.7424], [10.538, 60.7424], [10.5379, 60.7424], [10.5376, 60.7424], [10.5375, 60.7424], [10.5375, 60.7423], [10.5375, 60.7423], [10.5376, 60.7423], [10.5377, 60.7423], [10.5377, 60.7422], [10.5377, 60.742], [10.5377, 60.742], [10.5377, 60.7418], [10.5379, 60.7418], [10.5381, 60.7417], [10.5382, 60.7417], [10.5383, 60.7416], [10.5385, 60.7416], [10.5386, 60.7416], [10.5387, 60.7416], [10.5388, 60.7416], [10.539, 60.7417], [10.5392, 60.7416], [10.5392, 60.7416], [10.5392, 60.7416], [10.539, 60.7415], [10.539, 60.7415], [10.5389, 60.7414], [10.5387, 60.7414], [10.5385, 60.7413], [10.5383, 60.7413], [10.5382, 60.7413], [10.5381, 60.7412], [10.5378, 60.7411], [10.5377, 60.7411], [10.5376, 60.741], [10.5376, 60.741], [10.5376, 60.7409], [10.5376, 60.7409], [10.5377, 60.7409], [10.5376, 60.7409], [10.5376, 60.7409], [10.5376, 60.7407], [10.5376, 60.7407], [10.5376, 60.7406], [10.5374, 60.7404], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5373, 60.7403], [10.5372, 60.7402], [10.5372, 60.7402], [10.5373, 60.7402], [10.5375, 60.7401], [10.5376, 60.74], [10.5376, 60.74], [10.5374, 60.7399], [10.5374, 60.7399], [10.5374, 60.7398], [10.5374, 60.7397], [10.5373, 60.7397], [10.5373, 60.7396], [10.5371, 60.7396], [10.5369, 60.7395], [10.5368, 60.7395], [10.5367, 60.7395], [10.5366, 60.7395], [10.5365, 60.7395], [10.5364, 60.7395], [10.5363, 60.7396], [10.5362, 60.7397], [10.5361, 60.7398], [10.5359, 60.7399], [10.5359, 60.7399], [10.5357, 60.74], [10.5355, 60.7401], [10.5353, 60.7401], [10.5352, 60.7401], [10.535, 60.7402], [10.5348, 60.7403], [10.5347, 60.7404], [10.5345, 60.7404], [10.5345, 60.7405], [10.5345, 60.7405], [10.5343, 60.7405], [10.5342, 60.7406], [10.5341, 60.7406], [10.534, 60.7405], [10.5339, 60.7405], [10.5338, 60.7405], [10.5337, 60.7405], [10.5334, 60.7406], [10.5332, 60.7407], [10.5331, 60.7407], [10.533, 60.7407], [10.5328, 60.7407], [10.5327, 60.7408], [10.5326, 60.7408], [10.5324, 60.7408], [10.5323, 60.7408], [10.5321, 60.7408], [10.532, 60.7408], [10.5319, 60.7407], [10.5317, 60.7407], [10.5315, 60.7407], [10.5313, 60.7407], [10.5311, 60.7408], [10.5311, 60.7408], [10.531, 60.7408], [10.5308, 60.7408], [10.5307, 60.7409], [10.5307, 60.741], [10.5308, 60.7411], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7412], [10.5308, 60.7414], [10.531, 60.7414], [10.5311, 60.7415], [10.5311, 60.7415], [10.5312, 60.7416], [10.5311, 60.7416], [10.5311, 60.7417], [10.5313, 60.7418], [10.5314, 60.7418], [10.5315, 60.7419], [10.5315, 60.742], [10.5316, 60.7421], [10.5317, 60.7421], [10.5317, 60.7422], [10.532, 60.7422], [10.5322, 60.7423], [10.5322, 60.7423], [10.5323, 60.7423], [10.5324, 60.7423], [10.5325, 60.7424], [10.5326, 60.7425], [10.5328, 60.7426], [10.5329, 60.7426], [10.5329, 60.7427], [10.5328, 60.7428], [10.5328, 60.7429], [10.5328, 60.743], [10.5328, 60.7431], [10.533, 60.7431], [10.533, 60.7432], [10.5328, 60.7432], [10.5328, 60.7432], [10.533, 60.7433], [10.533, 60.7433], [10.5332, 60.7434], [10.5333, 60.7434], [10.5333, 60.7433], [10.5333, 60.7434], [10.5334, 60.7434], [10.5333, 60.7434], [10.5333, 60.7435], [10.5334, 60.7435], [10.5335, 60.7436], [10.5335, 60.7436], [10.5335, 60.7438], [10.5336, 60.7439], [10.5336, 60.744], [10.5337, 60.744], [10.5337, 60.7441], [10.5337, 60.7441], [10.5337, 60.7442], [10.5337, 60.7443], [10.5337, 60.7443], [10.5338, 60.7443], [10.5338, 60.7444], [10.5338, 60.7444], [10.5339, 60.7445], [10.5339, 60.7446], [10.5339, 60.7446], [10.5338, 60.7446], [10.5338, 60.7447], [10.5338, 60.745], [10.5338, 60.7451], [10.5339, 60.7453], [10.534, 60.7454], [10.534, 60.7456], [10.5341, 60.7456], [10.5341, 60.7457], [10.5341, 60.7458], [10.5341, 60.7459], [10.5341, 60.7459], [10.5342, 60.746], [10.5342, 60.746], [10.5342, 60.7461], [10.5343, 60.7461], [10.5343, 60.7462], [10.5344, 60.7462], [10.5344, 60.7462], [10.5344, 60.7464], [10.5344, 60.7464], [10.5345, 60.7465], [10.5346, 60.7466], [10.5346, 60.7466], [10.5346, 60.7468], [10.5346, 60.7469], [10.5346, 60.7472], [10.5345, 60.7472], [10.5345, 60.7474], [10.5346, 60.7475], [10.5346, 60.7475], [10.5347, 60.7476], [10.5347, 60.7476], [10.5349, 60.7476], [10.535, 60.7477], [10.535, 60.7478], [10.5351, 60.7478], [10.535, 60.7479], [10.5351, 60.748], [10.5351, 60.748], [10.535, 60.7481], [10.535, 60.7481], [10.5349, 60.7482], [10.5349, 60.7483], [10.5349, 60.7483], [10.5348, 60.7484], [10.5348, 60.7484], [10.5346, 60.7486], [10.5345, 60.7486], [10.5343, 60.7487], [10.5343, 60.7487], [10.5343, 60.7487], [10.5342, 60.7488], [10.5341, 60.7488], [10.534, 60.7488], [10.5337, 60.7487], [10.5336, 60.7487], [10.5335, 60.7487], [10.5334, 60.7487], [10.5332, 60.7487], [10.533, 60.7487], [10.533, 60.7487], [10.5327, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5326, 60.7488], [10.5327, 60.7489], [10.5327, 60.749], [10.5327, 60.749], [10.5325, 60.749], [10.5325, 60.749], [10.5325, 60.7491], [10.5326, 60.7491], [10.5327, 60.7491], [10.5328, 60.7491], [10.5328, 60.7491], [10.5329, 60.7492], [10.5333, 60.7493], [10.5333, 60.7493], [10.5332, 60.7494], [10.5332, 60.7494], [10.5336, 60.7495], [10.5338, 60.7495], [10.5338, 60.7496], [10.5339, 60.7496], [10.5339, 60.7496], [10.5341, 60.7497], [10.5343, 60.7497], [10.5344, 60.7497], [10.5344, 60.7498], [10.5344, 60.7499], [10.5344, 60.7499], [10.5345, 60.75], [10.5346, 60.75], [10.5347, 60.75], [10.5349, 60.7502], [10.535, 60.7503], [10.5352, 60.7503], [10.5352, 60.7503], [10.5353, 60.7503], [10.5353, 60.7504], [10.5354, 60.7505], [10.5355, 60.7505], [10.5355, 60.7507], [10.5356, 60.7508], [10.5356, 60.7509], [10.5357, 60.751], [10.5358, 60.751], [10.5359, 60.7511], [10.5359, 60.7513], [10.5358, 60.7513], [10.5358, 60.7514], [10.5356, 60.7514], [10.5356, 60.7514], [10.5355, 60.7516], [10.5355, 60.7516], [10.5354, 60.7516], [10.5353, 60.7517], [10.5349, 60.7517], [10.5348, 60.7516], [10.5345, 60.7516], [10.5344, 60.7515], [10.5343, 60.7515], [10.5342, 60.7516], [10.5337, 60.7516], [10.5336, 60.7516], [10.5334, 60.7515], [10.5333, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5332, 60.7515], [10.5331, 60.7515], [10.5329, 60.7516], [10.5328, 60.7516], [10.5328, 60.7517], [10.5326, 60.7518], [10.5325, 60.7519], [10.5325, 60.7519], [10.5326, 60.7521], [10.5326, 60.7522], [10.5326, 60.7523], [10.5326, 60.7523], [10.5325, 60.7523], [10.5325, 60.7524], [10.5325, 60.7524], [10.5326, 60.7526], [10.5326, 60.7526], [10.5327, 60.7526], [10.5328, 60.7527], [10.5328, 60.7528], [10.5329, 60.7528], [10.5328, 60.7528], [10.5328, 60.7529], [10.5329, 60.7529], [10.533, 60.753], [10.5331, 60.7531], [10.5333, 60.7531], [10.5335, 60.7531], [10.5336, 60.7531], [10.5339, 60.7531], [10.534, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5341, 60.7531], [10.5339, 60.7532], [10.5338, 60.7533], [10.5335, 60.7534], [10.5335, 60.7535], [10.5334, 60.7535], [10.5333, 60.7536], [10.5333, 60.7539], [10.5333, 60.754], [10.5333, 60.754], [10.5332, 60.7541], [10.5331, 60.7541], [10.5329, 60.7542], [10.5328, 60.7542], [10.5327, 60.7543], [10.5327, 60.7544], [10.5326, 60.7545], [10.5326, 60.7547], [10.5324, 60.7548], [10.5324, 60.7548], [10.5324, 60.7549], [10.5323, 60.755], [10.5323, 60.755], [10.5323, 60.755], [10.5324, 60.7551], [10.5325, 60.7551], [10.5326, 60.7551], [10.5327, 60.7551], [10.5329, 60.7551], [10.5332, 60.755], [10.5333, 60.755], [10.5333, 60.755], [10.5334, 60.755], [10.5334, 60.755], [10.5334, 60.7552], [10.5335, 60.7554], [10.5335, 60.7555], [10.5335, 60.7558], [10.5335, 60.7559], [10.5334, 60.7559], [10.5334, 60.756], [10.5335, 60.7561], [10.5336, 60.7561], [10.5336, 60.7562], [10.5335, 60.7562], [10.5334, 60.7562], [10.5333, 60.7563], [10.5332, 60.7564], [10.5332, 60.7564], [10.5332, 60.7565], [10.5332, 60.7566], [10.5332, 60.7567], [10.5331, 60.7567], [10.5331, 60.7568], [10.5331, 60.7568], [10.5332, 60.7569], [10.5332, 60.757], [10.5331, 60.7571], [10.5331, 60.7573], [10.533, 60.7574], [10.533, 60.7575], [10.5329, 60.7575], [10.5329, 60.7575], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7576], [10.5327, 60.7577], [10.5327, 60.7578], [10.5328, 60.7579], [10.5327, 60.7579], [10.5327, 60.758], [10.5326, 60.758], [10.5326, 60.7582], [10.5325, 60.7583], [10.5323, 60.7584], [10.5321, 60.7586], [10.5319, 60.7586], [10.5318, 60.7588], [10.5316, 60.759], [10.5316, 60.7591], [10.5315, 60.7592], [10.5315, 60.7592], [10.5315, 60.7593], [10.5315, 60.7593], [10.5315, 60.7594], [10.5317, 60.7594], [10.5317, 60.7594], [10.5318, 60.7594], [10.532, 60.7593], [10.5323, 60.7592], [10.5327, 60.7589], [10.5329, 60.7588], [10.5329, 60.7587], [10.5329, 60.7586], [10.533, 60.7585], [10.533, 60.7585], [10.5332, 60.7584], [10.5334, 60.7584], [10.5335, 60.7583], [10.5336, 60.7582], [10.5338, 60.7582], [10.5339, 60.7582], [10.534, 60.7581], [10.5341, 60.758], [10.5342, 60.758], [10.5343, 60.7579], [10.5345, 60.7579], [10.5346, 60.7578], [10.5348, 60.7577], [10.535, 60.7576], [10.5351, 60.7576], [10.5351, 60.7575], [10.5352, 60.7575], [10.5353, 60.7576], [10.5357, 60.7576], [10.5357, 60.7576], [10.5357, 60.7577], [10.5358, 60.7577], [10.5359, 60.7578], [10.5359, 60.7578], [10.5359, 60.758], [10.536, 60.7581], [10.5361, 60.7581], [10.5361, 60.7581], [10.5362, 60.758], [10.5363, 60.758], [10.5363, 60.7581], [10.5363, 60.7582], [10.5364, 60.7582], [10.5364, 60.7582], [10.5365, 60.7583], [10.5366, 60.7582], [10.5367, 60.7582], [10.5368, 60.7581], [10.537, 60.758], [10.5371, 60.7579], [10.5372, 60.7579], [10.5373, 60.7578], [10.5372, 60.7577], [10.5372, 60.7577], [10.5372, 60.7576], [10.5373, 60.7576], [10.5374, 60.7575], [10.5375, 60.7575], [10.5376, 60.7575], [10.5377, 60.7576], [10.5378, 60.7576], [10.5378, 60.7576], [10.5379, 60.7575], [10.5379, 60.7574], [10.5379, 60.7574], [10.538, 60.7574], [10.538, 60.7575], [10.538, 60.7576], [10.5379, 60.7577], [10.5379, 60.7578], [10.538, 60.7579], [10.538, 60.7579], [10.5379, 60.758], [10.5379, 60.7581], [10.5378, 60.7582], [10.5378, 60.7583], [10.538, 60.7584], [10.538, 60.7585], [10.538, 60.7586], [10.538, 60.7586], [10.5383, 60.7586], [10.5384, 60.7587], [10.5384, 60.7587], [10.5383, 60.7587], [10.5382, 60.7587], [10.5381, 60.7588], [10.5381, 60.7588], [10.5382, 60.7589], [10.5382, 60.759], [10.5384, 60.7591], [10.5384, 60.7592], [10.5384, 60.7592], [10.5382, 60.7593], [10.5382, 60.7595], [10.5476, 60.7595], [10.5475, 60.7593]]]}}, {"type": "Feature", "properties": {"sub_div_id": "2", "sub_div_center": [60.742282, 10.536377]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5364, 60.7432], [10.5365, 60.7433], [10.5366, 60.7433], [10.5367, 60.7433], [10.5368, 60.7433], [10.5368, 60.7432], [10.5369, 60.7432], [10.537, 60.7431], [10.537, 60.7431], [10.537, 60.743], [10.5371, 60.7429], [10.5371, 60.7429], [10.5371, 60.7428], [10.5371, 60.7425], [10.5372, 60.7424], [10.5372, 60.7424], [10.5371, 60.7423], [10.537, 60.7423], [10.5369, 60.7423], [10.5368, 60.7423], [10.5367, 60.7423], [10.5366, 60.7423], [10.5365, 60.7425], [10.5364, 60.7426], [10.5364, 60.7429], [10.5364, 60.743], [10.5364, 60.7431], [10.5364, 60.7431], [10.5364, 60.7432], [10.5364, 60.7432]]]}}, {"type": "Feature", "properties": {"sub_div_id": "3", "sub_div_center": [60.7481, 10.544887]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5449, 60.7483], [10.545, 60.7484], [10.5452, 60.7484], [10.5452, 60.7484], [10.5453, 60.7483], [10.5454, 60.7482], [10.5454, 60.7482], [10.5452, 60.7481], [10.5452, 60.7481], [10.545, 60.7482], [10.5449, 60.7482], [10.5449, 60.7482], [10.5449, 60.7483]]]}}, {"type": "Feature", "properties": {"sub_div_id": "4", "sub_div_center": [60.750731, 10.543055]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5431, 60.7509], [10.5431, 60.7509], [10.5432, 60.7509], [10.5432, 60.7508], [10.5433, 60.7508], [10.5433, 60.7507], [10.5432, 60.7507], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7508], [10.5431, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "5", "sub_div_center": [60.750735, 10.542226]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5422, 60.7509], [10.5423, 60.7509], [10.5424, 60.7508], [10.5425, 60.7508], [10.5426, 60.7508], [10.5426, 60.7508], [10.5425, 60.7507], [10.5424, 60.7507], [10.5423, 60.7508], [10.5422, 60.7508], [10.5422, 60.7509], [10.5422, 60.7509]]]}}, {"type": "Feature", "properties": {"sub_div_id": "6", "sub_div_center": [60.751169, 10.54319]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5432, 60.7516], [10.5433, 60.7515], [10.5433, 60.7515], [10.5434, 60.7514], [10.5436, 60.7513], [10.5436, 60.7513], [10.5436, 60.7512], [10.5436, 60.7512], [10.5435, 60.7512], [10.5435, 60.7512], [10.5434, 60.7513], [10.5433, 60.7513], [10.5432, 60.7515], [10.5432, 60.7516]]]}}, {"type": "Feature", "properties": {"sub_div_id": "7", "sub_div_center": [60.749417, 10.543726]}, "geometry": {"type": "Polygon", "coordinates": [[[10.5438, 60.7495], [10.5438, 60.7496], [10.5438, 60.7496], [10.5439, 60.7496], [10.5439, 60.7496], [10.544, 60.7496], [10.544, 60.7495], [10.5439, 60.7495], [10.5439, 60.7495], [10.5438, 60.7494], [10.5438, 60.7494], [10.5437, 60.7494], [10.5437, 60.7495], [10.5438, 60.7495]]]}}], "tile_count": 8} \ No newline at end of file diff --git a/server/map_handler/process_lake.py b/server/map_handler/process_lake.py deleted file mode 100644 index bf14018af244d9ff66bfdfdf21a04e9348814b8b..0000000000000000000000000000000000000000 --- a/server/map_handler/process_lake.py +++ /dev/null @@ -1,37 +0,0 @@ -import geopandas as gpd -from shapely.geometry import Polygon, MultiPolygon -import json -from server.map_handler.add_lake import write_json_to_file - - -# Writes contents of a map_handler json file to the response -def fetch_divided_map(self, file_name): - self.send_response(200) - self.send_header("Content-type", "application/json") - self.end_headers() - - # Extract contents from JSON file - with open("server/map_handler/lake_relations/" + file_name + "_div.json", "r") as file: - data = file.read() - - # Write contents of the JSON file to response - self.wfile.write(data.encode('utf-8')) - - -# Returns a list of [(sub_div_id, sub_div_center)] -def get_ids_and_centers(file_name): # NB buggy - # Expected format: [(id, [x,y]), (id, [x,y])] - geo_data = gpd.read_file("server/map_handler/lake_relations/" + file_name + "_div.json") - subdivisions = [] - for index, row in geo_data.iterrows(): - sub_div_id = row['sub_div_id'] - sub_div_center = row['sub_div_center'] - - print("sub_div_id: ", sub_div_id) - - subdivision = { - 'sub_div_id': sub_div_id, - 'sub_div_center': sub_div_center - } - subdivisions.append(subdivision) - return subdivisions \ No newline at end of file