Skip to content

Instantly share code, notes, and snippets.

@youssef22222
Created June 22, 2025 18:03
Show Gist options
  • Save youssef22222/c74ab99c5978c725c7acf3da06401ccc to your computer and use it in GitHub Desktop.
Save youssef22222/c74ab99c5978c725c7acf3da06401ccc to your computer and use it in GitHub Desktop.
Speed Violation Map - 9128 KKD - 1750615410
<!DOCTYPE html>
<html>
<head>
<title>Speed Violation Path - 9128 KKD</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
#map {
height: 100%;
position: relative;
}
/* Enhanced marker styles */
.number-icon {
background-color: #FF1744;
border: 2px solid white;
border-radius: 50%;
color: white;
font-weight: bold;
text-align: center;
font-size: 12px;
line-height: 20px;
width: 24px;
height: 24px;
margin-left: -12px;
margin-top: -12px;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.violation-icon {
background-color: #FF1744;
border: 3px solid white;
width: 32px;
height: 32px;
line-height: 26px;
font-size: 16px;
font-weight: bold;
margin-left: -16px;
margin-top: -16px;
position: relative;
}
/* Pulsing animation for last violation point */
.pulse-ring {
border: 3px solid #FF1744;
border-radius: 50%;
height: 50px;
width: 50px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
animation: pulsate 2s ease-out;
animation-iteration-count: infinite;
opacity: 0;
}
@keyframes pulsate {
0% {
transform: translate(-50%, -50%) scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translate(-50%, -50%) scale(1.2, 1.2);
opacity: 0;
}
}
/* Enhanced popup styles */
.popup-content {
min-width: 280px;
font-family: inherit;
}
.popup-content table {
width: 100%;
border-collapse: collapse;
}
.popup-content td {
padding: 4px 8px;
border-bottom: 1px solid #eee;
font-size: 13px;
}
.popup-content td:first-child {
font-weight: 600;
width: 45%;
color: #555;
}
.popup-content td:last-child {
color: #2c3e50;
}
.popup-title {
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
padding-bottom: 8px;
border-bottom: 2px solid #e9ecef;
font-size: 16px;
}
.speed-violation {
color: #e74c3c;
font-weight: bold;
}
/* Enhanced legend styles */
.legend {
position: absolute;
bottom: 20px;
right: 20px;
background: white;
padding: 15px 20px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
font-size: 13px;
z-index: 1000;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
transform: translateX(0);
min-width: 200px;
}
.legend.collapsed {
transform: translateX(calc(100% + 20px));
}
.legend-toggle-btn {
position: absolute;
left: -35px;
top: 50%;
width: 35px;
height: 50px;
background-color: #3498db;
color: white;
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
transition: all 0.3s ease;
z-index: 1001;
border-radius: 8px 0 0 8px;
transform: translateY(-50%);
}
.legend-toggle-btn:hover {
background-color: #2980b9;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.legend-toggle-btn i {
transition: transform 0.3s ease;
}
.legend.collapsed .legend-toggle-btn i {
transform: rotate(180deg);
}
.legend-title {
font-weight: 600;
margin-bottom: 12px;
color: #2c3e50;
font-size: 14px;
}
.legend-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
font-size: 12px;
}
.legend-item:last-child {
margin-bottom: 0;
}
.legend-marker {
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid white;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
flex-shrink: 0;
}
.legend-line {
width: 25px;
height: 4px;
border-radius: 2px;
flex-shrink: 0;
}
.legend-arrow {
width: 25px;
height: 4px;
background: #3498db;
position: relative;
flex-shrink: 0;
}
.legend-arrow::after {
content: '';
position: absolute;
right: 0;
top: -3px;
width: 0;
height: 0;
border-left: 8px solid #3498db;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
.legend-path-arrow {
width: 25px;
height: 4px;
background: #000000;
position: relative;
flex-shrink: 0;
}
.legend-path-arrow::after {
content: '';
position: absolute;
right: 0;
top: -3px;
width: 0;
height: 0;
border-left: 8px solid #000000;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
}
/* Info control styles */
.info-control {
min-width: 200px;
position: absolute;
top: 20px;
left: 20px;
background: rgba(255,255,255,0.95);
padding: 15px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
font-size: 14px;
z-index: 1000;
}
.info-control h4 {
margin: 0 0 8px 0;
color: #2c3e50;
font-size: 16px;
}
.info-control div {
margin: 3px 0;
}
/* Enhanced leaflet popup */
.leaflet-popup-content {
margin: 13px 19px;
font-size: 14px;
line-height: 1.5;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script src="https://unpkg.com/leaflet-polylinedecorator@1.6.0/dist/leaflet.polylineDecorator.js"></script>
<script>
// Initialize the map
var map = L.map('map').setView([26.44406865, 50.1226129], 14);
// Add OpenStreetMap tile layer
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
attribution: '© OpenStreetMap contributors'
}).addTo(map);
// Define the coordinates and the detailed path data
var latlngs = [
[26.477033, 50.131488],
[26.47597, 50.132885],
[26.46267, 50.132247],
[26.461735, 50.132218],
[26.460412, 50.132155],
[26.456437, 50.131903],
[26.454897, 50.131882],
[26.451927, 50.131817],
[26.449543, 50.131663],
[26.436295, 50.130645],
[26.435047, 50.128357],
[26.434555, 50.127528],
[26.43005, 50.118712],
[26.429132, 50.117548],
[26.425623, 50.114243],
[26.42789, 50.109782],
[26.42869, 50.108168],
[26.42872, 50.107465],
[26.42872, 50.104377],
[26.426027, 50.097175]
];
var pathData = [{"latitude": 26.477033, "longitude": 50.131488, "time": "06/22/25,20:42:30", "speed": 108, "speed_limit": 40, "street_name": null, "street_name_ar": null, "distance_to_segment": 13.42, "vehicle_direction": 109, "segment_bearing": 282.5, "nearest_segment": [[26.4768031, 50.1320562], [26.476961, 50.1312587]], "closest_point": [26.476929228023902, 50.131419169752284]}, {"latitude": 26.47597, "longitude": 50.132885, "time": "06/22/25,20:43:18", "speed": 116, "speed_limit": 80, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 1.31, "vehicle_direction": 182, "segment_bearing": 183.5, "nearest_segment": [[26.4766262, 50.1329421], [26.4759561, 50.1328965]], "closest_point": [26.475973308702393, 50.13289767095193]}, {"latitude": 26.46267, "longitude": 50.132247, "time": "06/22/25,20:45:13", "speed": 153, "speed_limit": 60, "street_name": null, "street_name_ar": null, "distance_to_segment": 5.84, "vehicle_direction": 181, "segment_bearing": 195.5, "nearest_segment": [[26.4628288, 50.1322396], [26.4626311, 50.1321784]], "closest_point": [26.462664361624388, 50.132188696409955]}, {"latitude": 26.461735, "longitude": 50.132218, "time": "06/22/25,20:45:22", "speed": 152, "speed_limit": 80, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 5.3, "vehicle_direction": 182, "segment_bearing": 182.6, "nearest_segment": [[26.4637231, 50.1323699], [26.461607, 50.1322617]], "closest_point": [26.461748839545308, 50.132268950248566]}, {"latitude": 26.460412, "longitude": 50.132155, "time": "06/22/25,20:45:37", "speed": 125, "speed_limit": 60, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 5.93, "vehicle_direction": 183, "segment_bearing": 182.2, "nearest_segment": [[26.4614825, 50.1322562], [26.4592727, 50.1321634]], "closest_point": [26.460427776936672, 50.1322118974212]}, {"latitude": 26.456437, "longitude": 50.131903, "time": "06/22/25,20:46:51", "speed": 122, "speed_limit": 80, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 3.23, "vehicle_direction": 182, "segment_bearing": 182.3, "nearest_segment": [[26.4569786, 50.1319576], [26.4561774, 50.1319221]], "closest_point": [26.45644554516701, 50.13193397997371]}, {"latitude": 26.454897, "longitude": 50.131882, "time": "06/22/25,20:47:42", "speed": 126, "speed_limit": 60, "street_name": null, "street_name_ar": null, "distance_to_segment": 0.38, "vehicle_direction": 181, "segment_bearing": 169.6, "nearest_segment": [[26.4552575, 50.1318046], [26.4548536, 50.1318871]], "closest_point": [26.454895546430883, 50.131878531996804]}, {"latitude": 26.451927, "longitude": 50.131817, "time": "06/22/25,20:48:07", "speed": 153, "speed_limit": 80, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 3.14, "vehicle_direction": 175, "segment_bearing": 182.6, "nearest_segment": [[26.4519718, 50.131849], [26.451341, 50.1318174]], "closest_point": [26.451935211390886, 50.13184716691387]}, {"latitude": 26.449543, "longitude": 50.131663, "time": "06/22/25,20:50:53", "speed": 129, "speed_limit": 70, "street_name": "King Abdullah Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0639\u0628\u062f\u0627\u0644\u0644\u0647", "distance_to_segment": 4.28, "vehicle_direction": 181, "segment_bearing": 182.9, "nearest_segment": [[26.4503938, 50.1317524], [26.4491978, 50.1316837]], "closest_point": [26.449554014225967, 50.13170415903603]}, {"latitude": 26.436295, "longitude": 50.130645, "time": "06/22/25,20:53:39", "speed": 130, "speed_limit": 80, "street_name": null, "street_name_ar": "Al Ashreah", "distance_to_segment": 1.92, "vehicle_direction": 218, "segment_bearing": 219.5, "nearest_segment": [[26.436323, 50.1306952], [26.4362723, 50.1306485]], "closest_point": [26.436287001978634, 50.130662042050936]}, {"latitude": 26.435047, "longitude": 50.128357, "time": "06/22/25,20:54:06", "speed": 137, "speed_limit": 80, "street_name": null, "street_name_ar": "Al Ashreah", "distance_to_segment": 8.11, "vehicle_direction": 236, "segment_bearing": 242.7, "nearest_segment": [[26.4350105, 50.1284512], [26.4348354, 50.1280722]], "closest_point": [26.43497632263822, 50.12837722374419]}, {"latitude": 26.434555, "longitude": 50.127528, "time": "06/22/25,20:55:03", "speed": 106, "speed_limit": 80, "street_name": null, "street_name_ar": "Al Ashreah", "distance_to_segment": 3.06, "vehicle_direction": 235, "segment_bearing": 236.2, "nearest_segment": [[26.4345874, 50.1276371], [26.4343374, 50.1272195]], "closest_point": [26.4345305097686, 50.127542070314355]}, {"latitude": 26.43005, "longitude": 50.118712, "time": "06/22/25,20:58:12", "speed": 117, "speed_limit": 80, "street_name": null, "street_name_ar": "Al Ashreah", "distance_to_segment": 1.29, "vehicle_direction": 291, "segment_bearing": 299.2, "nearest_segment": [[26.4299463, 50.118945], [26.43032, 50.1181991]], "closest_point": [26.43005883769763, 50.11872037660605]}, {"latitude": 26.429132, "longitude": 50.117548, "time": "06/22/25,20:59:11", "speed": 119, "speed_limit": 40, "street_name": "Prince Mohammed Bin Fahd Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0623\u0645\u064a\u0631 \u0645\u062d\u0645\u062f \u0628\u0646 \u0641\u0647\u062f", "distance_to_segment": 2.02, "vehicle_direction": 198, "segment_bearing": 208.9, "nearest_segment": [[26.4294007, 50.1177352], [26.4287228, 50.1173181]], "closest_point": [26.42912891451249, 50.11756797371681]}, {"latitude": 26.425623, "longitude": 50.114243, "time": "06/22/25,21:00:06", "speed": 119, "speed_limit": 110, "street_name": "King Fahd Branch Rd", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f \u0627\u0644\u0641\u0631\u0639\u064a", "distance_to_segment": 0.36, "vehicle_direction": 295, "segment_bearing": 300.1, "nearest_segment": [[26.4255448, 50.1144004], [26.4263242, 50.1129015]], "closest_point": [26.425625428560757, 50.11424534001488]}, {"latitude": 26.42789, "longitude": 50.109782, "time": "06/22/25,21:00:46", "speed": 146, "speed_limit": 80, "street_name": "King Fahd Road", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f", "distance_to_segment": 6.22, "vehicle_direction": 299, "segment_bearing": 300.4, "nearest_segment": [[26.4278318, 50.1097714], [26.4283589, 50.1087681]], "closest_point": [26.427847728838, 50.109741080582324]}, {"latitude": 26.42869, "longitude": 50.108168, "time": "06/22/25,21:00:57", "speed": 154, "speed_limit": 60, "street_name": null, "street_name_ar": null, "distance_to_segment": 4.31, "vehicle_direction": 299, "segment_bearing": 305.2, "nearest_segment": [[26.4286287, 50.1083391], [26.4288273, 50.1080252]], "closest_point": [26.428718173965, 50.10819768073603]}, {"latitude": 26.42872, "longitude": 50.107465, "time": "06/22/25,21:01:11", "speed": 144, "speed_limit": 60, "street_name": "King Fahd Branch Rd", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f \u0627\u0644\u0641\u0631\u0639\u064a", "distance_to_segment": 2.67, "vehicle_direction": 284, "segment_bearing": 269.6, "nearest_segment": [[26.4286994, 50.107734], [26.4286956, 50.1071443]], "closest_point": [26.4286976050107, 50.107455445997566]}, {"latitude": 26.42872, "longitude": 50.104377, "time": "06/22/25,21:01:54", "speed": 114, "speed_limit": 60, "street_name": "King Fahd Branch Rd", "street_name_ar": "\u0637\u0631\u064a\u0642 \u0627\u0644\u0645\u0644\u0643 \u0641\u0647\u062f \u0627\u0644\u0641\u0631\u0639\u064a", "distance_to_segment": 11.71, "vehicle_direction": 273, "segment_bearing": 258.8, "nearest_segment": [[26.4286493, 50.1045721], [26.4286226, 50.1044216]], "closest_point": [26.4286226, 50.104421599999995]}, {"latitude": 26.426027, "longitude": 50.097175, "time": "06/22/25,21:03:23", "speed": 119, "speed_limit": 40, "street_name": null, "street_name_ar": null, "distance_to_segment": 14.49, "vehicle_direction": 277, "segment_bearing": 269.3, "nearest_segment": [[26.4259122, 50.0977473], [26.4259024, 50.0968918]], "closest_point": [26.425905057200897, 50.097123762778146]}];
var fullPathCoordinates = [[26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476838, 50.131473], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.476973, 50.13139], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477038, 50.13146], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.477033, 50.131488], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.476857, 50.131978], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47655, 50.132928], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.47597, 50.132885], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.472975, 50.132687], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.471752, 50.132643], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.467172, 50.132477], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.46267, 50.132247], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.461735, 50.132218], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.460412, 50.132155], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.459055, 50.132108], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456437, 50.131903], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.456232, 50.1319], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.454897, 50.131882], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.451927, 50.131817], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.45174, 50.131808], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451737, 50.13181], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.451565, 50.131807], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.449543, 50.131663], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.446273, 50.13143], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.444905, 50.131323], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.441068, 50.131058], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.440832, 50.131042], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.4404, 50.131015], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.439307, 50.130953], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.437225, 50.130783], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436692, 50.130757], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436295, 50.130645], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.436178, 50.130502], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.435047, 50.128357], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.434555, 50.127528], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.432073, 50.123247], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.431378, 50.122033], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.430877, 50.121223], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.429808, 50.119348], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.42982, 50.119258], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.43005, 50.118712], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430223, 50.118427], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430358, 50.118112], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430338, 50.117967], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.430265, 50.11791], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.429132, 50.117548], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425318, 50.115065], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425305, 50.114982], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425312, 50.114873], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425335, 50.114793], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.425623, 50.114243], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42789, 50.109782], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42869, 50.108168], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.42872, 50.107465], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.428767, 50.105317], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.42872, 50.104377], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.428507, 50.103815], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.426237, 50.099383], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425955, 50.09867], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.425992, 50.09728], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175], [26.426027, 50.097175]];
// Add device name to each point's data
pathData.forEach(function(data) {
data.device_name = "9128 KKD";
});
// Global variable to store path decorators for zoom-based updates
var pathDecorators = [];
// Function to calculate arrow spacing based on zoom level
function getArrowSpacing(zoomLevel) {
if (zoomLevel >= 16) return '50px'; // Close zoom: many arrows
if (zoomLevel >= 14) return '100px'; // Medium zoom: moderate arrows
if (zoomLevel >= 12) return '150px'; // Far zoom: fewer arrows
return '200px'; // Very far zoom: minimal arrows
}
// Function to update path arrows based on zoom level
function updatePathArrows() {
var currentZoom = map.getZoom();
var spacing = getArrowSpacing(currentZoom);
// Remove existing decorators
pathDecorators.forEach(function(decorator) {
map.removeLayer(decorator);
});
pathDecorators = [];
// Re-add decorators with new spacing if path exists
if (window.vehiclePath) {
var decorator = L.polylineDecorator(window.vehiclePath, {
patterns: [{
offset: '25px',
repeat: spacing,
symbol: L.Symbol.arrowHead({
pixelSize: 12,
polygon: false,
pathOptions: {
stroke: true,
color: '#000000',
weight: 2,
opacity: 0.8
}
})
}]
});
decorator.addTo(map);
pathDecorators.push(decorator);
}
}
// Function to create numbered div icons for violations
function createNumberedIcon(number, isLast = false) {
if (isLast) {
return L.divIcon({
className: 'number-icon violation-icon',
html: 'V<div class="pulse-ring"></div>',
iconSize: [32, 32]
});
} else {
return L.divIcon({
className: 'number-icon',
html: number.toString(),
iconSize: [24, 24]
});
}
}
// Function to create popup content
function createPopupContent(pointNum, data, isLast) {
var lat = data.latitude;
var lon = data.longitude;
var speedClass = 'speed-violation';
var html = '<div class="popup-content">';
html += '<div class="popup-title">Violation Point ' + pointNum + (isLast ? ' (Latest)' : '') + '</div>';
html += '<table>';
html += '<tr><td>Latitude:</td><td>' + lat.toFixed(6) + '</td></tr>';
html += '<tr><td>Longitude:</td><td>' + lon.toFixed(6) + '</td></tr>';
if (data.time) {
html += '<tr><td>Time:</td><td>' + data.time + '</td></tr>';
}
if (data.device_name) {
html += '<tr><td>Vehicle:</td><td>' + data.device_name + '</td></tr>';
}
if (data.street_name_ar) {
html += '<tr><td>Street (AR):</td><td style="direction: rtl;">' + data.street_name_ar + '</td></tr>';
}
if (data.street_name) {
html += '<tr><td>Street (EN):</td><td>' + data.street_name + '</td></tr>';
}
if (data.distance_to_segment !== undefined) {
html += '<tr><td>Dist to street:</td><td>' + data.distance_to_segment.toFixed(2) + ' m</td></tr>';
}
if (data.vehicle_direction !== undefined) {
html += '<tr><td>Vehicle Dir:</td><td>' + data.vehicle_direction.toFixed(1) + '°</td></tr>';
}
if (data.segment_bearing !== undefined) {
html += '<tr><td>Street Bearing:</td><td>' + data.segment_bearing.toFixed(1) + '°</td></tr>';
}
if (data.speed_limit) {
html += '<tr><td>Speed Limit:</td><td>' + data.speed_limit + ' km/h</td></tr>';
}
if (data.speed) {
html += '<tr><td>Vehicle Speed:</td><td class="' + speedClass + '">' + data.speed + ' km/h</td></tr>';
}
if (data.speed && data.speed_limit) {
var overSpeed = data.speed - data.speed_limit;
html += '<tr><td>Over Speed:</td><td class="speed-violation">+' + overSpeed + ' km/h</td></tr>';
}
html += '</table>';
html += '</div>';
return html;
}
// Function to create direction arrow from point
function createDirectionArrow(lat, lon, direction) {
if (direction === undefined || direction === null) return null;
var arrowLength = 0.0002; // Length of arrow in degrees
var radians = direction * Math.PI / 180;
var endLat = lat + arrowLength * Math.cos(radians);
var endLon = lon + arrowLength * Math.sin(radians);
var arrow = L.polyline([[lat, lon], [endLat, endLon]], {
color: '#3498db',
weight: 3,
opacity: 0.8
});
var decorator = L.polylineDecorator(arrow, {
patterns: [{
offset: '100%',
repeat: 0,
symbol: L.Symbol.arrowHead({
pixelSize: 12,
polygon: false,
pathOptions: {
stroke: true,
color: '#3498db',
weight: 2,
opacity: 0.9
}
})
}]
});
return { arrow: arrow, decorator: decorator };
}
// Draw the vehicle path with directional arrows if full_path is provided
if (fullPathCoordinates && fullPathCoordinates.length > 1) {
// Create the main path line in black
window.vehiclePath = L.polyline(fullPathCoordinates, {
color: '#000000',
weight: 4,
opacity: 0.8,
smoothFactor: 1
}).addTo(map);
// Add initial arrows
updatePathArrows();
// Update arrows when zoom changes
map.on('zoomend', updatePathArrows);
}
// Add markers for all points - all are violation points
var allBounds = [];
for (var i = 0; i < pathData.length; i++) {
var data = pathData[i];
var isLast = (i === latlngs.length - 1);
var icon = createNumberedIcon(i + 1, isLast);
var popupContent = createPopupContent(i + 1, data, isLast);
// Add marker to map
var vehicleMarker = L.marker([data.latitude, data.longitude], {icon: icon})
.addTo(map)
.bindPopup(popupContent);
allBounds.push([data.latitude, data.longitude]);
// Add direction arrow for each point
if (data.vehicle_direction !== undefined && data.vehicle_direction !== null) {
var directionArrowData = createDirectionArrow(data.latitude, data.longitude, data.vehicle_direction);
if (directionArrowData) {
directionArrowData.arrow.addTo(map);
directionArrowData.decorator.addTo(map);
}
}
// Draw the nearest street segment for each point if available
if (data.nearest_segment && data.nearest_segment.length === 2) {
var segmentPolyline = L.polyline(data.nearest_segment, {
color: '#9b59b6',
weight: 8,
opacity: 0.8
}).addTo(map).bindPopup('Nearest Street Segment for Violation ' + (i + 1));
// Add enhanced start and end circles for the segment
L.circleMarker(data.nearest_segment[0], {
radius: 6,
color: '#8e44ad',
fillColor: '#9b59b6',
fillOpacity: 1,
weight: 2
}).addTo(map);
L.circleMarker(data.nearest_segment[1], {
radius: 6,
color: '#8e44ad',
fillColor: '#9b59b6',
fillOpacity: 1,
weight: 2
}).addTo(map);
}
// Draw the closest point on the segment and a line to it
if (data.closest_point && data.closest_point.length === 2) {
// Enhanced closest point marker
L.circleMarker(data.closest_point, {
radius: 8,
color: '#e67e22',
fillColor: '#f39c12',
fillOpacity: 1,
weight: 3
}).addTo(map).bindPopup('Closest Point on Street<br>Distance: ' + (data.distance_to_segment ? data.distance_to_segment.toFixed(2) + ' m' : 'N/A'));
// Enhanced dashed line from vehicle to closest point
var lineToClosest = [
[data.latitude, data.longitude],
data.closest_point
];
L.polyline(lineToClosest, {
color: '#3498db',
weight: 3,
opacity: 0.7,
dashArray: '8, 8'
}).addTo(map);
}
}
// Include full path coordinates in bounds if available
if (fullPathCoordinates) {
fullPathCoordinates.forEach(function(coord) {
allBounds.push(coord);
});
}
// Fit the map to show all points
if (allBounds.length > 0) {
var bounds = L.latLngBounds(allBounds);
map.fitBounds(bounds.pad(0.1));
}
// Add enhanced legend with toggle functionality
var legendHtml = '<button class="legend-toggle-btn" onclick="toggleLegend()"><i class="fas fa-chevron-right"></i></button>';
legendHtml += '<div class="legend-title">Map Legend</div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #FF1744;"></div><span>Violation Points</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #FF1744; width: 24px; height: 24px;"></div><span>Latest Violation</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #000000; height: 6px;"></div><span>Vehicle Path</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-path-arrow"></div><span>Path Direction</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-arrow"></div><span>Vehicle Direction</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #9b59b6; height: 6px;"></div><span>Nearest Street Segment</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-marker" style="background: #f39c12;"></div><span>Closest Point</span></div>';
legendHtml += '<div class="legend-item"><div class="legend-line" style="background: #3498db; border: 2px dashed #3498db; height: 2px;"></div><span>Distance Line</span></div>';
var legendControl = L.control({position: 'bottomright'});
legendControl.onAdd = function (map) {
var div = L.DomUtil.create('div', 'legend');
div.id = 'mapLegend';
div.innerHTML = legendHtml;
return div;
};
legendControl.addTo(map);
// Toggle legend function
function toggleLegend() {
var legend = document.getElementById('mapLegend');
legend.classList.toggle('collapsed');
}
// Add info control
var infoControl = L.control({position: 'topleft'});
infoControl.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info-control');
var pathInfo = fullPathCoordinates ? '<div><strong>Path Points:</strong> ' + fullPathCoordinates.length + '</div>' : '';
div.innerHTML = '<h4><i class="fas fa-car" style="margin-right: 8px; color: #3498db;"></i>Vehicle Path Analysis</h4>' +
'<div><strong>Vehicle:</strong> 9128 KKD</div>' +
'<div><strong>Total Violations:</strong> ' + latlngs.length + '</div>' +
pathInfo;
return div;
};
infoControl.addTo(map);
// Add zoom control to top right
L.control.zoom({position: 'topright'}).addTo(map);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment