From 89348e515bcc755312e9a5f63a1210a0d7b12a46 Mon Sep 17 00:00:00 2001 From: Dzina Dybouskaya Date: Tue, 18 Jul 2023 16:06:38 +0300 Subject: [PATCH] add tests for eta_model parameter --- .../core/CoreRerouteTest.kt | 50 +++++++++++++ .../core/RequestRoutesTest.kt | 73 +++++++++++++++++++ .../core/RouteAlternativesTest.kt | 41 ++++++++++- .../raw/route_response_enhanced_model.json | 1 + 4 files changed, 164 insertions(+), 1 deletion(-) create mode 100644 instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RequestRoutesTest.kt create mode 100644 instrumentation-tests/src/main/res/raw/route_response_enhanced_model.json diff --git a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/CoreRerouteTest.kt b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/CoreRerouteTest.kt index efd9f9e60ed..1d9652cd3a9 100644 --- a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/CoreRerouteTest.kt +++ b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/CoreRerouteTest.kt @@ -22,6 +22,7 @@ import com.mapbox.navigation.base.trip.model.RouteProgressState import com.mapbox.navigation.core.MapboxNavigation import com.mapbox.navigation.core.MapboxNavigationProvider import com.mapbox.navigation.core.directions.session.RoutesExtra +import com.mapbox.navigation.core.internal.extensions.flowLocationMatcherResult import com.mapbox.navigation.core.reroute.NavigationRerouteController import com.mapbox.navigation.core.reroute.RerouteController import com.mapbox.navigation.core.reroute.RerouteState @@ -35,6 +36,7 @@ import com.mapbox.navigation.instrumentation_tests.utils.http.MockDirectionsRefr import com.mapbox.navigation.instrumentation_tests.utils.http.MockDirectionsRequestHandler import com.mapbox.navigation.instrumentation_tests.utils.idling.RouteProgressStateIdlingResource import com.mapbox.navigation.instrumentation_tests.utils.location.MockLocationReplayerRule +import com.mapbox.navigation.instrumentation_tests.utils.location.stayOnPosition import com.mapbox.navigation.instrumentation_tests.utils.readRawFileText import com.mapbox.navigation.instrumentation_tests.utils.routes.MockRoute import com.mapbox.navigation.instrumentation_tests.utils.routes.RoutesProvider @@ -67,6 +69,7 @@ import org.junit.Rule import org.junit.Test import java.net.URI import java.util.concurrent.TimeUnit +import kotlin.math.abs class CoreRerouteTest : BaseTest(EmptyTestActivity::class.java) { @@ -853,6 +856,53 @@ class CoreRerouteTest : BaseTest(EmptyTestActivity::class.jav assertEquals(routes[1], rerouteResult.navigationRoutes.first()) } + @Test + fun reroute_keeps_eta_model_parameter() = sdkTest { + val mapboxNavigation = createMapboxNavigation() + val coordinates = listOf( + Point.fromLngLat(139.828785, 36.503349), + Point.fromLngLat(139.051904, 35.982396) + ) + val offRouteLocation = mockLocationUpdatesRule.generateLocationUpdate { + this.latitude = coordinates[0].latitude() + 0.002 + this.longitude = coordinates[0].longitude() + } + val handler = MockDirectionsRequestHandler( + DirectionsCriteria.PROFILE_DRIVING_TRAFFIC, + readRawFileText(context, R.raw.route_response_enhanced_model), + coordinates, + relaxedExpectedCoordinates = true + ) + mockWebServerRule.requestHandlers.add(handler) + + mapboxNavigation.startTripSession() + stayOnPosition(coordinates[0].latitude(), coordinates[0].longitude(), 0f) { + mapboxNavigation.flowLocationMatcherResult().filter { + abs(it.enhancedLocation.latitude - coordinates[0].latitude()) < 0.001 && + abs(it.enhancedLocation.longitude - coordinates[0].longitude()) < 0.001 + }.first() + val routes = mapboxNavigation.requestRoutes( + RouteOptions.builder() + .applyDefaultNavigationOptions() + .applyLanguageAndVoiceUnitOptions(activity) + .baseUrl(mockWebServerRule.baseUrl) + .coordinatesList(coordinates) + .unrecognizedProperties(mapOf("eta_model" to "enhanced")) + .build() + ).getSuccessfulResultOrThrowException().routes + + mapboxNavigation.setNavigationRoutesAndWaitForUpdate(routes) + } + stayOnPosition(offRouteLocation.latitude, offRouteLocation.longitude, 0f) { + mapboxNavigation.routesUpdates() + .filter { it.reason == RoutesExtra.ROUTES_UPDATE_REASON_REROUTE } + .first() + + val rerouteRequest = handler.handledRequests.last() + assertEquals("enhanced", rerouteRequest.requestUrl?.queryParameter("eta_model")) + } + } + private fun createMapboxNavigation(customRefreshInterval: Long? = null): MapboxNavigation { var mapboxNavigation: MapboxNavigation? = null diff --git a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RequestRoutesTest.kt b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RequestRoutesTest.kt new file mode 100644 index 00000000000..7965188ce1d --- /dev/null +++ b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RequestRoutesTest.kt @@ -0,0 +1,73 @@ +package com.mapbox.navigation.instrumentation_tests.core + +import android.location.Location +import com.mapbox.navigation.base.route.RouterOrigin +import com.mapbox.navigation.instrumentation_tests.utils.location.stayOnPosition +import com.mapbox.navigation.instrumentation_tests.utils.routes.EvRoutesProvider +import com.mapbox.navigation.instrumentation_tests.utils.routes.MockedEvRoutes +import com.mapbox.navigation.instrumentation_tests.utils.tiles.OfflineRegions +import com.mapbox.navigation.instrumentation_tests.utils.tiles.withMapboxNavigationAndOfflineTilesForRegion +import com.mapbox.navigation.instrumentation_tests.utils.withMapboxNavigation +import com.mapbox.navigation.instrumentation_tests.utils.withoutInternet +import com.mapbox.navigation.testing.ui.BaseCoreNoCleanUpTest +import com.mapbox.navigation.testing.ui.utils.coroutines.RouteRequestResult +import com.mapbox.navigation.testing.ui.utils.coroutines.getSuccessfulResultOrThrowException +import com.mapbox.navigation.testing.ui.utils.coroutines.requestRoutes +import com.mapbox.navigation.testing.ui.utils.coroutines.sdkTest +import com.mapbox.navigation.testing.ui.utils.coroutines.setNavigationRoutesAndWaitForUpdate +import com.mapbox.navigation.testing.ui.utils.coroutines.setNavigationRoutesAsync +import org.junit.Assert +import org.junit.Assert.assertEquals +import org.junit.Test + +class RequestRoutesTest : BaseCoreNoCleanUpTest() { + + override fun setupMockLocation(): Location { + return mockLocationUpdatesRule.generateLocationUpdate { + longitude = 13.361378213031003 + latitude = 52.49813341962201 + } + } + + @Test + fun buildOfflineRouteWithUnknownParameters() = sdkTest( + timeout = INCREASED_TIMEOUT_BECAUSE_OF_REAL_ROUTING_TILES_USAGE + ) { + val testRoute = setupBerlinEvRoute() + withMapboxNavigationAndOfflineTilesForRegion( + OfflineRegions.Berlin, + ) { navigation -> + navigation.startTripSession() + stayOnPosition( + testRoute.origin.latitude(), + testRoute.origin.longitude(), + 0.0f, + ) { + withoutInternet { + val requestResult = navigation.requestRoutes( + testRoute.routeOptions.toBuilder() + .unrecognizedProperties( + mapOf( + "unknown_key1" to "unknown_value1", + "unknown_key2" to "333", + "eta_model" to "enhanced" + ) + ) + .build() + ).getSuccessfulResultOrThrowException() + assertEquals(RouterOrigin.Onboard, requestResult.routerOrigin) + navigation.setNavigationRoutesAndWaitForUpdate(requestResult.routes) + } + } + } + } + + private fun setupBerlinEvRoute(): MockedEvRoutes { + val originalTestRoute = EvRoutesProvider.getBerlinEvRoute( + context, + mockWebServerRule.baseUrl + ) + mockWebServerRule.requestHandlers.add(originalTestRoute.mockWebServerHandler) + return originalTestRoute + } +} diff --git a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RouteAlternativesTest.kt b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RouteAlternativesTest.kt index ba5f319115d..de87b0cfb1e 100644 --- a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RouteAlternativesTest.kt +++ b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/RouteAlternativesTest.kt @@ -295,6 +295,43 @@ class RouteAlternativesTest : BaseCoreNoCleanUpTest() { } } + @Test + fun alternative_request_keeps_eta_model_parameter() = sdkTest { + setupMockRequestHandlers() + withMapboxNavigation( + historyRecorderRule = mapboxHistoryTestRule + ) { mapboxNavigation -> + val routes = mapboxNavigation.requestNavigationRoutes( + startCoordinates, + unrecognized = mapOf("eta_model" to "enhanced") + ) + mockWebServerRule.requestHandlers.clear() + val alternativesHandler = MockDirectionsRequestHandler( + "driving-traffic", + readRawFileText(context, R.raw.route_response_alternative_during_navigation), + startCoordinates, + relaxedExpectedCoordinates = true + ) + mockWebServerRule.requestHandlers.add(alternativesHandler) + mapboxNavigation.startTripSession() + mapboxNavigation.flowLocationMatcherResult().first() + mapboxNavigation.setNavigationRoutesAsync(routes) + mockLocationReplayerRule.playRoute(routes.first().directionsRoute) + + mapboxNavigation.alternativesUpdates() + .filterIsInstance() + .filter { + it.alternatives.isNotEmpty() && it.alternatives.none { + it.id.startsWith("1SSd29ZxmjD7ELLqDJHRPPDP5W4wdh633IbGo41pJrL6wpJRmzNaMA==") + } + } + .first() + + val alternativesRequest = alternativesHandler.handledRequests.last() + assertEquals("enhanced", alternativesRequest.requestUrl?.queryParameter("eta_model")) + } + } + private fun createExternalAlternatives(): List { return NavigationRoute.create( readRawFileText(context, R.raw.route_response_alternative_continue), @@ -328,12 +365,14 @@ class RouteAlternativesTest : BaseCoreNoCleanUpTest() { } private suspend fun MapboxNavigation.requestNavigationRoutes( - coordinates: List + coordinates: List, + unrecognized: Map? = null ): List { val routeOptions = RouteOptions.builder() .applyDefaultNavigationOptions() .alternatives(true) .coordinatesList(coordinates) + .unrecognizedProperties(unrecognized) .baseUrl(mockWebServerRule.baseUrl) // Comment out to test a real server .build() return requestRoutes(routeOptions) diff --git a/instrumentation-tests/src/main/res/raw/route_response_enhanced_model.json b/instrumentation-tests/src/main/res/raw/route_response_enhanced_model.json new file mode 100644 index 00000000000..95c057866e0 --- /dev/null +++ b/instrumentation-tests/src/main/res/raw/route_response_enhanced_model.json @@ -0,0 +1 @@ +{"routes":[{"weight_typical":7953.13,"duration_typical":7407.281,"weight_name":"auto","weight":7860.037,"duration":7373.439,"distance":143206.125,"legs":[{"notifications":[{"details":{"message":"Crossing the border of the states of 09 and 10."},"subtype":"stateBorderCrossing","type":"alert","geometry_index_end":687,"geometry_index_start":678},{"details":{"message":"Crossing the border of the states of 10 and 11."},"subtype":"stateBorderCrossing","type":"alert","geometry_index_end":1262,"geometry_index_start":1259}],"summary":"Kitakanto Expwy, Kan-Etsu Expwy","distance":143206.125,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive west.","announcement":"Drive west.","distanceAlongGeometry":397.319},{"ssmlAnnouncement":"In a quarter mile, Turn left.","announcement":"In a quarter mile, Turn left.","distanceAlongGeometry":392.652},{"ssmlAnnouncement":"Turn left.","announcement":"Turn left.","distanceAlongGeometry":18.667}],"intersections":[{"entry":[true],"bearings":[269],"duration":11.247,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":11.247,"geometry_index":0,"location":[139.828785,36.503349]},{"entry":[false,true],"in":0,"bearings":[92,267],"duration":17.432,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"weight":18.432,"geometry_index":6,"location":[139.82765,36.503434]},{"bearings":[99,184,285],"entry":[false,true,true],"in":0,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"geometry_index":9,"location":[139.826627,36.503462]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Turn left"}],"type":"turn","modifier":"left","text":"Turn left"},"distanceAlongGeometry":397.319}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive west.","bearing_after":269,"bearing_before":0,"location":[139.828785,36.503349]},"speedLimitSign":"vienna","name":"","weight_typical":67.995,"duration_typical":66.978,"duration":67.49000000000001,"distance":397.319,"driving_side":"left","weight":67.995,"mode":"driving","geometry":"ir~rdAabnuiGLz^?xAe@fC{AfHc@jEQjOP`KPl[{AlVmIzm@{AlQh[nGaGfc@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left.","announcement":"In a quarter mile, Turn left.","distanceAlongGeometry":437.608},{"ssmlAnnouncement":"Turn left.","announcement":"Turn left.","distanceAlongGeometry":36}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[25,105,207],"duration":2.538,"turn_weight":2,"turn_duration":1.178,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":3.326,"geometry_index":13,"location":[139.824866,36.503351]},{"entry":[false,true],"in":0,"bearings":[27,207],"duration":0.72,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"weight":1.702,"geometry_index":14,"location":[139.824776,36.503212]},{"entry":[false,true],"in":0,"bearings":[27,204],"duration":0.96,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"weight":1.936,"geometry_index":15,"location":[139.82473,36.503138]},{"entry":[false,true],"in":0,"bearings":[24,194],"duration":15.44,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"weight":16.054,"geometry_index":16,"location":[139.824673,36.503036]},{"bearings":[14,196,275],"entry":[false,true,true],"in":0,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":17,"location":[139.824151,36.501351]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Turn left"}],"type":"turn","modifier":"left","text":"Turn left"},"distanceAlongGeometry":446.608}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left.","modifier":"left","bearing_after":207,"bearing_before":285,"location":[139.824866,36.503351]},"speedLimitSign":"vienna","name":"","weight_typical":42.808,"duration_typical":38.469,"duration":38.763,"distance":446.608,"driving_side":"left","weight":42.808,"mode":"driving","geometry":"mr~rdAcmfuiGtGrDrCzAjEpBhhBr_@lsAp]jEnBzLfH`CzA`CnB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 500 feet, Turn left onto National Road No.121 Line.","announcement":"In 500 feet, Turn left onto National Road No.121 Line.","distanceAlongGeometry":149.303},{"ssmlAnnouncement":"Turn left onto National Road No.121 Line.","announcement":"Turn left onto National Road No.121 Line.","distanceAlongGeometry":54}],"intersections":[{"bearings":[33,127,191,310],"entry":[false,true,true,true],"in":0,"turn_weight":2,"turn_duration":1.636,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":22,"location":[139.823356,36.499546]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-national-route","display_ref":"121","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"National Road No.121 Line"}],"type":"turn","modifier":"left","text":"National Road No.121 Line"},"distanceAlongGeometry":158.303}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left.","modifier":"left","bearing_after":127,"bearing_before":213,"location":[139.823356,36.499546]},"speedLimitSign":"vienna","name":"","weight_typical":21.614,"duration_typical":21.249,"duration":21.414,"distance":158.303,"driving_side":"left","weight":21.614,"mode":"driving","geometry":"sdwrdAwncuiG`CaFzLaPlByAvVuInByAfSqX"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":738.001},{"ssmlAnnouncement":"In a quarter mile, Turn right at Yodobashiminami.","announcement":"In a quarter mile, Turn right at Yodobashiminami.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right at Yodobashiminami.","announcement":"Turn right at Yodobashiminami.","distanceAlongGeometry":62.222}],"intersections":[{"entry":[true,true,true,false],"in":3,"bearings":[61,135,239,315],"duration":7.034,"turn_weight":12,"turn_duration":0.882,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"weight":18.153,"geometry_index":28,"location":[139.824412,36.498444]},{"entry":[true,false],"in":1,"bearings":[57,240],"duration":12.041,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"weight":12.041,"geometry_index":30,"location":[139.825321,36.498861]},{"entry":[true,false],"in":1,"bearings":[71,239],"duration":8.614,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"weight":8.614,"geometry_index":34,"location":[139.827162,36.499787]},{"entry":[true,true,false],"in":2,"bearings":[82,168,252],"duration":11.105,"turn_duration":0.038,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"weight":11.067,"geometry_index":38,"location":[139.828582,36.500176]},{"entry":[true,false],"in":1,"bearings":[67,253],"duration":4.464,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"weight":4.464,"geometry_index":44,"location":[139.830411,36.500333]},{"bearings":[69,247],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":45,"location":[139.831048,36.500546]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Yodobashiminami"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.2 Line"}],"type":"turn","modifier":"right","text":"Yodobashiminami / Kendou No.2 Line"},"distanceAlongGeometry":751.334},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Yodobashiminami"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.2 Line"}],"type":"turn","modifier":"right","text":"Yodobashiminami / Kendou No.2 Line"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto National Road No.121 Line.","modifier":"left","bearing_after":61,"bearing_before":135,"location":[139.824412,36.498444]},"speedLimitSign":"vienna","name":"","weight_typical":65.466,"duration_typical":54.386,"duration":54.801000000000016,"distance":751.334,"driving_side":"left","weight":65.466,"mode":"driving","ref":"National Road No.121 Line","geometry":"w_urdAwpeuiGwKm[iLk[gSaf@eVml@sGoQyDaKkEuUeDwPcGq]sCwPw@}Mc@yw@?yFw@aKiAaK{AsIiLyf@aCaKw@yFQcF?oGzAaa@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4396.073},{"ssmlAnnouncement":"In a quarter mile, Turn right at Omochanomachi.","announcement":"In a quarter mile, Turn right at Omochanomachi.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right at Omochanomachi.","announcement":"Turn right at Omochanomachi.","distanceAlongGeometry":56}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary"},"location":[139.832161,36.500602],"geometry_index":50,"admin_index":0,"weight":22.38,"is_urban":false,"traffic_signal":true,"turn_duration":8.2,"turn_weight":15,"duration":15.4,"bearings":[10,25,94,194,276],"out":3,"in":4,"entry":[true,false,true,true,false]},{"entry":[false,true],"in":0,"bearings":[14,196],"duration":2.382,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":2.442,"geometry_index":51,"location":[139.831786,36.499417]},{"entry":[false,true],"in":0,"bearings":[16,196],"duration":11.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":11.012,"geometry_index":52,"location":[139.83165,36.499028]},{"entry":[false,true],"in":0,"bearings":[16,198],"duration":4.606,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":4.606,"geometry_index":53,"location":[139.831002,36.497232]},{"entry":[false,true],"in":0,"bearings":[18,197],"duration":1.324,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":1.324,"geometry_index":54,"location":[139.830696,36.496491]},{"entry":[false,true,true,true],"in":0,"bearings":[17,130,199,306],"duration":4.521,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":4.5,"geometry_index":55,"location":[139.830616,36.496278]},{"entry":[false,true],"in":0,"bearings":[19,198],"duration":7.352,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":7.352,"geometry_index":56,"location":[139.830321,36.495602]},{"entry":[false,true],"in":0,"bearings":[18,198],"duration":5.943,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":5.943,"geometry_index":57,"location":[139.829821,36.494362]},{"entry":[false,true,true,true],"in":0,"bearings":[18,137,199,306],"duration":7.385,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":7.366,"geometry_index":58,"location":[139.829469,36.493473]},{"entry":[false,true],"in":0,"bearings":[19,198],"duration":7.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":7.2,"geometry_index":59,"location":[139.828991,36.492343]},{"entry":[false,true],"in":0,"bearings":[18,198],"duration":12.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":12.857,"geometry_index":60,"location":[139.828798,36.491862]},{"entry":[false,true,true,true],"in":0,"bearings":[18,110,198,297],"duration":7.305,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":7.286,"geometry_index":61,"location":[139.828446,36.49101]},{"entry":[false,true,true],"in":0,"bearings":[18,118,198],"duration":1.789,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":1.77,"geometry_index":62,"location":[139.828151,36.490288]},{"entry":[false,true],"in":0,"bearings":[18,198],"duration":7.566,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":7.566,"geometry_index":63,"location":[139.828049,36.490038]},{"entry":[false,true,true,true],"in":0,"bearings":[18,134,196,310],"duration":10.173,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":10.165,"geometry_index":64,"location":[139.827628,36.488973]},{"entry":[false,true,true],"in":0,"bearings":[10,90,187],"duration":4.556,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":4.547,"geometry_index":67,"location":[139.827128,36.487297]},{"entry":[false,true,true],"in":0,"bearings":[7,185,239],"duration":9.04,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":9.032,"geometry_index":68,"location":[139.827026,36.486659]},{"entry":[false,true,true,true],"in":0,"bearings":[0,48,177,234],"duration":3.827,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":2,"weight":3.914,"geometry_index":72,"location":[139.826981,36.485372]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary"},"location":[139.827003,36.485057],"geometry_index":73,"admin_index":0,"weight":25.322,"is_urban":false,"traffic_signal":true,"turn_duration":2.01,"turn_weight":0.75,"duration":25.982,"bearings":[89,173,357],"out":1,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[139.827583,36.482465],"geometry_index":78,"admin_index":0,"weight":15.944,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.021,"duration":17.575,"bearings":[41,90,168,200,347],"out":2,"in":4,"entry":[true,true,true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[106,168,348],"duration":20.228,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":21.221,"geometry_index":79,"location":[139.828094,36.480447]},{"entry":[true,true,true,false],"in":3,"bearings":[89,168,273,348],"duration":6.83,"turn_weight":1,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":8.153,"geometry_index":80,"location":[139.828833,36.477632]},{"entry":[true,true,true,false],"in":3,"bearings":[99,169,282,348],"duration":7.048,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":0,"out":1,"weight":7.38,"geometry_index":81,"location":[139.829117,36.476549]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary"},"location":[139.829299,36.475827],"geometry_index":82,"admin_index":0,"weight":10.772,"is_urban":false,"traffic_signal":true,"turn_duration":2.028,"turn_weight":0.5,"duration":11.811,"bearings":[80,175,349],"out":1,"in":2,"entry":[true,true,false]},{"entry":[false,true],"in":0,"bearings":[5,192],"duration":9.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.516,"geometry_index":85,"location":[139.829288,36.474707]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"primary"},"location":[139.828947,36.473623],"geometry_index":87,"admin_index":0,"weight":13.757,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1,"duration":13.886,"bearings":[15,107,196,289],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true],"in":0,"bearings":[16,106,196],"duration":5.419,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.805,"geometry_index":88,"location":[139.828413,36.472087]},{"entry":[false,true,true],"in":0,"bearings":[16,106,196],"duration":7.859,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":8.428,"geometry_index":89,"location":[139.828163,36.471392]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"primary"},"location":[139.827867,36.470549],"geometry_index":90,"admin_index":0,"weight":1.704,"is_urban":true,"traffic_signal":true,"turn_duration":2.009,"turn_weight":0.5,"duration":3.129,"bearings":[16,192,284],"out":1,"in":0,"entry":[false,true,true]},{"entry":[false,true,true],"in":0,"bearings":[12,104,196],"duration":8.515,"turn_duration":2.022,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.98,"geometry_index":91,"location":[139.827834,36.470429]},{"entry":[false,true,true],"in":0,"bearings":[16,106,195],"duration":2.269,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.419,"geometry_index":92,"location":[139.827515,36.469559]},{"entry":[false,true,true],"in":0,"bearings":[15,195,286],"duration":2.526,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.258,"geometry_index":93,"location":[139.827413,36.469254]},{"entry":[false,true,true],"in":0,"bearings":[15,197,270],"duration":4.071,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.455,"geometry_index":94,"location":[139.827299,36.46892]},{"entry":[false,true,true],"in":0,"bearings":[17,107,196],"duration":6.629,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.284,"geometry_index":95,"location":[139.827095,36.468374]},{"entry":[false,true,true],"in":0,"bearings":[16,108,192],"duration":10.339,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":11.363,"geometry_index":96,"location":[139.826788,36.467485]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"primary"},"location":[139.826641,36.466902],"geometry_index":98,"admin_index":0,"weight":6.672,"is_urban":true,"traffic_signal":true,"turn_duration":2.008,"turn_weight":1.5,"duration":6.71,"bearings":[11,106,189,272],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true],"in":0,"bearings":[9,104,189],"duration":3.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.96,"geometry_index":99,"location":[139.826527,36.466337]},{"entry":[false,true,true],"in":0,"bearings":[9,189,272],"duration":3.685,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.032,"geometry_index":100,"location":[139.826436,36.465883]},{"entry":[false,true,true],"in":0,"bearings":[9,101,190],"duration":5.487,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.013,"geometry_index":101,"location":[139.826334,36.465383]},{"entry":[false,true,true],"in":0,"bearings":[10,189,270],"duration":0.943,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.03,"geometry_index":102,"location":[139.826175,36.464661]},{"entry":[false,true],"in":0,"bearings":[9,193],"duration":0.648,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.713,"geometry_index":103,"location":[139.826152,36.46455]},{"entry":[false,true,true],"in":0,"bearings":[13,104,189],"duration":23.209,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":25.52,"geometry_index":104,"location":[139.826129,36.464467]},{"bearings":[9,186,311],"entry":[false,true,true],"in":0,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":105,"location":[139.825709,36.462411]}],"junction_name":"Yodobashiminami","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Omochanomachi"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"71","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.71 Line"}],"type":"turn","modifier":"right","text":"Omochanomachi / Kendou No.71 Line"},"distanceAlongGeometry":4408.073},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Omochanomachi"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"71","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.71 Line"}],"type":"turn","modifier":"right","text":"Omochanomachi / Kendou No.71 Line"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right at Yodobashiminami.","modifier":"right","bearing_after":194,"bearing_before":96,"location":[139.832161,36.500602]},"speedLimitSign":"vienna","name":"","weight_typical":347.04,"duration_typical":335.245,"duration":337.8020000000001,"distance":4408.073,"driving_side":"left","weight":347.04,"mode":"driving","ref":"Kendou No.2 Line","geometry":"sfyrdAautuiG`iAlVhWnGfoBng@hm@bRhL~Cfi@lQnlAf^pv@~TreAz\\`]`Kft@~Tbl@lQrNjEpaAhYjj@rNdZxFda@xFzf@jE|Ll@pYj@j[?pJ?tRk@j[iChWgCpd@oGp`@oGde@uIb}B}^|nDem@tbAwPbl@kJlTcAvOWx^pBlTtDhm@rN~~Aj`@lj@rNts@nQnF`Aju@|R`RjEzSbFba@vKpv@dR~IxAlXjEhb@bFj[tDf^jEbl@|H|El@dDl@n_CfYrNbA"},{"voiceInstructions":[{"ssmlAnnouncement":"In 800 feet, Turn left to take the Mibu IC ramp.","announcement":"In 800 feet, Turn left to take the Mibu IC ramp.","distanceAlongGeometry":239.475},{"ssmlAnnouncement":"Turn left to take the Mibu IC ramp.","announcement":"Turn left to take the Mibu IC ramp.","distanceAlongGeometry":72}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary"},"location":[139.825675,36.462161],"geometry_index":106,"admin_index":0,"weight":22.895,"is_urban":true,"traffic_signal":true,"turn_duration":6.486,"turn_weight":10,"duration":18.209,"bearings":[6,89,184,269],"out":3,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true],"in":0,"bearings":[89,182,270],"duration":3.946,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.32,"geometry_index":107,"location":[139.824254,36.462134]},{"bearings":[0,90,187,273],"entry":[true,false,true,true],"in":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":108,"location":[139.823982,36.462134]}],"junction_name":"Omochanomachi","bannerInstructions":[{"sub":{"components":[{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Mibu IC"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E50","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E50"}],"type":"turn","modifier":"left","text":"Mibu IC / E50"},"distanceAlongGeometry":251.475}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right at Omochanomachi.","modifier":"right","bearing_after":269,"bearing_before":186,"location":[139.825675,36.462161]},"speedLimitSign":"vienna","name":"","weight_typical":45.215,"duration_typical":38.541,"duration":38.834999999999994,"distance":251.475,"driving_side":"left","weight":45.215,"mode":"driving","ref":"Kendou No.71 Line","geometry":"adnpdAu_huiGt@xwA?~O{ArdA"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Keep right toward Tokyo.","announcement":"In 900 feet, Keep right toward Tokyo.","distanceAlongGeometry":265.502},{"ssmlAnnouncement":"Keep right toward Tokyo, Fukushima.","announcement":"Keep right toward Tokyo, Fukushima.","distanceAlongGeometry":66.667}],"intersections":[{"mapbox_streets_v8":{"class":"primary_link"},"bearings":[93,172,199,275,353],"location":[139.822868,36.46218],"geometry_index":109,"admin_index":0,"weight":45.74,"is_urban":true,"traffic_signal":true,"classes":["toll"],"turn_duration":20.373,"turn_weight":20,"duration":43.773,"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"ic":{"name":"Mibu IC"},"out":1,"in":0,"entry":[false,true,false,true,true]},{"lanes":[{"payment_methods":["etc"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["etc"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true}],"bearings":[177,356],"entry":[true,false],"classes":["toll"],"in":1,"turn_weight":15,"toll_collection":{"name":"Mibu Tollgate","type":"toll_booth"},"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":114,"location":[139.822971,36.459847]}],"bannerInstructions":[{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/tollbranch/CR385101?arrow_ids=CR38510E","subType":"tollbranch","type":"guidance-view","text":""}],"type":"fork","modifier":"right","text":""},"primary":{"components":[{"type":"text","text":"Tokyo"},{"type":"text","text":"/"},{"type":"text","text":"Fukushima"}],"type":"fork","modifier":"right","text":"Tokyo / Fukushima"},"distanceAlongGeometry":278.836}],"destinations":"E50: 北関東自動車道","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left to take the Mibu IC ramp.","modifier":"left","bearing_after":172,"bearing_before":273,"location":[139.822868,36.46218]},"speedLimitSign":"vienna","name":"","weight_typical":63.248,"duration_typical":46.053,"duration":46.403,"distance":278.836,"driving_side":"left","weight":63.248,"mode":"driving","geometry":"genpdAgpbuiGpJcAb]j@`R?zWUd{@_DlIU"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":10166.86},{"ssmlAnnouncement":"In 1 mile, Keep left at Tochigitsuga JCT.","announcement":"In 1 mile, Keep left at Tochigitsuga JCT.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left at Tochigitsuga JCT.","announcement":"In a half mile, Keep left at Tochigitsuga JCT.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left at Tochigitsuga JCT toward KITA-KANTO, TOHOKU EXPWY.","announcement":"Keep left at Tochigitsuga JCT toward KITA-KANTO, TOHOKU EXPWY.","distanceAlongGeometry":188.889}],"intersections":[{"mapbox_streets_v8":{"class":"primary_link"},"location":[139.822982,36.45968],"geometry_index":115,"admin_index":0,"weight":15.43,"is_urban":true,"duration":14.036,"bearings":[170,176,357],"ic":{"name":"Mibu IC"},"out":1,"in":2,"turn_duration":0.008,"classes":["toll"],"entry":[true,true,false]},{"entry":[true,false],"classes":["tunnel","toll"],"in":1,"bearings":[178,357],"duration":2.25,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":2.419,"geometry_index":117,"location":[139.823152,36.457653]},{"entry":[true,false],"classes":["toll"],"in":1,"bearings":[180,358],"duration":18.736,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":20.142,"geometry_index":118,"location":[139.823164,36.457338]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[133,306],"duration":5.85,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":6.289,"geometry_index":132,"location":[139.821744,36.456986]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[97,263],"duration":12.15,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":13.061,"geometry_index":136,"location":[139.82095,36.457238]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.819153,36.45706],"geometry_index":141,"admin_index":0,"weight":18.402,"is_urban":true,"turn_weight":16,"duration":2.247,"bearings":[80,88,260],"out":2,"in":1,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,259],"duration":29.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":30.761,"geometry_index":142,"location":[139.818562,36.456977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,246],"duration":7.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.385,"geometry_index":147,"location":[139.810994,36.45519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":3.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.737,"geometry_index":148,"location":[139.809029,36.454486]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.808165,36.454144],"geometry_index":149,"admin_index":0,"weight":18.535,"is_urban":false,"duration":18.103,"bearings":[64,238,245],"rest_stop":{"amenities":[{"type":"electric_charging_station"},{"type":"toilet"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"}],"name":"壬生PA","type":"rest_area"},"out":2,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.803814,36.452366],"geometry_index":152,"admin_index":0,"weight":43.455,"is_urban":false,"turn_weight":1,"duration":42.474,"bearings":[63,70,243],"out":2,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,242],"duration":5.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.834,"geometry_index":156,"location":[139.793621,36.448162]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,243],"duration":91.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":91.718,"geometry_index":157,"location":[139.792235,36.44757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,260],"duration":20.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":21.218,"geometry_index":172,"location":[139.768646,36.441199]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":12.372,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.991,"geometry_index":176,"location":[139.763078,36.440412]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.759794,36.43993],"geometry_index":177,"admin_index":0,"weight":14.018,"is_urban":false,"duration":13.357,"bearings":[80,253,259],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Tsuga IC"},"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,258],"duration":2.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.559,"geometry_index":180,"location":[139.755886,36.439356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":2.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.782,"geometry_index":181,"location":[139.75517,36.439236]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.75442,36.439097],"geometry_index":182,"admin_index":0,"weight":3.362,"is_urban":true,"turn_weight":0.5,"duration":2.67,"bearings":[77,82,256],"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":17.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":18.987,"geometry_index":183,"location":[139.753647,36.438939]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,247],"duration":2.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.192,"geometry_index":189,"location":[139.748727,36.437467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,243],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.838,"geometry_index":191,"location":[139.747921,36.437161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":17.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":18.911,"geometry_index":193,"location":[139.746739,36.436652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,239],"duration":5.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.409,"geometry_index":199,"location":[139.742307,36.434328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240],"duration":54.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":58.09,"geometry_index":202,"location":[139.74083,36.433578]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,250],"duration":1.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.169,"geometry_index":213,"location":[139.725957,36.428328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":8.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.473,"geometry_index":214,"location":[139.72565,36.428236]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.688,"geometry_index":219,"location":[139.723252,36.427384]},{"bearings":[53,224],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":222,"location":[139.722877,36.427171]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"KITA-KANTO"},{"type":"text","text":"/"},{"type":"text","text":"TOHOKU EXPWY"}],"type":"fork","modifier":"left","text":"KITA-KANTO / TOHOKU EXPWY"},"primary":{"components":[{"type":"text","text":"Tochigitsuga JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E4"}],"type":"fork","modifier":"left","text":"Tochigitsuga JCT / E4"},"distanceAlongGeometry":10180.193},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/jct/CA111301?arrow_ids=CA11130A","subType":"jct","type":"guidance-view","text":""}],"type":"fork","modifier":"left","text":""},"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"KITA-KANTO"},{"type":"text","text":"/"},{"type":"text","text":"TOHOKU EXPWY"}],"type":"fork","modifier":"left","text":"KITA-KANTO / TOHOKU EXPWY"},"primary":{"components":[{"type":"text","text":"Tochigitsuga JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E4"}],"type":"fork","modifier":"left","text":"Tochigitsuga JCT / E4"},"distanceAlongGeometry":1609.344}],"destinations":"Tokyo, Fukushima, TOHOKU EXPWY","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right toward Tokyo/Fukushima/TOHOKU EXPWY.","modifier":"slight right","bearing_after":176,"bearing_before":177,"location":[139.822982,36.45968]},"speedLimitSign":"vienna","name":"Kitakanto Expwy","weight_typical":479.821,"duration_typical":443.055,"guidance_views":[{"overlay_ids":["CR38510E"],"base_id":"CR385101","type":"tollbranch","data_id":"737596800"}],"duration":430.86300000000006,"distance":10180.193,"driving_side":"left","weight":463.284,"mode":"driving","geometry":"_iipdAkwbuiGrs@_D`iAsDtRWjP?fH?bGzAnFnBjElErCxFhA`FPfHc@fHoBnGeDxFgHfHuGxFkEdHoFxKyD`P{AdMLpDTrGv@nL`C`f@`Cj`@PvPdD|c@~IlgA|[zoCzL|y@hb@t|BpU`fA~j@xyBjT~t@~ElQfnAz`EzWrz@`o@dtBrd@rzAxoBjpGf_AzyC~c@ruAbh@lbB~n@f{Bbh@tfBzWh`A~X`fA`Ntk@pJba@|Pnx@pQj{@zWrzA`Y|jBlXvrBzWfeCnXd`DdZbjEhA`PrCrd@|f@`vGhAfMb]flEhLvwAtR|eCzApSnFvk@tGzm@zHho@v@fHjIzh@p\\jgBjTlgA|Plq@~Ib\\rCnLnMzc@hErNnXfy@vDxKvVpn@lc@~eAng@dhAhb@h`AnBbFtGvPnQj`@tRdh@lMn]zSpn@|[xaAzWz~@hWj`A~Th{@fSheA`h@taCzx@pkDjj@bcCb]lxAvDdRxOtu@fS|y@nBnGdDxKnF|MxDhJzA~CrCbFrCjErC|CxDtDjInGzHvDrDdB`Bv@`GfCvKtD"},{"mode":"driving","weight":548.26,"distance":13288.595,"guidance_views":[{"overlay_ids":["CA11130A"],"base_id":"CA111301","type":"jct","data_id":"737596800"}],"driving_side":"left","duration_typical":560.986,"weight_typical":573.125,"name":"Tohoku Expwy","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left at Tochigitsuga JCT toward KITA-KANTO/TOHOKU EXPWY/Takasaki/Tokyo.","modifier":"slight left","bearing_after":195,"bearing_before":200,"location":[139.722139,36.426134]},"speedLimitUnit":"km/h","destinations":"E4: KITA-KANTO, TOHOKU EXPWY, Takasaki, Tokyo","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"KITA-KANTO"},{"type":"text","text":"/"},{"type":"text","text":"Takasaki"}],"type":"fork","modifier":"left","text":"KITA-KANTO / Takasaki"},"primary":{"components":[{"type":"text","text":"Iwafune JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E50","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E50"}],"type":"fork","modifier":"left","text":"Iwafune JCT / E50"},"distanceAlongGeometry":13288.595},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/jct/CA178201?arrow_ids=CA17820A","subType":"jct","type":"guidance-view","text":""}],"type":"fork","modifier":"left","text":""},"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"KITA-KANTO"},{"type":"text","text":"/"},{"type":"text","text":"Takasaki"}],"type":"fork","modifier":"left","text":"KITA-KANTO / Takasaki"},"primary":{"components":[{"type":"text","text":"Iwafune JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E50","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E50"}],"type":"fork","modifier":"left","text":"Iwafune JCT / E50"},"distanceAlongGeometry":1609.344}],"geometry":"kxgndAux}niGvVxF|[dHtGhCpJ|CxHjEvKpGjInGfHpGlIrI|ExFdOnLvKfHlI`F`GpBbGpBzLpB|Pj@pF?hEUde@uDde@gCf^{Ava@l@`RUf`BbA~n@fCtbAxKbw@zMly@hTbh@rNde@vPxuApn@tbAri@tw@lg@|vAnbAfSvPd@l@ba@|^fSbRn\\~Y`d@`f@bxAlgBbl@rz@xD`FpJrNfW|c@xp@hjAjIvPfDnGrCxFx^tu@`Yps@|[jv@ta@nnAjj@nnBp\\ftApU~eAnQfy@f^jbBbVrdAnXlbA`Rho@dD`K`Yft@xSnl@dZfo@`Ydm@d{@lxAlc@vk@dhChgD`a@~o@vVng@bRlg@|E|MxStu@zLdcAzHjgAtGx~CvDbmArJvaApUzhArRtk@zSfc@zWdc@xS~YvV~Y`RlQ~u@ri@nwA|~@j[~TbVhTdZfYpk@jv@pk@rdAju@h{AxOfY|_@vk@fZb\\~ThTzWzRz[zRf^lQxe@vPrs@dRvV|HrR|HxO|HzW`Pf^dWrYfYrYn]lMdRlTt_@bKhT~I~T|Phj@vO~o@jEl[~Ift@|Efo@xD~o@jEhjArC`w@v@tu@Ptz@P`|@iA|y@iAbw@mB`f@yDh{@mItuAeOdeCkIj{AaC|y@}Afo@u@f^?~T?`f@hAdr@rClg@dDnb@bG`f@~Iri@dObr@hLxa@hLx\\|Prd@vVri@h[dh@zWt_@de@zh@rd@xa@t]lVx^fTro@zWhq@|Rhm@lL`s@|Hhf@bAhm@VjgAqBn\\cAldA_Djj@?`h@l@xp@jE`xAdRvl@rN|vA`a@rCl@","duration":543.7200000000004,"junction_name":"Tochigitsuga JCT","voiceInstructions":[{"ssmlAnnouncement":"Continue for 8 miles.","announcement":"Continue for 8 miles.","distanceAlongGeometry":13271.928},{"ssmlAnnouncement":"In 1 mile, Keep left at Iwafune JCT.","announcement":"In 1 mile, Keep left at Iwafune JCT.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left at Iwafune JCT.","announcement":"In a half mile, Keep left at Iwafune JCT.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left at Iwafune JCT toward KITA-KANTO, Takasaki.","announcement":"Keep left at Iwafune JCT toward KITA-KANTO, Takasaki.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway_link"},"location":[139.722139,36.426134],"geometry_index":231,"admin_index":0,"weight":19.923,"is_urban":false,"duration":18.983,"bearings":[20,195,206],"jct":{"name":"Tochigitsuga JCT"},"out":1,"in":0,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,174],"duration":8.64,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":9.072,"geometry_index":249,"location":[139.720242,36.422495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[182,356],"duration":2.626,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":2.757,"geometry_index":253,"location":[139.720458,36.420672]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.720435,36.420116],"geometry_index":254,"admin_index":0,"weight":12.46,"is_urban":false,"turn_weight":11,"duration":1.4,"bearings":[2,178,356],"out":1,"in":0,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,358],"duration":55.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":57.774,"geometry_index":255,"location":[139.720446,36.419811]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,215],"duration":1.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.067,"geometry_index":266,"location":[139.715856,36.408516]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,217],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.342,"geometry_index":268,"location":[139.715549,36.408173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":1.841,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.979,"geometry_index":269,"location":[139.715038,36.407627]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,216],"duration":19.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":21.417,"geometry_index":270,"location":[139.714732,36.407303]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,224],"duration":0.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.63,"geometry_index":274,"location":[139.71105,36.40409]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.710937,36.403997],"geometry_index":275,"admin_index":0,"weight":1.335,"is_urban":true,"duration":1.236,"bearings":[44,218,227],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"ic":{"name":"Tochigi IC"},"out":2,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,231],"duration":9.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":10.436,"geometry_index":276,"location":[139.710687,36.403812]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":1.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.261,"geometry_index":279,"location":[139.708607,36.402461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234],"duration":7.483,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.044,"geometry_index":281,"location":[139.708346,36.402303]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.70663,36.401377],"geometry_index":283,"admin_index":0,"weight":50.574,"is_urban":false,"turn_weight":0.5,"duration":47.697,"bearings":[58,65,237],"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,241],"duration":7.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.629,"geometry_index":293,"location":[139.6947,36.396952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,235],"duration":244.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":238.089,"geometry_index":296,"location":[139.692927,36.396119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,270],"duration":1.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.197,"geometry_index":367,"location":[139.638809,36.372408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":21.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.165,"geometry_index":368,"location":[139.638457,36.372408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,239],"duration":2.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.357,"geometry_index":377,"location":[139.632639,36.371223]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,235],"duration":47.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":43.664,"geometry_index":378,"location":[139.632037,36.370936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":2.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.037,"geometry_index":392,"location":[139.627151,36.361807]},{"bearings":[177,357],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":393,"location":[139.627185,36.361335]}]},{"mode":"driving","weight":2421.314,"distance":54521.297,"guidance_views":[{"overlay_ids":["CA17820A"],"base_id":"CA178201","type":"jct","data_id":"737596800"}],"driving_side":"left","duration_typical":2302.929,"weight_typical":2473.603,"name":"Kitakanto Expwy","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left at Iwafune JCT toward KITA-KANTO/Takasaki/KAN-ETSU EXPWY.","modifier":"slight left","bearing_after":193,"bearing_before":196,"location":[139.626015,36.354438]},"speedLimitUnit":"km/h","destinations":"E50: KITA-KANTO, Takasaki, KAN-ETSU EXPWY","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"JOSHIN-ETSU EXPWY"},{"type":"text","text":"/"},{"type":"text","text":"KAN-ETSU EXPWY"}],"type":"fork","modifier":"left","text":"JOSHIN-ETSU EXPWY / KAN-ETSU EXPWY"},"primary":{"components":[{"type":"text","text":"Takasaki JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E17","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E17"}],"type":"fork","modifier":"left","text":"Takasaki JCT / E17"},"distanceAlongGeometry":54521.297},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/jct/CA112201?arrow_ids=CA11220A","subType":"jct","type":"guidance-view","text":""}],"type":"fork","modifier":"left","text":""},"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"JOSHIN-ETSU EXPWY"},{"type":"text","text":"/"},{"type":"text","text":"KAN-ETSU EXPWY"}],"type":"fork","modifier":"left","text":"JOSHIN-ETSU EXPWY / KAN-ETSU EXPWY"},"primary":{"components":[{"type":"text","text":"Takasaki JCT"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-expressway","display_ref":"E17","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E17"}],"type":"fork","modifier":"left","text":"Takasaki JCT / E17"},"distanceAlongGeometry":1609.344}],"geometry":"kw{idA}`biiGxHxA|WxFf^bKpYrIzHfCvOfCfSfC`Y~CxSl@rd@j@zb@l@dOxA`N~ClMfHhAbArJrIjI|MjEnLdD`PrCjVRxF?fCPrNQfMe@rNw@rNmB`f@sBld@yEvdAgHheB{LfvCoFtkAyStcFoQ|gEgO`hDwOpkDmXlfGqUflFgS`oEgDtp@wDrz@{At_@}AzWaG`aAcGlgAaGtkAyDtu@QtDiApXiAj`@oBj`@aCvf@kEpx@c@rDsCl[eDva@mItu@mIdm@}EvUsChOmIt_@yHl[kT|t@qJj[eKrXwKfYcKbWeDpGwKlVeKzR_NpXkP~YyDxFqJ`PwDnGq`@zh@g^nb@m_@j`@ynA~jAao@lq@sNrNuVfYwVvZ}ExFwVr_@s]vk@qU|c@{Sje@eS`f@yOrd@}Pri@aNlg@iLng@qJdh@wDlVcGt_@w@|HwDb\\gHru@qJfoA}LxhB_JhjAkItz@}Eh`@aCdRmMfy@kPj{@aNll@cKj`@gOhj@}Phj@qUho@cVvk@mBbFsNx\\_Uhe@g^lq@sYdh@ee@xw@ib@ft@k_@ps@_U|c@sNj[{LvZoQlg@aNxa@iLdc@{Ltd@aNlq@sNz~@iLrdAyHpiAeDfjAw@f~@b@dc@RhOzA`p@hAh`@~I`aBlTjsD`Rz`DlM~{BbG|oAjElgAxHv|AhHbhAfLtpAtGhj@hLr_A|PhjAxOzcApUjqAfSheAxZvwAr]dyA~_@ruArN`f@p`@bmAtl@h`BpaAhbCva@t_Ave@lgA|[xr@|_@r_AtYlq@h[n}@bRns@`N`p@|Ipi@~Ips@pFxr@lB|c@hAj`@d@xf@Stp@gAbm@oBxa@eDdh@e@~CwD|^sCzWsCzWcGj[mIj`@sRjv@{HlV}IpXeKzWiL~YsNp]cGzMgHjOeZpn@ah@piAuR|c@aRhe@}L|^_Nfc@oM`f@iPnx@iApGcGx\\iLd~@oFdh@iAdMuCfh@_Cri@{Ap_Aw@foBv@djBdD~eBrC|~@`Czm@hAfYnBpX|InxApQhqBdOjvAfSh{AxOh`A`Nft@nQft@nQho@f^dhAp`@taAn\\ps@hb@xw@jq@zmAzWzc@f^~o@n\\vp@j_@v|@zWbw@dKd^~Ib\\jPht@|EfY~BvPjEtZpF~^dDn]tGnx@fHtpAbGvaAbK`wArCpXjEnb@|Ef^~Ivf@tG~YfHtZ`N|c@nQlg@lMp]xOx\\fSj`@xOzWnQxW`RlVbR`UjPlQhPvPvVvUb@TlTlQb@V|WdR~n@nb@|gAxr@`s@|c@fnAtu@fyAp_A|gArs@xD|Ctw@~j@`o@dh@pJtIjj@vf@de@je@ba@nb@de@vf@ft@|y@vbA~eAbmApsAbVfYbRbWrRhYnMvUrNx\\vOdc@xHb\\jAtDbKvf@PzAxDlVtGvk@jExr@nFd~@xDzr@b@|CtGvk@|Ef^jE~TbGvZ`Rru@bR|h@xSvf@~Tfc@zW|c@x^pi@`Yba@ng@ft@dZfc@rN~TpUva@pQ~^nQdc@dOfc@xSps@bGpXbGfYjI`f@fH`f@pFng@vDdh@nBpXv@zWt@`a@Rn}@e@x\\mBlq@oBtZiAvPoBbWoFfc@aCvPaC~ToFl[qJdc@eKxa@wOvk@wKj[eOba@gH~OmMtZqFpLaNtZ{LpXwOx\\mTvf@iP~^oMnXsRpb@eVpi@qUng@{AjEoMhYgLpXaNf^iLb\\_Jj[{HtZkIl`@uG`a@uGdh@eDx\\}ArS{AfYe@rNc@|MQhe@?dh@P~Hb@bRRlEb@`Kd@lQjEbw@xDxr@lBba@|Ab\\dD`w@lBng@hAd~@R|^?~Cw@hj@iAng@kEpn@QpGkElg@gH`k@kEj[eKng@kIj`@gDnL_Nvf@yO`f@qUnl@oQ`a@qJzR{LlVcGxKwKpS_Uba@ei@zcAc]tp@ySje@{LfYc]|~@i[dcAaYlgAuRn}@sNxw@qJxr@oMvkAqNhvAsNxrAcGvk@gStpAoQr_A}Ptu@}Plq@yOfo@yHl[cRxw@wDlQgOzr@eD~OgHxa@wKlv@cGzc@QpBsClV{AfMqJtkA}Ez~@oBft@w@~o@?~eAPjORvPhAdm@jE|tAvD|jAtG~eBvK`~ChL~lDb@xKvKz`DxHxmBrCr_AlEtkAvDxmAzLliDrCtpA|ApdB?p_B{Ad~Aw@t_@iAlg@sC`|@aCzr@w@`Ku@hO}A~Y}E|y@}Ebr@cKbmAkEdh@oBlV_J`fAgHlbAiAhOc@tI}Ell@sCvk@}Alg@iA~t@@ri@?pX?`f@t@zhA`Cpn@zAxa@v@zRd@vKv@nLzA~YbK|oAzHht@pJ|t@rNd~@`]piBvVzhAvO|t@tRdcAhLjv@zHhj@nFll@xDvk@hArNPlEzAfYhAvf@v@dm@Qb\\Qx\\e@tZiAzm@eDdm@yDhj@yHxw@kEx\\yHfc@{H|^}ElVcGzWeDhOaCvK{Ltd@}EhOcGlQyS`p@sh@b~AyOxf@qd@nsAuRvk@_`@`rAmTjv@y^tuAw@rDi[lqAcVbhAiSr_AuVbrAyS|jAeVbrA{WdyAym@pkDiSbhAoQpdAeD|ReDpSyZfjBqJbr@yHho@ib@z`DgHdm@_J~`AyHx|@yH~eAmT|vD?xA}EllAaCzm@mB~o@gD`mAQdWmB~{Ae@zWQl[QlsBv@vwAhAbcBxHrkCvG|tA~B`f@RrDtR|eCh[puCtCpS|Eb\\~MlbAfSzhAvVjvA~_@n_ClT`rAfHvk@tGdm@|E~j@jExa@pJtpAdD~o@`GnxAhAzm@hAdy@rCxcCd@jj@?bAjIphGhAv|A`C|qDnFhgEPj[b@hYrCvcDv@|y@xDd{D~BdtA`CpnA|EfjAnBhYdD`a@|Eng@hLrz@nFtZhAbFvKdh@vK|c@zL|c@|EvP`]r_A|A`FlM~YtGhOlI`PxSj`@vZzh@zStZvZxa@fDlExHhJ|f@ri@lc@xa@vp@hj@da@fY~y@ri@dO`K~_@fYnQjOhb@r_@xS~TlTvUn\\he@~IfMl_@ll@rh@~eAf^h`AjPnl@rYfjA~Mrn@lIll@~Itu@~I|y@vDhj@RtDt@vPd@rIrCbr@nF~}EjElsC|Al[rGnsAnBnb@zAf^~IjlBfSlnCpv@teHzS`mB`Gft@pF~t@zApSfDxa@PfCzAlVzAfY|Al[lBfYv@nLhApX`C`a@zAri@zAtZd@dMnBpiA~Bdy@|ApiAnBrdA|IblGtCb~AhEbw@fDdh@|Edh@|E|c@jIpi@dKhj@jErSxSnx@bVbr@rYdr@xDrIv@xArCfHh[~j@tR~Y`Yf^hPdRv@l@hLvKlj@vf@hf@f^dKxFlX`PpU`Kjf@`P`NjEvZfHnQfCjf@fHdZ|CdZpB","duration":2266.674999999999,"junction_name":"Iwafune JCT","voiceInstructions":[{"ssmlAnnouncement":"Continue for 34 miles.","announcement":"Continue for 34 miles.","distanceAlongGeometry":54504.629},{"ssmlAnnouncement":"In 1 mile, Keep left at Takasaki JCT.","announcement":"In 1 mile, Keep left at Takasaki JCT.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left at Takasaki JCT.","announcement":"In a half mile, Keep left at Takasaki JCT.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left at Takasaki JCT toward JOSHIN-ETSU EXPWY, KAN-ETSU EXPWY.","announcement":"Keep left at Takasaki JCT toward JOSHIN-ETSU EXPWY, KAN-ETSU EXPWY.","distanceAlongGeometry":207.778}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway_link"},"location":[139.626015,36.354438],"geometry_index":401,"admin_index":0,"weight":8.17,"is_urban":false,"duration":8.608,"bearings":[16,193,199],"jct":{"name":"Iwafune JCT"},"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":19.35,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":18.382,"geometry_index":405,"location":[139.625481,36.352957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,216],"duration":7.7,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":7.315,"geometry_index":415,"location":[139.624856,36.34955]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,268],"duration":7.55,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":7.172,"geometry_index":422,"location":[139.623425,36.348892]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,277],"duration":2.7,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":2.565,"geometry_index":428,"location":[139.621754,36.348994]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":12.4,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":11.78,"geometry_index":429,"location":[139.621155,36.349052]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.618402,36.349309],"geometry_index":431,"admin_index":0,"weight":23.642,"is_urban":false,"turn_weight":11,"duration":13.326,"bearings":[96,100,276],"out":2,"in":0,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[false,false,true]},{"tunnel_name":"Karasawayamajoseki Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[97,276],"duration":84.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":82.466,"geometry_index":433,"location":[139.614755,36.349651]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":3.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.812,"geometry_index":440,"location":[139.591075,36.3519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":5.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.38,"geometry_index":441,"location":[139.59028,36.351984]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,278],"duration":17.272,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.704,"geometry_index":443,"location":[139.588803,36.352122]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.911,"geometry_index":448,"location":[139.584087,36.35265]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,275],"duration":9.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.406,"geometry_index":450,"location":[139.583587,36.352696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":1.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.804,"geometry_index":455,"location":[139.580872,36.352974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":8.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.494,"geometry_index":456,"location":[139.580417,36.353048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,291],"duration":1.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.522,"geometry_index":459,"location":[139.578247,36.353465]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,289],"duration":4.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":5.218,"geometry_index":460,"location":[139.577883,36.353576]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,296],"duration":10.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":11.262,"geometry_index":463,"location":[139.576644,36.353974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,306],"duration":3.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4,"geometry_index":468,"location":[139.574111,36.355094]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,306],"duration":4.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.783,"geometry_index":471,"location":[139.573281,36.355576]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,310],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.407,"geometry_index":474,"location":[139.572315,36.356187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[130,312],"duration":4.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.392,"geometry_index":475,"location":[139.572042,36.356372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.571236,36.357001],"geometry_index":477,"admin_index":0,"weight":18.233,"is_urban":true,"duration":16.597,"bearings":[135,311,318],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Sanotanuma IC"},"out":2,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.568111,36.360066],"geometry_index":481,"admin_index":0,"weight":4.335,"is_urban":true,"turn_weight":0.5,"duration":3.507,"bearings":[140,151,321],"out":2,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[138,317],"duration":2.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.443,"geometry_index":483,"location":[139.567441,36.360695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,316],"duration":27.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":29.29,"geometry_index":484,"location":[139.566997,36.361075]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,287],"duration":2.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.635,"geometry_index":496,"location":[139.560191,36.364361]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":19.302,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.267,"geometry_index":498,"location":[139.559509,36.364519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,282],"duration":5.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.378,"geometry_index":503,"location":[139.553987,36.365343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,285],"duration":7.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.165,"geometry_index":505,"location":[139.552499,36.36562]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.550294,36.366194],"geometry_index":508,"admin_index":0,"weight":16.645,"is_urban":false,"duration":16.664,"bearings":[110,286,292],"rest_stop":{"amenities":[{"type":"toilet"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"}],"name":"出流原PA","type":"rest_area"},"out":2,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,303],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.953,"geometry_index":515,"location":[139.546044,36.367962]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,305],"duration":2.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.566,"geometry_index":516,"location":[139.545567,36.368212]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.544954,36.368564],"geometry_index":517,"admin_index":0,"weight":20.902,"is_urban":false,"turn_weight":1,"duration":20.435,"bearings":[125,132,308],"out":2,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"tunnel_name":"Izuruhara Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[126,304],"duration":10.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.234,"geometry_index":523,"location":[139.540295,36.371536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":26.579,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.25,"geometry_index":528,"location":[139.537614,36.372758]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":3.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.366,"geometry_index":536,"location":[139.53008,36.373934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,265],"duration":55.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":49.979,"geometry_index":538,"location":[139.529034,36.373878]},{"tunnel_name":"Shiosakatoge Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[79,256],"duration":37.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":34.137,"geometry_index":548,"location":[139.513025,36.372036]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,244],"duration":22.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.776,"geometry_index":557,"location":[139.502299,36.36898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,236],"duration":36.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.329,"geometry_index":561,"location":[139.496766,36.366397]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.487755,36.362453],"geometry_index":571,"admin_index":0,"weight":21.228,"is_urban":false,"duration":20.737,"bearings":[75,253,260],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Ashikaga IC"},"out":2,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,283],"duration":3.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.692,"geometry_index":580,"location":[139.482335,36.362425]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,283],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.626,"geometry_index":582,"location":[139.481426,36.362591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.481028,36.362665],"geometry_index":583,"admin_index":0,"weight":10.376,"is_urban":false,"turn_weight":0.75,"duration":9.198,"bearings":[103,111,290],"out":2,"in":0,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":8.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.054,"geometry_index":587,"location":[139.478779,36.363434]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,305],"duration":26.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.589,"geometry_index":592,"location":[139.476813,36.364397]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":8.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.539,"geometry_index":602,"location":[139.47062,36.367266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,281],"duration":0.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.912,"geometry_index":605,"location":[139.468473,36.367729]},{"tunnel_name":"Kitago Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[101,278],"duration":27.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.384,"geometry_index":606,"location":[139.468246,36.367766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,265],"duration":6.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.766,"geometry_index":612,"location":[139.460712,36.367868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":3.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.134,"geometry_index":614,"location":[139.458939,36.367729]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,261],"duration":23.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.389,"geometry_index":616,"location":[139.45811,36.367636]},{"tunnel_name":"Oiwa Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[75,252],"duration":36.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":34.048,"geometry_index":620,"location":[139.451974,36.366581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,230],"duration":19.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.641,"geometry_index":629,"location":[139.443202,36.362599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,244],"duration":2.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.959,"geometry_index":634,"location":[139.439146,36.360313]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,245],"duration":7.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.582,"geometry_index":635,"location":[139.438647,36.360118]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,254],"duration":2.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.664,"geometry_index":638,"location":[139.436908,36.359553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":2.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.88,"geometry_index":640,"location":[139.436181,36.359387]},{"tunnel_name":"Yobe Tunnel","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[74,258],"duration":19.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.491,"geometry_index":641,"location":[139.435669,36.359266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,257],"duration":37.948,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37,"geometry_index":646,"location":[139.430477,36.358572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,215],"duration":2.075,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.075,"geometry_index":665,"location":[139.422274,36.354332]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":38.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":39.852,"geometry_index":667,"location":[139.421967,36.353971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,212],"duration":5.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":5.482,"geometry_index":675,"location":[139.416843,36.346832]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,215],"duration":5.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":5.989,"geometry_index":676,"location":[139.416139,36.345925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,216],"duration":39.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":44.646,"geometry_index":678,"location":[139.415309,36.344971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":10.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":12.272,"geometry_index":687,"location":[139.408617,36.338647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":3.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.647,"geometry_index":692,"location":[139.40631,36.337426]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":11.351,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":13.053,"geometry_index":695,"location":[139.405537,36.337185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":3.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":4.091,"geometry_index":699,"location":[139.402606,36.336731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,256],"duration":2.829,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.253,"geometry_index":701,"location":[139.401697,36.33662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":34.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":38.861,"geometry_index":702,"location":[139.400981,36.336481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,229],"duration":7.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":7.954,"geometry_index":714,"location":[139.393674,36.332435]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.392254,36.331527],"geometry_index":717,"admin_index":1,"weight":28.021,"is_urban":true,"duration":25.5,"bearings":[54,232,238],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Otakiryu IC"},"out":2,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.386459,36.329796],"geometry_index":727,"admin_index":1,"weight":17.533,"is_urban":true,"turn_weight":0.75,"duration":15.283,"bearings":[80,87,265],"out":2,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":5,"geometry_index":734,"location":[139.382505,36.329898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,283],"duration":40.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":42.047,"geometry_index":737,"location":[139.381255,36.330139]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,304],"duration":20.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.916,"geometry_index":757,"location":[139.371779,36.33461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,278],"duration":2.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.591,"geometry_index":768,"location":[139.36654,36.336416]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,275],"duration":6.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.371,"geometry_index":770,"location":[139.36587,36.336481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,266],"duration":1.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.203,"geometry_index":774,"location":[139.364199,36.336499]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,263],"duration":0.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.386,"geometry_index":775,"location":[139.363893,36.336481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":22.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.124,"geometry_index":776,"location":[139.36379,36.336471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,272],"duration":8.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.462,"geometry_index":786,"location":[139.357496,36.335952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":7.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.603,"geometry_index":790,"location":[139.355314,36.336119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,290],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.734,"geometry_index":794,"location":[139.353371,36.33648]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.351973,36.336925],"geometry_index":797,"admin_index":1,"weight":31.872,"is_urban":false,"duration":30.374,"bearings":[115,287,295],"rest_stop":{"amenities":[{"brand":"エネオス","type":"gas_station"},{"type":"toilet"},{"type":"snack"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"},{"type":"shop"}],"guidemap":"https://api.mapbox.com/guidance-views/v1/737596800/sapaguidemap/SA166201","name":"太田強戸PA","type":"rest_area"},"out":2,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.345155,36.340674],"geometry_index":809,"admin_index":1,"weight":68.439,"is_urban":false,"turn_weight":1,"duration":64.235,"bearings":[124,131,303],"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.87,"geometry_index":826,"location":[139.328792,36.345479]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,291],"duration":5.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":5.961,"geometry_index":827,"location":[139.327883,36.345785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,288],"duration":7.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":8.356,"geometry_index":830,"location":[139.326486,36.34622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,283],"duration":1.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.779,"geometry_index":833,"location":[139.324452,36.346702]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":20.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":21.655,"geometry_index":835,"location":[139.32402,36.346785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.099,"geometry_index":842,"location":[139.318509,36.347202]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,266],"duration":68.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":75.422,"geometry_index":843,"location":[139.318225,36.347192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264],"duration":36.786,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":41.385,"geometry_index":855,"location":[139.299829,36.345757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,275],"duration":7.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":8.284,"geometry_index":862,"location":[139.289932,36.345525]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,277],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.104,"geometry_index":865,"location":[139.287932,36.345692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,278],"duration":15.259,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":17.167,"geometry_index":866,"location":[139.287671,36.345719]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":1.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.583,"geometry_index":871,"location":[139.283569,36.346284]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":8.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":9.192,"geometry_index":872,"location":[139.283194,36.34634]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.104,"geometry_index":874,"location":[139.280978,36.346664]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,277],"duration":0.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":0.69,"geometry_index":875,"location":[139.280717,36.346701]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.280546,36.346719],"geometry_index":876,"admin_index":1,"weight":14.598,"is_urban":true,"duration":13.002,"bearings":[97,275,281],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Otayabuzuka IC"},"out":2,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":1.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.647,"geometry_index":881,"location":[139.27691,36.346987]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.492,"geometry_index":882,"location":[139.276501,36.346987]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[139.275876,36.346987],"geometry_index":883,"admin_index":1,"weight":11.43,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.168,"bearings":[90,268],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,263],"duration":0.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":0.819,"geometry_index":887,"location":[139.273058,36.346821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,261],"duration":47.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":53.333,"geometry_index":888,"location":[139.272854,36.346802]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,260],"duration":1.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.456,"geometry_index":902,"location":[139.260321,36.343913]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":31.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":35.904,"geometry_index":904,"location":[139.259968,36.343867]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.176,"geometry_index":919,"location":[139.251355,36.344821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":4.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":4.987,"geometry_index":920,"location":[139.251094,36.344904]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":13.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":15.304,"geometry_index":923,"location":[139.250026,36.345302]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":23.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":26.887,"geometry_index":927,"location":[139.246787,36.3467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":54.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":62.937,"geometry_index":933,"location":[139.241027,36.349024]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,287],"duration":1.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.49,"geometry_index":944,"location":[139.226823,36.353106]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,288],"duration":12.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":14.537,"geometry_index":945,"location":[139.226494,36.353189]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.223187,36.353976],"geometry_index":948,"admin_index":1,"weight":28.504,"is_urban":true,"duration":24.804,"bearings":[104,280,285],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Isesaki IC"},"out":2,"in":0,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.216677,36.355179],"geometry_index":953,"admin_index":1,"weight":13.796,"is_urban":true,"turn_weight":0.75,"duration":11.353,"bearings":[100,107,278],"out":2,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":22.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":25.863,"geometry_index":955,"location":[139.213689,36.355522]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,273],"duration":1.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.713,"geometry_index":961,"location":[139.207792,36.355901]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,271],"duration":33.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":38.354,"geometry_index":962,"location":[139.207394,36.35592]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":2.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.129,"geometry_index":968,"location":[139.198429,36.355576]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,260],"duration":20.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":23.733,"geometry_index":970,"location":[139.197714,36.355502]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.192351,36.354548],"geometry_index":974,"admin_index":1,"weight":25.899,"is_urban":true,"duration":22.539,"bearings":[74,251,255],"rest_stop":{"amenities":[{"type":"electric_charging_station"},{"type":"toilet"},{"type":"coffee"},{"type":"ATM"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"},{"type":"shop"},{"type":"telephone"}],"guidemap":"https://api.mapbox.com/guidance-views/v1/737596800/sapaguidemap/SA119401","name":"波志江PA","type":"rest_area"},"out":2,"in":0,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.186636,36.353076],"geometry_index":978,"admin_index":1,"weight":51.459,"is_urban":true,"turn_weight":1,"duration":43.895,"bearings":[72,77,252],"out":2,"in":0,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":2.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.093,"geometry_index":989,"location":[139.175262,36.351688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":44.372,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":51.028,"geometry_index":991,"location":[139.174534,36.351669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,269],"duration":1.737,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.997,"geometry_index":995,"location":[139.162717,36.351281]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,267],"duration":11.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":13.345,"geometry_index":996,"location":[139.162263,36.351272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":3.558,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":4.092,"geometry_index":998,"location":[139.159206,36.35118]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":35.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":41.015,"geometry_index":999,"location":[139.158263,36.351152]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,251],"duration":1.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.09,"geometry_index":1007,"location":[139.148844,36.350356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,249],"duration":8.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":9.455,"geometry_index":1008,"location":[139.148401,36.350236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.146446,36.349569],"geometry_index":1012,"admin_index":1,"weight":6.718,"is_urban":true,"duration":5.725,"bearings":[65,237,244],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Komagata IC"},"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,239],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":12.69,"geometry_index":1014,"location":[139.145128,36.348977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,227],"duration":5.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":6.609,"geometry_index":1020,"location":[139.142845,36.347616]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,224],"duration":5.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":6.519,"geometry_index":1022,"location":[139.141845,36.346838]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.140879,36.345958],"geometry_index":1025,"admin_index":1,"weight":39.366,"is_urban":true,"turn_weight":0.5,"duration":33.086,"bearings":[41,46,218],"out":2,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":38.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":45.385,"geometry_index":1036,"location":[139.135801,36.340292]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,263],"duration":1.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.672,"geometry_index":1047,"location":[139.126733,36.336876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":17.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":20.117,"geometry_index":1049,"location":[139.126358,36.336839]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":10.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":12.228,"geometry_index":1052,"location":[139.121802,36.336626]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":5.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":5.873,"geometry_index":1054,"location":[139.118972,36.336477]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.484,"geometry_index":1055,"location":[139.11762,36.336339]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":48.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":54.233,"geometry_index":1056,"location":[139.117052,36.336283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":1.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.396,"geometry_index":1063,"location":[139.104315,36.334264]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,259],"duration":2.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.374,"geometry_index":1064,"location":[139.103986,36.334218]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,261],"duration":0.251,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":0.282,"geometry_index":1065,"location":[139.103429,36.334134]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":1.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.601,"geometry_index":1066,"location":[139.103361,36.334125]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":1.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.769,"geometry_index":1067,"location":[139.102986,36.334079]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.102566,36.334033],"geometry_index":1068,"admin_index":1,"weight":1.909,"is_urban":true,"duration":1.716,"bearings":[82,251,263],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Maebashiminami IC"},"out":2,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,261],"duration":1.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.769,"geometry_index":1069,"location":[139.102111,36.333986]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":2.386,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.684,"geometry_index":1070,"location":[139.101691,36.333931]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,262],"duration":2.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.281,"geometry_index":1072,"location":[139.101066,36.333866]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,265],"duration":2.524,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.84,"geometry_index":1073,"location":[139.100521,36.333801]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,263],"duration":1.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.884,"geometry_index":1074,"location":[139.099839,36.333755]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":16.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":18.999,"geometry_index":1075,"location":[139.099396,36.333709]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.095852,36.333523],"geometry_index":1079,"admin_index":1,"weight":64.191,"is_urban":true,"turn_weight":0.5,"duration":56.622,"bearings":[87,94,266],"out":2,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,232],"duration":0.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":0.243,"geometry_index":1093,"location":[139.081672,36.331125]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,236],"duration":10.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":12.566,"geometry_index":1094,"location":[139.081627,36.331097]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,218],"duration":17.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":19.628,"geometry_index":1100,"location":[139.079513,36.329533]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.364,"geometry_index":1107,"location":[139.077309,36.326403]},{"bearings":[19,195],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"geometry_index":1108,"location":[139.077207,36.326162]}]},{"mode":"driving","weight":291.604,"distance":5345.936,"guidance_views":[{"overlay_ids":["CA11220A"],"base_id":"CA112201","type":"jct","data_id":"737596800"}],"driving_side":"left","duration_typical":241.823,"weight_typical":291.604,"name":"Kan-Etsu Expwy","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left at Takasaki JCT toward JOSHIN-ETSU EXPWY/KAN-ETSU EXPWY/Nagano/Tokyo.","modifier":"slight left","bearing_after":185,"bearing_before":186,"location":[139.076707,36.323922]},"speedLimitUnit":"km/h","destinations":"E17: JOSHIN-ETSU EXPWY, KAN-ETSU EXPWY, Nagano, Tokyo","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"KAN-ETSU EXPWY"},{"type":"text","text":"/"},{"type":"text","text":"Honjo"}],"type":"fork","modifier":"right","text":"KAN-ETSU EXPWY / Honjo"},"primary":{"components":[{"type":"text","text":"Fujioka JCT"}],"type":"fork","modifier":"right","text":"Fujioka JCT"},"distanceAlongGeometry":5345.936},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/jct/CA089101?arrow_ids=CA08910E","subType":"jct","type":"guidance-view","text":""}],"type":"fork","modifier":"right","text":""},"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"KAN-ETSU EXPWY"},{"type":"text","text":"/"},{"type":"text","text":"Honjo"}],"type":"fork","modifier":"right","text":"KAN-ETSU EXPWY / Honjo"},"primary":{"components":[{"type":"text","text":"Fujioka JCT"}],"type":"fork","modifier":"right","text":"Fujioka JCT"},"distanceAlongGeometry":1609.344}],"geometry":"cd`hdAeeqghG||@bFnFT`RxAlTzArYxAlI?`Nk@fLqBvKgCxOcFfHkE`GmEbGyFzHwK`GaKzm@}cAdp@klA`NwU`NcWdO{W|PgYrNwUjPyWnQ{W`RiY~PuU~MeRhLiOxO}RnQuUjPsS~IaKhEyFtRwUnQqSdbAsdAjTuUfSeRzSsS`RwPpQiOfWiTpUeRhWqSbVeRt]mVlIyFbVwPrRyLpMiI`]wUhb@cWr~@wf@h|@}c@p\\oQnFgCjP}HdOeHjEqBnQuIhLaFxD{A`R}HtRkJjPeHtR_IlMaFxSuInIcDzEkBnXaKbVuIvVsInQyFpU}HlMuDrNkElTgHlTyFnQaFdOuDfSyFpUyFbRcFrYyFvOuDtRkEvZcFxZyFdZkEba@kEf^kEfSqBhWgClX{AhWcAbRcApk@qBh[U~PWrR?lT?x^Vth@bAn\\bAznAdHpd@lEhrArNvmAzRfyAvU","duration":243.6670000000001,"junction_name":"Takasaki JCT","voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5329.269},{"ssmlAnnouncement":"In 1 mile, Keep right at Fujioka JCT.","announcement":"In 1 mile, Keep right at Fujioka JCT.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right at Fujioka JCT.","announcement":"In a half mile, Keep right at Fujioka JCT.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right at Fujioka JCT toward KAN-ETSU EXPWY, Honjo.","announcement":"Keep right at Fujioka JCT toward KAN-ETSU EXPWY, Honjo.","distanceAlongGeometry":200}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway_link"},"location":[139.076707,36.323922],"geometry_index":1113,"admin_index":1,"weight":10.267,"is_urban":true,"duration":8.936,"bearings":[6,185,189],"jct":{"name":"Takasaki JCT"},"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":2.448,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":1,"out":1,"weight":2.815,"geometry_index":1115,"location":[139.076582,36.322811]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":31.824,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":1,"out":1,"weight":36.598,"geometry_index":1116,"location":[139.076537,36.322506]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.078537,36.3192],"geometry_index":1129,"admin_index":1,"weight":57.838,"is_urban":true,"turn_weight":20,"duration":32.91,"bearings":[128,306,310],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,319],"duration":4.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":5.139,"geometry_index":1145,"location":[139.085059,36.314496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,318],"duration":27.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":31.236,"geometry_index":1148,"location":[139.085877,36.313784]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,329],"duration":2.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.26,"geometry_index":1160,"location":[139.09032,36.308941]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.090604,36.308571],"geometry_index":1161,"admin_index":1,"weight":6.263,"is_urban":true,"duration":5.59,"bearings":[139,150,328],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Takasakitamamura Smart IC"},"out":1,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,329],"duration":13.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":14.735,"geometry_index":1164,"location":[139.091354,36.307543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,334],"duration":2.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.717,"geometry_index":1167,"location":[139.092967,36.304979]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.093263,36.304506],"geometry_index":1168,"admin_index":1,"weight":4.434,"is_urban":true,"turn_weight":0.75,"duration":3.368,"bearings":[155,333,342],"out":0,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":3.14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":3.454,"geometry_index":1171,"location":[139.093637,36.303849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":73.005,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":80.305,"geometry_index":1174,"location":[139.093978,36.303238]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":17.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":19.241,"geometry_index":1217,"location":[139.09808,36.288081]},{"bearings":[9,191],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"geometry_index":1221,"location":[139.097546,36.284397]}]},{"mode":"driving","weight":1090.183,"distance":23067.232,"guidance_views":[{"overlay_ids":["CA08910E"],"base_id":"CA089101","type":"jct","data_id":"737596800"}],"driving_side":"left","duration_typical":967.376,"weight_typical":1090.291,"name":"Kan-Etsu Expwy","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right at Fujioka JCT toward KAN-ETSU EXPWY/Honjo/Tokyo.","modifier":"slight right","bearing_after":198,"bearing_before":191,"location":[139.096864,36.281693]},"speedLimitUnit":"km/h","destinations":"KAN-ETSU EXPWY, Honjo, Tokyo","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Hanazono IC"}],"type":"off ramp","modifier":"left","text":"Hanazono IC"},"distanceAlongGeometry":23067.232},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/jct/CB999101?arrow_ids=CB99910A","subType":"jct","type":"guidance-view","text":""}],"type":"off ramp","modifier":"left","text":""},"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Hanazono IC"}],"type":"off ramp","modifier":"left","text":"Hanazono IC"},"distanceAlongGeometry":1609.344}],"geometry":"ytmedA_qxhhGhW|HrnArRle@lHn]pF~SfDvp@rIjf@xFpk@tDzf@bAvw@pBxi@yA~Tm@~MU|[{AxOcArs@}H`d@oGbl@cKt]eHlc@cK~c@{Mt]oLrNyFhWaKrd@sSbfAcm@hcAgt@|f@ob@zf@eh@`o@er@fi@yr@jTg^fi@s_AlX_p@bh@{hA~c@}oA`C}HhcD}|M|E{R|Lem@|DuObWybA`s@uwCnn@}jCtl@_mCtl@geC`Neh@l~Aa{GPcArJu_@~M_k@vO{m@xOij@hL__@~IgYjPwf@fH}RlMa\\fSgc@rY{m@nQg^hm@waAfSy\\jEaF`GgH|b@sn@|`AieAln@uk@zb@y\\`]eWnc@_Zhq@aa@j_@{Rly@g^hi@iThf@{Rb}Bk{@xjAog@pUiJrNgHl{ByrArtAi`Aly@wp@hm@eh@tw@ey@tmAawAly@chAdkBonCj|@yhAdZu_@~dA_kA`s@gt@hSeR|`Aw|@|JeIbr@yj@jf@{\\`NiJrCqB`ReMzhBqnA|LgHp`@gTliBk`AzsB{cAlj@_Zzf@qX~vAwaArh@k`@hm@wf@fi@og@di@{h@~u@gy@nBqBxSmVxS_ZzAqBfOqSrN_U`RsX~Ty\\|P_ZnQgYlXwf@|[wk@~Tgc@nMuUrh@s_A`d@uu@fSm[rRk[pQcW`ReWzS{WfScW~MaPjPqSzb@ec@l_@q]pYwU~j@}c@j[_Uf^wUn\\gTxb@wUtRwKj[kOdZsNd@UrYeMr]sNba@eMnc@sN~XkJda@kJhq@iO|P_D~_@yFjj@gH~u@eHn\\iC~_@yA`s@qBro@yAdoBiC`jByFpaAeHju@}Hv|AgYva@cKvDcAbKqC`z@mU|f@mQrs@_Zn}@ob@v{@wf@`YoQfm@wa@xp@kj@dZyWju@{r@h[o]|PeRnXy\\p`@}h@zb@up@ju@ymAv{@_fBpaAc~BpeAg{Bn}@kgBvuAm}B`{AcyBv{@ehA|`AmgAt]g^xt@kv@ly@kv@fm@af@hrAobAdl@aa@|kAmv@j{BmlAz~BmbAjrDoxAhLmE|gAmg@dp@ya@~MoGdl@{\\dp@}c@v_Aup@|gAwaAnlA_kAb~@afAtl@ox@p`@ak@paA{~AxyAurCdkBw~DloAamCzx@ieBpUwf@`s@w|A","duration":974.6780000000005,"junction_name":"Fujioka JCT","voiceInstructions":[{"ssmlAnnouncement":"Continue for 14 miles.","announcement":"Continue for 14 miles.","distanceAlongGeometry":23037.232},{"ssmlAnnouncement":"In 1 mile, Take the Hanazono IC exit on the left.","announcement":"In 1 mile, Take the Hanazono IC exit on the left.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the Hanazono IC exit on the left.","announcement":"In a half mile, Take the Hanazono IC exit on the left.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Hanazono IC exit on the left.","announcement":"Take the Hanazono IC exit on the left.","distanceAlongGeometry":180}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.096864,36.281693],"geometry_index":1223,"admin_index":1,"weight":16.492,"is_urban":true,"duration":15.026,"bearings":[11,190,198],"jct":{"name":"Fujioka JCT"},"out":2,"in":0,"turn_duration":0.033,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":13.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":14.866,"geometry_index":1228,"location":[139.096035,36.278591]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":9.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":10.219,"geometry_index":1232,"location":[139.095615,36.275814]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":3.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":3.716,"geometry_index":1235,"location":[139.095626,36.273869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":34.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":38.109,"geometry_index":1237,"location":[139.095683,36.273166]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.098387,36.266204],"geometry_index":1249,"admin_index":1,"weight":50.132,"is_urban":true,"turn_weight":1,"duration":44.674,"bearings":[148,332,336],"out":0,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,300],"duration":33.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":36.515,"geometry_index":1259,"location":[139.106909,36.259714]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,293],"duration":2.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.27,"geometry_index":1262,"location":[139.115033,36.256909]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.115772,36.256686],"geometry_index":1263,"admin_index":2,"weight":17.083,"is_urban":true,"classes":["toll","motorway"],"turn_duration":0.022,"duration":15.553,"bearings":[107,114,291],"rest_stop":{"amenities":[{"brand":"エネオス","type":"gas_station"},{"type":"electric_charging_station"},{"type":"toilet"},{"type":"coffee"},{"type":"restaurant"},{"type":"snack"},{"type":"ATM"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"},{"type":"shop"},{"type":"telephone"}],"guidemap":"https://api.mapbox.com/guidance-views/v1/737596800/sapaguidemap/SA109301","name":"上里SA","type":"service_area"},"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Kamisato Smart IC"},"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":9.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":10.038,"geometry_index":1266,"location":[139.119567,36.255372]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,293],"duration":9.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":10.13,"geometry_index":1267,"location":[139.121806,36.254612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.124078,36.253881],"geometry_index":1268,"admin_index":2,"weight":10.624,"is_urban":true,"turn_weight":1,"duration":8.77,"bearings":[113,292,298],"out":0,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,293],"duration":21.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":23.346,"geometry_index":1269,"location":[139.126226,36.25315]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":2.302,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.59,"geometry_index":1271,"location":[139.13143,36.251382]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,294],"duration":21.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":24.3,"geometry_index":1273,"location":[139.131987,36.251187]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":3.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.994,"geometry_index":1282,"location":[139.137066,36.24904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,305],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":11.592,"geometry_index":1283,"location":[139.137816,36.248614]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,310],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.742,"geometry_index":1286,"location":[139.139861,36.247253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,317],"duration":39.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":46.381,"geometry_index":1288,"location":[139.140122,36.247022]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":3.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.827,"geometry_index":1298,"location":[139.145724,36.240059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,338],"duration":16.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":19.084,"geometry_index":1299,"location":[139.146042,36.23943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":3.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.604,"geometry_index":1301,"location":[139.147656,36.236199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,334],"duration":80.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":92.187,"geometry_index":1303,"location":[139.147985,36.235588]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,320],"duration":1.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.167,"geometry_index":1315,"location":[139.161404,36.222349]},{"mapbox_streets_v8":{"class":"motorway"},"location":[139.161711,36.222024],"geometry_index":1316,"admin_index":2,"weight":7.077,"is_urban":true,"duration":6.174,"bearings":[135,143,323],"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"ic":{"name":"Honjokodama IC"},"out":1,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,323],"duration":5.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":6.595,"geometry_index":1317,"location":[139.162699,36.220969]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,325],"duration":3.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.947,"geometry_index":1319,"location":[139.163563,36.21996]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":1.298,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.492,"geometry_index":1320,"location":[139.164041,36.21933]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":11.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":13.15,"geometry_index":1321,"location":[139.164222,36.219089]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.165779,36.217016],"geometry_index":1324,"admin_index":2,"weight":2.114,"is_urban":true,"turn_weight":0.75,"duration":1.208,"bearings":[152,329,334],"out":0,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,332],"duration":2.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.152,"geometry_index":1325,"location":[139.165927,36.216793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,333],"duration":55.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":62.37,"geometry_index":1326,"location":[139.166267,36.216256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":4.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.789,"geometry_index":1337,"location":[139.173801,36.206248]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[135,314],"duration":44.005,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":48.405,"geometry_index":1339,"location":[139.174608,36.205582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.96,"geometry_index":1357,"location":[139.183369,36.199499]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,317],"duration":29.386,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":32.325,"geometry_index":1359,"location":[139.184028,36.198935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":2.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.469,"geometry_index":1370,"location":[139.188266,36.193667]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,335],"duration":26.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":28.978,"geometry_index":1371,"location":[139.188516,36.193232]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,350],"duration":4.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.559,"geometry_index":1382,"location":[139.190459,36.18789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,352],"duration":48.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":52.877,"geometry_index":1383,"location":[139.190606,36.18701]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.191936,36.1769],"geometry_index":1393,"admin_index":2,"weight":26.322,"is_urban":true,"duration":23.937,"bearings":[156,163,344],"rest_stop":{"amenities":[{"type":"toilet"},{"type":"coffee"},{"type":"snack"},{"type":"ATM"},{"type":"info"},{"type":"baby_care"},{"type":"facilities_for_disabled"},{"type":"shop"},{"type":"telephone"},{"type":"shower"}],"guidemap":"https://api.mapbox.com/guidance-views/v1/737596800/sapaguidemap/SA109501","name":"寄居PA","type":"rest_area"},"out":1,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[139.194333,36.172216],"geometry_index":1400,"admin_index":2,"weight":15.31,"is_urban":true,"turn_weight":1,"duration":13.017,"bearings":[150,332,338],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,324],"duration":4.991,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":5.49,"geometry_index":1404,"location":[139.196276,36.169827]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,322],"duration":4.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.905,"geometry_index":1405,"location":[139.197106,36.168957]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,319],"duration":163.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":183.926,"geometry_index":1407,"location":[139.197901,36.168217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,330],"duration":5.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":5.825,"geometry_index":1432,"location":[139.225218,36.141387]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,332],"duration":71.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":82.607,"geometry_index":1434,"location":[139.225832,36.140424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":10.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":12.035,"geometry_index":1444,"location":[139.239229,36.129667]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":7.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":8.477,"geometry_index":1445,"location":[139.241502,36.12838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":2.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.296,"geometry_index":1446,"location":[139.243139,36.127454]},{"bearings":[125,305],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"geometry_index":1447,"location":[139.243775,36.127093]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left toward Chichibu.","announcement":"In a quarter mile, Keep left toward Chichibu.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left toward Chichibu, Yorii.","announcement":"Keep left toward Chichibu, Yorii.","distanceAlongGeometry":50}],"intersections":[{"mapbox_streets_v8":{"class":"trunk_link"},"location":[139.245275,36.12626],"geometry_index":1448,"admin_index":2,"weight":16.099,"is_urban":true,"duration":14.32,"bearings":[121,125,305],"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"ic":{"name":"Hanazono IC"},"out":0,"in":2,"turn_duration":0.01,"classes":["toll"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll"],"in":1,"bearings":[114,301],"duration":5.67,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":0,"weight":6.379,"geometry_index":1449,"location":[139.246797,36.125529]},{"entry":[true,false],"classes":["toll"],"in":1,"bearings":[99,286],"duration":7.29,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":0,"weight":8.201,"geometry_index":1452,"location":[139.247456,36.125344]},{"entry":[true,false],"classes":["toll"],"in":1,"bearings":[87,267],"duration":3.2,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":0,"weight":3.6,"geometry_index":1454,"location":[139.248354,36.125334]},{"entry":[true,false],"classes":["toll"],"in":1,"bearings":[94,270],"duration":14.954,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":0,"weight":16.823,"geometry_index":1457,"location":[139.248888,36.125344]},{"entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[40,227],"duration":3.669,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"weight":4.128,"geometry_index":1473,"location":[139.249479,36.124011]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[51,243],"duration":13.084,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"weight":14.72,"geometry_index":1475,"location":[139.249036,36.123696]},{"mapbox_streets_v8":{"class":"trunk_link"},"location":[139.247139,36.122974],"geometry_index":1479,"admin_index":2,"weight":3.2,"is_urban":true,"turn_weight":0.5,"duration":2.421,"bearings":[64,70,245],"out":2,"in":0,"turn_duration":0.021,"classes":["toll"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[65,246],"duration":1.986,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"weight":2.234,"geometry_index":1480,"location":[139.246798,36.122844]},{"lanes":[{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["etc"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["etc"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true}],"bearings":[66,246],"entry":[false,true],"classes":["toll"],"in":0,"turn_weight":15,"toll_collection":{"name":"Hanazono Tollgate","type":"toll_booth"},"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"geometry_index":1481,"location":[139.246639,36.122788]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chichibu"},{"type":"text","text":"/"},{"type":"text","text":"Yorii"}],"type":"fork","modifier":"left","text":"Chichibu / Yorii"},"distanceAlongGeometry":907.75},{"view":{"components":[{"imageURL":"https://api.mapbox.com/guidance-views/v1/737596800/tollbranch/CR371101?arrow_ids=CR37110A","subType":"tollbranch","type":"guidance-view","text":""}],"type":"fork","modifier":"left","text":""},"primary":{"components":[{"type":"text","text":"Chichibu"},{"type":"text","text":"/"},{"type":"text","text":"Yorii"}],"type":"fork","modifier":"left","text":"Chichibu / Yorii"},"distanceAlongGeometry":402.336}],"destinations":"Hanazono IC","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Hanazono IC exit on the left.","modifier":"slight left","bearing_after":121,"bearing_before":125,"location":[139.245275,36.12626]},"speedLimitSign":"vienna","name":"","weight_typical":97.228,"duration_typical":72.677,"guidance_views":[{"overlay_ids":["CB99910A"],"base_id":"CB999101","type":"jct","data_id":"737596800"}],"duration":73.23100000000002,"distance":907.75,"driving_side":"left","weight":97.228,"mode":"driving","geometry":"gb~{cAulzqhGtl@c~A|AcFzAgHvDyWhAoQu@sd@SqG?qS?gC?qGd@sIzAaK`C}HnBiChEkEjE}C|EqBpFcAvD?|ETbGpBtGtD|E`F`ChC~BfCnMdRdDnG`C|HxDzMh[~jA|EvPbGhTnB|H~If^"},{"ref":"National Road No.140 Line","mode":"driving","weight":578.964,"distance":6719.312,"geometry":"g~v{cAub|qhGpJrS~BpSRrNS`K{AtIyHlQuG|MeDrIoBtIw@|HHtLHdJnFfo@dO`aAzSrdAxm@~lDrJpi@fHdh@tG`k@|Ejq@|Etz@zAbr@PxKPzh@u@r_AaCj{@sNbjD_C~o@qJdyBqFnnA{A~^uGb~AgHr_B_JvrBkEtkAkElgAwD`aAw@b\\c@lVv@dy@zAj`@~IzyBrCpn@?vPe@xPiAvKeDrSmBrIoBtIaCxFcKlViLlVmIbRcK`U{LtUgS`a@uRj`@{H`Pi|@piBiLtUcGfMgAfCkErIkEtIcGzMkIvPw@tD{A|M{A`PSnGRnGzArN`CrNlBjJb@bA`CfH`CxFnFzMlj@foAhWnl@zArDbVvk@|AtDzLtZhPba@pQdc@nQfc@lTdh@dZft@pJlVfHlQjIrS|Wv|@hWrdApCvPrNrz@xDf^`CpSvDjj@jAlQb@fHzAf^v@j`@|AjgBt@tz@d@|jAP`PP~YPrIv@xa@bGn}@vDbWtRd~AtGtp@|E~o@v@|H","duration":537.356,"guidance_views":[{"overlay_ids":["CR37110A"],"base_id":"CR371101","type":"tollbranch","data_id":"737596800"}],"driving_side":"left","duration_typical":532.648,"weight_typical":578.256,"name":"Saikai Kaido","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left toward Chichibu/Yorii.","modifier":"slight left","bearing_after":235,"bearing_before":246,"location":[139.246139,36.122612]},"speedLimitUnit":"km/h","destinations":"Chichibu, Yorii","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Keep right at the fork"}],"type":"fork","modifier":"right","text":"Keep right at the fork"},"distanceAlongGeometry":6719.312}],"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6709.312},{"ssmlAnnouncement":"In a quarter mile, Keep right at the fork.","announcement":"In a quarter mile, Keep right at the fork.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep right at the fork.","announcement":"Keep right at the fork.","distanceAlongGeometry":83.333}],"intersections":[{"entry":[false,true,true],"classes":["toll"],"in":0,"bearings":[66,235,253],"duration":30.015,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"weight":33.75,"geometry_index":1482,"location":[139.246139,36.122612]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[91,265],"duration":10.44,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":2,"out":1,"weight":11.745,"geometry_index":1493,"location":[139.243613,36.122867]},{"entry":[true,false,true],"in":1,"bearings":[70,79,253],"duration":6.735,"turn_weight":18.2,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":25.765,"geometry_index":1495,"location":[139.242662,36.122742]},{"entry":[true,false,true],"in":1,"bearings":[59,73,250],"duration":8.763,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":9.849,"geometry_index":1496,"location":[139.241605,36.122483]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"trunk"},"location":[139.240491,36.122149],"geometry_index":1497,"admin_index":2,"weight":27.078,"is_urban":true,"traffic_signal":true,"turn_duration":2.021,"turn_weight":1,"duration":25.201,"bearings":[70,155,252,336],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true,true],"in":0,"bearings":[72,166,251,348],"duration":7.965,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":8.953,"geometry_index":1498,"location":[139.237707,36.1214]},{"entry":[false,true,true],"in":0,"bearings":[74,256,355],"duration":8.798,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":9.876,"geometry_index":1500,"location":[139.236367,36.121066]},{"entry":[false,true,true,true,true],"in":0,"bearings":[80,163,180,262,353],"duration":10.249,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":3,"weight":11.507,"geometry_index":1502,"location":[139.234856,36.120816]},{"entry":[false,true,true,true],"in":0,"bearings":[87,179,269,359],"duration":3.449,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":3.857,"geometry_index":1505,"location":[139.232878,36.12065]},{"entry":[false,true],"in":0,"bearings":[89,272],"duration":10.286,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":11.571,"geometry_index":1506,"location":[139.232208,36.120641]},{"entry":[true,false,true,true],"in":1,"bearings":[8,95,186,276],"duration":16.253,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":3,"weight":18.262,"geometry_index":1508,"location":[139.230208,36.120733]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[139.22747,36.120983],"geometry_index":1509,"admin_index":2,"weight":6.118,"is_urban":true,"mapbox_streets_v8":{"class":"trunk"},"traffic_signal":true,"turn_duration":2.018,"duration":7.456,"bearings":[7,96,186,276],"out":3,"in":1,"entry":[true,false,true,true]},{"entry":[false,true,true],"in":0,"bearings":[96,193,277],"duration":11.819,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":13.275,"geometry_index":1510,"location":[139.226686,36.121047]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[139.224731,36.121232],"geometry_index":1511,"admin_index":2,"weight":9.879,"is_urban":true,"mapbox_streets_v8":{"class":"trunk"},"traffic_signal":true,"turn_duration":2.018,"duration":10.799,"bearings":[7,97,186,277],"out":3,"in":1,"entry":[true,false,true,true]},{"entry":[true,false,true,true],"in":1,"bearings":[8,96,187,276],"duration":7.545,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":3,"weight":8.468,"geometry_index":1513,"location":[139.222947,36.121399]},{"entry":[false,true,true,true],"in":0,"bearings":[96,168,277,345],"duration":7.542,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":8.274,"geometry_index":1514,"location":[139.221425,36.121538]},{"entry":[false,true,true,true],"in":0,"bearings":[97,170,277,351],"duration":8.417,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":9.24,"geometry_index":1515,"location":[139.219879,36.121686]},{"entry":[false,true,true,true],"in":0,"bearings":[97,191,276,351],"duration":6.35,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":6.977,"geometry_index":1516,"location":[139.218027,36.121862]},{"entry":[false,true,true,true],"in":0,"bearings":[96,158,276,338],"duration":5.833,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":6.397,"geometry_index":1517,"location":[139.2168,36.121964]},{"entry":[false,true],"in":0,"bearings":[96,276],"duration":9.471,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":10.418,"geometry_index":1518,"location":[139.215641,36.122066]},{"entry":[false,true,true,true],"in":0,"bearings":[93,168,268,346],"duration":13.587,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":14.935,"geometry_index":1521,"location":[139.213743,36.122204]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"trunk"},"location":[139.212278,36.12213],"geometry_index":1523,"admin_index":2,"weight":17.783,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1,"duration":17.276,"bearings":[84,191,264],"out":2,"in":0,"entry":[false,true,true]},{"entry":[false,true,true],"in":0,"bearings":[84,163,263],"duration":18.521,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":20.366,"geometry_index":1524,"location":[139.210312,36.121954]},{"entry":[false,false,true],"in":1,"bearings":[6,118,303],"duration":3.455,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":4.771,"geometry_index":1532,"location":[139.207982,36.122195]},{"lanes":[{"indications":["slight left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["sharp right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"trunk"},"location":[139.207607,36.122389],"geometry_index":1533,"admin_index":2,"weight":5.122,"is_urban":true,"traffic_signal":true,"turn_duration":2.024,"turn_weight":2,"duration":4.863,"bearings":[82,123,263,305],"out":3,"in":1,"entry":[true,false,true,true]},{"entry":[false,false,true],"in":0,"bearings":[125,184,304],"duration":2.292,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":3.013,"geometry_index":1534,"location":[139.207232,36.122602]},{"entry":[false,true,true],"in":0,"bearings":[124,190,304],"duration":2.648,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":2.894,"geometry_index":1535,"location":[139.206926,36.122769]},{"entry":[false,true],"in":0,"bearings":[124,307],"duration":2.838,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":3.122,"geometry_index":1536,"location":[139.206573,36.122963]},{"entry":[false,true,true],"in":0,"bearings":[127,213,306],"duration":4.23,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":4.646,"geometry_index":1537,"location":[139.20621,36.123185]},{"entry":[true,false,true],"in":1,"bearings":[30,126,306],"duration":4.104,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":4.391,"geometry_index":1538,"location":[139.205665,36.123509]},{"entry":[false,true,true],"in":0,"bearings":[126,182,306],"duration":1.79,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":1.903,"geometry_index":1539,"location":[139.205131,36.123824]},{"entry":[true,false,true,true,true,true],"in":1,"bearings":[31,126,220,267,305,345],"duration":18.755,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":4,"weight":20.142,"geometry_index":1540,"location":[139.204858,36.123982]},{"entry":[false,true],"in":0,"bearings":[126,305],"duration":2.618,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":2.814,"geometry_index":1542,"location":[139.20279,36.125176]},{"entry":[false,true],"in":0,"bearings":[125,307],"duration":5.236,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":5.629,"geometry_index":1544,"location":[139.202494,36.125342]},{"entry":[false,true,false],"in":0,"bearings":[124,306,332],"duration":7.221,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":8.74,"geometry_index":1547,"location":[139.201915,36.125676]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.20154,36.12587],"geometry_index":1549,"admin_index":2,"weight":14.996,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":1.5,"duration":14.576,"bearings":[120,283,341,358],"out":1,"in":0,"entry":[false,true,true,false]},{"entry":[true,false,true],"in":1,"bearings":[37,70,237],"duration":0.386,"turn_duration":0.017,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":0.397,"geometry_index":1556,"location":[139.200074,36.125796]},{"entry":[false,true],"in":0,"bearings":[57,241],"duration":1.385,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":1,"weight":1.488,"geometry_index":1557,"location":[139.20004,36.125778]},{"entry":[false,true,true,true],"in":0,"bearings":[61,128,238,344],"duration":3.909,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":2,"out":2,"weight":4.192,"geometry_index":1558,"location":[139.199892,36.125713]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[139.199529,36.125528],"geometry_index":1560,"admin_index":2,"weight":10.508,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"traffic_signal":true,"turn_duration":2.007,"duration":12.016,"bearings":[58,151,236,329],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true,true],"in":0,"bearings":[56,108,237,307],"duration":6.124,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":6.41,"geometry_index":1561,"location":[139.198245,36.124833]},{"entry":[false,true,true,true],"in":0,"bearings":[57,152,238,339],"duration":9.696,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":10.159,"geometry_index":1562,"location":[139.197517,36.124444]},{"entry":[false,true,true],"in":0,"bearings":[57,237,355],"duration":1.144,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":1.181,"geometry_index":1564,"location":[139.196711,36.124028]},{"entry":[false,true,true],"in":0,"bearings":[57,163,238],"duration":9.421,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":9.87,"geometry_index":1565,"location":[139.19662,36.123981]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[139.196177,36.123759],"geometry_index":1566,"admin_index":2,"weight":4.385,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"traffic_signal":true,"turn_duration":2.018,"duration":6.194,"bearings":[58,158,238,341],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true],"in":0,"bearings":[58,153,238],"duration":4.482,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":4.687,"geometry_index":1567,"location":[139.195631,36.123482]},{"entry":[false,true,true,true],"in":0,"bearings":[58,177,238,352],"duration":4.482,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":4.687,"geometry_index":1568,"location":[139.195052,36.123185]},{"entry":[false,true,true],"in":0,"bearings":[58,169,237],"duration":4.428,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":4.532,"geometry_index":1569,"location":[139.194472,36.122889]},{"entry":[false,true,true],"in":0,"bearings":[57,238,318],"duration":5.768,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":5.891,"geometry_index":1570,"location":[139.193813,36.122546]},{"entry":[false,true,true,true],"in":0,"bearings":[58,146,239,322],"duration":2.736,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.785,"geometry_index":1571,"location":[139.192961,36.122111]},{"entry":[false,true,true],"in":0,"bearings":[59,151,238],"duration":1.965,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.007,"geometry_index":1572,"location":[139.192586,36.121926]},{"entry":[false,true],"in":0,"bearings":[58,238],"duration":2.21,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.266,"geometry_index":1573,"location":[139.192291,36.121778]},{"entry":[false,true,true,true],"in":0,"bearings":[58,132,243,329],"duration":7.453,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":7.611,"geometry_index":1574,"location":[139.191961,36.121612]},{"entry":[true,false,true,true],"in":1,"bearings":[25,63,168,247],"duration":14.422,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":3,"weight":14.76,"geometry_index":1575,"location":[139.190973,36.121213]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[139.189575,36.120751],"geometry_index":1577,"admin_index":2,"weight":5.629,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"traffic_signal":true,"turn_duration":2.018,"duration":7.509,"bearings":[72,165,252,334],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true,true],"in":0,"bearings":[72,177,257,351],"duration":2.616,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.652,"geometry_index":1578,"location":[139.188621,36.120501]},{"entry":[false,true,true],"in":0,"bearings":[77,163,256],"duration":5.295,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":5.42,"geometry_index":1579,"location":[139.188121,36.120408]},{"entry":[false,true,true],"in":0,"bearings":[81,177,261],"duration":2.369,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.419,"geometry_index":1581,"location":[139.187098,36.120251]},{"entry":[false,true,true],"in":0,"bearings":[81,264,356],"duration":5.511,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":5.626,"geometry_index":1583,"location":[139.186655,36.120195]},{"entry":[true,false,true,true],"in":1,"bearings":[6,86,187,268],"duration":8.872,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":3,"weight":8.853,"geometry_index":1585,"location":[139.185621,36.120121]},{"entry":[false,true,true],"in":0,"bearings":[88,222,268],"duration":13.208,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":13.2,"geometry_index":1586,"location":[139.183951,36.120074]},{"entry":[false,true],"in":0,"bearings":[88,269],"duration":2.7,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.7,"geometry_index":1589,"location":[139.181508,36.120019]},{"entry":[false,true],"in":0,"bearings":[89,266],"duration":25.691,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":25.691,"geometry_index":1590,"location":[139.181076,36.12001]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.179349,36.119843],"geometry_index":1593,"admin_index":2,"weight":3.45,"is_urban":false,"traffic_signal":true,"turn_duration":2.013,"turn_weight":0.75,"duration":4.713,"bearings":[81,101,254],"out":2,"in":0,"entry":[false,true,true]},{"entry":[false,true,true,true],"in":0,"bearings":[74,125,256,351],"duration":9.083,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":9.064,"geometry_index":1594,"location":[139.178963,36.119751]},{"entry":[true,false,true],"in":1,"bearings":[1,76,258],"duration":4.713,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":4.693,"geometry_index":1595,"location":[139.17744,36.119436]},{"entry":[false,true,true],"in":0,"bearings":[78,260,353],"duration":4.416,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":4.283,"geometry_index":1596,"location":[139.176645,36.119297]},{"bearings":[80,258],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1597,"location":[139.175861,36.119186]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3113.007},{"ssmlAnnouncement":"In a quarter mile, Continue.","announcement":"In a quarter mile, Continue.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Continue. Then Continue on National Road No.140 Line.","announcement":"Continue. Then Continue on National Road No.140 Line.","distanceAlongGeometry":83.75}],"intersections":[{"entry":[false,true,true,false],"in":0,"bearings":[78,249,261,272],"duration":12.592,"turn_weight":2,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":14.255,"geometry_index":1598,"location":[139.175702,36.119158]},{"entry":[false,true],"in":0,"bearings":[81,262],"duration":39.032,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":38.056,"geometry_index":1602,"location":[139.173441,36.118871]},{"entry":[false,true],"in":0,"bearings":[14,196],"duration":23.11,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":22.532,"geometry_index":1621,"location":[139.170044,36.114575]},{"entry":[false,true],"in":0,"bearings":[17,201],"duration":3.542,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":3.454,"geometry_index":1627,"location":[139.168867,36.111128]},{"entry":[false,true],"in":0,"bearings":[26,207],"duration":6.96,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":6.786,"geometry_index":1630,"location":[139.168598,36.110624]},{"entry":[false,false,true],"in":0,"bearings":[32,44,217],"duration":1.896,"turn_weight":0.5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.322,"geometry_index":1633,"location":[139.167964,36.109715]},{"entry":[true,false,true],"in":1,"bearings":[25,37,216],"duration":2.569,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.498,"geometry_index":1634,"location":[139.167783,36.10952]},{"tunnel_name":"Yorii Tunnel","entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[36,225],"duration":70.71,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":67.175,"geometry_index":1635,"location":[139.167544,36.109252]},{"entry":[false,true],"in":0,"bearings":[53,234],"duration":3.029,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.801,"geometry_index":1648,"location":[139.154227,36.104928]},{"tunnel_name":"Fuppu Tunnel","entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[54,233],"duration":14.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":13.105,"geometry_index":1649,"location":[139.15375,36.10465]},{"bearings":[44,227],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1652,"location":[139.151751,36.103169]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"皆野寄居バイパス"}],"type":"turn","modifier":"straight","text":"皆野寄居バイパス"},"distanceAlongGeometry":3128.007},{"sub":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-national-route","display_ref":"140","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"National Road No.140 Line"},{"type":"delimiter","text":"/"},{"type":"text","text":"Minanoyorii Toll Road"}],"type":"turn","modifier":"straight","text":"National Road No.140 Line / Minanoyorii Toll Road"},"primary":{"components":[{"type":"text","text":"皆野寄居バイパス"}],"type":"turn","modifier":"straight","text":"皆野寄居バイパス"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right at the fork.","modifier":"slight right","bearing_after":261,"bearing_before":258,"location":[139.175702,36.119158]},"speedLimitSign":"vienna","name":"Minanoyorii Bypass","weight_typical":175.607,"duration_typical":180.444,"duration":181.819,"distance":3128.007,"driving_side":"left","weight":175.607,"mode":"driving","ref":"National Road No.140 Line","geometry":"kfp{cAkprmhG`Cp]`C`a@rCba@dDpi@v@jOhAdMhAxKzAzH`CxK`CjJ`GrN~EhJnFfH~I`KzLjJrNjJnMbFbVnGx^|H|_@rI`YfHn\\fHb]dHh[|Hp`@tIxZ|Hjj@vKth@|Mtg@hNtA^nQfHhIpErQzJhLpGzWdRdKhJvO|Mbh@lq@h[rd@lTn]dO|h@rNxr@vV|oB|_@boDbRpzAfHvk@jTvwAxOxw@dKb\\bK|RjPx\\bVrd@bh@|t@h[j`@tRhY"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on National Road No.140 Line for 7 miles.","announcement":"Continue on National Road No.140 Line for 7 miles.","distanceAlongGeometry":49.056}],"intersections":[{"bearings":[47,218,227],"entry":[false,true,true],"in":0,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"geometry_index":1653,"location":[139.15133,36.102854]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-national-route","display_ref":"140","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"National Road No.140 Line"},{"type":"delimiter","text":"/"},{"type":"text","text":"Minanoyorii Toll Road"}],"type":"turn","modifier":"straight","text":"National Road No.140 Line / Minanoyorii Toll Road"},"distanceAlongGeometry":62.389}],"destinations":"皆野寄居バイパス","speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue.","modifier":"straight","bearing_after":227,"bearing_before":227,"location":[139.15133,36.102854]},"speedLimitSign":"vienna","name":"","weight_typical":3.277,"duration_typical":3.562,"duration":3.589,"distance":62.389,"driving_side":"left","weight":3.277,"mode":"driving","geometry":"kkpzcAc}blhGtV|^"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left.","announcement":"In a quarter mile, Turn left.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left. Then Turn left onto Kendou No.270 Line.","announcement":"Turn left. Then Turn left onto Kendou No.270 Line.","distanceAlongGeometry":87.5}],"intersections":[{"mapbox_streets_v8":{"class":"trunk"},"location":[139.150819,36.102475],"geometry_index":1654,"admin_index":2,"weight":32.026,"is_urban":false,"turn_weight":26,"duration":6.533,"bearings":[47,226,229],"out":1,"in":0,"turn_duration":0.019,"classes":["toll"],"entry":[false,true,false]},{"entry":[true,false,true],"classes":["toll"],"in":1,"bearings":[30,44,225],"duration":2.647,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":2.432,"geometry_index":1656,"location":[139.149933,36.101743]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.149569,36.101447],"geometry_index":1657,"admin_index":2,"weight":2.766,"is_urban":false,"turn_weight":1,"duration":1.927,"bearings":[45,55,225],"out":2,"in":0,"turn_duration":0.018,"classes":["toll"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[45,224],"duration":2.673,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.472,"geometry_index":1658,"location":[139.149296,36.101225]},{"tunnel_name":"Kamafuse Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[44,224],"duration":101.739,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":94.109,"geometry_index":1659,"location":[139.148922,36.10091]},{"tunnel_name":"Kamafuse Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[36,215],"duration":32.087,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":29.681,"geometry_index":1673,"location":[139.136628,36.086504]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[35,215],"duration":2.118,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":1.959,"geometry_index":1678,"location":[139.132526,36.082088]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[35,216],"duration":4.347,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":4.021,"geometry_index":1679,"location":[139.132333,36.081866]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[36,213],"duration":21.368,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":19.765,"geometry_index":1680,"location":[139.131913,36.081403]},{"lanes":[{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true},{"payment_methods":["general"],"valid_indication":"straight","indications":["straight"],"valid":true,"active":true}],"mapbox_streets_v8":{"class":"trunk"},"location":[139.130845,36.079996],"geometry_index":1683,"admin_index":2,"weight":33.046,"is_urban":false,"toll_collection":{"name":"Minanoyorii Yuryodoro Tollgate","type":"toll_booth"},"turn_weight":15,"duration":19.51,"bearings":[29,206],"out":1,"in":0,"classes":["toll"],"entry":[false,true]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[24,209],"duration":17.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":16.549,"geometry_index":1687,"location":[139.130129,36.078607]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[69,252],"duration":13.315,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":12.316,"geometry_index":1694,"location":[139.127504,36.07669]},{"tunnel_name":"Shimotano Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[79,259],"duration":12.308,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":11.385,"geometry_index":1698,"location":[139.124573,36.07619]},{"tunnel_name":"Shimotano Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[79,257],"duration":4.865,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":4.5,"geometry_index":1699,"location":[139.121812,36.075765]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[77,255],"duration":2.7,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.498,"geometry_index":1700,"location":[139.120732,36.07557]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[72,252],"duration":7.406,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":6.85,"geometry_index":1702,"location":[139.120187,36.075441]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[68,244],"duration":2.991,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.841,"geometry_index":1704,"location":[139.118698,36.074968]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.118153,36.074756],"geometry_index":1705,"admin_index":2,"weight":24.07,"is_urban":false,"turn_weight":2,"duration":23.257,"bearings":[64,234,248,256],"out":2,"in":0,"turn_duration":0.026,"classes":["toll"],"entry":[false,true,true,false]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.113744,36.073793],"geometry_index":1713,"admin_index":2,"weight":5.366,"is_urban":false,"turn_weight":2,"duration":3.556,"bearings":[56,68,76,238],"out":3,"in":1,"turn_duration":0.014,"classes":["toll"],"entry":[true,false,false,true]},{"tunnel_name":"Minoyama Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[61,239],"duration":117.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":111.796,"geometry_index":1716,"location":[139.113142,36.073515]},{"tunnel_name":"Minoyama Tunnel","entry":[false,true],"classes":["tunnel","toll"],"in":0,"bearings":[66,247],"duration":6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":5.85,"geometry_index":1734,"location":[139.101905,36.064164]},{"mapbox_streets_v8":{"class":"trunk"},"location":[139.101133,36.063905],"geometry_index":1735,"admin_index":2,"weight":4.836,"is_urban":false,"duration":4.982,"bearings":[67,239,250],"out":2,"in":0,"turn_duration":0.022,"classes":["tunnel","toll"],"entry":[false,true,true],"tunnel_name":"Minoyama Tunnel"},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[70,248],"duration":3.882,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":3.785,"geometry_index":1736,"location":[139.100485,36.063711]},{"entry":[false,true,false],"in":0,"bearings":[68,244,255],"duration":20.349,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":20.832,"geometry_index":1737,"location":[139.099917,36.063526]},{"entry":[false,true],"in":0,"bearings":[57,237],"duration":49.109,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":47.882,"geometry_index":1741,"location":[139.097724,36.062544]},{"entry":[false,true],"in":0,"bearings":[46,225],"duration":21.78,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":21.235,"geometry_index":1752,"location":[139.091134,36.058841]},{"entry":[false,true,true],"in":0,"bearings":[11,191,358],"duration":6.788,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":6.601,"geometry_index":1764,"location":[139.089532,36.055925]},{"entry":[false,false,true],"in":0,"bearings":[10,15,195],"duration":60.153,"turn_weight":1,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":59.622,"geometry_index":1766,"location":[139.089282,36.054814]},{"entry":[false,true],"in":0,"bearings":[39,223],"duration":7.254,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":7.072,"geometry_index":1787,"location":[139.084351,36.045657]},{"entry":[false,true],"in":0,"bearings":[49,228],"duration":12.412,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":12.102,"geometry_index":1789,"location":[139.083295,36.044797]},{"tunnel_name":"Maita Tunnel","entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[56,236],"duration":13.146,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":12.488,"geometry_index":1793,"location":[139.081249,36.043547]},{"entry":[false,true],"in":0,"bearings":[45,220],"duration":16.746,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":15.908,"geometry_index":1799,"location":[139.079193,36.042167]},{"tunnel_name":"Hijiriyama Tunnel","entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[30,209],"duration":9.756,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":9.269,"geometry_index":1804,"location":[139.077319,36.039871]},{"entry":[false,true],"in":0,"bearings":[29,210],"duration":5.681,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":5.397,"geometry_index":1805,"location":[139.076319,36.038399]},{"tunnel_name":"Ohira Tunnel","entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[30,209],"duration":4.375,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":4.157,"geometry_index":1806,"location":[139.075762,36.037612]},{"entry":[false,true],"in":0,"bearings":[29,207],"duration":12.542,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":11.915,"geometry_index":1807,"location":[139.075341,36.036992]},{"entry":[false,true],"in":0,"bearings":[20,198],"duration":5.04,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":4.788,"geometry_index":1811,"location":[139.074353,36.035223]},{"bearings":[18,197],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1813,"location":[139.074092,36.034566]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Turn left"}],"type":"turn","modifier":"left","text":"Turn left"},"distanceAlongGeometry":10743.002},{"sub":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"270","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.270 Line"}],"type":"turn","modifier":"left","text":"Kendou No.270 Line"},"primary":{"components":[{"type":"text","text":"Turn left"}],"type":"turn","modifier":"left","text":"Turn left"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue on National Road No.140 Line.","modifier":"straight","bearing_after":226,"bearing_before":227,"location":[139.150819,36.102475]},"speedLimitSign":"vienna","name":"Minanoyorii Toll Road","weight_typical":678.177,"duration_typical":665.115,"duration":670.2010000000001,"distance":10743.002,"driving_side":"left","weight":678.177,"mode":"driving","ref":"National Road No.140 Line","geometry":"usozcAe}alhGpQlVdZ|^nQvUzL`PtRjVxO|RzLhOj_@j`@f^tZl_@x\\nhAj{@hhBjvAfhBhvAtjBvwAliBjvA~eB|tAtyB|eB~c@x\\vKjJ~j@je@zgAbmAvKvKrYlVvvBtfBzL`K|[fY`o@je@|InG|[zR`YrN|PbFpUrIfSjJrCzAba@bWpUtUbRpXbV|h@tG~TpFzWrCvP`CbRrCp]|PvrBpYpkDdKnbAzAdMdDzRnBdM`YzmAfL`a@zHx\\bG~YhE`f@tC|c@vDhj@xDr_@`Gp]pJfc@bGhOnBnGvDxKvKfY~MzWfOlV|PhT`RpS`s@lq@rqBxhBx_DbtCvVtUnQzRjPrSrRpX~Tf^xOj[jPt_@lMp]hLr_@vKfc@dOfo@bKng@pJnb@|Lnb@hPdh@`N|^`Nl[|EnLvZtp@dp@xwAxOv\\zWnl@x^nx@pUng@tVri@hH~O`GnLlInLvKrNjIrIvKxKpJ|H~IxFvKxFlMxFvKtDjPtDfS|C~XjEfS~CvVtDtl@|HvVxFhLtDjPjE`RxFvZnLnc@vPta@hOt]dMtVfHb]jJng@rNlT|HfWjJpUjJ`YzMj[hOxSxKln@t_@n\\~Tt]~YvVbWpd@hj@dOtUxOlVhLrSzWzh@bV|h@dK~T|Px\\rNbWxHdMxOhTzL`PpUlV`RlQb]dWvV~O~n@`a@~zAn}@dp@xa@ve@hYng@pXj[hOvOnG|WjJde@|MzAj@~IfC"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Kendou No.270 Line.","announcement":"Turn left onto Kendou No.270 Line.","distanceAlongGeometry":75.556}],"intersections":[{"bearings":[17,131,197,256],"entry":[false,true,true,false],"in":0,"turn_weight":5,"turn_duration":0.541,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1814,"location":[139.074024,36.03439]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"270","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.270 Line"}],"type":"turn","modifier":"left","text":"Kendou No.270 Line"},"distanceAlongGeometry":122.178}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left.","modifier":"left","bearing_after":131,"bearing_before":197,"location":[139.074024,36.03439]},"speedLimitSign":"vienna","name":"","weight_typical":25.862,"duration_typical":22.501,"duration":22.672,"distance":122.178,"driving_side":"left","weight":25.862,"mode":"driving","geometry":"ktjvcAo}kghG~BkEtCuDrCqBdDU`C?dDbArC~C`C`FnBpBlBl@`CT`Ck@dD{A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":620.176},{"ssmlAnnouncement":"In a quarter mile, Turn left at Maita.","announcement":"In a quarter mile, Turn left at Maita.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left at Maita.","announcement":"Turn left at Maita.","distanceAlongGeometry":48.222}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[67,251,344],"duration":57.485,"turn_weight":15,"turn_duration":2.765,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":2,"out":0,"weight":66.984,"geometry_index":1827,"location":[139.074035,36.033483]},{"bearings":[38,138,214,316],"entry":[true,true,true,false],"in":3,"turn_weight":1.5,"turn_duration":2.022,"traffic_signal":true,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1848,"location":[139.074501,36.031159]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Maita"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-national-route","display_ref":"299","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"National Road No.299 Line"}],"type":"turn","modifier":"left","text":"Maita / National Road No.299 Line"},"distanceAlongGeometry":630.509}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Kendou No.270 Line.","modifier":"left","bearing_after":67,"bearing_before":164,"location":[139.074035,36.033483]},"speedLimitSign":"vienna","name":"","weight_typical":87.294,"duration_typical":79.307,"duration":79.91300000000001,"distance":630.509,"driving_side":"left","weight":87.294,"mode":"driving","ref":"Kendou No.270 Line","geometry":"u{hvcAe~kghGiLaf@w@yAmB_DySmVoBkE?qBv@yF~Bk@~ExArCfCr]|^jAbA~BzAhrAvf@bGzA|E?fHm@`Cm@`CqBlByAnMaP`h@cm@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1636.146},{"ssmlAnnouncement":"In a quarter mile, Turn left to stay on National Road No.299 Line.","announcement":"In a quarter mile, Turn left to stay on National Road No.299 Line.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left to stay on National Road No.299 Line.","announcement":"Turn left to stay on National Road No.299 Line.","distanceAlongGeometry":100}],"intersections":[{"mapbox_streets_v8":{"class":"trunk"},"location":[139.075239,36.030502],"geometry_index":1849,"admin_index":2,"weight":21.846,"is_urban":false,"traffic_signal":true,"turn_duration":4.765,"turn_weight":9,"duration":18.287,"bearings":[42,231,318],"out":0,"in":2,"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[92,243],"duration":2.897,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":2.752,"geometry_index":1852,"location":[139.076444,36.031465]},{"entry":[true,true,false],"in":2,"bearings":[35,126,281],"duration":9.104,"turn_duration":0.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":8.55,"geometry_index":1854,"location":[139.076796,36.031437]},{"entry":[true,true,false],"in":2,"bearings":[58,155,335],"duration":2.233,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":2.104,"geometry_index":1858,"location":[139.077455,36.030529]},{"entry":[true,false],"in":1,"bearings":[149,335],"duration":1.938,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":1.841,"geometry_index":1859,"location":[139.077602,36.030271]},{"entry":[true,false],"in":1,"bearings":[144,329],"duration":40.292,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":38.278,"geometry_index":1860,"location":[139.077762,36.030057]},{"entry":[true,true,false],"in":2,"bearings":[153,251,350],"duration":27.3,"turn_duration":0.023,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":26.595,"geometry_index":1881,"location":[139.077751,36.025447]},{"entry":[true,true,false],"in":2,"bearings":[15,165,339],"duration":3.228,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":3.2,"geometry_index":1895,"location":[139.079444,36.022207]},{"entry":[true,true,false],"in":2,"bearings":[68,166,346],"duration":20.178,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":20.16,"geometry_index":1897,"location":[139.079557,36.021855]},{"bearings":[22,168,290],"entry":[false,true,true],"in":0,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":1902,"location":[139.078864,36.019707]}],"junction_name":"Maita","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"jp-national-route","display_ref":"299","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"National Road No.299 Line"}],"type":"turn","modifier":"left","text":"National Road No.299 Line"},"distanceAlongGeometry":1649.48}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn left at Maita.","modifier":"left","bearing_after":42,"bearing_before":138,"location":[139.075239,36.030502]},"speedLimitSign":"vienna","name":"","weight_typical":126.527,"duration_typical":126.731,"duration":127.698,"distance":1649.48,"driving_side":"left","weight":126.527,"mode":"driving","ref":"National Road No.299 Line","geometry":"kacvcAminghGku@a|@oBmEiAyFc@oGzAoLnByFrCuDlBcAdl@qXbOeHjL_I|I}HxDuDrYa\\nFcFvKuIbK}Hd@UxHyAp\\wD~B?jEVtGxApaA~^rCxAng@rd@nFtDrCbAbGbA`CUrC?bK{AlMeHtRyKjPoLbKoGdViOnFiCbGoBlIiChWkE|TcFnFcAzH}CnQgHnFqBtGyAhLgCxO_DlB?lj@|Mta@rNzb@vPbGcA"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Turn right at Odamaki.","announcement":"In 900 feet, Turn right at Odamaki.","distanceAlongGeometry":251.741},{"ssmlAnnouncement":"Turn right at Odamaki.","announcement":"Turn right at Odamaki.","distanceAlongGeometry":62.222}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[105,168,348],"duration":8.821,"turn_duration":0.421,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":8.4,"geometry_index":1903,"location":[139.078898,36.019577]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":2.657,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":2.657,"geometry_index":1907,"location":[139.079977,36.019503]},{"entry":[true,true,false],"in":2,"bearings":[90,199,270],"duration":1.618,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":1.6,"geometry_index":1908,"location":[139.080319,36.019503]},{"entry":[true,true,false],"in":2,"bearings":[34,89,270],"duration":6.693,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"weight":6.686,"geometry_index":1909,"location":[139.0805,36.019503]},{"entry":[true,true,false],"in":2,"bearings":[90,137,269],"duration":4.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"weight":4.372,"geometry_index":1910,"location":[139.08108,36.019512]},{"bearings":[88,270],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":1911,"location":[139.081455,36.019512]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Odamaki"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"72","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.72 Line"}],"type":"turn","modifier":"right","text":"Odamaki / Kendou No.72 Line"},"distanceAlongGeometry":265.075}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Turn left to stay on National Road No.299 Line.","modifier":"left","bearing_after":105,"bearing_before":168,"location":[139.078898,36.019577]},"speedLimitSign":"vienna","name":"","weight_typical":28.086,"duration_typical":28.551,"duration":28.769999999999996,"distance":265.075,"driving_side":"left","weight":28.086,"mode":"driving","ref":"National Road No.299 Line","geometry":"qvmucAcnughGzA}HP{A?cAd@os@?kT?iJQgc@?mV?iJe@aK"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4888.85},{"ssmlAnnouncement":"In a quarter mile, Turn right at Tomoegawabashi.","announcement":"In a quarter mile, Turn right at Tomoegawabashi.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right at Tomoegawabashi.","announcement":"Turn right at Tomoegawabashi.","distanceAlongGeometry":46.667}],"intersections":[{"mapbox_streets_v8":{"class":"primary"},"location":[139.081829,36.019531],"geometry_index":1913,"admin_index":2,"weight":26.362,"is_urban":false,"traffic_signal":true,"turn_duration":9.204,"turn_weight":15,"duration":20.566,"bearings":[25,62,204,265],"out":2,"in":3,"entry":[true,true,true,false]},{"entry":[false,true],"in":0,"bearings":[22,203],"duration":2.025,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":2.025,"geometry_index":1915,"location":[139.081398,36.018697]},{"entry":[false,true,true,true],"in":0,"bearings":[23,82,206,303],"duration":3.693,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":3.67,"geometry_index":1916,"location":[139.081319,36.018549]},{"entry":[false,true,true],"in":0,"bearings":[48,82,232],"duration":5.459,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":5.435,"geometry_index":1919,"location":[139.080966,36.018188]},{"entry":[false,true,true],"in":0,"bearings":[52,223,310],"duration":11.468,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":11.455,"geometry_index":1920,"location":[139.080296,36.017763]},{"entry":[false,true],"in":0,"bearings":[44,225],"duration":0.586,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":0.586,"geometry_index":1922,"location":[139.078966,36.016614]},{"entry":[false,true,true],"in":0,"bearings":[45,196,223],"duration":1.809,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":1.8,"geometry_index":1923,"location":[139.07891,36.016568]},{"entry":[false,true],"in":0,"bearings":[43,221],"duration":8.706,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":8.706,"geometry_index":1924,"location":[139.078728,36.016411]},{"entry":[false,true,true],"in":0,"bearings":[34,108,210],"duration":3.886,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":3.877,"geometry_index":1926,"location":[139.077819,36.015467]},{"entry":[false,true,true],"in":0,"bearings":[30,101,220],"duration":8.9,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":8.861,"geometry_index":1927,"location":[139.077512,36.015031]},{"entry":[false,true,true],"in":0,"bearings":[42,215,275],"duration":8.078,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":8.067,"geometry_index":1930,"location":[139.07649,36.014244]},{"entry":[false,true,true],"in":0,"bearings":[50,184,236],"duration":5.598,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":5.57,"geometry_index":1933,"location":[139.075604,36.01343]},{"entry":[false,true],"in":0,"bearings":[56,237],"duration":1.426,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.426,"geometry_index":1934,"location":[139.074842,36.013022]},{"entry":[false,true,true],"in":0,"bearings":[57,237,287],"duration":11.455,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":11.435,"geometry_index":1935,"location":[139.074649,36.012921]},{"entry":[false,true,true,true],"in":0,"bearings":[17,106,218,279],"duration":3.62,"turn_duration":0.09,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":3.619,"geometry_index":1940,"location":[139.073786,36.011717]},{"entry":[false,true],"in":0,"bearings":[38,214],"duration":0.494,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":0.506,"geometry_index":1941,"location":[139.073434,36.011356]},{"entry":[false,true,true],"in":0,"bearings":[34,139,218],"duration":3.488,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":3.551,"geometry_index":1942,"location":[139.073388,36.0113]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":1.698,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.741,"geometry_index":1943,"location":[139.073036,36.010939]},{"entry":[false,true],"in":0,"bearings":[38,223],"duration":1.592,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.632,"geometry_index":1944,"location":[139.072866,36.010764]},{"entry":[false,true],"in":0,"bearings":[43,221],"duration":2.354,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":2.413,"geometry_index":1945,"location":[139.072695,36.010615]},{"entry":[false,true,true],"in":0,"bearings":[47,228,296],"duration":5.49,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":5.606,"geometry_index":1947,"location":[139.072434,36.010402]},{"entry":[false,true],"in":0,"bearings":[48,233],"duration":0.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":0.878,"geometry_index":1948,"location":[139.071775,36.00993]},{"entry":[false,true],"in":0,"bearings":[53,227],"duration":10.286,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":10.543,"geometry_index":1949,"location":[139.071684,36.009875]},{"entry":[true,true,false],"in":2,"bearings":[179,311,358],"duration":3.105,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":0,"weight":3.163,"geometry_index":1954,"location":[139.071173,36.008958]},{"entry":[true,true,false],"in":2,"bearings":[182,306,359],"duration":7.144,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":0,"weight":7.3,"geometry_index":1955,"location":[139.071184,36.008578]},{"entry":[false,true,true],"in":0,"bearings":[37,120,215],"duration":2.918,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":2.983,"geometry_index":1958,"location":[139.070843,36.007838]},{"entry":[false,true,true],"in":0,"bearings":[35,215,301],"duration":8.036,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":8.219,"geometry_index":1959,"location":[139.070604,36.00756]},{"entry":[false,true,true],"in":0,"bearings":[10,193,282],"duration":0.742,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":0.738,"geometry_index":1964,"location":[139.070264,36.006745]},{"entry":[false,true,true],"in":0,"bearings":[13,68,222],"duration":7.845,"turn_duration":0.165,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":7.872,"geometry_index":1965,"location":[139.070241,36.006662]},{"entry":[false,true,true,true],"in":0,"bearings":[49,121,226,284],"duration":5.665,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":5.798,"geometry_index":1967,"location":[139.069457,36.006079]},{"entry":[false,true],"in":0,"bearings":[37,205],"duration":3.159,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":3.238,"geometry_index":1969,"location":[139.068889,36.00556]},{"entry":[false,true],"in":0,"bearings":[22,198],"duration":5.867,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":6.013,"geometry_index":1971,"location":[139.068696,36.005208]},{"entry":[false,true],"in":0,"bearings":[18,200],"duration":15.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":15.58,"geometry_index":1972,"location":[139.068548,36.004829]},{"entry":[false,true,true],"in":0,"bearings":[4,72,194],"duration":1.91,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":1.919,"geometry_index":1975,"location":[139.068309,36.003829]},{"mapbox_streets_v8":{"class":"primary"},"location":[139.068275,36.003718],"geometry_index":1976,"admin_index":2,"weight":2.533,"is_urban":false,"traffic_signal":true,"turn_duration":2.026,"turn_weight":1.5,"duration":3.034,"bearings":[14,104,198,287],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,true,true],"in":0,"bearings":[18,194,232],"duration":4.409,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":4.51,"geometry_index":1977,"location":[139.068252,36.003662]},{"entry":[false,true],"in":0,"bearings":[14,200],"duration":1.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.23,"geometry_index":1978,"location":[139.068139,36.003282]},{"entry":[false,true],"in":0,"bearings":[20,198],"duration":1.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.64,"geometry_index":1979,"location":[139.068093,36.003181]},{"entry":[false,true],"in":0,"bearings":[18,213],"duration":4.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":4.203,"geometry_index":1980,"location":[139.068036,36.003042]},{"entry":[false,true,true],"in":0,"bearings":[42,227,265],"duration":52.503,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":53.789,"geometry_index":1983,"location":[139.067764,36.002755]},{"entry":[true,true,false],"in":2,"bearings":[192,287,357],"duration":2.28,"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":0,"weight":2.288,"geometry_index":2009,"location":[139.066934,35.996469]},{"entry":[false,true,true],"in":0,"bearings":[12,195,231],"duration":7.066,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":7.22,"geometry_index":2010,"location":[139.066866,35.9962]},{"entry":[true,true,true,false],"in":3,"bearings":[94,158,284,351],"duration":15.825,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":16.204,"geometry_index":2015,"location":[139.066787,35.995404]},{"mapbox_streets_v8":{"class":"primary"},"location":[139.067252,35.99458],"geometry_index":2018,"admin_index":2,"weight":3.78,"is_urban":false,"traffic_signal":true,"turn_duration":2.022,"turn_weight":0.5,"duration":5.222,"bearings":[65,158,335],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[6,161,338],"duration":4.443,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":4.533,"geometry_index":2019,"location":[139.067354,35.994376]},{"entry":[true,true,false],"in":2,"bearings":[206,251,359],"duration":8.763,"turn_duration":0.142,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":0,"weight":8.836,"geometry_index":2022,"location":[139.067434,35.993997]},{"entry":[false,true,true],"in":0,"bearings":[28,69,209],"duration":4.375,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":4.467,"geometry_index":2024,"location":[139.066968,35.993274]},{"entry":[false,true,true],"in":0,"bearings":[29,107,207],"duration":12.229,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":12.526,"geometry_index":2025,"location":[139.066718,35.992913]},{"entry":[false,true,true],"in":0,"bearings":[30,115,208],"duration":5.279,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":5.403,"geometry_index":2029,"location":[139.066037,35.991895]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":16.586,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":17,"geometry_index":2030,"location":[139.065821,35.991571]},{"entry":[false,true,true],"in":0,"bearings":[30,210,346],"duration":1.818,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":1.845,"geometry_index":2032,"location":[139.065139,35.990552]},{"entry":[false,true,true],"in":0,"bearings":[30,69,212],"duration":12.879,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":13.179,"geometry_index":2033,"location":[139.065059,35.990442]},{"entry":[false,true,true],"in":0,"bearings":[32,132,211],"duration":7.772,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":7.959,"geometry_index":2036,"location":[139.064491,35.989673]},{"entry":[false,true,true],"in":0,"bearings":[33,206,301],"duration":0.363,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":0.362,"geometry_index":2039,"location":[139.063832,35.98884]},{"entry":[false,true,true],"in":0,"bearings":[26,124,214],"duration":2.943,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":2.908,"geometry_index":2040,"location":[139.06381,35.988803]},{"entry":[false,true,true],"in":0,"bearings":[34,212,277],"duration":6.767,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":6.759,"geometry_index":2041,"location":[139.063548,35.988488]},{"entry":[false,true,true],"in":0,"bearings":[51,230,351],"duration":7.974,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":7.966,"geometry_index":2047,"location":[139.062855,35.987886]},{"entry":[false,true,true],"in":0,"bearings":[50,139,234],"duration":2.607,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":2.584,"geometry_index":2049,"location":[139.061969,35.987284]},{"entry":[false,true],"in":0,"bearings":[54,232],"duration":20.492,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":20.492,"geometry_index":2050,"location":[139.061719,35.987136]},{"entry":[false,true,true],"in":0,"bearings":[25,82,217],"duration":1.429,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":1.385,"geometry_index":2062,"location":[139.061094,35.985312]},{"bearings":[37,216,313],"entry":[false,true,true],"in":0,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":2063,"location":[139.060992,35.985201]}],"junction_name":"Odamaki","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tomoegawabashi"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"jp-prefectural-road","display_ref":"72","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Kendou No.72 Line"}],"type":"turn","modifier":"right","text":"Tomoegawabashi / Kendou No.72 Line"},"distanceAlongGeometry":4899.184}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right at Odamaki.","modifier":"right","bearing_after":204,"bearing_before":85,"location":[139.081829,36.019531]},"speedLimitSign":"vienna","name":"","weight_typical":447.969,"duration_typical":439.894,"duration":443.2559999999998,"distance":4899.184,"driving_side":"left","weight":447.969,"mode":"driving","ref":"Kendou No.72 Line","geometry":"usmucAie{ghGbVvK~[dMfH|C|EpBrCpB~I|MpYzh@ft@`|@pQ`UzAnBxHjJda@dc@xWrSfZdRlMzMbVfc@rJvKjTlQfOvPfLdRnXrn@hE`KxDjJfHdMfHfH|L|C~c@dMpU~TnBzApU~T|IrIhHtIfH|H`CjEn\\dh@lBtDdKhO|EpGtGjEfHl@fSWvVUrRTbGpBnQ`PjP|MxHnGtG|CpFpBbKl@vKxAdDl@xDtDr]hj@fOrSdOzMbKbFzH|CtVfHpQpGzLpB`]xA|EbAnBl@vV`FhEzAtGpBjE|CnFlE`CrDhLvPzHfHbKxFbRjEfm@xK|[nGlIpBnFfC`CbAvD~CfDtD`GrIlItIlItDtGbA|Ej@jEUzLyAtVgHbRyF|[aKhW}H|TgHdOuDvK{AnQk@xOfCfHpBzWpBjE?`CWdDm@|EyAhHkEfb@{RvKkEtGiCrCUjI?tR`KnX`PpUrNjTnLdOrI`NrI~IxFfSnLvp@t_@|L|HzE~CnMjJvKxFxShOhL|HrNvKbVnQhAj@tRjOfH`FjElErCfClB|CtClEfHdMlMhTdV`a@fHrN`GxKnBpBjE|C`CbAnFxAjE?f^gCvD?|El@fHbApFpBjP|H|EjEdi@je@xDfCp`@dRrCfCjP~TnFbFxDxA~BbAhLzAnBT`CbArCpBlBtDjE`K"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Bear left at Myuzu Park Ent..","announcement":"In a quarter mile, Bear left at Myuzu Park Ent..","distanceAlongGeometry":520.809},{"ssmlAnnouncement":"Bear left at Myuzu Park Ent..","announcement":"Bear left at Myuzu Park Ent..","distanceAlongGeometry":55.111}],"intersections":[{"mapbox_streets_v8":{"class":"primary"},"location":[139.058958,35.982702],"geometry_index":2077,"admin_index":2,"weight":21.513,"is_urban":false,"traffic_signal":true,"turn_duration":3.32,"turn_weight":3.75,"duration":21.539,"bearings":[57,125,294],"out":2,"in":0,"entry":[false,true,true]},{"entry":[true,false,true],"in":1,"bearings":[100,150,317],"duration":7.218,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":7.02,"geometry_index":2085,"location":[139.057515,35.983507]},{"entry":[false,true],"in":0,"bearings":[100,264],"duration":3.382,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":3.297,"geometry_index":2091,"location":[139.056901,35.983785]},{"entry":[true,false,true],"in":1,"bearings":[15,79,248],"duration":16.89,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":2,"weight":16.031,"geometry_index":2093,"location":[139.056561,35.983748]},{"entry":[false,true,true],"in":0,"bearings":[68,240,304],"duration":10.925,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"weight":10.367,"geometry_index":2097,"location":[139.055038,35.983211]},{"bearings":[45,223,315],"entry":[false,true,true],"in":0,"turn_weight":0.75,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":2101,"location":[139.054219,35.982656]}],"junction_name":"Tomoegawabashi","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Myuzu Park Ent."}],"type":"turn","modifier":"slight left","text":"Myuzu Park Ent."},"distanceAlongGeometry":531.142}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right at Tomoegawabashi.","modifier":"right","bearing_after":294,"bearing_before":237,"location":[139.058958,35.982702]},"speedLimitSign":"vienna","name":"","weight_typical":60.688,"duration_typical":63.762,"duration":64.253,"distance":531.142,"driving_side":"left","weight":60.688,"mode":"driving","ref":"Kendou No.72 Line","geometry":"{uescA{onfhGaG~TkEl[{A|He@xAiApBiApB{AzAiW~OsC~CkExF{A`Fw@~Cw@nG?~C?jEhAzMpFvU`GvUzHpX`GbWjEnLdDnGnF~HrNdRtGzH"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Your destination will be on the left.","announcement":"In a quarter mile, Your destination will be on the left.","distanceAlongGeometry":443.914},{"ssmlAnnouncement":"Your destination is on the left.","announcement":"Your destination is on the left.","distanceAlongGeometry":37.5}],"intersections":[{"mapbox_streets_v8":{"class":"street"},"location":[139.054061,35.982517],"geometry_index":2102,"admin_index":2,"weight":63.708,"is_urban":false,"traffic_signal":true,"turn_duration":2.023,"turn_weight":6.5,"duration":62.241,"bearings":[43,175,206],"out":2,"in":0,"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[66,232],"duration":4.254,"turn_weight":1.5,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":2,"out":1,"weight":5.542,"geometry_index":2130,"location":[139.051924,35.982072]},{"bearings":[54,343],"entry":[false,true],"in":0,"turn_weight":5,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":2133,"location":[139.051697,35.981942]}],"junction_name":"Myuzu Park Ent.","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Your destination will be on the left"}],"type":"arrive","modifier":"left","text":"Your destination will be on the left"},"distanceAlongGeometry":452.914},{"primary":{"components":[{"type":"text","text":"Your destination is on the left"}],"type":"arrive","modifier":"left","text":"Your destination is on the left"},"distanceAlongGeometry":37.5}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left at Myuzu Park Ent..","modifier":"slight left","bearing_after":206,"bearing_before":223,"location":[139.054061,35.982517]},"speedLimitSign":"vienna","name":"","weight_typical":82.326,"duration_typical":74.997,"duration":75.57,"distance":452.914,"driving_side":"left","weight":82.326,"mode":"driving","geometry":"ijescAy}dfhGjEhCbGj@v@l@hE~CnBbAhWdHzA~C?jEQzAw@j@iAbAq`@rNsCl@{AVcGWaC?{Al@iAbAQfC?l@b@pBpFdHdOnLhApBv@pBzA|H`CnQhAfClBjEnBpBd@fCe@bAiAl@w@?{Am@gSaN"},{"voiceInstructions":[],"intersections":[{"bearings":[211],"entry":[true],"in":0,"admin_index":2,"geometry_index":2138,"location":[139.051904,35.982396]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"Your destination is on the left.","modifier":"left","bearing_after":0,"bearing_before":31,"location":[139.051904,35.982396]},"speedLimitSign":"vienna","name":"","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"left","weight":0,"mode":"driving","geometry":"wbescA_w`fhG??"}],"weight":7860.037,"duration":7317.494,"duration_typical":7407.281,"weight_typical":7953.13,"annotation":{"maxspeed":[{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"unknown":true},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[9.1,9.1,9.1,9.1,9.1,9.1,5.3,5.3,5.3,5.3,5.3,5.3,5.3,12.7,12.7,12.9,12.4,11.3,11.3,11.3,11.3,11.3,8,8,8,8,8,8,15.1,15.1,16,16,16,16,15.5,15.5,15.5,15.5,14.9,14.9,14.9,14.9,14.9,14.9,13.7,9,9,9,9,9,18.8,18.8,18.8,18.8,18.6,17.6,19.6,17.4,17.9,7.7,7.7,11.5,16.5,16.3,18.8,18.8,18.8,15.6,15.8,15.8,15.8,15.8,9.1,12.1,12.1,12.1,12.1,12.1,14.6,15.7,18,11.6,12.7,12.7,12.7,12.6,12.6,14.9,14.8,12.3,12.1,15.5,15.5,15.3,15.6,15.4,6.4,6.4,13.5,14.1,15.3,14.8,13.3,14.5,9.9,9.9,10.8,6.2,6.1,11,11,11,11,11,8.1,16,16,15.5,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,12.1,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,23.8,24,24,24,24,24,23.9,24,24,24,24,24,24,24,24,23.9,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.3,24.3,24.3,24.3,24,26.4,26.4,26.4,26.7,26.4,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.7,26.7,26.5,26.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.5,26.5,26.5,26.5,26.5,26,26,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24.2,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24.4,24.3,24.3,24.3,24.3,25.1,24.9,24.5,24.5,24.5,24.7,24.7,24.6,24.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.2,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.4,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.8,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.8,19.8,19.8,24.5,24.5,25.1,25.1,25.1,25.1,25.1,25.1,25.1,18.8,24.6,24.6,24.5,24.5,24.5,24.5,24.5,24.6,24.6,24.6,24.6,24.6,24.6,24.6,24,24.5,24.5,24.5,24.4,24.4,24.4,24.4,24.6,24.6,24.6,24.6,24.6,24.5,24.5,24.5,24.6,24.6,24.6,24.2,24.4,24.4,26.4,26.4,26.4,26.4,26.3,26.3,25.9,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,25.8,25.8,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.9,26.1,25.9,25.9,25.9,25.9,25.9,25.9,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.6,25.6,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.6,23.6,23.4,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.1,24.5,24.5,24.5,24.5,24.5,24.5,22.8,22.8,23.2,23.2,23.7,23.7,23.7,23.7,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,23.1,23.1,23.1,23.1,23.1,23.3,23.4,23.4,23.4,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,23.2,23.2,23.2,23.2,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,22.8,22.8,22.8,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,24.6,24.6,24.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.3,24.3,24.5,24.5,24.5,24.5,23.8,25.1,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.2,24.2,24.2,24.2,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.3,24,24,24,24.3,24.3,24.3,23.9,23.9,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.7,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24.3,24.3,24.3,23.8,24.3,24.3,24.3,24.3,24.3,24.1,24.5,24.5,24,25,25.1,25.1,25.1,25.1,25.1,24.9,25.1,24.8,24.8,24.8,24.8,25.1,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.6,24.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.1,24.1,24.1,24.6,24.6,24.6,24.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.2,24.3,24.3,24.3,24,24,24,24,24,23.7,23.7,23.4,23.4,23.4,23.4,23.4,23.4,23.8,24,24,24,24,24,24,23.6,23.6,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24.1,24.1,23.7,23.7,23.7,23.7,23.2,23.4,23.4,23.6,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.4,23.5,23.5,23.5,23.5,23.5,23.5,23.4,23.4,23.4,23.4,23.4,23.4,22,22,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.6,23.6,23.7,23.7,23.7,23.7,23.7,23.7,23.6,24,24,24,24,24,24,24,23.9,23.9,24.4,23.7,24,24,24.1,23.5,23.5,24.2,24.1,23.7,18.8,18.8,18.8,18.8,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.9,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.7,23.1,23.1,23.1,23.1,23.1,13.8,13.8,13.9,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,13.8,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23.9,23.6,23.6,23.6,23.7,23.7,23.7,23.7,23.8,23.8,23.8,23.6,23.6,23.6,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.7,23.7,23.7,23.5,23.5,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.6,23.7,23.7,23.7,23.7,23.6,23.7,23.7,23.7,23.5,23.5,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.5,23.4,23.4,23.4,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23,23.7,23.7,23.5,23.5,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.9,23.7,23.6,23.6,23.8,24,23.4,23.4,23.4,23.6,24.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.6,23.6,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.8,23.8,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.6,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.7,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24.3,24.3,24.3,24.3,24.3,24.3,24.3,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,23.6,23.6,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.7,23.6,23.6,23.7,23.6,11,11,11,11,11,11,14.9,14.9,14.9,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.3,14.3,14.3,14.3,14,7.8,8,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,14.7,12.1,11.3,15.8,15.8,15.7,15.7,17.4,17.4,17.4,17.5,17.4,17.4,15.2,12.9,14.9,18.3,18.3,18.2,18.5,19.8,17.4,17.9,18,18,18,9.6,9.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,14.4,14.4,14.5,14.3,14.3,14.5,17,12.1,12.1,12.3,12.3,12.1,12.1,12.1,5.6,5.6,10.7,10.7,10.7,10.7,10.7,10.7,10.7,9.8,10.8,9.8,9.8,13.8,12.8,8.8,8.8,8.5,5,13.8,13.7,13.7,15.8,15.7,14.4,15.8,15.7,13.3,9.3,9.3,16.3,17.7,17.6,17.6,17,17,16.9,16.9,16.9,16.5,16.5,16.5,14.3,6.1,6.1,6.1,13.3,15.5,15.5,16.2,15.1,16.3,16.3,16.3,16.3,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,15.7,17.1,17.1,17.1,17.1,17.1,17.1,17.2,17.2,17.2,16.6,16.6,16.6,14.4,14.3,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,17.4,17.1,17.1,17.1,18.1,17.5,17.4,17.4,17.6,18.1,18.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,19.1,14.2,14.6,8.5,8.5,8.5,8.5,8.5,8.5,8.5,18.2,18.2,18.2,18.2,18.2,18.2,18.2,20.1,20.1,20.1,20.1,20.3,20.3,18.8,18.8,19.3,19.3,18.1,17.7,17.7,17.7,17.7,17.7,17.7,17.7,17.7,17.5,17.5,17.5,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,12.4,14.1,11,11,11,11,14.6,14.6,14.6,14.6,14.6,14.6,14.6,14.6,14.6,14.6,14.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.5,18.2,18.2,18.2,18.2,18.2,18.2,18.2,18.2,18.2,18.2,18.2,19.1,17.7,17.9,17.1,17.1,17.1,17.1,15.1,15.1,4.9,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,5.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,9.6,5,11.3,11.3,11.3,11.1,11.1,13.2,13.2,13.2,13.2,14.2,14.3,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,12.6,12.6,12.4,12.4,12.4,12.4,12.4,12.2,11.6,11.6,11.6,11.6,11.5,10.1,7.7,7.6,7.6,7.6,8.8,8.8,8.8,14.1,14.1,14.1,14,15.2,15.2,12.2,13.2,15.2,15.2,14.3,14.3,14.3,14.3,14.9,14.9,14.9,14.7,14.4,14,14,14,14,14,14.4,15,14.7,14.5,14.1,14.1,14.1,14.4,11.8,11.6,11.6,11.6,11.6,11.6,13.6,12.7,12.7,12.7,12.9,12.1,12.1,12.1,12.1,12.1,13.1,12.4,12.4,13.6,13.6,13.5,13.5,7.4,7.4,7.4,7.4,6.7,6.5,9.8,9.9,10.1,9.8,9.8,9.8,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,13.6,12.7,12.7,12.7,12.7,12.7,6.4,6.4,6.4,7.6,9.7,9.7,9.7,10.4,10.4,10.5,10.4,10.4,10.4,10.4,7.7,7.7,7.7,7.8,7.7,7.7,7.7,14.1,14.1,14.1,12.8,14.4,13.6,13.6,13.6,13.6,13.6,13.6,13,13,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,10.7,11,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,8.2,9,9,9,9,9,9,9,9,9.1,9.1,9.1,9.1,9.1,9.1,9.1,9.1,8.8,8.8,8.8,8.8,8.8,8.8,8.8,8.8,11.6,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6,6,6,6.8,6.8,6.8,6.8,6.8],"distance":[45.6,4,6.5,14.2,9.3,23.5,17.3,40.7,34,69.6,26.9,51.9,53.8,17.5,9.2,12.4,193.3,156.7,12.4,28,8.3,8.8,12.5,34.7,7.3,45,7.4,51.4,46.7,47,66.5,77.1,30.6,20.2,34.4,27,46.1,26.7,21.6,81.4,11.2,17.5,17.8,16,61.8,18.7,11.6,10.3,12.1,49.1,136.1,45,208.1,86.9,24.8,79.8,145.1,103.8,132.9,56.3,99.9,84.6,29.3,124.4,80.4,49.7,61.9,71.6,24.9,47.4,50.5,20.6,35.1,51,43.7,68,61,69.7,229.3,320.2,123.2,82.1,38.3,29.8,56.9,39,85.5,177.6,80.5,97.5,13.7,101,35.1,38.6,63.4,102.7,20.1,46.2,63.7,51.2,56.4,81.6,12.5,9.5,231.9,28,127.3,24.3,99.9,20.8,53.7,34,44.3,107.4,18.6,94.1,132.1,35.1,30.9,16.5,15.1,14.2,14.7,13.9,10.9,13.3,13.4,13.7,14.5,21.1,19.1,17.4,22.7,26.5,21,8,12.4,19.6,56.4,48.4,25.4,53.7,105.7,213.8,88,190.7,109.4,192.7,86.2,29.2,311.5,96.3,188.4,147.4,440.2,249.7,140.5,160.2,197.5,165.6,103.5,111.9,69.4,53.1,88.3,92.6,138.6,161.5,171.9,197.4,235.4,295,24.8,54.5,406.2,20.8,299,129.3,196.5,29.9,65.5,69,71.4,13.6,62.8,158.5,110.6,79,46.1,21,58.9,25,95,21.1,80.2,120.7,127.2,112.8,12,29.7,58.1,68.7,50.7,77.6,108.7,101.7,103.2,94.9,107.1,201,267.9,204.5,139,29.3,83.9,91.9,13.7,20.5,25.2,19.3,8.8,13.1,12.3,10.9,13.1,22.2,19.4,11,6,15.6,24.1,43.8,53.2,16.7,21.7,19.8,25.8,22.1,20.5,24.1,16.6,34.8,26.3,21.1,15.3,15.3,25.3,32,13.4,11.3,68.5,68.3,55.8,62,33.9,173.3,85.7,121.9,102.2,108.5,76.6,72.6,169,135.2,116.4,184.1,44.1,3,76.1,45.3,65.2,86.6,218.2,117.3,14.5,30.4,68.4,139.7,31.5,15.3,13.9,96.8,88.5,94.6,129.7,177.5,133.1,109.4,89.8,152.9,108,106.8,77.2,19.6,89.3,75.1,84.4,80.9,167.1,91.3,343.4,92.8,71.8,67.3,24.7,86.8,100.8,105.2,229.7,112.5,97.9,113.3,73,63.9,68.2,53.6,57.4,43,115.5,182.3,59.6,51.3,61.3,112.3,127.5,164,48.1,87,64,49.7,52.7,58.8,61.6,73.7,97.7,44.6,37.8,33.1,50.6,65.6,60.6,64.5,37.6,60.5,37.4,37.2,69.8,76.4,42.3,78.8,70.3,71,108.7,80.8,78.5,85.6,87.5,84.7,80.6,56.3,87.1,125.7,194.6,133.8,84.8,69.4,44.9,31.6,56,73.5,58.6,51.7,57.9,64.2,78.8,55.3,48.8,62.8,74.3,77.7,64.5,90.7,83.6,64.1,64.4,93.6,94.1,84.7,93.8,70.1,82.5,129,52.7,123.8,77.3,73.2,89.2,161,84.5,164,8.5,18,45.8,58.3,49.7,18.6,30.5,36.5,47,37.1,67.1,63.9,29.1,27.8,28.9,5.2,25.7,28.3,22.4,26.2,34.5,11.3,6.1,22.4,20.5,22.5,22.6,56.4,54.1,100.8,147.7,218.3,110.9,330.1,290.1,244.3,249.3,380.6,342.7,300.7,71.9,86.1,47.2,36,95.9,104.9,110.9,79.2,8.2,36.9,48,48.3,57.5,83.3,8.4,41.6,50.7,80.6,68.8,34.9,24.8,50.4,44.4,86.3,45.6,42.7,43.9,40.8,15.4,40.6,35.8,45.4,49.5,15.3,32,15.9,84.7,75.5,75,179.2,112,35.8,56.5,58.1,16.7,63.1,84.2,66.5,66.4,66.6,61.7,69,63.9,62.7,62.6,35.1,49.1,14.6,43,80.1,116.9,153.8,109.7,87.6,49.4,28.4,87.4,92,70.5,52.5,68.5,69.9,80.1,76.2,11.9,51.1,67.5,91.2,75.8,106.1,98.9,95,65.8,49.3,46.9,66.7,56.7,57,59.5,77.1,95.7,102.7,108.3,108.3,90.8,51.9,23.4,70.6,47.9,142,261.5,234.6,181.1,117,104.5,135.6,106.1,119.5,64.1,95.6,112.7,103.2,124.8,107.1,136.5,140.4,137.5,62.5,127,161.6,222.5,111.5,124.8,90.4,109.7,86.6,102.8,82.7,75.3,64,77.9,75.6,53.3,48,57.2,71.3,66.2,50.4,59.8,7.4,47,36.6,36.6,43.2,51.3,86.8,38,41.5,41.7,45.5,51.9,25.8,28.6,83.7,129.6,63.5,64.6,52.1,58.4,61.7,88.1,12.9,45.2,93.6,60.6,20.8,59.7,61.6,92.7,161,153.8,148,92.1,67.6,37.8,37.2,129.9,167.2,128.6,137.2,98.4,80.9,83.2,76.7,118.8,112.8,91.9,103,144.3,69,89.7,88.6,105.7,91.9,49.7,46.1,82.5,39.7,26.4,41.3,47.8,44.8,83.9,118.3,96.8,128.2,37.6,52.1,46.5,60.3,41.7,43,59.4,66.7,50.8,52.2,60,46.6,48.5,47.7,46.5,40.7,40,53.5,2.2,46.4,2.3,52.3,99.5,149.7,106.8,161.4,185.6,150.2,12.6,119,104.1,25.6,96,87.6,79.3,88.7,127.1,157.9,184.6,55.8,48.6,51.4,41.7,51,59.9,45.3,9.2,60.9,4.3,35.2,66,75.2,91.6,75.2,7.4,66,46.5,33.6,42.3,85.4,69.2,68,65.1,69.1,83.3,67.5,105.1,71,42.1,64,56.6,61.5,59.5,84,39.5,40.3,59,58.5,59.6,60,37.2,35.8,49,89.7,42.8,72.6,40.3,25.8,35.1,53.7,26.5,32.4,42.9,55.9,54.5,70.8,46.6,56.8,29.4,47.4,23.6,48,44.2,52.1,68.7,55.3,44.8,61.8,73.8,70.6,10.5,45.7,43.6,52.3,48,45.2,43.5,51.4,51.2,61.1,43.8,30,38.1,22.5,21.5,55,59.1,14.4,27.5,9.3,17.4,26.5,81.4,75,49.4,42.1,80.9,58.5,90.7,45.9,7.1,62.3,58.2,69.2,12.3,59.1,65.4,42.2,62.1,51.3,21.5,63,63.5,76.7,58.9,35.2,41.7,23.4,37.3,62.7,124.1,89.2,66.4,45,106.3,110.1,113.8,96.3,86.1,77.1,113.1,128.3,123.5,65.8,122.6,98.4,84.7,79.1,75.4,44.4,88.3,28.4,79.8,26.1,52.6,82.7,54.9,5.2,34.6,21.1,111.9,92.5,76.6,70.4,101.8,23.5,25.5,66.4,123.8,109.4,148.6,229.3,250.8,18.5,233.3,159.9,93.1,110.6,113.5,245.8,117.5,145.8,138.5,136.7,47,58.1,88,74.8,17.6,23.5,39.1,85.5,74.4,114.1,60.2,34.2,103.8,98.1,23.8,15.4,66.4,64.7,58.3,77.5,61.2,36.7,56,106,68.6,50.2,28.7,18.4,19.6,39.1,118.1,78.5,80.1,94.8,162,114.1,82.9,103.9,82.9,64.6,66.6,65,22.8,9.3,38,57.2,66.3,41.8,42.8,39.8,67.3,66.9,63,83.4,44.2,54.9,49.1,35.8,38.5,25.2,19.6,59.5,26.5,30.1,79.6,155.3,64.4,138.5,73.2,132.8,88.2,136.6,8.7,128.5,112.7,99.5,126.5,115.1,126.2,136.8,261.2,110.9,105.1,30.1,30.9,161.6,76.2,71.4,240.6,68.3,96.7,90.3,103.4,266.6,4,111.8,67.6,70.5,112.4,34.7,133.6,35.7,40.8,167,127.4,143.7,202.4,124.3,56.5,8.1,196.7,221.8,30.6,43.6,100.4,111.9,132.3,193.5,125.1,66.3,68,64.3,51.2,119,70.9,129.2,67.4,83.5,190.7,62.3,3,381.4,134.6,256.8,287.6,40.7,37.8,236.5,84.6,270.2,122.4,114.4,108.6,38.3,49.7,59.4,88.8,41.9,11,63.3,57.6,58.5,28.3,107.1,11.4,46.4,28.1,30.7,60.6,77.8,54.4,70.3,13.1,23.8,93.9,81.8,108.3,71.6,121.5,33.7,69.8,40.5,78.4,48.6,50.3,76,28.3,87.1,126,109,72.3,117.9,73.3,67.8,80.9,86.8,63,8.2,25.7,15.4,73.8,320.2,213.3,41.1,122.2,51.4,45.1,158.1,209,434.2,162.3,77.7,78.6,30,50.8,6.2,34,38,41.1,38.2,19.6,36.9,49.4,61.4,40.1,20.4,107.2,83.8,107.1,100.1,386.6,136.8,81.3,59.8,60.4,54.4,63.8,65.9,31.7,90.4,84.1,87.5,18.4,5.1,15.6,80.8,52.3,64.5,41.3,3.8,29.9,96.2,83.1,24.4,51.5,43.8,74.3,28.3,51.2,33.5,71.4,48.9,48.7,110.8,13.4,34.2,38.4,47.6,18.6,26.9,24.1,23.5,31.7,18.8,17.1,18.3,25.4,22.5,129.4,141.5,42.2,43.8,45.9,49.4,42.9,47.2,48.6,50.8,45.7,38.3,33.3,41.5,46.3,42.8,26.2,15.8,47.9,44.3,155.9,50.1,45.4,47.5,42.4,40.5,53,48.7,52.4,49.5,64.2,21.7,48.5,40.1,29.9,62.7,71.8,126.9,121.4,59,14.7,34,31.7,12.5,36.3,25.8,11.2,36.8,38.7,33.6,37.9,27.6,40.2,20.1,13.1,48.6,44,45,34.8,42.6,27,29.3,40.4,39.8,34.5,29.9,37.8,41.7,35.6,48.7,31,36.2,50.5,50.8,49.2,61.5,56.4,36.4,43.8,45.5,43.4,34.2,79.5,50.5,32,35,38.2,56.6,74.4,52.6,142.9,67.5,150.1,143.1,164,45.6,144.6,69.8,55.4,38.2,89.9,71,79.8,71.1,101.2,76.4,39.2,26.7,51.7,30.1,94.9,67.1,82.2,56.3,67.1,69.3,58,30,46.7,73.2,143,143.7,87.5,92.4,112.9,105.8,58.9,119.4,83.7,129,133.6,16,746.2,31.1,70.8,26.2,106.5,238.1,218.1,219.5,209.3,65,442,3.2,51.3,68.6,73.7,69,51.7,42.5,65,33,49,63.4,82.3,55.7,126.5,56,15.2,19.6,93.7,154.9,106.1,76.9,63.8,75.7,102.1,64.4,113.3,81.4,75.6,240.8,147,43.4,30.8,252.3,179,126.3,101.5,131.1,188.8,147.9,282.2,152.3,67.5,165.7,120.2,45.5,147.2,25.8,110.7,82.2,31.4,9.7,39.6,220.5,28.2,67.1,211.6,230.5,86.6,79.9,183.8,88.3,100.3,95.2,96.2,128.9,8.1,50,53.7,7.2,41.4,42.1,50.1,58.1,50.3,50,73,82.4,65.2,41.6,118.8,102.7,54.5,53.7,47.9,48.6,51.6,50,36.3,42.8,82.3,72.6,57.5,94.7,59.6,64.6,60.7,71.7,39.6,55.7,53.4,2.4,51.6,59,64.1,68.8,49.1,63,92.6,32.8,59.8,78.4,98.9,52.9,58.9,92.9,86.7,199.9,191,119.3,97.9,171.2,64.3,10.7,22.5,110.1,75.9,101.4,122.5,122.4,53.5,96.3,108.5,60.1,122.3,66.8,42.2,62.4,85,95.8,149.1,183.4,217.9,218.4,186.9,238.6,240.3,150.9,157,70.8,124.6,131,99.7,177.4,94.2,158.5,248,247.5,344.5,25.4,142.4,100.9,29.3,91.3,102.4,135.7,161.6,176,152,116,87.2,181.8,267,336.5,249.6,179.7,69.9,163.7,159.2,11.5,14.3,37.1,26.9,54.2,12.4,29.6,6.1,12.3,15.5,18.1,16,8.8,14.5,13.4,13.4,13.8,10.2,12.4,15.4,17.5,16,9.5,9.4,37.8,15.3,16,23.8,120.4,28.4,33.9,15.6,49,36.2,30.4,22.5,17.4,16.2,31.8,26.4,17.9,16.6,14.6,19.7,16.1,70.7,99.3,106.9,263.8,64.7,61.5,65.2,73.6,86.7,73.8,18.4,60.3,93,87.2,247.7,70.9,177,115.2,46.3,137.7,140,167.7,110.9,104.8,95.6,42.1,33.7,83.8,48.3,177.9,68.9,25.5,25.7,18.8,31.1,16.5,16.6,13.3,40.1,41.2,33.2,38.4,41,60.8,59.5,30.2,188.2,40.3,25.1,7.3,19.1,19.1,25.8,31.5,8.8,22.1,25.1,12.2,12.3,23.1,23.6,17.5,3.6,15.2,13.3,25.3,138.9,78.5,9.6,76.4,9.7,46.9,58,61.7,61.7,70.5,90.6,39.5,31.2,35,99.3,109.1,26.8,90.2,46.2,30.4,63.3,26.8,13.5,45.2,48.2,150.2,85.9,109.3,24.6,38.8,15.4,50.2,91,36.2,141.4,73.1,71.6,14.6,44.6,49.5,49.8,62,23.7,20.9,18.8,15.1,19.8,17.9,26.7,20.5,18.9,26.2,29.6,32.3,27.8,42.9,58.5,60.6,48.3,54.2,55.2,52.5,61.7,51.5,79.5,77.2,75.8,5,35.5,20.7,37.3,26.7,52.2,27.2,36.7,103.1,74,58.2,66.9,79.6,167.9,260.1,136.1,66.5,133.3,87,47.2,35.9,52.9,68.1,106.7,69.6,51.7,62.3,47.3,66.7,46.5,34.8,48.6,41.5,34.1,75,68.5,71.9,157.2,225.8,225.7,230.4,227.5,221.3,264,78.6,28,95.9,171.7,29.2,58.2,260.3,30.3,63.9,101.8,23,59,51.6,33.5,43,39.6,9.3,70,51.7,50.2,73.1,35.2,38.3,26.8,28.5,44.8,169.6,252.9,99.6,21,30.1,21.3,122.7,54.4,46.4,41.5,57.3,53.9,63.1,48.1,46.3,56.1,27.6,13.7,21.1,44.1,44.7,44.5,44.3,45,117.8,254.7,358,53.4,43.7,42.8,50.8,59.7,50.6,56.3,51,52.6,56.9,75.3,62.1,55.2,56.8,66.8,53.2,49,23,87,155,52.3,79,100.4,70.8,74.5,29.5,24.2,26.9,32,24,29.2,25.1,22.6,25.3,28.1,24.1,32.1,36.7,47.2,36.8,43.1,82.6,43.8,25.1,32.2,35.8,53.1,69.9,66.1,58.3,44.3,56.1,75.5,40.8,46.2,43.4,51.1,55.8,41.4,96.7,61.3,67.1,54.8,91.4,43.6,45.1,38,74.9,73.1,38.4,53.5,44.5,26.9,42.9,34.8,52.5,43.1,64,48.9,98.5,187,100.9,78.8,81,55.7,32.2,47.4,71.3,5.5,20.5,11.7,11.7,9.7,9.3,7.2,9.7,11,12.4,8.1,6.5,7.3,7.5,10.1,61.1,5.1,9.4,50.2,11.1,5.1,11.7,7.4,13.1,10.2,71.4,5.2,8.3,159,15.1,12.3,16.6,7.6,8.8,7.4,35.6,98.8,130.9,11.1,12,12.4,20.1,12.9,11.6,6.8,88.6,31.6,27.8,24.2,13.2,63.2,16.9,27.4,25.9,2.4,17.9,53.3,7.1,11.4,16,127.2,9.2,90.3,15.6,8.8,14.8,7.3,8.2,22,29,39.6,36.5,24.9,47.5,14.7,15.3,19.6,44.3,40.4,13.7,19,35.5,14.3,16,24.5,30.8,6.1,80.3,65.8,68.8,14.8,15.2,4.3,3,75.7,30.8,16.3,52.2,33.8,16.3,17.5,45.1,55.5,18,13.4,9.7,29.1,76.6,129.4,45.8,7.2,24,80.2,53.2,55.9,33.4,66.5,27.7,46.5,38.6,36.3,82.3,20.7,19.4,26.2,21.2,25.9,69,51.1,7.5,51.2,24.8,22.6,21.8,11.7,79.3,10.2,32,17.5,18,16.6,36.1,42.3,34.9,15.4,41.1,37.7,21.3,17.1,14.4,21.7,23,9.5,13.2,82.9,41.5,35.9,23.9,19,44.2,35.3,25.3,53.7,12.7,6.6,43.5,12,16.3,13.4,16.2,10.9,34.9,22,24.4,35.3,84.4,53,19.3,14.6,7.9,12.5,12.5,21,24.1,20.3,15.8,12.5,11.4,25,44.3,35.9,54.4,45.6,41.2,30,23.1,33,30.6,17.2,44.6,11.4,7.3,9.5,13,18.9,69.1,24.4,16.7,8.3,18.5,39.1,51.7,46.1,42.7,32.6,30.9,22.6,41,100.4,28.6,14.2,30.6,25.4,43.9,27.7,33.3,49.1,4.6,42.2,19.4,14.6,10.3,9.4,12.5,26.2,40.1,64.2,27.9,23.3,8.1,13.4,7.9,13.9,11.4,56,10.2,12.6,16.7,14.4,34.1,15.4,93.3,12.1,65.8,10.3,44.3,16.8,11.2,7.7,24.1,6.3,7.9,9.7,10.2,20.8,34.8,42.5,15.2,4.6,6.6,6.5,6.6,49.8,10.9,16,11.4,7.9,12.6,7.2,9.2,21.8,35.5,35.8,40.8,37.6,22.6,15.3,19.6,39.3,21,13,14.6,3.7,13.4,6.9,45.3,8.8,9.2,4.3,3.7,5.1,63.9,8.5,5.2,14.5,7.3,5.5,5.1,6.2,2.1,5.5,18.9,34.8,6.6,6,15.2,27.6,7.4,11,8.1,6.5,3.7,4.6,3.1,5.6,42],"duration":[5.015,0.442,0.708,1.561,1.027,2.58,3.304,7.778,6.483,13.305,5.127,9.892,10.268,2.557,0.726,0.967,15.558,13.865,1.097,2.479,0.736,0.778,3.2,4.339,0.915,5.617,0.927,6.416,3.974,3.114,4.155,4.81,1.912,1.257,2.225,1.748,2.98,1.727,1.494,5.482,0.754,1.182,1.196,1.081,4.498,2.063,1.279,1.129,1.34,5.401,15.518,2.4,11.096,4.641,1.334,4.556,7.408,5.988,7.441,7.255,12.955,7.361,1.803,7.624,4.298,2.651,3.302,4.591,1.589,3.005,3.207,1.307,3.856,6.217,3.6,5.599,5.023,5.741,17.709,20.383,6.882,7.102,5.063,2.353,4.485,3.09,6.766,13.992,5.46,7.919,3.153,8.58,2.286,2.545,4.102,6.68,3.153,7.265,6.761,3.647,3.713,5.529,0.95,0.653,23.386,2.829,18.348,3.976,16.511,22.415,4.865,3.076,4.015,9.735,2.297,5.883,8.26,2.267,2.554,1.36,1.242,1.178,1.207,1.148,0.902,1.097,1.106,1.13,1.198,1.745,1.577,1.435,1.711,2,1.58,0.604,0.937,1.478,4.258,3.649,1.921,2.264,4.405,8.922,3.67,7.957,4.566,8.047,3.586,1.238,12.991,4.012,7.88,6.147,18.359,10.413,5.879,6.604,8.141,6.828,4.268,4.611,2.862,2.187,3.643,3.818,5.711,6.656,7.088,8.137,9.703,12.163,1.022,2.247,16.732,0.859,12.467,4.899,7.43,1.131,2.457,2.608,2.69,0.515,2.374,5.995,4.181,2.989,1.743,0.788,2.204,0.946,3.588,0.786,3.001,4.513,4.761,4.218,0.447,1.116,2.179,2.576,1.896,2.903,4.066,3.802,3.859,3.548,4.001,7.517,10.017,7.646,5.195,1.096,3.167,3.467,0.517,0.776,0.952,0.74,0.339,0.504,0.476,0.42,0.51,0.856,0.752,0.427,0.231,0.604,0.934,1.877,2.271,0.711,0.93,0.842,1.102,0.945,0.877,1.026,0.712,1.482,1.123,0.904,0.651,0.655,1.077,1.366,0.575,0.482,2.925,2.916,2.383,2.646,1.411,7.139,3.532,5.025,4.212,4.47,3.156,2.993,6.964,5.569,4.797,7.587,1.816,0.122,3.133,1.855,2.688,3.566,8.988,4.833,0.577,1.245,2.791,5.707,1.285,0.621,0.561,3.938,3.602,3.865,5.284,7.236,5.424,4.46,3.659,6.234,4.401,4.354,3.144,0.799,3.642,3.058,3.441,3.296,6.812,3.719,13.997,3.784,2.928,2.741,1.008,3.535,4.11,4.29,9.36,4.585,3.991,4.617,2.975,2.605,2.781,2.185,2.337,1.754,4.706,7.432,2.428,2.09,2.5,4.576,5.198,6.685,1.961,3.544,2.61,2.025,2.147,2.396,2.511,3.003,3.981,1.819,1.539,1.351,2.063,2.673,2.468,2.629,1.535,2.464,1.526,1.513,2.847,3.112,1.725,3.213,2.865,2.895,4.427,3.294,3.199,3.489,3.569,3.449,3.285,2.296,3.551,5.123,7.931,5.451,3.457,2.828,1.831,1.304,2.258,2.964,2.362,2.086,2.333,2.588,3.176,2.228,1.971,2.567,3.03,3.165,2.629,3.698,3.406,2.615,2.622,3.817,3.833,3.452,3.823,2.857,3.361,5.258,2.16,5.052,3.151,2.984,3.638,6.566,3.446,6.691,0.347,0.913,2.312,2.942,2.508,0.939,1.536,1.845,2.369,1.873,3.382,3.224,1.468,1.401,1.46,0.259,1.299,1.43,1.135,1.322,1.745,0.569,0.308,1.134,1.035,1.138,1.144,2.85,2.721,5.068,7.426,8.914,4.514,13.162,11.567,9.737,9.94,15.173,13.663,11.985,3.841,3.503,1.918,1.47,3.908,4.277,4.523,3.225,0.335,1.5,1.955,1.964,2.338,3.391,0.339,1.731,2.065,3.284,2.803,1.427,1.015,2.063,1.815,3.511,1.857,1.738,1.791,1.661,0.628,1.658,1.464,1.846,2.017,0.621,1.319,0.651,3.465,2.875,2.838,6.773,4.238,1.381,2.152,2.238,0.638,2.41,3.218,2.541,2.538,2.543,2.358,2.636,2.442,2.397,2.39,1.343,1.903,0.566,1.662,3.092,4.516,5.94,4.24,3.382,1.905,1.099,3.377,3.552,2.77,2.05,2.675,2.727,3.127,2.977,0.466,1.968,2.586,3.546,2.924,4.097,3.819,3.664,2.543,1.885,1.792,2.55,2.167,2.182,2.292,2.976,3.693,3.959,4.18,4.178,3.501,2.003,0.914,2.753,1.851,5.48,10.092,9.055,6.989,4.514,4.034,5.233,4.098,4.612,2.394,3.578,4.213,3.86,4.667,4.005,5.109,5.251,5.141,2.468,5.01,6.374,8.78,4.398,4.919,3.567,4.327,3.414,4.057,3.26,2.971,2.527,3.072,3.249,2.275,2.05,2.437,3.041,2.827,2.146,2.55,0.319,1.99,1.553,1.561,1.85,2.163,3.656,1.598,1.748,1.758,1.912,2.186,1.085,1.209,3.527,5.462,2.678,2.724,2.197,2.465,2.601,3.712,0.546,1.9,3.944,2.549,0.896,2.435,2.509,3.781,6.565,6.269,6.035,4.032,2.961,1.634,1.605,5.478,7.056,5.425,5.789,4.008,3.299,3.39,3.128,4.843,4.597,3.745,4.196,5.885,2.981,3.873,3.828,4.566,3.97,2.134,1.966,3.515,1.689,1.133,1.769,2.049,1.908,3.582,5.05,4.133,5.469,1.604,2.227,1.984,2.573,1.779,1.835,2.534,2.847,2.169,2.228,2.558,1.988,2.07,2.039,1.984,1.737,1.707,2.28,0.096,1.993,0.098,2.23,4.246,6.387,4.558,6.891,7.917,6.412,0.535,5.139,4.503,1.111,4.148,3.781,3.426,3.835,5.49,6.823,7.977,2.411,2.098,2.219,1.796,2.202,2.583,1.954,0.395,2.619,0.182,1.501,2.817,3.208,3.91,3.265,0.319,2.851,2.008,1.448,1.829,3.688,2.986,2.937,2.811,2.983,3.597,2.913,4.537,3.068,1.843,2.804,2.478,2.85,2.731,3.858,1.811,1.853,2.71,2.682,2.739,2.754,1.708,1.574,2.115,3.873,1.85,3.137,1.737,1.114,1.429,2.183,1.076,1.32,1.75,2.276,2.22,2.886,1.9,2.316,1.2,1.929,0.964,1.954,1.803,2.125,2.797,2.254,1.825,2.521,3.005,2.88,0.427,1.865,1.778,2.13,1.959,1.842,1.771,2.096,2.09,2.491,1.785,1.225,1.562,0.925,0.878,2.241,2.409,0.586,1.155,0.371,0.71,1.082,3.316,3.06,2.012,1.717,3.301,2.382,3.7,1.869,0.296,2.567,2.403,2.855,0.502,2.409,2.662,1.722,2.531,2.094,0.878,2.615,2.619,3.16,2.429,1.45,1.72,0.964,1.535,2.585,5.117,3.678,2.736,1.864,4.38,4.537,4.692,3.969,3.55,3.179,4.662,5.288,5.088,2.713,5.054,4.056,3.492,3.261,3.109,1.83,3.628,1.18,3.322,1.085,2.166,3.407,2.259,0.218,1.45,0.86,4.564,3.77,3.125,2.869,4.153,0.958,1.031,2.768,5.161,4.562,6.194,9.561,10.453,0.771,9.728,6.668,3.88,4.611,4.733,10.243,4.896,6.076,5.774,5.695,1.959,2.424,3.62,3.076,0.723,0.99,1.61,3.521,3.064,4.703,2.479,1.418,4.232,4.001,0.99,0.619,2.67,2.58,2.322,3.092,2.437,1.475,2.232,4.29,2.771,2.027,1.158,0.734,0.799,1.592,4.814,3.198,3.263,3.864,6.601,4.65,3.38,4.235,3.379,2.632,2.712,2.65,0.927,0.378,1.549,2.331,2.704,1.704,1.743,1.621,2.746,2.727,2.567,3.398,1.804,2.236,2,1.46,1.57,1.031,0.814,2.461,1.095,1.227,3.238,6.321,2.625,5.644,2.982,5.416,3.593,5.571,0.353,5.242,4.595,4.058,5.157,4.692,5.145,5.575,10.65,4.524,4.285,1.225,1.278,6.656,3.137,2.943,10.045,2.846,4.03,3.767,4.307,11.268,0.17,4.773,2.889,3.014,4.799,1.482,5.704,1.501,1.702,6.968,5.312,5.994,8.447,5.183,2.396,0.346,8.302,9.36,1.294,1.839,4.25,4.721,5.579,8.16,5.36,2.829,2.905,2.746,2.187,5.08,3.027,5.515,2.876,3.568,8.141,2.584,0.127,16.082,5.673,10.827,12.129,1.75,1.611,10.081,3.585,11.398,5.165,4.826,4.585,1.614,2.098,2.506,3.745,1.793,0.47,2.695,2.455,2.49,1.212,4.557,0.487,1.984,1.197,1.312,2.584,3.319,2.474,3.194,0.562,1.02,4.009,3.506,4.621,3.057,5.191,1.436,2.981,1.728,3.347,2.079,2.145,3.247,1.208,3.716,5.375,4.649,3.081,5.03,3.13,2.892,3.45,3.703,2.686,0.349,1.085,0.649,3.111,13.493,8.981,1.732,5.146,2.177,1.881,6.594,8.711,18.104,6.764,3.242,3.279,1.25,2.126,0.253,1.434,1.585,1.729,1.585,0.834,1.57,2.044,2.543,1.687,1.093,5.725,4.477,5.722,4.33,16.695,5.905,3.511,2.584,2.607,2.35,2.755,2.843,1.368,3.906,3.633,3.775,0.796,0.214,0.666,3.444,2.228,2.751,1.762,0.159,1.278,4.1,3.547,1.042,2.197,1.866,3.169,1.195,2.213,1.449,3.086,2.116,2.105,8.034,0.97,2.467,2.784,3.45,1.347,1.95,1.75,1.705,2.293,1.366,1.237,1.327,1.84,1.63,9.384,5.971,1.782,1.847,1.935,2.083,1.809,1.989,2.049,2.141,1.927,1.617,1.405,1.746,1.953,1.806,1.102,0.662,1.997,1.844,6.497,2.088,1.891,1.981,1.769,1.689,2.206,2.03,2.184,2.065,2.674,0.905,2.024,1.72,1.263,2.65,3.028,5.351,5.12,2.489,0.635,1.429,1.33,0.528,1.542,1.093,0.471,1.554,1.631,1.419,1.598,1.166,1.692,0.848,0.555,2.051,1.854,1.896,1.468,1.799,1.138,1.235,1.705,1.679,1.454,1.264,1.593,1.76,1.5,2.056,1.305,1.529,2.129,2.142,2.079,2.593,2.379,1.537,1.845,1.919,1.831,1.443,3.355,2.127,1.353,1.474,1.61,2.39,3.135,2.245,6.095,2.882,6.403,6.105,6.996,1.981,6.179,2.983,2.367,1.63,3.839,3.033,3.407,3.036,4.272,3.223,1.657,1.135,2.195,1.285,4.047,2.866,3.511,2.4,2.868,2.957,2.476,1.281,1.991,3.128,6.102,6.071,3.692,3.899,4.76,4.464,2.483,5.04,3.531,5.438,5.637,0.675,31.463,1.312,2.995,1.128,4.494,10.05,9.195,9.279,8.837,2.74,18.645,0.137,2.184,2.895,3.108,2.913,2.183,1.793,2.74,1.394,2.069,2.672,3.5,2.375,5.394,2.388,0.654,0.84,3.997,6.608,4.527,3.282,2.724,3.229,4.356,2.745,4.836,3.47,3.282,10.161,6.204,1.845,1.313,10.641,7.553,5.326,4.282,5.53,7.965,6.238,11.905,6.425,2.846,6.992,5.071,1.898,6.221,1.091,4.688,3.459,1.308,0.414,1.691,9.417,1.217,2.762,9.027,9.835,3.693,3.412,7.84,3.768,4.281,4.059,4.107,5.498,0.345,2.118,2.269,0.309,1.765,1.798,2.137,2.478,2.145,2.137,3.112,3.517,2.782,1.774,5.071,4.38,2.326,2.292,2.045,2.074,2.201,2.103,1.525,1.806,3.476,3.062,2.426,3.993,2.515,2.724,2.564,3.024,1.67,2.352,2.262,0.1,2.205,2.519,2.738,2.937,2.097,2.692,3.956,1.399,2.555,3.347,4.176,2.258,2.514,3.963,3.7,8.532,8.152,5.091,4.178,7.305,2.744,0.464,0.961,4.693,3.237,4.326,5.222,5.218,2.21,3.966,4.464,2.476,5.029,2.754,1.739,2.605,3.541,3.997,6.216,7.649,9.086,9.109,7.792,9.949,10.019,6.295,6.547,2.95,5.196,5.465,4.158,7.394,3.929,6.611,10.339,10.323,14.364,1.061,5.935,4.208,1.243,3.86,4.321,5.722,6.813,7.426,6.409,4.893,3.675,7.67,11.261,14.191,10.545,7.593,2.952,6.917,14.429,1.045,1.295,3.373,2.438,4.907,0.83,1.985,0.41,0.859,1.075,1.262,1.116,0.613,1.012,0.934,0.932,0.962,0.713,0.865,1.07,1.22,1.115,0.664,0.654,2.631,1.067,1.12,1.663,8.419,1.983,2.44,2.001,6.129,4.387,3.684,2.725,2.105,1.962,3.846,3.206,2.162,2.009,1.771,2.385,1.952,8.568,6.786,8.83,25.394,4.116,3.91,4.179,4.687,5.018,4.246,1.063,3.475,5.351,5.014,16.378,7.513,11.909,8.343,2.538,7.603,7.6,8.482,6.399,5.878,5.322,2.34,1.881,8.689,5.003,17.408,5.947,2.201,2.216,1.62,2.678,1.419,1.43,1.152,3.481,4.9,2.31,2.669,2.86,4.263,4.135,1.804,15.566,3.332,2.042,0.596,1.57,1.576,2.13,5.699,1.577,4.094,2.335,1.144,1.144,2.146,2.199,1.626,0.389,1.396,1.369,2.568,12.108,6.171,1.106,8.664,1.153,9.493,6.241,4.516,4.516,4.462,5.812,2.757,1.98,2.227,7.51,11.672,2.861,7.566,2.636,1.739,3.596,1.593,0.794,2.703,2.85,8.94,5.209,6.613,1.487,2.721,2.533,8.297,15.058,4.749,9.153,4.75,4.449,0.971,2.765,3.048,3.063,3.811,1.512,1.325,1.202,0.961,1.261,1.139,1.698,1.305,1.2,1.666,1.886,2.055,1.768,2.735,3.719,3.858,3.073,3.449,3.517,3.065,3.61,3.016,4.644,4.521,4.43,0.291,2.073,1.205,2.251,1.612,3.15,1.91,2.589,5.583,4.006,3.15,3.621,4.31,9.093,14.087,7.369,3.599,7.217,4.715,2.555,1.945,3.052,3.974,6.234,4.068,2.858,3.589,2.739,3.844,2.668,1.942,2.693,2.181,1.793,3.947,3.599,3.785,8.263,11.875,11.868,12.118,11.963,11.635,13.883,4.135,1.472,5.038,9.023,1.535,3.058,13.679,2.134,4.38,11.933,2.694,6.904,6.045,3.933,5.039,4.642,0.507,3.85,2.849,2.758,4.02,1.939,2.105,1.335,1.416,2.227,8.439,12.402,4.902,1.12,1.6,1.106,6.356,3.014,2.657,2.353,3.253,3.053,3.584,2.728,2.625,3.182,1.591,0.785,1.206,3.554,3.602,3.584,3.571,3.632,9.495,20.536,28.858,4.309,3.519,3.457,4.092,4.809,4.083,4.54,4.109,4.242,4.589,6.046,5.02,3.912,5.165,6.065,4.832,4.442,1.577,5.955,10.616,3.579,5.416,6.87,4.85,5.101,2.025,1.655,1.842,1.932,1.45,1.768,1.515,1.365,1.532,1.696,1.459,1.935,2.221,2.853,2.223,2.356,4.484,2.399,1.358,1.748,1.937,2.876,3.783,3.579,3.16,2.396,3.038,4.092,2.208,2.502,2.35,2.769,3.018,2.242,5.238,3.322,3.633,2.964,4.951,2.359,2.443,2.058,4.051,3.957,2.11,2.94,2.447,1.477,2.356,1.915,2.885,2.369,3.516,2.686,5.417,9.831,5.724,4.408,4.732,3.256,1.884,2.766,4.716,0.363,4.232,2.65,2.118,1.757,1.683,1.311,1.762,1.982,2.261,1.462,1.171,1.323,1.358,1.834,9.118,0.53,0.98,5.199,1.151,0.532,1.211,0.767,1.359,1.064,7.399,0.541,0.854,16.494,1.561,1.282,1.722,0.781,0.92,0.762,3.697,21.989,16.378,0.988,1.06,1.114,1.806,1.079,0.88,0.518,6.698,2.25,1.953,1.686,0.92,4.41,1.175,1.913,1.807,0.163,1.25,3.716,0.497,0.795,1.115,8.869,0.64,6.291,1.092,0.613,1.031,0.509,0.574,1.534,2.039,2.762,2.548,1.73,3.312,1.027,1.068,1.366,3.085,2.816,0.955,1.323,2.478,0.998,1.302,1.951,2.503,0.494,6.478,5.305,5.552,1.282,1.735,0.368,0.264,6.522,2.677,1.63,6.744,4.425,2.124,2.281,14.404,6.319,2.04,0.97,0.688,2.063,5.502,8.535,3.021,0.59,1.823,5.271,3.502,3.916,2.38,4.652,1.936,3.12,2.586,2.433,5.641,1.437,1.401,1.871,1.51,1.841,4.918,3.648,0.498,3.515,1.711,1.604,1.545,0.827,5.532,0.864,2.76,1.506,1.553,1.433,3.113,3.129,2.767,1.205,3.226,2.941,1.786,1.411,1.194,1.797,1.91,0.748,1.229,6.675,3.063,2.646,1.775,1.409,5.912,4.732,3.385,7.201,1.925,3.057,4.443,1.209,1.612,1.366,1.658,1.107,2.458,1.539,1.698,2.46,5.886,3.694,1.344,1.025,0.548,0.873,0.867,1.463,1.683,1.417,1.099,0.873,0.795,1.746,3.084,2.501,3.793,3.18,2.879,2.09,1.609,2.301,2.297,1.383,3.518,0.896,0.577,0.747,2.069,2.992,10.887,5.262,1.731,0.851,1.895,3.887,4.941,4.409,4.093,3.119,2.951,2.159,5.319,13.001,3.712,1.832,3.992,3.289,5.696,1.976,2.37,3.486,0.366,2.965,1.435,1.08,0.757,0.692,0.92,1.935,3.093,4.941,2.627,2.174,0.751,1.245,0.731,1.298,1.056,5.206,0.952,1.165,1.558,1.34,3.171,1.44,11.276,1.453,7.954,1.239,5.351,2.034,1.342,0.936,2.907,0.763,0.949,1.172,1.235,2.508,7.18,4.686,1.676,0.504,0.726,0.726,0.726,5.482,1.22,1.757,1.253,0.863,1.389,0.792,1.01,2.398,4.042,4.066,4.637,4.273,2.573,1.744,2.233,4.459,3.838,4.172,2.406,0.617,2.201,1.145,7.461,1.457,1.513,0.702,0.609,0.845,10.525,1.4,0.863,2.391,1.192,0.91,0.845,1.023,0.342,0.908,3.113,5.73,1.084,0.99,2.506,4.553,1.216,1.849,1.352,1.085,0.54,0.669,0.452,0.801,6.103]},"incidents":[{"id":"11502577984456564","type":"construction","creation_time":"2023-07-18T15:10:00Z","start_time":"2023-07-18T15:10:00Z","end_time":"2023-07-18T15:25:00Z","iso_3166_1_alpha2":"JP","iso_3166_1_alpha3":"JPN","description":"Overtaking lane restriction","sub_type":"construction","sub_type_description":"Pavement construction","alertc_codes":[410,34],"traffic_codes":{"jartic_cause_code":410,"jartic_regulation_code":34},"lanes_blocked":[],"length":2533,"south":36.27893,"west":139.095031,"north":36.3012,"east":139.098129,"congestion":{"value":101},"geometry_index_start":1182,"geometry_index_end":1227,"affected_road_names":["Kan-Etsu Expwy"],"affected_road_names_by_language":[{"language":"ja","names":["E17/関越自動車道"]},{"language":"en","names":["Kan-Etsu Expwy"]}]}],"admins":[{"iso_3166_1_alpha3":"JPN","iso_3166_1":"JP"},{"iso_3166_1_alpha3":"JPN","iso_3166_1":"JP"},{"iso_3166_1_alpha3":"JPN","iso_3166_1":"JP"}],"via_waypoints":[]}],"geometry":"ir~rdAabnuiGLz^?xAe@fC{AfHc@jEQjOP`KPl[{AlVmIzm@{AlQh[nGaGfc@tGrDrCzAjEpBhhBr_@lsAp]jEnBzLfH`CzA`CnB`CaFzLaPlByAvVuInByAfSqXwKm[iLk[gSaf@eVml@sGoQyDaKkEuUeDwPcGq]sCwPw@}Mc@yw@?yFw@aKiAaK{AsIiLyf@aCaKw@yFQcF?oGzAaa@`iAlVhWnGfoBng@hm@bRhL~Cfi@lQnlAf^pv@~TreAz\\`]`Kft@~Tbl@lQrNjEpaAhYjj@rNdZxFda@xFzf@jE|Ll@pYj@j[?pJ?tRk@j[iChWgCpd@oGp`@oGde@uIb}B}^|nDem@tbAwPbl@kJlTcAvOWx^pBlTtDhm@rN~~Aj`@lj@rNts@nQnF`Aju@|R`RjEzSbFba@vKpv@dR~IxAlXjEhb@bFj[tDf^jEbl@|H|El@dDl@n_CfYrNbAt@xwA?~O{ArdApJcAb]j@`R?zWUd{@_DlIUrs@_D`iAsDtRWjP?fH?bGzAnFnBjElErCxFhA`FPfHc@fHoBnGeDxFgHfHuGxFkEdHoFxKyD`P{AdMLpDTrGv@nL`C`f@`Cj`@PvPdD|c@~IlgA|[zoCzL|y@hb@t|BpU`fA~j@xyBjT~t@~ElQfnAz`EzWrz@`o@dtBrd@rzAxoBjpGf_AzyC~c@ruAbh@lbB~n@f{Bbh@tfBzWh`A~X`fA`Ntk@pJba@|Pnx@pQj{@zWrzA`Y|jBlXvrBzWfeCnXd`DdZbjEhA`PrCrd@|f@`vGhAfMb]flEhLvwAtR|eCzApSnFvk@tGzm@zHho@v@fHjIzh@p\\jgBjTlgA|Plq@~Ib\\rCnLnMzc@hErNnXfy@vDxKvVpn@lc@~eAng@dhAhb@h`AnBbFtGvPnQj`@tRdh@lMn]zSpn@|[xaAzWz~@hWj`A~Th{@fSheA`h@taCzx@pkDjj@bcCb]lxAvDdRxOtu@fS|y@nBnGdDxKnF|MxDhJzA~CrCbFrCjErC|CxDtDjInGzHvDrDdB`Bv@`GfCvKtDvVxF|[dHtGhCpJ|CxHjEvKpGjInGfHpGlIrI|ExFdOnLvKfHlI`F`GpBbGpBzLpB|Pj@pF?hEUde@uDde@gCf^{Ava@l@`RUf`BbA~n@fCtbAxKbw@zMly@hTbh@rNde@vPxuApn@tbAri@tw@lg@|vAnbAfSvPd@l@ba@|^fSbRn\\~Y`d@`f@bxAlgBbl@rz@xD`FpJrNfW|c@xp@hjAjIvPfDnGrCxFx^tu@`Yps@|[jv@ta@nnAjj@nnBp\\ftApU~eAnQfy@f^jbBbVrdAnXlbA`Rho@dD`K`Yft@xSnl@dZfo@`Ydm@d{@lxAlc@vk@dhChgD`a@~o@vVng@bRlg@|E|MxStu@zLdcAzHjgAtGx~CvDbmArJvaApUzhArRtk@zSfc@zWdc@xS~YvV~Y`RlQ~u@ri@nwA|~@j[~TbVhTdZfYpk@jv@pk@rdAju@h{AxOfY|_@vk@fZb\\~ThTzWzRz[zRf^lQxe@vPrs@dRvV|HrR|HxO|HzW`Pf^dWrYfYrYn]lMdRlTt_@bKhT~I~T|Phj@vO~o@jEl[~Ift@|Efo@xD~o@jEhjArC`w@v@tu@Ptz@P`|@iA|y@iAbw@mB`f@yDh{@mItuAeOdeCkIj{AaC|y@}Afo@u@f^?~T?`f@hAdr@rClg@dDnb@bG`f@~Iri@dObr@hLxa@hLx\\|Prd@vVri@h[dh@zWt_@de@zh@rd@xa@t]lVx^fTro@zWhq@|Rhm@lL`s@|Hhf@bAhm@VjgAqBn\\cAldA_Djj@?`h@l@xp@jE`xAdRvl@rN|vA`a@rCl@xHxA|WxFf^bKpYrIzHfCvOfCfSfC`Y~CxSl@rd@j@zb@l@dOxA`N~ClMfHhAbArJrIjI|MjEnLdD`PrCjVRxF?fCPrNQfMe@rNw@rNmB`f@sBld@yEvdAgHheB{LfvCoFtkAyStcFoQ|gEgO`hDwOpkDmXlfGqUflFgS`oEgDtp@wDrz@{At_@}AzWaG`aAcGlgAaGtkAyDtu@QtDiApXiAj`@oBj`@aCvf@kEpx@c@rDsCl[eDva@mItu@mIdm@}EvUsChOmIt_@yHl[kT|t@qJj[eKrXwKfYcKbWeDpGwKlVeKzR_NpXkP~YyDxFqJ`PwDnGq`@zh@g^nb@m_@j`@ynA~jAao@lq@sNrNuVfYwVvZ}ExFwVr_@s]vk@qU|c@{Sje@eS`f@yOrd@}Pri@aNlg@iLng@qJdh@wDlVcGt_@w@|HwDb\\gHru@qJfoA}LxhB_JhjAkItz@}Eh`@aCdRmMfy@kPj{@aNll@cKj`@gOhj@}Phj@qUho@cVvk@mBbFsNx\\_Uhe@g^lq@sYdh@ee@xw@ib@ft@k_@ps@_U|c@sNj[{LvZoQlg@aNxa@iLdc@{Ltd@aNlq@sNz~@iLrdAyHpiAeDfjAw@f~@b@dc@RhOzA`p@hAh`@~I`aBlTjsD`Rz`DlM~{BbG|oAjElgAxHv|AhHbhAfLtpAtGhj@hLr_A|PhjAxOzcApUjqAfSheAxZvwAr]dyA~_@ruArN`f@p`@bmAtl@h`BpaAhbCva@t_Ave@lgA|[xr@|_@r_AtYlq@h[n}@bRns@`N`p@|Ipi@~Ips@pFxr@lB|c@hAj`@d@xf@Stp@gAbm@oBxa@eDdh@e@~CwD|^sCzWsCzWcGj[mIj`@sRjv@{HlV}IpXeKzWiL~YsNp]cGzMgHjOeZpn@ah@piAuR|c@aRhe@}L|^_Nfc@oM`f@iPnx@iApGcGx\\iLd~@oFdh@iAdMuCfh@_Cri@{Ap_Aw@foBv@djBdD~eBrC|~@`Czm@hAfYnBpX|InxApQhqBdOjvAfSh{AxOh`A`Nft@nQft@nQho@f^dhAp`@taAn\\ps@hb@xw@jq@zmAzWzc@f^~o@n\\vp@j_@v|@zWbw@dKd^~Ib\\jPht@|EfY~BvPjEtZpF~^dDn]tGnx@fHtpAbGvaAbK`wArCpXjEnb@|Ef^~Ivf@tG~YfHtZ`N|c@nQlg@lMp]xOx\\fSj`@xOzWnQxW`RlVbR`UjPlQhPvPvVvUb@TlTlQb@V|WdR~n@nb@|gAxr@`s@|c@fnAtu@fyAp_A|gArs@xD|Ctw@~j@`o@dh@pJtIjj@vf@de@je@ba@nb@de@vf@ft@|y@vbA~eAbmApsAbVfYbRbWrRhYnMvUrNx\\vOdc@xHb\\jAtDbKvf@PzAxDlVtGvk@jExr@nFd~@xDzr@b@|CtGvk@|Ef^jE~TbGvZ`Rru@bR|h@xSvf@~Tfc@zW|c@x^pi@`Yba@ng@ft@dZfc@rN~TpUva@pQ~^nQdc@dOfc@xSps@bGpXbGfYjI`f@fH`f@pFng@vDdh@nBpXv@zWt@`a@Rn}@e@x\\mBlq@oBtZiAvPoBbWoFfc@aCvPaC~ToFl[qJdc@eKxa@wOvk@wKj[eOba@gH~OmMtZqFpLaNtZ{LpXwOx\\mTvf@iP~^oMnXsRpb@eVpi@qUng@{AjEoMhYgLpXaNf^iLb\\_Jj[{HtZkIl`@uG`a@uGdh@eDx\\}ArS{AfYe@rNc@|MQhe@?dh@P~Hb@bRRlEb@`Kd@lQjEbw@xDxr@lBba@|Ab\\dD`w@lBng@hAd~@R|^?~Cw@hj@iAng@kEpn@QpGkElg@gH`k@kEj[eKng@kIj`@gDnL_Nvf@yO`f@qUnl@oQ`a@qJzR{LlVcGxKwKpS_Uba@ei@zcAc]tp@ySje@{LfYc]|~@i[dcAaYlgAuRn}@sNxw@qJxr@oMvkAqNhvAsNxrAcGvk@gStpAoQr_A}Ptu@}Plq@yOfo@yHl[cRxw@wDlQgOzr@eD~OgHxa@wKlv@cGzc@QpBsClV{AfMqJtkA}Ez~@oBft@w@~o@?~eAPjORvPhAdm@jE|tAvD|jAtG~eBvK`~ChL~lDb@xKvKz`DxHxmBrCr_AlEtkAvDxmAzLliDrCtpA|ApdB?p_B{Ad~Aw@t_@iAlg@sC`|@aCzr@w@`Ku@hO}A~Y}E|y@}Ebr@cKbmAkEdh@oBlV_J`fAgHlbAiAhOc@tI}Ell@sCvk@}Alg@iA~t@@ri@?pX?`f@t@zhA`Cpn@zAxa@v@zRd@vKv@nLzA~YbK|oAzHht@pJ|t@rNd~@`]piBvVzhAvO|t@tRdcAhLjv@zHhj@nFll@xDvk@hArNPlEzAfYhAvf@v@dm@Qb\\Qx\\e@tZiAzm@eDdm@yDhj@yHxw@kEx\\yHfc@{H|^}ElVcGzWeDhOaCvK{Ltd@}EhOcGlQyS`p@sh@b~AyOxf@qd@nsAuRvk@_`@`rAmTjv@y^tuAw@rDi[lqAcVbhAiSr_AuVbrAyS|jAeVbrA{WdyAym@pkDiSbhAoQpdAeD|ReDpSyZfjBqJbr@yHho@ib@z`DgHdm@_J~`AyHx|@yH~eAmT|vD?xA}EllAaCzm@mB~o@gD`mAQdWmB~{Ae@zWQl[QlsBv@vwAhAbcBxHrkCvG|tA~B`f@RrDtR|eCh[puCtCpS|Eb\\~MlbAfSzhAvVjvA~_@n_ClT`rAfHvk@tGdm@|E~j@jExa@pJtpAdD~o@`GnxAhAzm@hAdy@rCxcCd@jj@?bAjIphGhAv|A`C|qDnFhgEPj[b@hYrCvcDv@|y@xDd{D~BdtA`CpnA|EfjAnBhYdD`a@|Eng@hLrz@nFtZhAbFvKdh@vK|c@zL|c@|EvP`]r_A|A`FlM~YtGhOlI`PxSj`@vZzh@zStZvZxa@fDlExHhJ|f@ri@lc@xa@vp@hj@da@fY~y@ri@dO`K~_@fYnQjOhb@r_@xS~TlTvUn\\he@~IfMl_@ll@rh@~eAf^h`AjPnl@rYfjA~Mrn@lIll@~Itu@~I|y@vDhj@RtDt@vPd@rIrCbr@nF~}EjElsC|Al[rGnsAnBnb@zAf^~IjlBfSlnCpv@teHzS`mB`Gft@pF~t@zApSfDxa@PfCzAlVzAfY|Al[lBfYv@nLhApX`C`a@zAri@zAtZd@dMnBpiA~Bdy@|ApiAnBrdA|IblGtCb~AhEbw@fDdh@|Edh@|E|c@jIpi@dKhj@jErSxSnx@bVbr@rYdr@xDrIv@xArCfHh[~j@tR~Y`Yf^hPdRv@l@hLvKlj@vf@hf@f^dKxFlX`PpU`Kjf@`P`NjEvZfHnQfCjf@fHdZ|CdZpB||@bFnFT`RxAlTzArYxAlI?`Nk@fLqBvKgCxOcFfHkE`GmEbGyFzHwK`GaKzm@}cAdp@klA`NwU`NcWdO{W|PgYrNwUjPyWnQ{W`RiY~PuU~MeRhLiOxO}RnQuUjPsS~IaKhEyFtRwUnQqSdbAsdAjTuUfSeRzSsS`RwPpQiOfWiTpUeRhWqSbVeRt]mVlIyFbVwPrRyLpMiI`]wUhb@cWr~@wf@h|@}c@p\\oQnFgCjP}HdOeHjEqBnQuIhLaFxD{A`R}HtRkJjPeHtR_IlMaFxSuInIcDzEkBnXaKbVuIvVsInQyFpU}HlMuDrNkElTgHlTyFnQaFdOuDfSyFpUyFbRcFrYyFvOuDtRkEvZcFxZyFdZkEba@kEf^kEfSqBhWgClX{AhWcAbRcApk@qBh[U~PWrR?lT?x^Vth@bAn\\bAznAdHpd@lEhrArNvmAzRfyAvUhW|HrnArRle@lHn]pF~SfDvp@rIjf@xFpk@tDzf@bAvw@pBxi@yA~Tm@~MU|[{AxOcArs@}H`d@oGbl@cKt]eHlc@cK~c@{Mt]oLrNyFhWaKrd@sSbfAcm@hcAgt@|f@ob@zf@eh@`o@er@fi@yr@jTg^fi@s_AlX_p@bh@{hA~c@}oA`C}HhcD}|M|E{R|Lem@|DuObWybA`s@uwCnn@}jCtl@_mCtl@geC`Neh@l~Aa{GPcArJu_@~M_k@vO{m@xOij@hL__@~IgYjPwf@fH}RlMa\\fSgc@rY{m@nQg^hm@waAfSy\\jEaF`GgH|b@sn@|`AieAln@uk@zb@y\\`]eWnc@_Zhq@aa@j_@{Rly@g^hi@iThf@{Rb}Bk{@xjAog@pUiJrNgHl{ByrArtAi`Aly@wp@hm@eh@tw@ey@tmAawAly@chAdkBonCj|@yhAdZu_@~dA_kA`s@gt@hSeR|`Aw|@|JeIbr@yj@jf@{\\`NiJrCqB`ReMzhBqnA|LgHp`@gTliBk`AzsB{cAlj@_Zzf@qX~vAwaArh@k`@hm@wf@fi@og@di@{h@~u@gy@nBqBxSmVxS_ZzAqBfOqSrN_U`RsX~Ty\\|P_ZnQgYlXwf@|[wk@~Tgc@nMuUrh@s_A`d@uu@fSm[rRk[pQcW`ReWzS{WfScW~MaPjPqSzb@ec@l_@q]pYwU~j@}c@j[_Uf^wUn\\gTxb@wUtRwKj[kOdZsNd@UrYeMr]sNba@eMnc@sN~XkJda@kJhq@iO|P_D~_@yFjj@gH~u@eHn\\iC~_@yA`s@qBro@yAdoBiC`jByFpaAeHju@}Hv|AgYva@cKvDcAbKqC`z@mU|f@mQrs@_Zn}@ob@v{@wf@`YoQfm@wa@xp@kj@dZyWju@{r@h[o]|PeRnXy\\p`@}h@zb@up@ju@ymAv{@_fBpaAc~BpeAg{Bn}@kgBvuAm}B`{AcyBv{@ehA|`AmgAt]g^xt@kv@ly@kv@fm@af@hrAobAdl@aa@|kAmv@j{BmlAz~BmbAjrDoxAhLmE|gAmg@dp@ya@~MoGdl@{\\dp@}c@v_Aup@|gAwaAnlA_kAb~@afAtl@ox@p`@ak@paA{~AxyAurCdkBw~DloAamCzx@ieBpUwf@`s@w|Atl@c~A|AcFzAgHvDyWhAoQu@sd@SqG?qS?gC?qGd@sIzAaK`C}HnBiChEkEjE}C|EqBpFcAvD?|ETbGpBtGtD|E`F`ChC~BfCnMdRdDnG`C|HxDzMh[~jA|EvPbGhTnB|H~If^pJrS~BpSRrNS`K{AtIyHlQuG|MeDrIoBtIw@|HHtLHdJnFfo@dO`aAzSrdAxm@~lDrJpi@fHdh@tG`k@|Ejq@|Etz@zAbr@PxKPzh@u@r_AaCj{@sNbjD_C~o@qJdyBqFnnA{A~^uGb~AgHr_B_JvrBkEtkAkElgAwD`aAw@b\\c@lVv@dy@zAj`@~IzyBrCpn@?vPe@xPiAvKeDrSmBrIoBtIaCxFcKlViLlVmIbRcK`U{LtUgS`a@uRj`@{H`Pi|@piBiLtUcGfMgAfCkErIkEtIcGzMkIvPw@tD{A|M{A`PSnGRnGzArN`CrNlBjJb@bA`CfH`CxFnFzMlj@foAhWnl@zArDbVvk@|AtDzLtZhPba@pQdc@nQfc@lTdh@dZft@pJlVfHlQjIrS|Wv|@hWrdApCvPrNrz@xDf^`CpSvDjj@jAlQb@fHzAf^v@j`@|AjgBt@tz@d@|jAP`PP~YPrIv@xa@bGn}@vDbWtRd~AtGtp@|E~o@v@|H`Cp]`C`a@rCba@dDpi@v@jOhAdMhAxKzAzH`CxK`CjJ`GrN~EhJnFfH~I`KzLjJrNjJnMbFbVnGx^|H|_@rI`YfHn\\fHb]dHh[|Hp`@tIxZ|Hjj@vKth@|Mtg@hNtA^nQfHhIpErQzJhLpGzWdRdKhJvO|Mbh@lq@h[rd@lTn]dO|h@rNxr@vV|oB|_@boDbRpzAfHvk@jTvwAxOxw@dKb\\bK|RjPx\\bVrd@bh@|t@h[j`@tRhYtV|^pQlVdZ|^nQvUzL`PtRjVxO|RzLhOj_@j`@f^tZl_@x\\nhAj{@hhBjvAfhBhvAtjBvwAliBjvA~eB|tAtyB|eB~c@x\\vKjJ~j@je@zgAbmAvKvKrYlVvvBtfBzL`K|[fY`o@je@|InG|[zR`YrN|PbFpUrIfSjJrCzAba@bWpUtUbRpXbV|h@tG~TpFzWrCvP`CbRrCp]|PvrBpYpkDdKnbAzAdMdDzRnBdM`YzmAfL`a@zHx\\bG~YhE`f@tC|c@vDhj@xDr_@`Gp]pJfc@bGhOnBnGvDxKvKfY~MzWfOlV|PhT`RpS`s@lq@rqBxhBx_DbtCvVtUnQzRjPrSrRpX~Tf^xOj[jPt_@lMp]hLr_@vKfc@dOfo@bKng@pJnb@|Lnb@hPdh@`N|^`Nl[|EnLvZtp@dp@xwAxOv\\zWnl@x^nx@pUng@tVri@hH~O`GnLlInLvKrNjIrIvKxKpJ|H~IxFvKxFlMxFvKtDjPtDfS|C~XjEfS~CvVtDtl@|HvVxFhLtDjPjE`RxFvZnLnc@vPta@hOt]dMtVfHb]jJng@rNlT|HfWjJpUjJ`YzMj[hOxSxKln@t_@n\\~Tt]~YvVbWpd@hj@dOtUxOlVhLrSzWzh@bV|h@dK~T|Px\\rNbWxHdMxOhTzL`PpUlV`RlQb]dWvV~O~n@`a@~zAn}@dp@xa@ve@hYng@pXj[hOvOnG|WjJde@|MzAj@~IfC~BkEtCuDrCqBdDU`C?dDbArC~C`C`FnBpBlBl@`CT`Ck@dD{AiLaf@w@yAmB_DySmVoBkE?qBv@yF~Bk@~ExArCfCr]|^jAbA~BzAhrAvf@bGzA|E?fHm@`Cm@`CqBlByAnMaP`h@cm@ku@a|@oBmEiAyFc@oGzAoLnByFrCuDlBcAdl@qXbOeHjL_I|I}HxDuDrYa\\nFcFvKuIbK}Hd@UxHyAp\\wD~B?jEVtGxApaA~^rCxAng@rd@nFtDrCbAbGbA`CUrC?bK{AlMeHtRyKjPoLbKoGdViOnFiCbGoBlIiChWkE|TcFnFcAzH}CnQgHnFqBtGyAhLgCxO_DlB?lj@|Mta@rNzb@vPbGcAzA}HP{A?cAd@os@?kT?iJQgc@?mV?iJe@aKbVvK~[dMfH|C|EpBrCpB~I|MpYzh@ft@`|@pQ`UzAnBxHjJda@dc@xWrSfZdRlMzMbVfc@rJvKjTlQfOvPfLdRnXrn@hE`KxDjJfHdMfHfH|L|C~c@dMpU~TnBzApU~T|IrIhHtIfH|H`CjEn\\dh@lBtDdKhO|EpGtGjEfHl@fSWvVUrRTbGpBnQ`PjP|MxHnGtG|CpFpBbKl@vKxAdDl@xDtDr]hj@fOrSdOzMbKbFzH|CtVfHpQpGzLpB`]xA|EbAnBl@vV`FhEzAtGpBjE|CnFlE`CrDhLvPzHfHbKxFbRjEfm@xK|[nGlIpBnFfC`CbAvD~CfDtD`GrIlItIlItDtGbA|Ej@jEUzLyAtVgHbRyF|[aKhW}H|TgHdOuDvK{AnQk@xOfCfHpBzWpBjE?`CWdDm@|EyAhHkEfb@{RvKkEtGiCrCUjI?tR`KnX`PpUrNjTnLdOrI`NrI~IxFfSnLvp@t_@|L|HzE~CnMjJvKxFxShOhL|HrNvKbVnQhAj@tRjOfH`FjElErCfClB|CtClEfHdMlMhTdV`a@fHrN`GxKnBpBjE|C`CbAnFxAjE?f^gCvD?|El@fHbApFpBjP|H|EjEdi@je@xDfCp`@dRrCfCjP~TnFbFxDxA~BbAhLzAnBT`CbArCpBlBtDjE`KaG~TkEl[{A|He@xAiApBiApB{AzAiW~OsC~CkExF{A`Fw@~Cw@nG?~C?jEhAzMpFvU`GvUzHpX`GbWjEnLdDnGnF~HrNdRtGzHjEhCbGj@v@l@hE~CnBbAhWdHzA~C?jEQzAw@j@iAbAq`@rNsCl@{AVcGWaC?{Al@iAbAQfC?l@b@pBpFdHdOnLhApBv@pBzA|H`CnQhAfClBjEnBpBd@fCe@bAiAl@w@?{Am@gSaN","voiceLocale":"en-US","refresh_ttl":21600}],"waypoints":[{"distance":7.889,"name":"","location":[139.828785,36.503349]},{"distance":24.375,"name":"","location":[139.051904,35.982396]}],"code":"Ok","uuid":"route_response_dc_enhanced_model"} \ No newline at end of file