index.html
index.html
files/leaflet.css
files/leaflet.js
files/lucide.css
files/roboto.css
files/schema.json
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Recherche Carto Montpellier</title> <script src="libs/fullscreen.js"></script> <script src="data.js"></script> <link rel="stylesheet" href="files/roboto.css"> <link rel="stylesheet" href="files/leaflet.css"> <link rel="stylesheet" href="files/lucide.css"> <script src="files/leaflet.js"></script> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; width: 100vw; height: 100vh; overflow: hidden; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 70%, #1a1a2e 100%); } .desktop { width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%); } .desktop-icons { position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 25px; z-index: 1; } .desktop-icon { display: flex; flex-direction: column; align-items: center; width: 80px; cursor: pointer; user-select: none; } .desktop-icon .icon-img { width: 56px; height: 56px; display: flex; justify-content: center; align-items: center; margin-bottom: 6px; } .desktop-icon .icon-img img { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); } .desktop-icon span { color: #fff; font-size: 11px; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,0.5); line-height: 1.3; } .dock { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 18px; padding: 6px 12px; display: flex; gap: 8px; border: 1px solid rgba(255,255,255,0.2); z-index: 5; } .dock-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: transform 0.2s; } .dock-icon:hover { transform: scale(1.15) translateY(-5px); } .dock-icon img { width: 100%; height: 100%; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); } .browser-window { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 85%; height: 80%; min-width: 600px; min-height: 400px; background: #fff; border-radius: 12px; box-shadow: 0 25px 80px rgba(0,0,0,0.5); display: flex; flex-direction: column; overflow: hidden; z-index: 100; resize: both; } .browser-window.maximized { top: 0 !important; left: 0 !important; transform: none !important; width: 100% !important; height: 100% !important; border-radius: 0; resize: none; } .browser-window.hidden { display: none; } .browser-header { background: linear-gradient(180deg, #e8e8e8 0%, #d4d4d4 100%); padding: 10px 15px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #bbb; cursor: grab; user-select: none; } .browser-header:active { cursor: grabbing; } .browser-buttons { display: flex; gap: 8px; } .browser-btn { width: 12px; height: 12px; border-radius: 50%; cursor: pointer; transition: filter 0.2s; border: none; } .browser-btn:hover { filter: brightness(0.9); } .btn-close { background: #ff5f57; } .btn-minimize { background: #ffbd2e; } .btn-maximize { background: #28c940; } .browser-nav { display: flex; align-items: center; gap: 6px; margin-left: 10px; } .nav-btn { width: 30px; height: 30px; background: #fff; border: 1px solid #ccc; border-radius: 6px; display: flex; justify-content: center; align-items: center; color: #666; font-size: 16px; cursor: pointer; transition: background 0.2s; } .nav-btn:hover { background: #f0f0f0; } .address-bar { flex: 1; background: #fff; border: 1px solid #ccc; border-radius: 20px; padding: 6px 15px; font-size: 13px; color: #333; display: flex; align-items: center; gap: 8px; } .address-bar .lock { color: #28a745; font-size: 14px; } .browser-content { flex: 1; position: relative; display: flex; flex-direction: column; overflow: hidden; } .search-container { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); z-index: 1000; width: 450px; max-width: 90%; } .search-box { display: flex; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); overflow: hidden; } .search-input { flex: 1; border: none; padding: 14px 18px; font-size: 15px; font-family: 'Roboto', sans-serif; outline: none; } .search-input::placeholder { color: #aaa; } .search-btn { background: #4285f4; border: none; padding: 14px 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; } .search-btn:hover { background: #3367d6; } #map { flex: 1; width: 100%; } .custom-marker { background: none; border: none; } .marker-pin { width: 30px; height: 42px; } .marker-pin svg { width: 100%; height: 100%; filter: drop-shadow(0 3px 3px rgba(0,0,0,0.3)); } .photo-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; } .photo-overlay.active { opacity: 1; visibility: visible; } .photo-card { background: #fff; border-radius: 12px; overflow: hidden; max-width: 500px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.3s; } .photo-overlay.active .photo-card { transform: scale(1); } .photo-card img { width: 100%; height: 280px; object-fit: cover; } .photo-info { padding: 20px; } .photo-info h3 { font-size: 18px; color: #333; margin-bottom: 8px; } .photo-info p { font-size: 14px; color: #666; line-height: 1.5; } .photo-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.95); border: none; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; justify-content: center; align-items: center; color: #333; box-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: transform 0.2s; } .photo-close:hover { transform: scale(1.1); } .leaflet-control-attribution { font-size: 10px !important; } </style> </head> <body> <div class="desktop"> <div class="desktop-icons"> <div class="desktop-icon"> <div class="icon-img"><img src="files/folder-documents.svg" alt="Documents"></div> <span>Documents</span> </div> <div class="desktop-icon"> <div class="icon-img"><img src="files/simplenote.svg" alt="Notes"></div> <span>Notes recherche.txt</span> </div> <div class="desktop-icon"> <div class="icon-img"><img src="files/gnome-maps.svg" alt="Maps"></div> <span>Geoportail</span> </div> <div class="desktop-icon"> <div class="icon-img"><img src="files/folder-trash.svg" alt="Corbeille"></div> <span>Corbeille</span> </div> </div> <div class="dock"> <div class="dock-icon"><img src="files/file-manager.svg" alt="Finder"></div> <div class="dock-icon"><img src="files/safari.svg" alt="Safari"></div> <div class="dock-icon"><img src="files/internet-mail.svg" alt="Mail"></div> <div class="dock-icon"><img src="files/simplenote.svg" alt="Notes"></div> </div> <div class="browser-window" id="browserWindow"> <div class="browser-header" id="browserHeader"> <div class="browser-buttons"> <div class="browser-btn btn-close" id="btnClose"></div> <div class="browser-btn btn-minimize" id="btnMinimize"></div> <div class="browser-btn btn-maximize" id="btnMaximize"></div> </div> <div class="browser-nav"> <div class="nav-btn"><i class="icon-arrow-left"></i></div> <div class="nav-btn"><i class="icon-arrow-right"></i></div> <div class="nav-btn"><i class="icon-rotate-cw"></i></div> </div> <div class="address-bar"> <i class="icon-lock lock"></i> <span>www.geoportail.gouv.fr/carte</span> </div> </div> <div class="browser-content"> <div class="search-container"> <div class="search-box"> <input type="text" class="search-input" id="searchInput" placeholder="Rechercher un lieu..." readonly> <button class="search-btn"><i class="icon-search"></i></button> </div> </div> <div id="map"></div> </div> </div> </div> <div class="photo-overlay" id="photoOverlay"> <button class="photo-close" id="photoClose"><i class="icon-x"></i></button> <div class="photo-card"> <img src="files/universite_photo.jpg" alt="Universite Paul Valery"> <div class="photo-info"> <h3>Universite Paul Valery - Montpellier 3</h3> <p>Route de Mende, 34199 Montpellier<br>Universite specialisee en lettres, langues, arts et sciences humaines.</p> </div> </div> </div> <script> const MONTPELLIER_CENTER = [43.61, 3.87]; const UNIVERSITE_COORDS = [43.6331, 3.8645]; const QUERY = "universite paul valery"; const TYPING_SPEED = 80; let map, marker, charIndex = 0, typingStarted = false, searchComplete = false, markerVisible = false; let isDragging = false, isMaximized = false, dragOffset = { x: 0, y: 0 }; let savedPosition = { x: 0, y: 0, width: 0, height: 0 }; const browserWindow = document.getElementById('browserWindow'); const browserHeader = document.getElementById('browserHeader'); const btnClose = document.getElementById('btnClose'); const btnMinimize = document.getElementById('btnMinimize'); const btnMaximize = document.getElementById('btnMaximize'); function initMap() { map = L.map('map', { zoomControl: true, attributionControl: true }).setView(MONTPELLIER_CENTER, 12); L.tileLayer('files/map/ign-plan/{z}/{x}/{y}.png', { attribution: '&copy; <a href="https://www.ign.fr/">IGN France</a>', maxZoom: 16, minZoom: 10 }).addTo(map); } function createMarker() { const markerIcon = L.divIcon({ className: 'custom-marker', html: '<div class="marker-pin"><svg viewBox="0 0 24 36"><path d="M12 0C5.4 0 0 5.4 0 12c0 9 12 24 12 24s12-15 12-24c0-6.6-5.4-12-12-12z" fill="#ea4335"/><circle cx="12" cy="12" r="5" fill="#b31412"/></svg></div>', iconSize: [30, 42], iconAnchor: [15, 42] }); marker = L.marker(UNIVERSITE_COORDS, { icon: markerIcon, opacity: 0 }).addTo(map); marker.on('click', function() { if (markerVisible) showPhoto(); }); } function typeNextChar() { if (charIndex < QUERY.length) { document.getElementById('searchInput').value = QUERY.substring(0, charIndex + 1); charIndex++; setTimeout(typeNextChar, TYPING_SPEED); } } function performSearch() { if (searchComplete) return; searchComplete = true; map.flyTo(UNIVERSITE_COORDS, 16, { duration: 2, easeLinearity: 0.25 }); setTimeout(() => { marker.setOpacity(1); markerVisible = true; }, 1500); } function showPhoto() { document.getElementById('photoOverlay').classList.add('active'); } function hidePhoto() { document.getElementById('photoOverlay').classList.remove('active'); } browserHeader.addEventListener('mousedown', function(e) { if (e.target.classList.contains('browser-btn') || e.target.closest('.nav-btn') || isMaximized) return; isDragging = true; const rect = browserWindow.getBoundingClientRect(); dragOffset.x = e.clientX - rect.left; dragOffset.y = e.clientY - rect.top; browserWindow.style.transform = 'none'; browserWindow.style.left = rect.left + 'px'; browserWindow.style.top = rect.top + 'px'; }); document.addEventListener('mousemove', function(e) { if (!isDragging) return; browserWindow.style.left = Math.max(0, e.clientX - dragOffset.x) + 'px'; browserWindow.style.top = Math.max(0, e.clientY - dragOffset.y) + 'px'; }); document.addEventListener('mouseup', function() { isDragging = false; }); btnClose.addEventListener('click', function() { browserWindow.classList.add('hidden'); }); btnMinimize.addEventListener('click', function() { browserWindow.style.transition = 'transform 0.3s, opacity 0.3s'; browserWindow.style.transform = 'scale(0.1) translateY(100vh)'; browserWindow.style.opacity = '0'; setTimeout(() => { browserWindow.classList.add('hidden'); browserWindow.style.transition = ''; browserWindow.style.transform = ''; browserWindow.style.opacity = ''; }, 300); }); btnMaximize.addEventListener('click', function() { if (isMaximized) { browserWindow.classList.remove('maximized'); browserWindow.style.left = savedPosition.x + 'px'; browserWindow.style.top = savedPosition.y + 'px'; browserWindow.style.width = savedPosition.width + 'px'; browserWindow.style.height = savedPosition.height + 'px'; isMaximized = false; } else { const rect = browserWindow.getBoundingClientRect(); savedPosition = { x: rect.left, y: rect.top, width: rect.width, height: rect.height }; browserWindow.classList.add('maximized'); isMaximized = true; } setTimeout(() => map.invalidateSize(), 100); }); browserHeader.addEventListener('dblclick', function(e) { if (!e.target.classList.contains('browser-btn') && !e.target.closest('.nav-btn')) btnMaximize.click(); }); document.addEventListener('keydown', function(e) { if (!typingStarted && charIndex < QUERY.length) { typingStarted = true; typeNextChar(); return; } if (e.key === 'Enter' && charIndex >= QUERY.length && !searchComplete) { performSearch(); return; } if (e.key === 'Escape') hidePhoto(); }); document.getElementById('photoOverlay').addEventListener('click', function(e) { if (e.target === this || e.target.closest('#photoClose')) hidePhoto(); }); const resizeObserver = new ResizeObserver(() => { if (map) map.invalidateSize(); }); resizeObserver.observe(browserWindow); document.addEventListener('DOMContentLoaded', function() { initMap(); createMarker(); }); </script> </body> </html>
/* required styles */ .leaflet-pane, .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile-container, .leaflet-pane > svg, .leaflet-pane > canvas, .leaflet-zoom-box, .leaflet-image-layer, .leaflet-layer { position: absolute; left: 0; top: 0; } .leaflet-container { overflow: hidden; } .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow { -webkit-user-select: none; -moz-user-select: none; user-select: none; -webkit-user-drag: none; } /* Prevents IE11 from highlighting tiles in blue */ .leaflet-tile::selection { background: transparent; } /* Safari renders non-retina tile on retina better with this, but Chrome is worse */ .leaflet-safari .leaflet-tile { image-rendering: -webkit-optimize-contrast; } /* hack that prevents hw layers "stretching" when loading new tiles */ .leaflet-safari .leaflet-tile-container { width: 1600px; height: 1600px; -webkit-transform-origin: 0 0; } .leaflet-marker-icon, .leaflet-marker-shadow { display: block; } /* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */ /* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */ .leaflet-container .leaflet-overlay-pane svg { max-width: none !important; max-height: none !important; } .leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-shadow-pane img, .leaflet-container .leaflet-tile-pane img, .leaflet-container img.leaflet-image-layer, .leaflet-container .leaflet-tile { max-width: none !important; max-height: none !important; width: auto; padding: 0; } .leaflet-container img.leaflet-tile { /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */ mix-blend-mode: plus-lighter; } .leaflet-container.leaflet-touch-zoom { -ms-touch-action: pan-x pan-y; touch-action: pan-x pan-y; } .leaflet-container.leaflet-touch-drag { -ms-touch-action: pinch-zoom; /* Fallback for FF which doesn't support pinch-zoom */ touch-action: none; touch-action: pinch-zoom; } .leaflet-container.leaflet-touch-drag.leaflet-touch-zoom { -ms-touch-action: none; touch-action: none; } .leaflet-container { -webkit-tap-highlight-color: transparent; } .leaflet-container a { -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); } .leaflet-tile { filter: inherit; visibility: hidden; } .leaflet-tile-loaded { visibility: inherit; } .leaflet-zoom-box { width: 0; height: 0; -moz-box-sizing: border-box; box-sizing: border-box; z-index: 800; } /* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ .leaflet-overlay-pane svg { -moz-user-select: none; } .leaflet-pane { z-index: 400; } .leaflet-tile-pane { z-index: 200; } .leaflet-overlay-pane { z-index: 400; } .leaflet-shadow-pane { z-index: 500; } .leaflet-marker-pane { z-index: 600; } .leaflet-tooltip-pane { z-index: 650; } .leaflet-popup-pane { z-index: 700; } .leaflet-map-pane canvas { z-index: 100; } .leaflet-map-pane svg { z-index: 200; } .leaflet-vml-shape { width: 1px; height: 1px; } .lvml { behavior: url(#default#VML); display: inline-block; position: absolute; } /* control positioning */ .leaflet-control { position: relative; z-index: 800; pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ pointer-events: auto; } .leaflet-top, .leaflet-bottom { position: absolute; z-index: 1000; pointer-events: none; } .leaflet-top { top: 0; } .leaflet-right { right: 0; } .leaflet-bottom { bottom: 0; } .leaflet-left { left: 0; } .leaflet-control { float: left; clear: both; } .leaflet-right .leaflet-control { float: right; } .leaflet-top .leaflet-control { margin-top: 10px; } .leaflet-bottom .leaflet-control { margin-bottom: 10px; } .leaflet-left .leaflet-control { margin-left: 10px; } .leaflet-right .leaflet-control { margin-right: 10px; } /* zoom and fade animations */ .leaflet-fade-anim .leaflet-popup { opacity: 0; -webkit-transition: opacity 0.2s linear; -moz-transition: opacity 0.2s linear; transition: opacity 0.2s linear; } .leaflet-fade-anim .leaflet-map-pane .leaflet-popup { opacity: 1; } .leaflet-zoom-animated { -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0; } svg.leaflet-zoom-animated { will-change: transform; } .leaflet-zoom-anim .leaflet-zoom-animated { -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); transition: transform 0.25s cubic-bezier(0,0,0.25,1); } .leaflet-zoom-anim .leaflet-tile, .leaflet-pan-anim .leaflet-tile { -webkit-transition: none; -moz-transition: none; transition: none; } .leaflet-zoom-anim .leaflet-zoom-hide { visibility: hidden; } /* cursors */ .leaflet-interactive { cursor: pointer; } .leaflet-grab { cursor: -webkit-grab; cursor: -moz-grab; cursor: grab; } .leaflet-crosshair, .leaflet-crosshair .leaflet-interactive { cursor: crosshair; } .leaflet-popup-pane, .leaflet-control { cursor: auto; } .leaflet-dragging .leaflet-grab, .leaflet-dragging .leaflet-grab .leaflet-interactive, .leaflet-dragging .leaflet-marker-draggable { cursor: move; cursor: -webkit-grabbing; cursor: -moz-grabbing; cursor: grabbing; } /* marker & overlays interactivity */ .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-image-layer, .leaflet-pane > svg path, .leaflet-tile-container { pointer-events: none; } .leaflet-marker-icon.leaflet-interactive, .leaflet-image-layer.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive, svg.leaflet-image-layer.leaflet-interactive path { pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */ pointer-events: auto; } /* visual tweaks */ .leaflet-container { background: #ddd; outline-offset: 1px; } .leaflet-container a { color: #0078A8; } .leaflet-zoom-box { border: 2px dotted #38f; background: rgba(255,255,255,0.5); } /* general typography */ .leaflet-container { font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-size: 12px; font-size: 0.75rem; line-height: 1.5; } /* general toolbar styles */ .leaflet-bar { box-shadow: 0 1px 5px rgba(0,0,0,0.65); border-radius: 4px; } .leaflet-bar a { background-color: #fff; border-bottom: 1px solid #ccc; width: 26px; height: 26px; line-height: 26px; display: block; text-align: center; text-decoration: none; color: black; } .leaflet-bar a, .leaflet-control-layers-toggle { background-position: 50% 50%; background-repeat: no-repeat; display: block; } .leaflet-bar a:hover, .leaflet-bar a:focus { background-color: #f4f4f4; } .leaflet-bar a:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .leaflet-bar a:last-child { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-bottom: none; } .leaflet-bar a.leaflet-disabled { cursor: default; background-color: #f4f4f4; color: #bbb; } .leaflet-touch .leaflet-bar a { width: 30px; height: 30px; line-height: 30px; } .leaflet-touch .leaflet-bar a:first-child { border-top-left-radius: 2px; border-top-right-radius: 2px; } .leaflet-touch .leaflet-bar a:last-child { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; } /* zoom control */ .leaflet-control-zoom-in, .leaflet-control-zoom-out { font: bold 18px 'Lucida Console', Monaco, monospace; text-indent: 1px; } .leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out { font-size: 22px; } /* layers control */ .leaflet-control-layers { box-shadow: 0 1px 5px rgba(0,0,0,0.4); background: #fff; border-radius: 5px; } .leaflet-control-layers-toggle { background-image: url(images/layers.png); width: 36px; height: 36px; } .leaflet-retina .leaflet-control-layers-toggle { background-image: url(images/layers-2x.png); background-size: 26px 26px; } .leaflet-touch .leaflet-control-layers-toggle { width: 44px; height: 44px; } .leaflet-control-layers .leaflet-control-layers-list, .leaflet-control-layers-expanded .leaflet-control-layers-toggle { display: none; } .leaflet-control-layers-expanded .leaflet-control-layers-list { display: block; position: relative; } .leaflet-control-layers-expanded { padding: 6px 10px 6px 6px; color: #333; background: #fff; } .leaflet-control-layers-scrollbar { overflow-y: scroll; overflow-x: hidden; padding-right: 5px; } .leaflet-control-layers-selector { margin-top: 2px; position: relative; top: 1px; } .leaflet-control-layers label { display: block; font-size: 13px; font-size: 1.08333em; } .leaflet-control-layers-separator { height: 0; border-top: 1px solid #ddd; margin: 5px -10px 5px -6px; } /* Default icon URLs */ .leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */ background-image: url(images/marker-icon.png); } /* attribution and scale controls */ .leaflet-container .leaflet-control-attribution { background: #fff; background: rgba(255, 255, 255, 0.8); margin: 0; } .leaflet-control-attribution, .leaflet-control-scale-line { padding: 0 5px; color: #333; line-height: 1.4; } .leaflet-control-attribution a { text-decoration: none; } .leaflet-control-attribution a:hover, .leaflet-control-attribution a:focus { text-decoration: underline; } .leaflet-attribution-flag { display: inline !important; vertical-align: baseline !important; width: 1em; height: 0.6669em; } .leaflet-left .leaflet-control-scale { margin-left: 5px; } .leaflet-bottom .leaflet-control-scale { margin-bottom: 5px; } .leaflet-control-scale-line { border: 2px solid #777; border-top: none; line-height: 1.1; padding: 2px 5px 1px; white-space: nowrap; -moz-box-sizing: border-box; box-sizing: border-box; background: rgba(255, 255, 255, 0.8); text-shadow: 1px 1px #fff; } .leaflet-control-scale-line:not(:first-child) { border-top: 2px solid #777; border-bottom: none; margin-top: -2px; } .leaflet-control-scale-line:not(:first-child):not(:last-child) { border-bottom: 2px solid #777; } .leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar { box-shadow: none; } .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar { border: 2px solid rgba(0,0,0,0.2); background-clip: padding-box; } /* popup */ .leaflet-popup { position: absolute; text-align: center; margin-bottom: 20px; } .leaflet-popup-content-wrapper { padding: 1px; text-align: left; border-radius: 12px; } .leaflet-popup-content { margin: 13px 24px 13px 20px; line-height: 1.3; font-size: 13px; font-size: 1.08333em; min-height: 1px; } .leaflet-popup-content p { margin: 17px 0; margin: 1.3em 0; } .leaflet-popup-tip-container { width: 40px; height: 20px; position: absolute; left: 50%; margin-top: -1px; margin-left: -20px; overflow: hidden; pointer-events: none; } .leaflet-popup-tip { width: 17px; height: 17px; padding: 1px; margin: -10px auto 0; pointer-events: auto; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .leaflet-popup-content-wrapper, .leaflet-popup-tip { background: white; color: #333; box-shadow: 0 3px 14px rgba(0,0,0,0.4); } .leaflet-container a.leaflet-popup-close-button { position: absolute; top: 0; right: 0; border: none; text-align: center; width: 24px; height: 24px; font: 16px/24px Tahoma, Verdana, sans-serif; color: #757575; text-decoration: none; background: transparent; } .leaflet-container a.leaflet-popup-close-button:hover, .leaflet-container a.leaflet-popup-close-button:focus { color: #585858; } .leaflet-popup-scrolled { overflow: auto; } .leaflet-oldie .leaflet-popup-content-wrapper { -ms-zoom: 1; } .leaflet-oldie .leaflet-popup-tip { width: 24px; margin: 0 auto; -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); } .leaflet-oldie .leaflet-control-zoom, .leaflet-oldie .leaflet-control-layers, .leaflet-oldie .leaflet-popup-content-wrapper, .leaflet-oldie .leaflet-popup-tip { border: 1px solid #999; } /* div icon */ .leaflet-div-icon { background: #fff; border: 1px solid #666; } /* Tooltip */ /* Base styles for the element that has a tooltip */ .leaflet-tooltip { position: absolute; padding: 6px; background-color: #fff; border: 1px solid #fff; border-radius: 3px; color: #222; white-space: nowrap; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; pointer-events: none; box-shadow: 0 1px 3px rgba(0,0,0,0.4); } .leaflet-tooltip.leaflet-interactive { cursor: pointer; pointer-events: auto; } .leaflet-tooltip-top:before, .leaflet-tooltip-bottom:before, .leaflet-tooltip-left:before, .leaflet-tooltip-right:before { position: absolute; pointer-events: none; border: 6px solid transparent; background: transparent; content: ""; } /* Directions */ .leaflet-tooltip-bottom { margin-top: 6px; } .leaflet-tooltip-top { margin-top: -6px; } .leaflet-tooltip-bottom:before, .leaflet-tooltip-top:before { left: 50%; margin-left: -6px; } .leaflet-tooltip-top:before { bottom: 0; margin-bottom: -12px; border-top-color: #fff; } .leaflet-tooltip-bottom:before { top: 0; margin-top: -12px; margin-left: -6px; border-bottom-color: #fff; } .leaflet-tooltip-left { margin-left: -6px; } .leaflet-tooltip-right { margin-left: 6px; } .leaflet-tooltip-left:before, .leaflet-tooltip-right:before { top: 50%; margin-top: -6px; } .leaflet-tooltip-left:before { right: 0; margin-right: -12px; border-left-color: #fff; } .leaflet-tooltip-right:before { left: 0; margin-left: -12px; border-right-color: #fff; } /* Printing */ @media print { /* Prevent printers from removing background-images of controls. */ .leaflet-control { -webkit-print-color-adjust: exact; print-color-adjust: exact; } }
/* @preserve * Leaflet 1.9.4, a JS library for interactive maps. https://leafletjs.com * (c) 2010-2023 Vladimir Agafonkin, (c) 2010-2011 CloudMade */ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).leaflet={})}(this,function(t){"use strict";function l(t){for(var e,i,n=1,o=arguments.length;n<o;n++)for(e in i=arguments[n])t[e]=i[e];return t}var R=Object.create||function(t){return N.prototype=t,new N};function N(){}function a(t,e){var i,n=Array.prototype.slice;return t.bind?t.bind.apply(t,n.call(arguments,1)):(i=n.call(arguments,2),function(){return t.apply(e,i.length?i.concat(n.call(arguments)):arguments)})}var D=0;function h(t){return"_leaflet_id"in t||(t._leaflet_id=++D),t._leaflet_id}function j(t,e,i){var n,o,s=function(){n=!1,o&&(r.apply(i,o),o=!1)},r=function(){n?o=arguments:(t.apply(i,arguments),setTimeout(s,e),n=!0)};return r}function H(t,e,i){var n=e[1],e=e[0],o=n-e;return t===n&&i?t:((t-e)%o+o)%o+e}function u(){return!1}function i(t,e){return!1===e?t:(e=Math.pow(10,void 0===e?6:e),Math.round(t*e)/e)}function W(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function F(t){return W(t).split(/\s+/)}function c(t,e){for(var i in Object.prototype.hasOwnProperty.call(t,"options")||(t.options=t.options?R(t.options):{}),e)t.options[i]=e[i];return t.options}function U(t,e,i){var n,o=[];for(n in t)o.push(encodeURIComponent(i?n.toUpperCase():n)+"="+encodeURIComponent(t[n]));return(e&&-1!==e.indexOf("?")?"&":"?")+o.join("&")}var V=/\{ *([\w_ -]+) *\}/g;function q(t,i){return t.replace(V,function(t,e){e=i[e];if(void 0===e)throw new Error("No value provided for variable "+t);return e="function"==typeof e?e(i):e})}var d=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)};function G(t,e){for(var i=0;i<t.length;i++)if(t[i]===e)return i;return-1}var K="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=";function Y(t){return window["webkit"+t]||window["moz"+t]||window["ms"+t]}var X=0;function J(t){var e=+new Date,i=Math.max(0,16-(e-X));return X=e+i,window.setTimeout(t,i)}var $=window.requestAnimationFrame||Y("RequestAnimationFrame")||J,Q=window.cancelAnimationFrame||Y("CancelAnimationFrame")||Y("CancelRequestAnimationFrame")||function(t){window.clearTimeout(t)};function x(t,e,i){if(!i||$!==J)return $.call(window,a(t,e));t.call(e)}function r(t){t&&Q.call(window,t)}var tt={__proto__:null,extend:l,create:R,bind:a,get lastId(){return D},stamp:h,throttle:j,wrapNum:H,falseFn:u,formatNum:i,trim:W,splitWords:F,setOptions:c,getParamString:U,template:q,isArray:d,indexOf:G,emptyImageUrl:K,requestFn:$,cancelFn:Q,requestAnimFrame:x,cancelAnimFrame:r};function et(){}et.extend=function(t){function e(){c(this),this.initialize&&this.initialize.apply(this,arguments),this.callInitHooks()}var i,n=e.__super__=this.prototype,o=R(n);for(i in(o.constructor=e).prototype=o,this)Object.prototype.hasOwnProperty.call(this,i)&&"prototype"!==i&&"__super__"!==i&&(e[i]=this[i]);if(t.statics&&l(e,t.statics),t.includes){var s=t.includes;if("undefined"!=typeof L&&L&&L.Mixin){s=d(s)?s:[s];for(var r=0;r<s.length;r++)s[r]===L.Mixin.Events&&console.warn("Deprecated include of L.Mixin.Events: this property will be removed in future releases, please inherit from L.Evented instead.",(new Error).stack)}l.apply(null,[o].concat(t.includes))}return l(o,t),delete o.statics,delete o.includes,o.options&&(o.options=n.options?R(n.options):{},l(o.options,t.options)),o._initHooks=[],o.callInitHooks=function(){if(!this._initHooksCalled){n.callInitHooks&&n.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,e=o._initHooks.length;t<e;t++)o._initHooks[t].call(this)}},e},et.include=function(t){var e=this.prototype.options;return l(this.prototype,t),t.options&&(this.prototype.options=e,this.mergeOptions(t.options)),this},et.mergeOptions=function(t){return l(this.prototype.options,t),this},et.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i="function"==typeof t?t:function(){this[t].apply(this,e)};return this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i),this};var e={on:function(t,e,i){if("object"==typeof t)for(var n in t)this._on(n,t[n],e);else for(var o=0,s=(t=F(t)).length;o<s;o++)this._on(t[o],e,i);return this},off:function(t,e,i){if(arguments.length)if("object"==typeof t)for(var n in t)this._off(n,t[n],e);else{t=F(t);for(var o=1===arguments.length,s=0,r=t.length;s<r;s++)o?this._off(t[s]):this._off(t[s],e,i)}else delete this._events;return this},_on:function(t,e,i,n){"function"!=typeof e?console.warn("wrong listener type: "+typeof e):!1===this._listens(t,e,i)&&(e={fn:e,ctx:i=i===this?void 0:i},n&&(e.once=!0),this._events=this._events||{},this._events[t]=this._events[t]||[],this._events[t].push(e))},_off:function(t,e,i){var n,o,s;if(this._events&&(n=this._events[t]))if(1===arguments.length){if(this._firingCount)for(o=0,s=n.length;o<s;o++)n[o].fn=u;delete this._events[t]}else"function"!=typeof e?console.warn("wrong listener type: "+typeof e):!1!==(e=this._listens(t,e,i))&&(i=n[e],this._firingCount&&(i.fn=u,this._events[t]=n=n.slice()),n.splice(e,1))},fire:function(t,e,i){if(this.listens(t,i)){var n=l({},e,{type:t,target:this,sourceTarget:e&&e.sourceTarget||this});if(this._events){var o=this._events[t];if(o){this._firingCount=this._firingCount+1||1;for(var s=0,r=o.length;s<r;s++){var a=o[s],h=a.fn;a.once&&this.off(t,h,a.ctx),h.call(a.ctx||this,n)}this._firingCount--}}i&&this._propagateEvent(n)}return this},listens:function(t,e,i,n){"string"!=typeof t&&console.warn('"string" type argument expected');var o=e,s=("function"!=typeof e&&(n=!!e,i=o=void 0),this._events&&this._events[t]);if(s&&s.length&&!1!==this._listens(t,o,i))return!0;if(n)for(var r in this._eventParents)if(this._eventParents[r].listens(t,e,i,n))return!0;return!1},_listens:function(t,e,i){if(this._events){var n=this._events[t]||[];if(!e)return!!n.length;i===this&&(i=void 0);for(var o=0,s=n.length;o<s;o++)if(n[o].fn===e&&n[o].ctx===i)return o}return!1},once:function(t,e,i){if("object"==typeof t)for(var n in t)this._on(n,t[n],e,!0);else for(var o=0,s=(t=F(t)).length;o<s;o++)this._on(t[o],e,i,!0);return this},addEventParent:function(t){return this._eventParents=this._eventParents||{},this._eventParents[h(t)]=t,this},removeEventParent:function(t){return this._eventParents&&delete this._eventParents[h(t)],this},_propagateEvent:function(t){for(var e in this._eventParents)this._eventParents[e].fire(t.type,l({layer:t.target,propagatedFrom:t.target},t),!0)}},it=(e.addEventListener=e.on,e.removeEventListener=e.clearAllEventListeners=e.off,e.addOneTimeEventListener=e.once,e.fireEvent=e.fire,e.hasEventListeners=e.listens,et.extend(e));function p(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e}var nt=Math.trunc||function(t){return 0<t?Math.floor(t):Math.ceil(t)};function m(t,e,i){return t instanceof p?t:d(t)?new p(t[0],t[1]):null==t?t:"object"==typeof t&&"x"in t&&"y"in t?new p(t.x,t.y):new p(t,e,i)}function f(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n<o;n++)this.extend(i[n])}function _(t,e){return!t||t instanceof f?t:new f(t,e)}function s(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;n<o;n++)this.extend(i[n])}function g(t,e){return t instanceof s?t:new s(t,e)}function v(t,e,i){if(isNaN(t)||isNaN(e))throw new Error("Invalid LatLng object: ("+t+", "+e+")");this.lat=+t,this.lng=+e,void 0!==i&&(this.alt=+i)}function w(t,e,i){return t instanceof v?t:d(t)&&"object"!=typeof t[0]?3===t.length?new v(t[0],t[1],t[2]):2===t.length?new v(t[0],t[1]):null:null==t?t:"object"==typeof t&&"lat"in t?new v(t.lat,"lng"in t?t.lng:t.lon,t.alt):void 0===e?null:new v(t,e,i)}p.prototype={clone:function(){return new p(this.x,this.y)},add:function(t){return this.clone()._add(m(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(m(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},scaleBy:function(t){return new p(this.x*t.x,this.y*t.y)},unscaleBy:function(t){return new p(this.x/t.x,this.y/t.y)},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},ceil:function(){return this.clone()._ceil()},_ceil:function(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this},trunc:function(){return this.clone()._trunc()},_trunc:function(){return this.x=nt(this.x),this.y=nt(this.y),this},distanceTo:function(t){var e=(t=m(t)).x-this.x,t=t.y-this.y;return Math.sqrt(e*e+t*t)},equals:function(t){return(t=m(t)).x===this.x&&t.y===this.y},contains:function(t){return t=m(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+i(this.x)+", "+i(this.y)+")"}},f.prototype={extend:function(t){var e,i;if(t){if(t instanceof p||"number"==typeof t[0]||"x"in t)e=i=m(t);else if(e=(t=_(t)).min,i=t.max,!e||!i)return this;this.min||this.max?(this.min.x=Math.min(e.x,this.min.x),this.max.x=Math.max(i.x,this.max.x),this.min.y=Math.min(e.y,this.min.y),this.max.y=Math.max(i.y,this.max.y)):(this.min=e.clone(),this.max=i.clone())}return this},getCenter:function(t){return m((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return m(this.min.x,this.max.y)},getTopRight:function(){return m(this.max.x,this.min.y)},getTopLeft:function(){return this.min},getBottomRight:function(){return this.max},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return(t=("number"==typeof t[0]||t instanceof p?m:_)(t))instanceof f?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>=e.x&&n.x<=i.x,t=t.y>=e.y&&n.y<=i.y;return o&&t},overlaps:function(t){t=_(t);var e=this.min,i=this.max,n=t.min,t=t.max,o=t.x>e.x&&n.x<i.x,t=t.y>e.y&&n.y<i.y;return o&&t},isValid:function(){return!(!this.min||!this.max)},pad:function(t){var e=this.min,i=this.max,n=Math.abs(e.x-i.x)*t,t=Math.abs(e.y-i.y)*t;return _(m(e.x-n,e.y-t),m(i.x+n,i.y+t))},equals:function(t){return!!t&&(t=_(t),this.min.equals(t.getTopLeft())&&this.max.equals(t.getBottomRight()))}},s.prototype={extend:function(t){var e,i,n=this._southWest,o=this._northEast;if(t instanceof v)i=e=t;else{if(!(t instanceof s))return t?this.extend(w(t)||g(t)):this;if(e=t._southWest,i=t._northEast,!e||!i)return this}return n||o?(n.lat=Math.min(e.lat,n.lat),n.lng=Math.min(e.lng,n.lng),o.lat=Math.max(i.lat,o.lat),o.lng=Math.max(i.lng,o.lng)):(this._southWest=new v(e.lat,e.lng),this._northEast=new v(i.lat,i.lng)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,t=Math.abs(e.lng-i.lng)*t;return new s(new v(e.lat-n,e.lng-t),new v(i.lat+n,i.lng+t))},getCenter:function(){return new v((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new v(this.getNorth(),this.getWest())},getSouthEast:function(){return new v(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t=("number"==typeof t[0]||t instanceof v||"lat"in t?w:g)(t);var e,i,n=this._southWest,o=this._northEast;return t instanceof s?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=o.lat&&e.lng>=n.lng&&i.lng<=o.lng},intersects:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>=e.lat&&n.lat<=i.lat,t=t.lng>=e.lng&&n.lng<=i.lng;return o&&t},overlaps:function(t){t=g(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),t=t.getNorthEast(),o=t.lat>e.lat&&n.lat<i.lat,t=t.lng>e.lng&&n.lng<i.lng;return o&&t},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t,e){return!!t&&(t=g(t),this._southWest.equals(t.getSouthWest(),e)&&this._northEast.equals(t.getNorthEast(),e))},isValid:function(){return!(!this._southWest||!this._northEast)}};var ot={latLngToPoint:function(t,e){t=this.projection.project(t),e=this.scale(e);return this.transformation._transform(t,e)},pointToLatLng:function(t,e){e=this.scale(e),t=this.transformation.untransform(t,e);return this.projection.unproject(t)},project:function(t){return this.projection.project(t)},unproject:function(t){return this.projection.unproject(t)},scale:function(t){return 256*Math.pow(2,t)},zoom:function(t){return Math.log(t/256)/Math.LN2},getProjectedBounds:function(t){var e;return this.infinite?null:(e=this.projection.bounds,t=this.scale(t),new f(this.transformation.transform(e.min,t),this.transformation.transform(e.max,t)))},infinite:!(v.prototype={equals:function(t,e){return!!t&&(t=w(t),Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng))<=(void 0===e?1e-9:e))},toString:function(t){return"LatLng("+i(this.lat,t)+", "+i(this.lng,t)+")"},distanceTo:function(t){return st.distance(this,w(t))},wrap:function(){return st.wrapLatLng(this)},toBounds:function(t){var t=180*t/40075017,e=t/Math.cos(Math.PI/180*this.lat);return g([this.lat-t,this.lng-e],[this.lat+t,this.lng+e])},clone:function(){return new v(this.lat,this.lng,this.alt)}}),wrapLatLng:function(t){var e=this.wrapLng?H(t.lng,this.wrapLng,!0):t.lng;return new v(this.wrapLat?H(t.lat,this.wrapLat,!0):t.lat,e,t.alt)},wrapLatLngBounds:function(t){var e=t.getCenter(),i=this.wrapLatLng(e),n=e.lat-i.lat,e=e.lng-i.lng;return 0==n&&0==e?t:(i=t.getSouthWest(),t=t.getNorthEast(),new s(new v(i.lat-n,i.lng-e),new v(t.lat-n,t.lng-e)))}},st=l({},ot,{wrapLng:[-180,180],R:6371e3,distance:function(t,e){var i=Math.PI/180,n=t.lat*i,o=e.lat*i,s=Math.sin((e.lat-t.lat)*i/2),e=Math.sin((e.lng-t.lng)*i/2),t=s*s+Math.cos(n)*Math.cos(o)*e*e,i=2*Math.atan2(Math.sqrt(t),Math.sqrt(1-t));return this.R*i}}),rt=6378137,rt={R:rt,MAX_LATITUDE:85.0511287798,project:function(t){var e=Math.PI/180,i=this.MAX_LATITUDE,i=Math.max(Math.min(i,t.lat),-i),i=Math.sin(i*e);return new p(this.R*t.lng*e,this.R*Math.log((1+i)/(1-i))/2)},unproject:function(t){var e=180/Math.PI;return new v((2*Math.atan(Math.exp(t.y/this.R))-Math.PI/2)*e,t.x*e/this.R)},bounds:new f([-(rt=rt*Math.PI),-rt],[rt,rt])};function at(t,e,i,n){d(t)?(this._a=t[0],this._b=t[1],this._c=t[2],this._d=t[3]):(this._a=t,this._b=e,this._c=i,this._d=n)}function ht(t,e,i,n){return new at(t,e,i,n)}at.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return t.x=(e=e||1)*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return new p((t.x/(e=e||1)-this._b)/this._a,(t.y/e-this._d)/this._c)}};var lt=l({},st,{code:"EPSG:3857",projection:rt,transformation:ht(lt=.5/(Math.PI*rt.R),.5,-lt,.5)}),ut=l({},lt,{code:"EPSG:900913"});function ct(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function dt(t,e){for(var i,n,o,s,r="",a=0,h=t.length;a<h;a++){for(i=0,n=(o=t[a]).length;i<n;i++)r+=(i?"L":"M")+(s=o[i]).x+" "+s.y;r+=e?b.svg?"z":"x":""}return r||"M0 0"}var _t=document.documentElement.style,pt="ActiveXObject"in window,mt=pt&&!document.addEventListener,n="msLaunchUri"in navigator&&!("documentMode"in document),ft=y("webkit"),gt=y("android"),vt=y("android 2")||y("android 3"),yt=parseInt(/WebKit\/([0-9]+)|$/.exec(navigator.userAgent)[1],10),yt=gt&&y("Google")&&yt<537&&!("AudioNode"in window),xt=!!window.opera,wt=!n&&y("chrome"),bt=y("gecko")&&!ft&&!xt&&!pt,Pt=!wt&&y("safari"),Lt=y("phantom"),o="OTransition"in _t,Tt=0===navigator.platform.indexOf("Win"),Mt=pt&&"transition"in _t,zt="WebKitCSSMatrix"in window&&"m11"in new window.WebKitCSSMatrix&&!vt,_t="MozPerspective"in _t,Ct=!window.L_DISABLE_3D&&(Mt||zt||_t)&&!o&&!Lt,Zt="undefined"!=typeof orientation||y("mobile"),St=Zt&&ft,Et=Zt&&zt,kt=!window.PointerEvent&&window.MSPointerEvent,Ot=!(!window.PointerEvent&&!kt),At="ontouchstart"in window||!!window.TouchEvent,Bt=!window.L_NO_TOUCH&&(At||Ot),It=Zt&&xt,Rt=Zt&&bt,Nt=1<(window.devicePixelRatio||window.screen.deviceXDPI/window.screen.logicalXDPI),Dt=function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("testPassiveEventSupport",u,e),window.removeEventListener("testPassiveEventSupport",u,e)}catch(t){}return t}(),jt=!!document.createElement("canvas").getContext,Ht=!(!document.createElementNS||!ct("svg").createSVGRect),Wt=!!Ht&&((Wt=document.createElement("div")).innerHTML="<svg/>","http://www.w3.org/2000/svg"===(Wt.firstChild&&Wt.firstChild.namespaceURI));function y(t){return 0<=navigator.userAgent.toLowerCase().indexOf(t)}var b={ie:pt,ielt9:mt,edge:n,webkit:ft,android:gt,android23:vt,androidStock:yt,opera:xt,chrome:wt,gecko:bt,safari:Pt,phantom:Lt,opera12:o,win:Tt,ie3d:Mt,webkit3d:zt,gecko3d:_t,any3d:Ct,mobile:Zt,mobileWebkit:St,mobileWebkit3d:Et,msPointer:kt,pointer:Ot,touch:Bt,touchNative:At,mobileOpera:It,mobileGecko:Rt,retina:Nt,passiveEvents:Dt,canvas:jt,svg:Ht,vml:!Ht&&function(){try{var t=document.createElement("div"),e=(t.innerHTML='<v:shape adj="1"/>',t.firstChild);return e.style.behavior="url(#default#VML)",e&&"object"==typeof e.adj}catch(t){return!1}}(),inlineSvg:Wt,mac:0===navigator.platform.indexOf("Mac"),linux:0===navigator.platform.indexOf("Linux")},Ft=b.msPointer?"MSPointerDown":"pointerdown",Ut=b.msPointer?"MSPointerMove":"pointermove",Vt=b.msPointer?"MSPointerUp":"pointerup",qt=b.msPointer?"MSPointerCancel":"pointercancel",Gt={touchstart:Ft,touchmove:Ut,touchend:Vt,touchcancel:qt},Kt={touchstart:function(t,e){e.MSPOINTER_TYPE_TOUCH&&e.pointerType===e.MSPOINTER_TYPE_TOUCH&&O(e);ee(t,e)},touchmove:ee,touchend:ee,touchcancel:ee},Yt={},Xt=!1;function Jt(t,e,i){return"touchstart"!==e||Xt||(document.addEventListener(Ft,$t,!0),document.addEventListener(Ut,Qt,!0),document.addEventListener(Vt,te,!0),document.addEventListener(qt,te,!0),Xt=!0),Kt[e]?(i=Kt[e].bind(this,i),t.addEventListener(Gt[e],i,!1),i):(console.warn("wrong event specified:",e),u)}function $t(t){Yt[t.pointerId]=t}function Qt(t){Yt[t.pointerId]&&(Yt[t.pointerId]=t)}function te(t){delete Yt[t.pointerId]}function ee(t,e){if(e.pointerType!==(e.MSPOINTER_TYPE_MOUSE||"mouse")){for(var i in e.touches=[],Yt)e.touches.push(Yt[i]);e.changedTouches=[e],t(e)}}var ie=200;function ne(t,i){t.addEventListener("dblclick",i);var n,o=0;function e(t){var e;1!==t.detail?n=t.detail:"mouse"===t.pointerType||t.sourceCapabilities&&!t.sourceCapabilities.firesTouchEvents||((e=Ne(t)).some(function(t){return t instanceof HTMLLabelElement&&t.attributes.for})&&!e.some(function(t){return t instanceof HTMLInputElement||t instanceof HTMLSelectElement})||((e=Date.now())-o<=ie?2===++n&&i(function(t){var e,i,n={};for(i in t)e=t[i],n[i]=e&&e.bind?e.bind(t):e;return(t=n).type="dblclick",n.detail=2,n.isTrusted=!1,n._simulated=!0,n}(t)):n=1,o=e))}return t.addEventListener("click",e),{dblclick:i,simDblclick:e}}var oe,se,re,ae,he,le,ue=we(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),ce=we(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),de="webkitTransition"===ce||"OTransition"===ce?ce+"End":"transitionend";function _e(t){return"string"==typeof t?document.getElementById(t):t}function pe(t,e){var i=t.style[e]||t.currentStyle&&t.currentStyle[e];return"auto"===(i=i&&"auto"!==i||!document.defaultView?i:(t=document.defaultView.getComputedStyle(t,null))?t[e]:null)?null:i}function P(t,e,i){t=document.createElement(t);return t.className=e||"",i&&i.appendChild(t),t}function T(t){var e=t.parentNode;e&&e.removeChild(t)}function me(t){for(;t.firstChild;)t.removeChild(t.firstChild)}function fe(t){var e=t.parentNode;e&&e.lastChild!==t&&e.appendChild(t)}function ge(t){var e=t.parentNode;e&&e.firstChild!==t&&e.insertBefore(t,e.firstChild)}function ve(t,e){return void 0!==t.classList?t.classList.contains(e):0<(t=xe(t)).length&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(t)}function M(t,e){var i;if(void 0!==t.classList)for(var n=F(e),o=0,s=n.length;o<s;o++)t.classList.add(n[o]);else ve(t,e)||ye(t,((i=xe(t))?i+" ":"")+e)}function z(t,e){void 0!==t.classList?t.classList.remove(e):ye(t,W((" "+xe(t)+" ").replace(" "+e+" "," ")))}function ye(t,e){void 0===t.className.baseVal?t.className=e:t.className.baseVal=e}function xe(t){return void 0===(t=t.correspondingElement?t.correspondingElement:t).className.baseVal?t.className:t.className.baseVal}function C(t,e){if("opacity"in t.style)t.style.opacity=e;else if("filter"in t.style){var i=!1,n="DXImageTransform.Microsoft.Alpha";try{i=t.filters.item(n)}catch(t){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=" progid:"+n+"(opacity="+e+")"}}function we(t){for(var e=document.documentElement.style,i=0;i<t.length;i++)if(t[i]in e)return t[i];return!1}function be(t,e,i){e=e||new p(0,0);t.style[ue]=(b.ie3d?"translate("+e.x+"px,"+e.y+"px)":"translate3d("+e.x+"px,"+e.y+"px,0)")+(i?" scale("+i+")":"")}function Z(t,e){t._leaflet_pos=e,b.any3d?be(t,e):(t.style.left=e.x+"px",t.style.top=e.y+"px")}function Pe(t){return t._leaflet_pos||new p(0,0)}function Le(){S(window,"dragstart",O)}function Te(){k(window,"dragstart",O)}function Me(t){for(;-1===t.tabIndex;)t=t.parentNode;t.style&&(ze(),le=(he=t).style.outlineStyle,t.style.outlineStyle="none",S(window,"keydown",ze))}function ze(){he&&(he.style.outlineStyle=le,le=he=void 0,k(window,"keydown",ze))}function Ce(t){for(;!((t=t.parentNode).offsetWidth&&t.offsetHeight||t===document.body););return t}function Ze(t){var e=t.getBoundingClientRect();return{x:e.width/t.offsetWidth||1,y:e.height/t.offsetHeight||1,boundingClientRect:e}}ae="onselectstart"in document?(re=function(){S(window,"selectstart",O)},function(){k(window,"selectstart",O)}):(se=we(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]),re=function(){var t;se&&(t=document.documentElement.style,oe=t[se],t[se]="none")},function(){se&&(document.documentElement.style[se]=oe,oe=void 0)});pt={__proto__:null,TRANSFORM:ue,TRANSITION:ce,TRANSITION_END:de,get:_e,getStyle:pe,create:P,remove:T,empty:me,toFront:fe,toBack:ge,hasClass:ve,addClass:M,removeClass:z,setClass:ye,getClass:xe,setOpacity:C,testProp:we,setTransform:be,setPosition:Z,getPosition:Pe,get disableTextSelection(){return re},get enableTextSelection(){return ae},disableImageDrag:Le,enableImageDrag:Te,preventOutline:Me,restoreOutline:ze,getSizedParentNode:Ce,getScale:Ze};function S(t,e,i,n){if(e&&"object"==typeof e)for(var o in e)ke(t,o,e[o],i);else for(var s=0,r=(e=F(e)).length;s<r;s++)ke(t,e[s],i,n);return this}var E="_leaflet_events";function k(t,e,i,n){if(1===arguments.length)Se(t),delete t[E];else if(e&&"object"==typeof e)for(var o in e)Oe(t,o,e[o],i);else if(e=F(e),2===arguments.length)Se(t,function(t){return-1!==G(e,t)});else for(var s=0,r=e.length;s<r;s++)Oe(t,e[s],i,n);return this}function Se(t,e){for(var i in t[E]){var n=i.split(/\d/)[0];e&&!e(n)||Oe(t,n,null,null,i)}}var Ee={mouseenter:"mouseover",mouseleave:"mouseout",wheel:!("onwheel"in window)&&"mousewheel"};function ke(e,t,i,n){var o,s,r=t+h(i)+(n?"_"+h(n):"");e[E]&&e[E][r]||(s=o=function(t){return i.call(n||e,t||window.event)},!b.touchNative&&b.pointer&&0===t.indexOf("touch")?o=Jt(e,t,o):b.touch&&"dblclick"===t?o=ne(e,o):"addEventListener"in e?"touchstart"===t||"touchmove"===t||"wheel"===t||"mousewheel"===t?e.addEventListener(Ee[t]||t,o,!!b.passiveEvents&&{passive:!1}):"mouseenter"===t||"mouseleave"===t?e.addEventListener(Ee[t],o=function(t){t=t||window.event,We(e,t)&&s(t)},!1):e.addEventListener(t,s,!1):e.attachEvent("on"+t,o),e[E]=e[E]||{},e[E][r]=o)}function Oe(t,e,i,n,o){o=o||e+h(i)+(n?"_"+h(n):"");var s,r,i=t[E]&&t[E][o];i&&(!b.touchNative&&b.pointer&&0===e.indexOf("touch")?(n=t,r=i,Gt[s=e]?n.removeEventListener(Gt[s],r,!1):console.warn("wrong event specified:",s)):b.touch&&"dblclick"===e?(n=i,(r=t).removeEventListener("dblclick",n.dblclick),r.removeEventListener("click",n.simDblclick)):"removeEventListener"in t?t.removeEventListener(Ee[e]||e,i,!1):t.detachEvent("on"+e,i),t[E][o]=null)}function Ae(t){return t.stopPropagation?t.stopPropagation():t.originalEvent?t.originalEvent._stopped=!0:t.cancelBubble=!0,this}function Be(t){return ke(t,"wheel",Ae),this}function Ie(t){return S(t,"mousedown touchstart dblclick contextmenu",Ae),t._leaflet_disable_click=!0,this}function O(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this}function Re(t){return O(t),Ae(t),this}function Ne(t){if(t.composedPath)return t.composedPath();for(var e=[],i=t.target;i;)e.push(i),i=i.parentNode;return e}function De(t,e){var i,n;return e?(n=(i=Ze(e)).boundingClientRect,new p((t.clientX-n.left)/i.x-e.clientLeft,(t.clientY-n.top)/i.y-e.clientTop)):new p(t.clientX,t.clientY)}var je=b.linux&&b.chrome?window.devicePixelRatio:b.mac?3*window.devicePixelRatio:0<window.devicePixelRatio?2*window.devicePixelRatio:1;function He(t){return b.edge?t.wheelDeltaY/2:t.deltaY&&0===t.deltaMode?-t.deltaY/je:t.deltaY&&1===t.deltaMode?20*-t.deltaY:t.deltaY&&2===t.deltaMode?60*-t.deltaY:t.deltaX||t.deltaZ?0:t.wheelDelta?(t.wheelDeltaY||t.wheelDelta)/2:t.detail&&Math.abs(t.detail)<32765?20*-t.detail:t.detail?t.detail/-32765*60:0}function We(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(t){return!1}return i!==t}var mt={__proto__:null,on:S,off:k,stopPropagation:Ae,disableScrollPropagation:Be,disableClickPropagation:Ie,preventDefault:O,stop:Re,getPropagationPath:Ne,getMousePosition:De,getWheelDelta:He,isExternalTarget:We,addListener:S,removeListener:k},Fe=it.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=Pe(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(!0),this._complete())},_animate:function(){this._animId=x(this._animate,this),this._step()},_step:function(t){var e=+new Date-this._startTime,i=1e3*this._duration;e<i?this._runFrame(this._easeOut(e/i),t):(this._runFrame(1),this._complete())},_runFrame:function(t,e){t=this._startPos.add(this._offset.multiplyBy(t));e&&t._round(),Z(this._el,t),this.fire("step")},_complete:function(){r(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),A=it.extend({options:{crs:lt,center:void 0,zoom:void 0,minZoom:void 0,maxZoom:void 0,layers:[],maxBounds:void 0,renderer:void 0,zoomAnimation:!0,zoomAnimationThreshold:4,fadeAnimation:!0,markerZoomAnimation:!0,transform3DLimit:8388608,zoomSnap:1,zoomDelta:1,trackResize:!0},initialize:function(t,e){e=c(this,e),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._sizeChanged=!0,this._initContainer(t),this._initLayout(),this._onResize=a(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),void 0!==e.zoom&&(this._zoom=this._limitZoom(e.zoom)),e.center&&void 0!==e.zoom&&this.setView(w(e.center),e.zoom,{reset:!0}),this.callInitHooks(),this._zoomAnimated=ce&&b.any3d&&!b.mobileOpera&&this.options.zoomAnimation,this._zoomAnimated&&(this._createAnimProxy(),S(this._proxy,de,this._catchTransitionEnd,this)),this._addLayers(this.options.layers)},setView:function(t,e,i){if((e=void 0===e?this._zoom:this._limitZoom(e),t=this._limitCenter(w(t),e,this.options.maxBounds),i=i||{},this._stop(),this._loaded&&!i.reset&&!0!==i)&&(void 0!==i.animate&&(i.zoom=l({animate:i.animate},i.zoom),i.pan=l({animate:i.animate,duration:i.duration},i.pan)),this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,i.zoom):this._tryAnimatedPan(t,i.pan)))return clearTimeout(this._sizeTimer),this;return this._resetView(t,e,i.pan&&i.pan.noMoveStart),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=t,this)},zoomIn:function(t,e){return t=t||(b.any3d?this.options.zoomDelta:1),this.setZoom(this._zoom+t,e)},zoomOut:function(t,e){return t=t||(b.any3d?this.options.zoomDelta:1),this.setZoom(this._zoom-t,e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),o=this.getSize().divideBy(2),t=(t instanceof p?t:this.latLngToContainerPoint(t)).subtract(o).multiplyBy(1-1/n),n=this.containerPointToLatLng(o.add(t));return this.setView(n,e,{zoom:i})},_getBoundsCenterZoom:function(t,e){e=e||{},t=t.getBounds?t.getBounds():g(t);var i=m(e.paddingTopLeft||e.padding||[0,0]),n=m(e.paddingBottomRight||e.padding||[0,0]),o=this.getBoundsZoom(t,!1,i.add(n));return(o="number"==typeof e.maxZoom?Math.min(e.maxZoom,o):o)===1/0?{center:t.getCenter(),zoom:o}:(e=n.subtract(i).divideBy(2),n=this.project(t.getSouthWest(),o),i=this.project(t.getNorthEast(),o),{center:this.unproject(n.add(i).divideBy(2).add(e),o),zoom:o})},fitBounds:function(t,e){if((t=g(t)).isValid())return t=this._getBoundsCenterZoom(t,e),this.setView(t.center,t.zoom,e);throw new Error("Bounds are not valid.")},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t,e){var i;return e=e||{},(t=m(t).round()).x||t.y?(!0===e.animate||this.getSize().contains(t)?(this._panAnim||(this._panAnim=new Fe,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),e.noMoveStart||this.fire("movestart"),!1!==e.animate?(M(this._mapPane,"leaflet-pan-anim"),i=this._getMapPanePos().subtract(t).round(),this._panAnim.run(this._mapPane,i,e.duration||.25,e.easeLinearity)):(this._rawPanBy(t),this.fire("move").fire("moveend"))):this._resetView(this.unproject(this.project(this.getCenter()).add(t)),this.getZoom()),this):this.fire("moveend")},flyTo:function(n,o,t){if(!1===(t=t||{}).animate||!b.any3d)return this.setView(n,o,t);this._stop();var s=this.project(this.getCenter()),r=this.project(n),e=this.getSize(),a=this._zoom,h=(n=w(n),o=void 0===o?a:o,Math.max(e.x,e.y)),i=h*this.getZoomScale(a,o),l=r.distanceTo(s)||1,u=1.42,c=u*u;function d(t){t=(i*i-h*h+(t?-1:1)*c*c*l*l)/(2*(t?i:h)*c*l),t=Math.sqrt(t*t+1)-t;return t<1e-9?-18:Math.log(t)}function _(t){return(Math.exp(t)-Math.exp(-t))/2}function p(t){return(Math.exp(t)+Math.exp(-t))/2}var m=d(0);function f(t){return h*(p(m)*(_(t=m+u*t)/p(t))-_(m))/c}var g=Date.now(),v=(d(1)-m)/u,y=t.duration?1e3*t.duration:1e3*v*.8;return this._moveStart(!0,t.noMoveStart),function t(){var e=(Date.now()-g)/y,i=(1-Math.pow(1-e,1.5))*v;e<=1?(this._flyToFrame=x(t,this),this._move(this.unproject(s.add(r.subtract(s).multiplyBy(f(i)/l)),a),this.getScaleZoom(h/(e=i,h*(p(m)/p(m+u*e))),a),{flyTo:!0})):this._move(n,o)._moveEnd(!0)}.call(this),this},flyToBounds:function(t,e){t=this._getBoundsCenterZoom(t,e);return this.flyTo(t.center,t.zoom,e)},setMaxBounds:function(t){return t=g(t),this.listens("moveend",this._panInsideMaxBounds)&&this.off("moveend",this._panInsideMaxBounds),t.isValid()?(this.options.maxBounds=t,this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds)):(this.options.maxBounds=null,this)},setMinZoom:function(t){var e=this.options.minZoom;return this.options.minZoom=t,this._loaded&&e!==t&&(this.fire("zoomlevelschange"),this.getZoom()<this.options.minZoom)?this.setZoom(t):this},setMaxZoom:function(t){var e=this.options.maxZoom;return this.options.maxZoom=t,this._loaded&&e!==t&&(this.fire("zoomlevelschange"),this.getZoom()>this.options.maxZoom)?this.setZoom(t):this},panInsideBounds:function(t,e){this._enforcingBounds=!0;var i=this.getCenter(),t=this._limitCenter(i,this._zoom,g(t));return i.equals(t)||this.panTo(t,e),this._enforcingBounds=!1,this},panInside:function(t,e){var i=m((e=e||{}).paddingTopLeft||e.padding||[0,0]),n=m(e.paddingBottomRight||e.padding||[0,0]),o=this.project(this.getCenter()),t=this.project(t),s=this.getPixelBounds(),i=_([s.min.add(i),s.max.subtract(n)]),s=i.getSize();return i.contains(t)||(this._enforcingBounds=!0,n=t.subtract(i.getCenter()),i=i.extend(t).getSize().subtract(s),o.x+=n.x<0?-i.x:i.x,o.y+=n.y<0?-i.y:i.y,this.panTo(this.unproject(o),e),this._enforcingBounds=!1),this},invalidateSize:function(t){if(!this._loaded)return this;t=l({animate:!1,pan:!0},!0===t?{animate:!0}:t);var e=this.getSize(),i=(this._sizeChanged=!0,this._lastCenter=null,this.getSize()),n=e.divideBy(2).round(),o=i.divideBy(2).round(),n=n.subtract(o);return n.x||n.y?(t.animate&&t.pan?this.panBy(n):(t.pan&&this._rawPanBy(n),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(a(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(t){var e,i;return t=this._locateOptions=l({timeout:1e4,watch:!1},t),"geolocation"in navigator?(e=a(this._handleGeolocationResponse,this),i=a(this._handleGeolocationError,this),t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t)):this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e;this._container._leaflet_id&&(e=t.code,t=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout"),this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+t+"."}))},_handleGeolocationResponse:function(t){if(this._container._leaflet_id){var e,i,n=new v(t.coords.latitude,t.coords.longitude),o=n.toBounds(2*t.coords.accuracy),s=this._locateOptions,r=(s.setView&&(e=this.getBoundsZoom(o),this.setView(n,s.maxZoom?Math.min(e,s.maxZoom):e)),{latlng:n,bounds:o,timestamp:t.timestamp});for(i in t.coords)"number"==typeof t.coords[i]&&(r[i]=t.coords[i]);this.fire("locationfound",r)}},addHandler:function(t,e){return e&&(e=this[t]=new e(this),this._handlers.push(e),this.options[t]&&e.enable()),this},remove:function(){if(this._initEvents(!0),this.options.maxBounds&&this.off("moveend",this._panInsideMaxBounds),this._containerId!==this._container._leaflet_id)throw new Error("Map container is being reused by another instance");try{delete this._container._leaflet_id,delete this._containerId}catch(t){this._container._leaflet_id=void 0,this._containerId=void 0}for(var t in void 0!==this._locationWatchId&&this.stopLocate(),this._stop(),T(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(r(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload"),this._layers)this._layers[t].remove();for(t in this._panes)T(this._panes[t]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(t,e){e=P("div","leaflet-pane"+(t?" leaflet-"+t.replace("Pane","")+"-pane":""),e||this._mapPane);return t&&(this._panes[t]=e),e},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds();return new s(this.unproject(t.getBottomLeft()),this.unproject(t.getTopRight()))},getMinZoom:function(){return void 0===this.options.minZoom?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return void 0===this.options.maxZoom?void 0===this._layersMaxZoom?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=g(t),i=m(i||[0,0]);var n=this.getZoom()||0,o=this.getMinZoom(),s=this.getMaxZoom(),r=t.getNorthWest(),t=t.getSouthEast(),i=this.getSize().subtract(i),t=_(this.project(t,n),this.project(r,n)).getSize(),r=b.any3d?this.options.zoomSnap:1,a=i.x/t.x,i=i.y/t.y,t=e?Math.max(a,i):Math.min(a,i),n=this.getScaleZoom(t,n);return r&&(n=Math.round(n/(r/100))*(r/100),n=e?Math.ceil(n/r)*r:Math.floor(n/r)*r),Math.max(o,Math.min(s,n))},getSize:function(){return this._size&&!this._sizeChanged||(this._size=new p(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(t,e){t=this._getTopLeftPoint(t,e);return new f(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(t){return this.options.crs.getProjectedBounds(void 0===t?this.getZoom():t)},getPane:function(t){return"string"==typeof t?this._panes[t]:t},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t,e){var i=this.options.crs;return e=void 0===e?this._zoom:e,i.scale(t)/i.scale(e)},getScaleZoom:function(t,e){var i=this.options.crs,t=(e=void 0===e?this._zoom:e,i.zoom(t*i.scale(e)));return isNaN(t)?1/0:t},project:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.latLngToPoint(w(t),e)},unproject:function(t,e){return e=void 0===e?this._zoom:e,this.options.crs.pointToLatLng(m(t),e)},layerPointToLatLng:function(t){t=m(t).add(this.getPixelOrigin());return this.unproject(t)},latLngToLayerPoint:function(t){return this.project(w(t))._round()._subtract(this.getPixelOrigin())},wrapLatLng:function(t){return this.options.crs.wrapLatLng(w(t))},wrapLatLngBounds:function(t){return this.options.crs.wrapLatLngBounds(g(t))},distance:function(t,e){return this.options.crs.distance(w(t),w(e))},containerPointToLayerPoint:function(t){return m(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return m(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){t=this.containerPointToLayerPoint(m(t));return this.layerPointToLatLng(t)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(w(t)))},mouseEventToContainerPoint:function(t){return De(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){t=this._container=_e(t);if(!t)throw new Error("Map container not found.");if(t._leaflet_id)throw new Error("Map container is already initialized.");S(t,"scroll",this._onScroll,this),this._containerId=h(t)},_initLayout:function(){var t=this._container,e=(this._fadeAnimated=this.options.fadeAnimation&&b.any3d,M(t,"leaflet-container"+(b.touch?" leaflet-touch":"")+(b.retina?" leaflet-retina":"")+(b.ielt9?" leaflet-oldie":"")+(b.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":"")),pe(t,"position"));"absolute"!==e&&"relative"!==e&&"fixed"!==e&&"sticky"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),Z(this._mapPane,new p(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(M(t.markerPane,"leaflet-zoom-hide"),M(t.shadowPane,"leaflet-zoom-hide"))},_resetView:function(t,e,i){Z(this._mapPane,new p(0,0));var n=!this._loaded,o=(this._loaded=!0,e=this._limitZoom(e),this.fire("viewprereset"),this._zoom!==e);this._moveStart(o,i)._move(t,e)._moveEnd(o),this.fire("viewreset"),n&&this.fire("load")},_moveStart:function(t,e){return t&&this.fire("zoomstart"),e||this.fire("movestart"),this},_move:function(t,e,i,n){void 0===e&&(e=this._zoom);var o=this._zoom!==e;return this._zoom=e,this._lastCenter=t,this._pixelOrigin=this._getNewPixelOrigin(t),n?i&&i.pinch&&this.fire("zoom",i):((o||i&&i.pinch)&&this.fire("zoom",i),this.fire("move",i)),this},_moveEnd:function(t){return t&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return r(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(t){Z(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_panInsideMaxBounds:function(){this._enforcingBounds||this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(t){this._targets={};var e=t?k:S;e((this._targets[h(this._container)]=this)._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&e(window,"resize",this._onResize,this),b.any3d&&this.options.transform3DLimit&&(t?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){r(this._resizeRequest),this._resizeRequest=x(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var t=this._getMapPanePos();Math.max(Math.abs(t.x),Math.abs(t.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(t,e){for(var i,n=[],o="mouseout"===e||"mouseover"===e,s=t.target||t.srcElement,r=!1;s;){if((i=this._targets[h(s)])&&("click"===e||"preclick"===e)&&this._draggableMoved(i)){r=!0;break}if(i&&i.listens(e,!0)){if(o&&!We(s,t))break;if(n.push(i),o)break}if(s===this._container)break;s=s.parentNode}return n=n.length||r||o||!this.listens(e,!0)?n:[this]},_isClickDisabled:function(t){for(;t&&t!==this._container;){if(t._leaflet_disable_click)return!0;t=t.parentNode}},_handleDOMEvent:function(t){var e,i=t.target||t.srcElement;!this._loaded||i._leaflet_disable_events||"click"===t.type&&this._isClickDisabled(i)||("mousedown"===(e=t.type)&&Me(i),this._fireDOMEvent(t,e))},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(t,e,i){"click"===t.type&&((a=l({},t)).type="preclick",this._fireDOMEvent(a,a.type,i));var n=this._findEventTargets(t,e);if(i){for(var o=[],s=0;s<i.length;s++)i[s].listens(e,!0)&&o.push(i[s]);n=o.concat(n)}if(n.length){"contextmenu"===e&&O(t);var r,a=n[0],h={originalEvent:t};for("keypress"!==t.type&&"keydown"!==t.type&&"keyup"!==t.type&&(r=a.getLatLng&&(!a._radius||a._radius<=10),h.containerPoint=r?this.latLngToContainerPoint(a.getLatLng()):this.mouseEventToContainerPoint(t),h.layerPoint=this.containerPointToLayerPoint(h.containerPoint),h.latlng=r?a.getLatLng():this.layerPointToLatLng(h.layerPoint)),s=0;s<n.length;s++)if(n[s].fire(e,h,!0),h.originalEvent._stopped||!1===n[s].options.bubblingMouseEvents&&-1!==G(this._mouseEvents,e))return}},_draggableMoved:function(t){return(t=t.dragging&&t.dragging.enabled()?t:this).dragging&&t.dragging.moved()||this.boxZoom&&this.boxZoom.moved()},_clearHandlers:function(){for(var t=0,e=this._handlers.length;t<e;t++)this._handlers[t].disable()},whenReady:function(t,e){return this._loaded?t.call(e||this,{target:this}):this.on("load",t,e),this},_getMapPanePos:function(){return Pe(this._mapPane)||new p(0,0)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(t,e){return(t&&void 0!==e?this._getNewPixelOrigin(t,e):this.getPixelOrigin()).subtract(this._getMapPanePos())},_getNewPixelOrigin:function(t,e){var i=this.getSize()._divideBy(2);return this.project(t,e)._subtract(i)._add(this._getMapPanePos())._round()},_latLngToNewLayerPoint:function(t,e,i){i=this._getNewPixelOrigin(i,e);return this.project(t,e)._subtract(i)},_latLngBoundsToNewLayerBounds:function(t,e,i){i=this._getNewPixelOrigin(i,e);return _([this.project(t.getSouthWest(),e)._subtract(i),this.project(t.getNorthWest(),e)._subtract(i),this.project(t.getSouthEast(),e)._subtract(i),this.project(t.getNorthEast(),e)._subtract(i)])},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,e,i){var n,o;return!i||(n=this.project(t,e),o=this.getSize().divideBy(2),o=new f(n.subtract(o),n.add(o)),o=this._getBoundsOffset(o,i,e),Math.abs(o.x)<=1&&Math.abs(o.y)<=1)?t:this.unproject(n.add(o),e)},_limitOffset:function(t,e){var i;return e?(i=new f((i=this.getPixelBounds()).min.add(t),i.max.add(t)),t.add(this._getBoundsOffset(i,e))):t},_getBoundsOffset:function(t,e,i){e=_(this.project(e.getNorthEast(),i),this.project(e.getSouthWest(),i)),i=e.min.subtract(t.min),e=e.max.subtract(t.max);return new p(this._rebound(i.x,-e.x),this._rebound(i.y,-e.y))},_rebound:function(t,e){return 0<t+e?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom(),n=b.any3d?this.options.zoomSnap:1;return n&&(t=Math.round(t/n)*n),Math.max(e,Math.min(i,t))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){z(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){t=this._getCenterOffset(t)._trunc();return!(!0!==(e&&e.animate)&&!this.getSize().contains(t))&&(this.panBy(t,e),!0)},_createAnimProxy:function(){var t=this._proxy=P("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(t),this.on("zoomanim",function(t){var e=ue,i=this._proxy.style[e];be(this._proxy,this.project(t.center,t.zoom),this.getZoomScale(t.zoom,1)),i===this._proxy.style[e]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){T(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var t=this.getCenter(),e=this.getZoom();be(this._proxy,this.project(t,e),this.getZoomScale(e,1))},_catchTransitionEnd:function(t){this._animatingZoom&&0<=t.propertyName.indexOf("transform")&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(!this._animatingZoom){if(i=i||{},!this._zoomAnimated||!1===i.animate||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),n=this._getCenterOffset(t)._divideBy(1-1/n);if(!0!==i.animate&&!this.getSize().contains(n))return!1;x(function(){this._moveStart(!0,i.noMoveStart||!1)._animateZoom(t,e,!0)},this)}return!0},_animateZoom:function(t,e,i,n){this._mapPane&&(i&&(this._animatingZoom=!0,this._animateToCenter=t,this._animateToZoom=e,M(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:t,zoom:e,noUpdate:n}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(a(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){this._animatingZoom&&(this._mapPane&&z(this._mapPane,"leaflet-zoom-anim"),this._animatingZoom=!1,this._move(this._animateToCenter,this._animateToZoom,void 0,!0),this._tempFireZoomEvent&&this.fire("zoom"),delete this._tempFireZoomEvent,this.fire("move"),this._moveEnd(!0))}});function Ue(t){return new B(t)}var B=et.extend({options:{position:"topright"},initialize:function(t){c(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this.remove(),this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),t=t._controlCorners[i];return M(e,"leaflet-control"),-1!==i.indexOf("bottom")?t.insertBefore(e,t.firstChild):t.appendChild(e),this._map.on("unload",this.remove,this),this},remove:function(){return this._map&&(T(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null),this},_refocusOnMap:function(t){this._map&&t&&0<t.screenX&&0<t.screenY&&this._map.getContainer().focus()}}),Ve=(A.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.remove(),this},_initControlPos:function(){var i=this._controlCorners={},n="leaflet-",o=this._controlContainer=P("div",n+"control-container",this._container);function t(t,e){i[t+e]=P("div",n+t+" "+n+e,o)}t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){for(var t in this._controlCorners)T(this._controlCorners[t]);T(this._controlContainer),delete this._controlCorners,delete this._controlContainer}}),B.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(t,e,i,n){return i<n?-1:n<i?1:0}},initialize:function(t,e,i){for(var n in c(this,i),this._layerControlInputs=[],this._layers=[],this._lastZIndex=0,this._handlingClick=!1,this._preventClick=!1,t)this._addLayer(t[n],n);for(n in e)this._addLayer(e[n],n,!0)},onAdd:function(t){this._initLayout(),this._update(),(this._map=t).on("zoomend",this._checkDisabledLayers,this);for(var e=0;e<this._layers.length;e++)this._layers[e].layer.on("add remove",this._onLayerChange,this);return this._container},addTo:function(t){return B.prototype.addTo.call(this,t),this._expandIfNotCollapsed()},onRemove:function(){this._map.off("zoomend",this._checkDisabledLayers,this);for(var t=0;t<this._layers.length;t++)this._layers[t].layer.off("add remove",this._onLayerChange,this)},addBaseLayer:function(t,e){return this._addLayer(t,e),this._map?this._update():this},addOverlay:function(t,e){return this._addLayer(t,e,!0),this._map?this._update():this},removeLayer:function(t){t.off("add remove",this._onLayerChange,this);t=this._getLayer(h(t));return t&&this._layers.splice(this._layers.indexOf(t),1),this._map?this._update():this},expand:function(){M(this._container,"leaflet-control-layers-expanded"),this._section.style.height=null;var t=this._map.getSize().y-(this._container.offsetTop+50);return t<this._section.clientHeight?(M(this._section,"leaflet-control-layers-scrollbar"),this._section.style.height=t+"px"):z(this._section,"leaflet-control-layers-scrollbar"),this._checkDisabledLayers(),this},collapse:function(){return z(this._container,"leaflet-control-layers-expanded"),this},_initLayout:function(){var t="leaflet-control-layers",e=this._container=P("div",t),i=this.options.collapsed,n=(e.setAttribute("aria-haspopup",!0),Ie(e),Be(e),this._section=P("section",t+"-list")),o=(i&&(this._map.on("click",this.collapse,this),S(e,{mouseenter:this._expandSafely,mouseleave:this.collapse},this)),this._layersLink=P("a",t+"-toggle",e));o.href="#",o.title="Layers",o.setAttribute("role","button"),S(o,{keydown:function(t){13===t.keyCode&&this._expandSafely()},click:function(t){O(t),this._expandSafely()}},this),i||this.expand(),this._baseLayersList=P("div",t+"-base",n),this._separator=P("div",t+"-separator",n),this._overlaysList=P("div",t+"-overlays",n),e.appendChild(n)},_getLayer:function(t){for(var e=0;e<this._layers.length;e++)if(this._layers[e]&&h(this._layers[e].layer)===t)return this._layers[e]},_addLayer:function(t,e,i){this._map&&t.on("add remove",this._onLayerChange,this),this._layers.push({layer:t,name:e,overlay:i}),this.options.sortLayers&&this._layers.sort(a(function(t,e){return this.options.sortFunction(t.layer,e.layer,t.name,e.name)},this)),this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex)),this._expandIfNotCollapsed()},_update:function(){if(this._container){me(this._baseLayersList),me(this._overlaysList),this._layerControlInputs=[];for(var t,e,i,n=0,o=0;o<this._layers.length;o++)i=this._layers[o],this._addItem(i),e=e||i.overlay,t=t||!i.overlay,n+=i.overlay?0:1;this.options.hideSingleBase&&(this._baseLayersList.style.display=(t=t&&1<n)?"":"none"),this._separator.style.display=e&&t?"":"none"}return this},_onLayerChange:function(t){this._handlingClick||this._update();var e=this._getLayer(h(t.target)),t=e.overlay?"add"===t.type?"overlayadd":"overlayremove":"add"===t.type?"baselayerchange":null;t&&this._map.fire(t,e)},_createRadioElement:function(t,e){t='<input type="radio" class="leaflet-control-layers-selector" name="'+t+'"'+(e?' checked="checked"':"")+"/>",e=document.createElement("div");return e.innerHTML=t,e.firstChild},_addItem:function(t){var e,i=document.createElement("label"),n=this._map.hasLayer(t.layer),n=(t.overlay?((e=document.createElement("input")).type="checkbox",e.className="leaflet-control-layers-selector",e.defaultChecked=n):e=this._createRadioElement("leaflet-base-layers_"+h(this),n),this._layerControlInputs.push(e),e.layerId=h(t.layer),S(e,"click",this._onInputClick,this),document.createElement("span")),o=(n.innerHTML=" "+t.name,document.createElement("span"));return i.appendChild(o),o.appendChild(e),o.appendChild(n),(t.overlay?this._overlaysList:this._baseLayersList).appendChild(i),this._checkDisabledLayers(),i},_onInputClick:function(){if(!this._preventClick){var t,e,i=this._layerControlInputs,n=[],o=[];this._handlingClick=!0;for(var s=i.length-1;0<=s;s--)t=i[s],e=this._getLayer(t.layerId).layer,t.checked?n.push(e):t.checked||o.push(e);for(s=0;s<o.length;s++)this._map.hasLayer(o[s])&&this._map.removeLayer(o[s]);for(s=0;s<n.length;s++)this._map.hasLayer(n[s])||this._map.addLayer(n[s]);this._handlingClick=!1,this._refocusOnMap()}},_checkDisabledLayers:function(){for(var t,e,i=this._layerControlInputs,n=this._map.getZoom(),o=i.length-1;0<=o;o--)t=i[o],e=this._getLayer(t.layerId).layer,t.disabled=void 0!==e.options.minZoom&&n<e.options.minZoom||void 0!==e.options.maxZoom&&n>e.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this},_expandSafely:function(){var t=this._section,e=(this._preventClick=!0,S(t,"click",O),this.expand(),this);setTimeout(function(){k(t,"click",O),e._preventClick=!1})}})),qe=B.extend({options:{position:"topleft",zoomInText:'<span aria-hidden="true">+</span>',zoomInTitle:"Zoom in",zoomOutText:'<span aria-hidden="true">&#x2212;</span>',zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=P("div",e+" leaflet-bar"),n=this.options;return this._zoomInButton=this._createButton(n.zoomInText,n.zoomInTitle,e+"-in",i,this._zoomIn),this._zoomOutButton=this._createButton(n.zoomOutText,n.zoomOutTitle,e+"-out",i,this._zoomOut),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},disable:function(){return this._disabled=!0,this._updateDisabled(),this},enable:function(){return this._disabled=!1,this._updateDisabled(),this},_zoomIn:function(t){!this._disabled&&this._map._zoom<this._map.getMaxZoom()&&this._map.zoomIn(this._map.options.zoomDelta*(t.shiftKey?3:1))},_zoomOut:function(t){!this._disabled&&this._map._zoom>this._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(t.shiftKey?3:1))},_createButton:function(t,e,i,n,o){i=P("a",i,n);return i.innerHTML=t,i.href="#",i.title=e,i.setAttribute("role","button"),i.setAttribute("aria-label",e),Ie(i),S(i,"click",Re),S(i,"click",o,this),S(i,"click",this._refocusOnMap,this),i},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";z(this._zoomInButton,e),z(this._zoomOutButton,e),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),!this._disabled&&t._zoom!==t.getMinZoom()||(M(this._zoomOutButton,e),this._zoomOutButton.setAttribute("aria-disabled","true")),!this._disabled&&t._zoom!==t.getMaxZoom()||(M(this._zoomInButton,e),this._zoomInButton.setAttribute("aria-disabled","true"))}}),Ge=(A.mergeOptions({zoomControl:!0}),A.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new qe,this.addControl(this.zoomControl))}),B.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(t){var e="leaflet-control-scale",i=P("div",e),n=this.options;return this._addScales(n,e+"-line",i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=P("div",e,i)),t.imperial&&(this._iScale=P("div",e,i))},_update:function(){var t=this._map,e=t.getSize().y/2,t=t.distance(t.containerPointToLatLng([0,e]),t.containerPointToLatLng([this.options.maxWidth,e]));this._updateScales(t)},_updateScales:function(t){this.options.metric&&t&&this._updateMetric(t),this.options.imperial&&t&&this._updateImperial(t)},_updateMetric:function(t){var e=this._getRoundNum(t);this._updateScale(this._mScale,e<1e3?e+" m":e/1e3+" km",e/t)},_updateImperial:function(t){var e,i,t=3.2808399*t;5280<t?(i=this._getRoundNum(e=t/5280),this._updateScale(this._iScale,i+" mi",i/e)):(i=this._getRoundNum(t),this._updateScale(this._iScale,i+" ft",i/t))},_updateScale:function(t,e,i){t.style.width=Math.round(this.options.maxWidth*i)+"px",t.innerHTML=e},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),t=t/e;return e*(t=10<=t?10:5<=t?5:3<=t?3:2<=t?2:1)}})),Ke=B.extend({options:{position:"bottomright",prefix:'<a href="https://leafletjs.com" title="A JavaScript library for interactive maps">'+(b.inlineSvg?'<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8" class="leaflet-attribution-flag"><path fill="#4C7BE1" d="M0 0h12v4H0z"/><path fill="#FFD500" d="M0 4h12v3H0z"/><path fill="#E0BC00" d="M0 7h12v1H0z"/></svg> ':"")+"Leaflet</a>"},initialize:function(t){c(this,t),this._attributions={}},onAdd:function(t){for(var e in(t.attributionControl=this)._container=P("div","leaflet-control-attribution"),Ie(this._container),t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return this._update(),t.on("layeradd",this._addAttribution,this),this._container},onRemove:function(t){t.off("layeradd",this._addAttribution,this)},_addAttribution:function(t){t.layer.getAttribution&&(this.addAttribution(t.layer.getAttribution()),t.layer.once("remove",function(){this.removeAttribution(t.layer.getAttribution())},this))},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t&&(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update()),this},removeAttribution:function(t){return t&&this._attributions[t]&&(this._attributions[t]--,this._update()),this},_update:function(){if(this._map){var t,e=[];for(t in this._attributions)this._attributions[t]&&e.push(t);var i=[];this.options.prefix&&i.push(this.options.prefix),e.length&&i.push(e.join(", ")),this._container.innerHTML=i.join(' <span aria-hidden="true">|</span> ')}}}),n=(A.mergeOptions({attributionControl:!0}),A.addInitHook(function(){this.options.attributionControl&&(new Ke).addTo(this)}),B.Layers=Ve,B.Zoom=qe,B.Scale=Ge,B.Attribution=Ke,Ue.layers=function(t,e,i){return new Ve(t,e,i)},Ue.zoom=function(t){return new qe(t)},Ue.scale=function(t){return new Ge(t)},Ue.attribution=function(t){return new Ke(t)},et.extend({initialize:function(t){this._map=t},enable:function(){return this._enabled||(this._enabled=!0,this.addHooks()),this},disable:function(){return this._enabled&&(this._enabled=!1,this.removeHooks()),this},enabled:function(){return!!this._enabled}})),ft=(n.addTo=function(t,e){return t.addHandler(e,this),this},{Events:e}),Ye=b.touch?"touchstart mousedown":"mousedown",Xe=it.extend({options:{clickTolerance:3},initialize:function(t,e,i,n){c(this,n),this._element=t,this._dragStartTarget=e||t,this._preventOutline=i},enable:function(){this._enabled||(S(this._dragStartTarget,Ye,this._onDown,this),this._enabled=!0)},disable:function(){this._enabled&&(Xe._dragging===this&&this.finishDrag(!0),k(this._dragStartTarget,Ye,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(t){var e,i;this._enabled&&(this._moved=!1,ve(this._element,"leaflet-zoom-anim")||(t.touches&&1!==t.touches.length?Xe._dragging===this&&this.finishDrag():Xe._dragging||t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||((Xe._dragging=this)._preventOutline&&Me(this._element),Le(),re(),this._moving||(this.fire("down"),i=t.touches?t.touches[0]:t,e=Ce(this._element),this._startPoint=new p(i.clientX,i.clientY),this._startPos=Pe(this._element),this._parentScale=Ze(e),i="mousedown"===t.type,S(document,i?"mousemove":"touchmove",this._onMove,this),S(document,i?"mouseup":"touchend touchcancel",this._onUp,this)))))},_onMove:function(t){var e;this._enabled&&(t.touches&&1<t.touches.length?this._moved=!0:!(e=new p((e=t.touches&&1===t.touches.length?t.touches[0]:t).clientX,e.clientY)._subtract(this._startPoint)).x&&!e.y||Math.abs(e.x)+Math.abs(e.y)<this.options.clickTolerance||(e.x/=this._parentScale.x,e.y/=this._parentScale.y,O(t),this._moved||(this.fire("dragstart"),this._moved=!0,M(document.body,"leaflet-dragging"),this._lastTarget=t.target||t.srcElement,window.SVGElementInstance&&this._lastTarget instanceof window.SVGElementInstance&&(this._lastTarget=this._lastTarget.correspondingUseElement),M(this._lastTarget,"leaflet-drag-target")),this._newPos=this._startPos.add(e),this._moving=!0,this._lastEvent=t,this._updatePosition()))},_updatePosition:function(){var t={originalEvent:this._lastEvent};this.fire("predrag",t),Z(this._element,this._newPos),this.fire("drag",t)},_onUp:function(){this._enabled&&this.finishDrag()},finishDrag:function(t){z(document.body,"leaflet-dragging"),this._lastTarget&&(z(this._lastTarget,"leaflet-drag-target"),this._lastTarget=null),k(document,"mousemove touchmove",this._onMove,this),k(document,"mouseup touchend touchcancel",this._onUp,this),Te(),ae();var e=this._moved&&this._moving;this._moving=!1,Xe._dragging=!1,e&&this.fire("dragend",{noInertia:t,distance:this._newPos.distanceTo(this._startPos)})}});function Je(t,e,i){for(var n,o,s,r,a,h,l,u=[1,4,2,8],c=0,d=t.length;c<d;c++)t[c]._code=si(t[c],e);for(s=0;s<4;s++){for(h=u[s],n=[],c=0,o=(d=t.length)-1;c<d;o=c++)r=t[c],a=t[o],r._code&h?a._code&h||((l=oi(a,r,h,e,i))._code=si(l,e),n.push(l)):(a._code&h&&((l=oi(a,r,h,e,i))._code=si(l,e),n.push(l)),n.push(r));t=n}return t}function $e(t,e){var i,n,o,s,r,a,h;if(!t||0===t.length)throw new Error("latlngs not passed");I(t)||(console.warn("latlngs are not flat! Only the first ring will be used"),t=t[0]);for(var l=w([0,0]),u=g(t),c=(u.getNorthWest().distanceTo(u.getSouthWest())*u.getNorthEast().distanceTo(u.getNorthWest())<1700&&(l=Qe(t)),t.length),d=[],_=0;_<c;_++){var p=w(t[_]);d.push(e.project(w([p.lat-l.lat,p.lng-l.lng])))}for(_=r=a=h=0,i=c-1;_<c;i=_++)n=d[_],o=d[i],s=n.y*o.x-o.y*n.x,a+=(n.x+o.x)*s,h+=(n.y+o.y)*s,r+=3*s;u=0===r?d[0]:[a/r,h/r],u=e.unproject(m(u));return w([u.lat+l.lat,u.lng+l.lng])}function Qe(t){for(var e=0,i=0,n=0,o=0;o<t.length;o++){var s=w(t[o]);e+=s.lat,i+=s.lng,n++}return w([e/n,i/n])}var ti,gt={__proto__:null,clipPolygon:Je,polygonCenter:$e,centroid:Qe};function ei(t,e){if(e&&t.length){var i=t=function(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;n<s;n++)(function(t,e){var i=e.x-t.x,e=e.y-t.y;return i*i+e*e})(t[n],t[o])>e&&(i.push(t[n]),o=n);o<s-1&&i.push(t[s-1]);return i}(t,e=e*e),n=i.length,o=new(typeof Uint8Array!=void 0+""?Uint8Array:Array)(n);o[0]=o[n-1]=1,function t(e,i,n,o,s){var r,a,h,l=0;for(a=o+1;a<=s-1;a++)h=ri(e[a],e[o],e[s],!0),l<h&&(r=a,l=h);n<l&&(i[r]=1,t(e,i,n,o,r),t(e,i,n,r,s))}(i,o,e,0,n-1);var s,r=[];for(s=0;s<n;s++)o[s]&&r.push(i[s]);return r}return t.slice()}function ii(t,e,i){return Math.sqrt(ri(t,e,i,!0))}function ni(t,e,i,n,o){var s,r,a,h=n?ti:si(t,i),l=si(e,i);for(ti=l;;){if(!(h|l))return[t,e];if(h&l)return!1;a=si(r=oi(t,e,s=h||l,i,o),i),s===h?(t=r,h=a):(e=r,l=a)}}function oi(t,e,i,n,o){var s,r,a=e.x-t.x,e=e.y-t.y,h=n.min,n=n.max;return 8&i?(s=t.x+a*(n.y-t.y)/e,r=n.y):4&i?(s=t.x+a*(h.y-t.y)/e,r=h.y):2&i?(s=n.x,r=t.y+e*(n.x-t.x)/a):1&i&&(s=h.x,r=t.y+e*(h.x-t.x)/a),new p(s,r,o)}function si(t,e){var i=0;return t.x<e.min.x?i|=1:t.x>e.max.x&&(i|=2),t.y<e.min.y?i|=4:t.y>e.max.y&&(i|=8),i}function ri(t,e,i,n){var o=e.x,e=e.y,s=i.x-o,r=i.y-e,a=s*s+r*r;return 0<a&&(1<(a=((t.x-o)*s+(t.y-e)*r)/a)?(o=i.x,e=i.y):0<a&&(o+=s*a,e+=r*a)),s=t.x-o,r=t.y-e,n?s*s+r*r:new p(o,e)}function I(t){return!d(t[0])||"object"!=typeof t[0][0]&&void 0!==t[0][0]}function ai(t){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),I(t)}function hi(t,e){var i,n,o,s,r,a;if(!t||0===t.length)throw new Error("latlngs not passed");I(t)||(console.warn("latlngs are not flat! Only the first ring will be used"),t=t[0]);for(var h=w([0,0]),l=g(t),u=(l.getNorthWest().distanceTo(l.getSouthWest())*l.getNorthEast().distanceTo(l.getNorthWest())<1700&&(h=Qe(t)),t.length),c=[],d=0;d<u;d++){var _=w(t[d]);c.push(e.project(w([_.lat-h.lat,_.lng-h.lng])))}for(i=d=0;d<u-1;d++)i+=c[d].distanceTo(c[d+1])/2;if(0===i)a=c[0];else for(n=d=0;d<u-1;d++)if(o=c[d],s=c[d+1],i<(n+=r=o.distanceTo(s))){a=[s.x-(r=(n-i)/r)*(s.x-o.x),s.y-r*(s.y-o.y)];break}l=e.unproject(m(a));return w([l.lat+h.lat,l.lng+h.lng])}var vt={__proto__:null,simplify:ei,pointToSegmentDistance:ii,closestPointOnSegment:function(t,e,i){return ri(t,e,i)},clipSegment:ni,_getEdgeIntersection:oi,_getBitCode:si,_sqClosestPointOnSegment:ri,isFlat:I,_flat:ai,polylineCenter:hi},yt={project:function(t){return new p(t.lng,t.lat)},unproject:function(t){return new v(t.y,t.x)},bounds:new f([-180,-90],[180,90])},xt={R:6378137,R_MINOR:6356752.314245179,bounds:new f([-20037508.34279,-15496570.73972],[20037508.34279,18764656.23138]),project:function(t){var e=Math.PI/180,i=this.R,n=t.lat*e,o=this.R_MINOR/i,o=Math.sqrt(1-o*o),s=o*Math.sin(n),s=Math.tan(Math.PI/4-n/2)/Math.pow((1-s)/(1+s),o/2),n=-i*Math.log(Math.max(s,1e-10));return new p(t.lng*e*i,n)},unproject:function(t){for(var e,i=180/Math.PI,n=this.R,o=this.R_MINOR/n,s=Math.sqrt(1-o*o),r=Math.exp(-t.y/n),a=Math.PI/2-2*Math.atan(r),h=0,l=.1;h<15&&1e-7<Math.abs(l);h++)e=s*Math.sin(a),e=Math.pow((1-e)/(1+e),s/2),a+=l=Math.PI/2-2*Math.atan(r*e)-a;return new v(a*i,t.x*i/n)}},wt={__proto__:null,LonLat:yt,Mercator:xt,SphericalMercator:rt},Pt=l({},st,{code:"EPSG:3395",projection:xt,transformation:ht(bt=.5/(Math.PI*xt.R),.5,-bt,.5)}),li=l({},st,{code:"EPSG:4326",projection:yt,transformation:ht(1/180,1,-1/180,.5)}),Lt=l({},ot,{projection:yt,transformation:ht(1,0,-1,0),scale:function(t){return Math.pow(2,t)},zoom:function(t){return Math.log(t)/Math.LN2},distance:function(t,e){var i=e.lng-t.lng,e=e.lat-t.lat;return Math.sqrt(i*i+e*e)},infinite:!0}),o=(ot.Earth=st,ot.EPSG3395=Pt,ot.EPSG3857=lt,ot.EPSG900913=ut,ot.EPSG4326=li,ot.Simple=Lt,it.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(t){return t.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(t){return t&&t.removeLayer(this),this},getPane:function(t){return this._map.getPane(t?this.options[t]||t:this.options.pane)},addInteractiveTarget:function(t){return this._map._targets[h(t)]=this},removeInteractiveTarget:function(t){return delete this._map._targets[h(t)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(t){var e,i=t.target;i.hasLayer(this)&&(this._map=i,this._zoomAnimated=i._zoomAnimated,this.getEvents&&(e=this.getEvents(),i.on(e,this),this.once("remove",function(){i.off(e,this)},this)),this.onAdd(i),this.fire("add"),i.fire("layeradd",{layer:this}))}})),ui=(A.include({addLayer:function(t){var e;if(t._layerAdd)return e=h(t),this._layers[e]||((this._layers[e]=t)._mapToAdd=this,t.beforeAdd&&t.beforeAdd(this),this.whenReady(t._layerAdd,t)),this;throw new Error("The provided object is not a Layer.")},removeLayer:function(t){var e=h(t);return this._layers[e]&&(this._loaded&&t.onRemove(this),delete this._layers[e],this._loaded&&(this.fire("layerremove",{layer:t}),t.fire("remove")),t._map=t._mapToAdd=null),this},hasLayer:function(t){return h(t)in this._layers},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},_addLayers:function(t){for(var e=0,i=(t=t?d(t)?t:[t]:[]).length;e<i;e++)this.addLayer(t[e])},_addZoomLimit:function(t){isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[h(t)]=t,this._updateZoomLevels())},_removeZoomLimit:function(t){t=h(t);this._zoomBoundLayers[t]&&(delete this._zoomBoundLayers[t],this._updateZoomLevels())},_updateZoomLevels:function(){var t,e=1/0,i=-1/0,n=this._getZoomSpan();for(t in this._zoomBoundLayers)var o=this._zoomBoundLayers[t].options,e=void 0===o.minZoom?e:Math.min(e,o.minZoom),i=void 0===o.maxZoom?i:Math.max(i,o.maxZoom);this._layersMaxZoom=i===-1/0?void 0:i,this._layersMinZoom=e===1/0?void 0:e,n!==this._getZoomSpan()&&this.fire("zoomlevelschange"),void 0===this.options.maxZoom&&this._layersMaxZoom&&this.getZoom()>this._layersMaxZoom&&this.setZoom(this._layersMaxZoom),void 0===this.options.minZoom&&this._layersMinZoom&&this.getZoom()<this._layersMinZoom&&this.setZoom(this._layersMinZoom)}}),o.extend({initialize:function(t,e){var i,n;if(c(this,e),this._layers={},t)for(i=0,n=t.length;i<n;i++)this.addLayer(t[i])},addLayer:function(t){var e=this.getLayerId(t);return this._layers[e]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){t=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[t]&&this._map.removeLayer(this._layers[t]),delete this._layers[t],this},hasLayer:function(t){return("number"==typeof t?t:this.getLayerId(t))in this._layers},clearLayers:function(){return this.eachLayer(this.removeLayer,this)},invoke:function(t){var e,i,n=Array.prototype.slice.call(arguments,1);for(e in this._layers)(i=this._layers[e])[t]&&i[t].apply(i,n);return this},onAdd:function(t){this.eachLayer(t.addLayer,t)},onRemove:function(t){this.eachLayer(t.removeLayer,t)},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];return this.eachLayer(t.push,t),t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:h})),ci=ui.extend({addLayer:function(t){return this.hasLayer(t)?this:(t.addEventParent(this),ui.prototype.addLayer.call(this,t),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?((t=t in this._layers?this._layers[t]:t).removeEventParent(this),ui.prototype.removeLayer.call(this,t),this.fire("layerremove",{layer:t})):this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t,e=new s;for(t in this._layers){var i=this._layers[t];e.extend(i.getBounds?i.getBounds():i.getLatLng())}return e}}),di=et.extend({options:{popupAnchor:[0,0],tooltipAnchor:[0,0],crossOrigin:!1},initialize:function(t){c(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,e){var i=this._getIconUrl(t);if(i)return i=this._createImg(i,e&&"IMG"===e.tagName?e:null),this._setIconStyles(i,t),!this.options.crossOrigin&&""!==this.options.crossOrigin||(i.crossOrigin=!0===this.options.crossOrigin?"":this.options.crossOrigin),i;if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null},_setIconStyles:function(t,e){var i=this.options,n=i[e+"Size"],n=m(n="number"==typeof n?[n,n]:n),o=m("shadow"===e&&i.shadowAnchor||i.iconAnchor||n&&n.divideBy(2,!0));t.className="leaflet-marker-"+e+" "+(i.className||""),o&&(t.style.marginLeft=-o.x+"px",t.style.marginTop=-o.y+"px"),n&&(t.style.width=n.x+"px",t.style.height=n.y+"px")},_createImg:function(t,e){return(e=e||document.createElement("img")).src=t,e},_getIconUrl:function(t){return b.retina&&this.options[t+"RetinaUrl"]||this.options[t+"Url"]}});var _i=di.extend({options:{iconUrl:"marker-icon.png",iconRetinaUrl:"marker-icon-2x.png",shadowUrl:"marker-shadow.png",iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],tooltipAnchor:[16,-28],shadowSize:[41,41]},_getIconUrl:function(t){return"string"!=typeof _i.imagePath&&(_i.imagePath=this._detectIconPath()),(this.options.imagePath||_i.imagePath)+di.prototype._getIconUrl.call(this,t)},_stripUrl:function(t){function e(t,e,i){return(e=e.exec(t))&&e[i]}return(t=e(t,/^url\((['"])?(.+)\1\)$/,2))&&e(t,/^(.*)marker-icon\.png$/,1)},_detectIconPath:function(){var t=P("div","leaflet-default-icon-path",document.body),e=pe(t,"background-image")||pe(t,"backgroundImage");return document.body.removeChild(t),(e=this._stripUrl(e))?e:(t=document.querySelector('link[href$="leaflet.css"]'))?t.href.substring(0,t.href.length-"leaflet.css".length-1):""}}),pi=n.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new Xe(t,t,!0)),this._draggable.on({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).enable(),M(t,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off({dragstart:this._onDragStart,predrag:this._onPreDrag,drag:this._onDrag,dragend:this._onDragEnd},this).disable(),this._marker._icon&&z(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_adjustPan:function(t){var e=this._marker,i=e._map,n=this._marker.options.autoPanSpeed,o=this._marker.options.autoPanPadding,s=Pe(e._icon),r=i.getPixelBounds(),a=i.getPixelOrigin(),a=_(r.min._subtract(a).add(o),r.max._subtract(a).subtract(o));a.contains(s)||(o=m((Math.max(a.max.x,s.x)-a.max.x)/(r.max.x-a.max.x)-(Math.min(a.min.x,s.x)-a.min.x)/(r.min.x-a.min.x),(Math.max(a.max.y,s.y)-a.max.y)/(r.max.y-a.max.y)-(Math.min(a.min.y,s.y)-a.min.y)/(r.min.y-a.min.y)).multiplyBy(n),i.panBy(o,{animate:!1}),this._draggable._newPos._add(o),this._draggable._startPos._add(o),Z(e._icon,this._draggable._newPos),this._onDrag(t),this._panRequest=x(this._adjustPan.bind(this,t)))},_onDragStart:function(){this._oldLatLng=this._marker.getLatLng(),this._marker.closePopup&&this._marker.closePopup(),this._marker.fire("movestart").fire("dragstart")},_onPreDrag:function(t){this._marker.options.autoPan&&(r(this._panRequest),this._panRequest=x(this._adjustPan.bind(this,t)))},_onDrag:function(t){var e=this._marker,i=e._shadow,n=Pe(e._icon),o=e._map.layerPointToLatLng(n);i&&Z(i,n),e._latlng=o,t.latlng=o,t.oldLatLng=this._oldLatLng,e.fire("move",t).fire("drag",t)},_onDragEnd:function(t){r(this._panRequest),delete this._oldLatLng,this._marker.fire("moveend").fire("dragend",t)}}),mi=o.extend({options:{icon:new _i,interactive:!0,keyboard:!0,title:"",alt:"Marker",zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250,pane:"markerPane",shadowPane:"shadowPane",bubblingMouseEvents:!1,autoPanOnFocus:!0,draggable:!1,autoPan:!1,autoPanPadding:[50,50],autoPanSpeed:10},initialize:function(t,e){c(this,e),this._latlng=w(t)},onAdd:function(t){this._zoomAnimated=this._zoomAnimated&&t.options.markerZoomAnimation,this._zoomAnimated&&t.on("zoomanim",this._animateZoom,this),this._initIcon(),this.update()},onRemove:function(t){this.dragging&&this.dragging.enabled()&&(this.options.draggable=!0,this.dragging.removeHooks()),delete this.dragging,this._zoomAnimated&&t.off("zoomanim",this._animateZoom,this),this._removeIcon(),this._removeShadow()},getEvents:function(){return{zoom:this.update,viewreset:this.update}},getLatLng:function(){return this._latlng},setLatLng:function(t){var e=this._latlng;return this._latlng=w(t),this.update(),this.fire("move",{oldLatLng:e,latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update()},getIcon:function(){return this.options.icon},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup,this._popup.options),this},getElement:function(){return this._icon},update:function(){var t;return this._icon&&this._map&&(t=this._map.latLngToLayerPoint(this._latlng).round(),this._setPos(t)),this},_initIcon:function(){var t=this.options,e="leaflet-zoom-"+(this._zoomAnimated?"animated":"hide"),i=t.icon.createIcon(this._icon),n=!1,i=(i!==this._icon&&(this._icon&&this._removeIcon(),n=!0,t.title&&(i.title=t.title),"IMG"===i.tagName&&(i.alt=t.alt||"")),M(i,e),t.keyboard&&(i.tabIndex="0",i.setAttribute("role","button")),this._icon=i,t.riseOnHover&&this.on({mouseover:this._bringToFront,mouseout:this._resetZIndex}),this.options.autoPanOnFocus&&S(i,"focus",this._panOnFocus,this),t.icon.createShadow(this._shadow)),o=!1;i!==this._shadow&&(this._removeShadow(),o=!0),i&&(M(i,e),i.alt=""),this._shadow=i,t.opacity<1&&this._updateOpacity(),n&&this.getPane().appendChild(this._icon),this._initInteraction(),i&&o&&this.getPane(t.shadowPane).appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&this.off({mouseover:this._bringToFront,mouseout:this._resetZIndex}),this.options.autoPanOnFocus&&k(this._icon,"focus",this._panOnFocus,this),T(this._icon),this.removeInteractiveTarget(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&T(this._shadow),this._shadow=null},_setPos:function(t){this._icon&&Z(this._icon,t),this._shadow&&Z(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon&&(this._icon.style.zIndex=this._zIndex+t)},_animateZoom:function(t){t=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(t)},_initInteraction:function(){var t;this.options.interactive&&(M(this._icon,"leaflet-interactive"),this.addInteractiveTarget(this._icon),pi&&(t=this.options.draggable,this.dragging&&(t=this.dragging.enabled(),this.dragging.disable()),this.dragging=new pi(this),t&&this.dragging.enable()))},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){var t=this.options.opacity;this._icon&&C(this._icon,t),this._shadow&&C(this._shadow,t)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)},_panOnFocus:function(){var t,e,i=this._map;i&&(t=(e=this.options.icon.options).iconSize?m(e.iconSize):m(0,0),e=e.iconAnchor?m(e.iconAnchor):m(0,0),i.panInside(this._latlng,{paddingTopLeft:e,paddingBottomRight:t.subtract(e)}))},_getPopupAnchor:function(){return this.options.icon.options.popupAnchor},_getTooltipAnchor:function(){return this.options.icon.options.tooltipAnchor}});var fi=o.extend({options:{stroke:!0,color:"#3388ff",weight:3,opacity:1,lineCap:"round",lineJoin:"round",dashArray:null,dashOffset:null,fill:!1,fillColor:null,fillOpacity:.2,fillRule:"evenodd",interactive:!0,bubblingMouseEvents:!0},beforeAdd:function(t){this._renderer=t.getRenderer(this)},onAdd:function(){this._renderer._initPath(this),this._reset(),this._renderer._addPath(this)},onRemove:function(){this._renderer._removePath(this)},redraw:function(){return this._map&&this._renderer._updatePath(this),this},setStyle:function(t){return c(this,t),this._renderer&&(this._renderer._updateStyle(this),this.options.stroke&&t&&Object.prototype.hasOwnProperty.call(t,"weight")&&this._updateBounds()),this},bringToFront:function(){return this._renderer&&this._renderer._bringToFront(this),this},bringToBack:function(){return this._renderer&&this._renderer._bringToBack(this),this},getElement:function(){return this._path},_reset:function(){this._project(),this._update()},_clickTolerance:function(){return(this.options.stroke?this.options.weight/2:0)+(this._renderer.options.tolerance||0)}}),gi=fi.extend({options:{fill:!0,radius:10},initialize:function(t,e){c(this,e),this._latlng=w(t),this._radius=this.options.radius},setLatLng:function(t){var e=this._latlng;return this._latlng=w(t),this.redraw(),this.fire("move",{oldLatLng:e,latlng:this._latlng})},getLatLng:function(){return this._latlng},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius},setStyle:function(t){var e=t&&t.radius||this._radius;return fi.prototype.setStyle.call(this,t),this.setRadius(e),this},_project:function(){this._point=this._map.latLngToLayerPoint(this._latlng),this._updateBounds()},_updateBounds:function(){var t=this._radius,e=this._radiusY||t,i=this._clickTolerance(),t=[t+i,e+i];this._pxBounds=new f(this._point.subtract(t),this._point.add(t))},_update:function(){this._map&&this._updatePath()},_updatePath:function(){this._renderer._updateCircle(this)},_empty:function(){return this._radius&&!this._renderer._bounds.intersects(this._pxBounds)},_containsPoint:function(t){return t.distanceTo(this._point)<=this._radius+this._clickTolerance()}});var vi=gi.extend({initialize:function(t,e,i){if(c(this,e="number"==typeof e?l({},i,{radius:e}):e),this._latlng=w(t),isNaN(this.options.radius))throw new Error("Circle radius cannot be NaN");this._mRadius=this.options.radius},setRadius:function(t){return this._mRadius=t,this.redraw()},getRadius:function(){return this._mRadius},getBounds:function(){var t=[this._radius,this._radiusY||this._radius];return new s(this._map.layerPointToLatLng(this._point.subtract(t)),this._map.layerPointToLatLng(this._point.add(t)))},setStyle:fi.prototype.setStyle,_project:function(){var t,e,i,n,o,s=this._latlng.lng,r=this._latlng.lat,a=this._map,h=a.options.crs;h.distance===st.distance?(n=Math.PI/180,o=this._mRadius/st.R/n,t=a.project([r+o,s]),e=a.project([r-o,s]),e=t.add(e).divideBy(2),i=a.unproject(e).lat,n=Math.acos((Math.cos(o*n)-Math.sin(r*n)*Math.sin(i*n))/(Math.cos(r*n)*Math.cos(i*n)))/n,!isNaN(n)&&0!==n||(n=o/Math.cos(Math.PI/180*r)),this._point=e.subtract(a.getPixelOrigin()),this._radius=isNaN(n)?0:e.x-a.project([i,s-n]).x,this._radiusY=e.y-t.y):(o=h.unproject(h.project(this._latlng).subtract([this._mRadius,0])),this._point=a.latLngToLayerPoint(this._latlng),this._radius=this._point.x-a.latLngToLayerPoint(o).x),this._updateBounds()}});var yi=fi.extend({options:{smoothFactor:1,noClip:!1},initialize:function(t,e){c(this,e),this._setLatLngs(t)},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._setLatLngs(t),this.redraw()},isEmpty:function(){return!this._latlngs.length},closestLayerPoint:function(t){for(var e=1/0,i=null,n=ri,o=0,s=this._parts.length;o<s;o++)for(var r=this._parts[o],a=1,h=r.length;a<h;a++){var l,u,c=n(t,l=r[a-1],u=r[a],!0);c<e&&(e=c,i=n(t,l,u))}return i&&(i.distance=Math.sqrt(e)),i},getCenter:function(){if(this._map)return hi(this._defaultShape(),this._map.options.crs);throw new Error("Must add layer to map before using getCenter()")},getBounds:function(){return this._bounds},addLatLng:function(t,e){return e=e||this._defaultShape(),t=w(t),e.push(t),this._bounds.extend(t),this.redraw()},_setLatLngs:function(t){this._bounds=new s,this._latlngs=this._convertLatLngs(t)},_defaultShape:function(){return I(this._latlngs)?this._latlngs:this._latlngs[0]},_convertLatLngs:function(t){for(var e=[],i=I(t),n=0,o=t.length;n<o;n++)i?(e[n]=w(t[n]),this._bounds.extend(e[n])):e[n]=this._convertLatLngs(t[n]);return e},_project:function(){var t=new f;this._rings=[],this._projectLatlngs(this._latlngs,this._rings,t),this._bounds.isValid()&&t.isValid()&&(this._rawPxBounds=t,this._updateBounds())},_updateBounds:function(){var t=this._clickTolerance(),t=new p(t,t);this._rawPxBounds&&(this._pxBounds=new f([this._rawPxBounds.min.subtract(t),this._rawPxBounds.max.add(t)]))},_projectLatlngs:function(t,e,i){var n,o,s=t[0]instanceof v,r=t.length;if(s){for(o=[],n=0;n<r;n++)o[n]=this._map.latLngToLayerPoint(t[n]),i.extend(o[n]);e.push(o)}else for(n=0;n<r;n++)this._projectLatlngs(t[n],e,i)},_clipPoints:function(){var t=this._renderer._bounds;if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else for(var e,i,n,o,s=this._parts,r=0,a=0,h=this._rings.length;r<h;r++)for(e=0,i=(o=this._rings[r]).length;e<i-1;e++)(n=ni(o[e],o[e+1],t,e,!0))&&(s[a]=s[a]||[],s[a].push(n[0]),n[1]===o[e+1]&&e!==i-2||(s[a].push(n[1]),a++))},_simplifyPoints:function(){for(var t=this._parts,e=this.options.smoothFactor,i=0,n=t.length;i<n;i++)t[i]=ei(t[i],e)},_update:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),this._updatePath())},_updatePath:function(){this._renderer._updatePoly(this)},_containsPoint:function(t,e){var i,n,o,s,r,a,h=this._clickTolerance();if(this._pxBounds&&this._pxBounds.contains(t))for(i=0,s=this._parts.length;i<s;i++)for(n=0,o=(r=(a=this._parts[i]).length)-1;n<r;o=n++)if((e||0!==n)&&ii(t,a[o],a[n])<=h)return!0;return!1}});yi._flat=ai;var xi=yi.extend({options:{fill:!0},isEmpty:function(){return!this._latlngs.length||!this._latlngs[0].length},getCenter:function(){if(this._map)return $e(this._defaultShape(),this._map.options.crs);throw new Error("Must add layer to map before using getCenter()")},_convertLatLngs:function(t){var t=yi.prototype._convertLatLngs.call(this,t),e=t.length;return 2<=e&&t[0]instanceof v&&t[0].equals(t[e-1])&&t.pop(),t},_setLatLngs:function(t){yi.prototype._setLatLngs.call(this,t),I(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return(I(this._latlngs[0])?this._latlngs:this._latlngs[0])[0]},_clipPoints:function(){var t=this._renderer._bounds,e=this.options.weight,e=new p(e,e),t=new f(t.min.subtract(e),t.max.add(e));if(this._parts=[],this._pxBounds&&this._pxBounds.intersects(t))if(this.options.noClip)this._parts=this._rings;else for(var i,n=0,o=this._rings.length;n<o;n++)(i=Je(this._rings[n],t,!0)).length&&this._parts.push(i)},_updatePath:function(){this._renderer._updatePoly(this,!0)},_containsPoint:function(t){var e,i,n,o,s,r,a,h,l=!1;if(!this._pxBounds||!this._pxBounds.contains(t))return!1;for(o=0,a=this._parts.length;o<a;o++)for(s=0,r=(h=(e=this._parts[o]).length)-1;s<h;r=s++)i=e[s],n=e[r],i.y>t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(l=!l);return l||yi.prototype._containsPoint.call(this,t,!0)}});var wi=ci.extend({initialize:function(t,e){c(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,o=d(t)?t:t.features;if(o){for(e=0,i=o.length;e<i;e++)((n=o[e]).geometries||n.geometry||n.features||n.coordinates)&&this.addData(n);return this}var s,r=this.options;return(!r.filter||r.filter(t))&&(s=bi(t,r))?(s.feature=Zi(t),s.defaultOptions=s.options,this.resetStyle(s),r.onEachFeature&&r.onEachFeature(t,s),this.addLayer(s)):this},resetStyle:function(t){return void 0===t?this.eachLayer(this.resetStyle,this):(t.options=l({},t.defaultOptions),this._setLayerStyle(t,this.options.style),this)},setStyle:function(e){return this.eachLayer(function(t){this._setLayerStyle(t,e)},this)},_setLayerStyle:function(t,e){t.setStyle&&("function"==typeof e&&(e=e(t.feature)),t.setStyle(e))}});function bi(t,e){var i,n,o,s,r="Feature"===t.type?t.geometry:t,a=r?r.coordinates:null,h=[],l=e&&e.pointToLayer,u=e&&e.coordsToLatLng||Li;if(!a&&!r)return null;switch(r.type){case"Point":return Pi(l,t,i=u(a),e);case"MultiPoint":for(o=0,s=a.length;o<s;o++)i=u(a[o]),h.push(Pi(l,t,i,e));return new ci(h);case"LineString":case"MultiLineString":return n=Ti(a,"LineString"===r.type?0:1,u),new yi(n,e);case"Polygon":case"MultiPolygon":return n=Ti(a,"Polygon"===r.type?1:2,u),new xi(n,e);case"GeometryCollection":for(o=0,s=r.geometries.length;o<s;o++){var c=bi({geometry:r.geometries[o],type:"Feature",properties:t.properties},e);c&&h.push(c)}return new ci(h);case"FeatureCollection":for(o=0,s=r.features.length;o<s;o++){var d=bi(r.features[o],e);d&&h.push(d)}return new ci(h);default:throw new Error("Invalid GeoJSON object.")}}function Pi(t,e,i,n){return t?t(e,i):new mi(i,n&&n.markersInheritOptions&&n)}function Li(t){return new v(t[1],t[0],t[2])}function Ti(t,e,i){for(var n,o=[],s=0,r=t.length;s<r;s++)n=e?Ti(t[s],e-1,i):(i||Li)(t[s]),o.push(n);return o}function Mi(t,e){return void 0!==(t=w(t)).alt?[i(t.lng,e),i(t.lat,e),i(t.alt,e)]:[i(t.lng,e),i(t.lat,e)]}function zi(t,e,i,n){for(var o=[],s=0,r=t.length;s<r;s++)o.push(e?zi(t[s],I(t[s])?0:e-1,i,n):Mi(t[s],n));return!e&&i&&0<o.length&&o.push(o[0].slice()),o}function Ci(t,e){return t.feature?l({},t.feature,{geometry:e}):Zi(e)}function Zi(t){return"Feature"===t.type||"FeatureCollection"===t.type?t:{type:"Feature",properties:{},geometry:t}}Tt={toGeoJSON:function(t){return Ci(this,{type:"Point",coordinates:Mi(this.getLatLng(),t)})}};function Si(t,e){return new wi(t,e)}mi.include(Tt),vi.include(Tt),gi.include(Tt),yi.include({toGeoJSON:function(t){var e=!I(this._latlngs);return Ci(this,{type:(e?"Multi":"")+"LineString",coordinates:zi(this._latlngs,e?1:0,!1,t)})}}),xi.include({toGeoJSON:function(t){var e=!I(this._latlngs),i=e&&!I(this._latlngs[0]),t=zi(this._latlngs,i?2:e?1:0,!0,t);return Ci(this,{type:(i?"Multi":"")+"Polygon",coordinates:t=e?t:[t]})}}),ui.include({toMultiPoint:function(e){var i=[];return this.eachLayer(function(t){i.push(t.toGeoJSON(e).geometry.coordinates)}),Ci(this,{type:"MultiPoint",coordinates:i})},toGeoJSON:function(e){var i,n,t=this.feature&&this.feature.geometry&&this.feature.geometry.type;return"MultiPoint"===t?this.toMultiPoint(e):(i="GeometryCollection"===t,n=[],this.eachLayer(function(t){t.toGeoJSON&&(t=t.toGeoJSON(e),i?n.push(t.geometry):"FeatureCollection"===(t=Zi(t)).type?n.push.apply(n,t.features):n.push(t))}),i?Ci(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n})}});var Mt=Si,Ei=o.extend({options:{opacity:1,alt:"",interactive:!1,crossOrigin:!1,errorOverlayUrl:"",zIndex:1,className:""},initialize:function(t,e,i){this._url=t,this._bounds=g(e),c(this,i)},onAdd:function(){this._image||(this._initImage(),this.options.opacity<1&&this._updateOpacity()),this.options.interactive&&(M(this._image,"leaflet-interactive"),this.addInteractiveTarget(this._image)),this.getPane().appendChild(this._image),this._reset()},onRemove:function(){T(this._image),this.options.interactive&&this.removeInteractiveTarget(this._image)},setOpacity:function(t){return this.options.opacity=t,this._image&&this._updateOpacity(),this},setStyle:function(t){return t.opacity&&this.setOpacity(t.opacity),this},bringToFront:function(){return this._map&&fe(this._image),this},bringToBack:function(){return this._map&&ge(this._image),this},setUrl:function(t){return this._url=t,this._image&&(this._image.src=t),this},setBounds:function(t){return this._bounds=g(t),this._map&&this._reset(),this},getEvents:function(){var t={zoom:this._reset,viewreset:this._reset};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},getBounds:function(){return this._bounds},getElement:function(){return this._image},_initImage:function(){var t="IMG"===this._url.tagName,e=this._image=t?this._url:P("img");M(e,"leaflet-image-layer"),this._zoomAnimated&&M(e,"leaflet-zoom-animated"),this.options.className&&M(e,this.options.className),e.onselectstart=u,e.onmousemove=u,e.onload=a(this.fire,this,"load"),e.onerror=a(this._overlayOnError,this,"error"),!this.options.crossOrigin&&""!==this.options.crossOrigin||(e.crossOrigin=!0===this.options.crossOrigin?"":this.options.crossOrigin),this.options.zIndex&&this._updateZIndex(),t?this._url=e.src:(e.src=this._url,e.alt=this.options.alt)},_animateZoom:function(t){var e=this._map.getZoomScale(t.zoom),t=this._map._latLngBoundsToNewLayerBounds(this._bounds,t.zoom,t.center).min;be(this._image,t,e)},_reset:function(){var t=this._image,e=new f(this._map.latLngToLayerPoint(this._bounds.getNorthWest()),this._map.latLngToLayerPoint(this._bounds.getSouthEast())),i=e.getSize();Z(t,e.min),t.style.width=i.x+"px",t.style.height=i.y+"px"},_updateOpacity:function(){C(this._image,this.options.opacity)},_updateZIndex:function(){this._image&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._image.style.zIndex=this.options.zIndex)},_overlayOnError:function(){this.fire("error");var t=this.options.errorOverlayUrl;t&&this._url!==t&&(this._url=t,this._image.src=t)},getCenter:function(){return this._bounds.getCenter()}}),ki=Ei.extend({options:{autoplay:!0,loop:!0,keepAspectRatio:!0,muted:!1,playsInline:!0},_initImage:function(){var t="VIDEO"===this._url.tagName,e=this._image=t?this._url:P("video");if(M(e,"leaflet-image-layer"),this._zoomAnimated&&M(e,"leaflet-zoom-animated"),this.options.className&&M(e,this.options.className),e.onselectstart=u,e.onmousemove=u,e.onloadeddata=a(this.fire,this,"load"),t){for(var i=e.getElementsByTagName("source"),n=[],o=0;o<i.length;o++)n.push(i[o].src);this._url=0<i.length?n:[e.src]}else{d(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(e.style,"objectFit")&&(e.style.objectFit="fill"),e.autoplay=!!this.options.autoplay,e.loop=!!this.options.loop,e.muted=!!this.options.muted,e.playsInline=!!this.options.playsInline;for(var s=0;s<this._url.length;s++){var r=P("source");r.src=this._url[s],e.appendChild(r)}}}});var Oi=Ei.extend({_initImage:function(){var t=this._image=this._url;M(t,"leaflet-image-layer"),this._zoomAnimated&&M(t,"leaflet-zoom-animated"),this.options.className&&M(t,this.options.className),t.onselectstart=u,t.onmousemove=u}});var Ai=o.extend({options:{interactive:!1,offset:[0,0],className:"",pane:void 0,content:""},initialize:function(t,e){t&&(t instanceof v||d(t))?(this._latlng=w(t),c(this,e)):(c(this,t),this._source=e),this.options.content&&(this._content=this.options.content)},openOn:function(t){return(t=arguments.length?t:this._source._map).hasLayer(this)||t.addLayer(this),this},close:function(){return this._map&&this._map.removeLayer(this),this},toggle:function(t){return this._map?this.close():(arguments.length?this._source=t:t=this._source,this._prepareOpen(),this.openOn(t._map)),this},onAdd:function(t){this._zoomAnimated=t._zoomAnimated,this._container||this._initLayout(),t._fadeAnimated&&C(this._container,0),clearTimeout(this._removeTimeout),this.getPane().appendChild(this._container),this.update(),t._fadeAnimated&&C(this._container,1),this.bringToFront(),this.options.interactive&&(M(this._container,"leaflet-interactive"),this.addInteractiveTarget(this._container))},onRemove:function(t){t._fadeAnimated?(C(this._container,0),this._removeTimeout=setTimeout(a(T,void 0,this._container),200)):T(this._container),this.options.interactive&&(z(this._container,"leaflet-interactive"),this.removeInteractiveTarget(this._container))},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=w(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},getElement:function(){return this._container},update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility="",this._adjustPan())},getEvents:function(){var t={zoom:this._updatePosition,viewreset:this._updatePosition};return this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},isOpen:function(){return!!this._map&&this._map.hasLayer(this)},bringToFront:function(){return this._map&&fe(this._container),this},bringToBack:function(){return this._map&&ge(this._container),this},_prepareOpen:function(t){if(!(i=this._source)._map)return!1;if(i instanceof ci){var e,i=null,n=this._source._layers;for(e in n)if(n[e]._map){i=n[e];break}if(!i)return!1;this._source=i}if(!t)if(i.getCenter)t=i.getCenter();else if(i.getLatLng)t=i.getLatLng();else{if(!i.getBounds)throw new Error("Unable to get source layer LatLng.");t=i.getBounds().getCenter()}return this.setLatLng(t),this._map&&this.update(),!0},_updateContent:function(){if(this._content){var t=this._contentNode,e="function"==typeof this._content?this._content(this._source||this):this._content;if("string"==typeof e)t.innerHTML=e;else{for(;t.hasChildNodes();)t.removeChild(t.firstChild);t.appendChild(e)}this.fire("contentupdate")}},_updatePosition:function(){var t,e,i;this._map&&(e=this._map.latLngToLayerPoint(this._latlng),t=m(this.options.offset),i=this._getAnchor(),this._zoomAnimated?Z(this._container,e.add(i)):t=t.add(e).add(i),e=this._containerBottom=-t.y,i=this._containerLeft=-Math.round(this._containerWidth/2)+t.x,this._container.style.bottom=e+"px",this._container.style.left=i+"px")},_getAnchor:function(){return[0,0]}}),Bi=(A.include({_initOverlay:function(t,e,i,n){var o=e;return o instanceof t||(o=new t(n).setContent(e)),i&&o.setLatLng(i),o}}),o.include({_initOverlay:function(t,e,i,n){var o=i;return o instanceof t?(c(o,n),o._source=this):(o=e&&!n?e:new t(n,this)).setContent(i),o}}),Ai.extend({options:{pane:"popupPane",offset:[0,7],maxWidth:300,minWidth:50,maxHeight:null,autoPan:!0,autoPanPaddingTopLeft:null,autoPanPaddingBottomRight:null,autoPanPadding:[5,5],keepInView:!1,closeButton:!0,autoClose:!0,closeOnEscapeKey:!0,className:""},openOn:function(t){return!(t=arguments.length?t:this._source._map).hasLayer(this)&&t._popup&&t._popup.options.autoClose&&t.removeLayer(t._popup),t._popup=this,Ai.prototype.openOn.call(this,t)},onAdd:function(t){Ai.prototype.onAdd.call(this,t),t.fire("popupopen",{popup:this}),this._source&&(this._source.fire("popupopen",{popup:this},!0),this._source instanceof fi||this._source.on("preclick",Ae))},onRemove:function(t){Ai.prototype.onRemove.call(this,t),t.fire("popupclose",{popup:this}),this._source&&(this._source.fire("popupclose",{popup:this},!0),this._source instanceof fi||this._source.off("preclick",Ae))},getEvents:function(){var t=Ai.prototype.getEvents.call(this);return(void 0!==this.options.closeOnClick?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this.close),this.options.keepInView&&(t.moveend=this._adjustPan),t},_initLayout:function(){var t="leaflet-popup",e=this._container=P("div",t+" "+(this.options.className||"")+" leaflet-zoom-animated"),i=this._wrapper=P("div",t+"-content-wrapper",e);this._contentNode=P("div",t+"-content",i),Ie(e),Be(this._contentNode),S(e,"contextmenu",Ae),this._tipContainer=P("div",t+"-tip-container",e),this._tip=P("div",t+"-tip",this._tipContainer),this.options.closeButton&&((i=this._closeButton=P("a",t+"-close-button",e)).setAttribute("role","button"),i.setAttribute("aria-label","Close popup"),i.href="#close",i.innerHTML='<span aria-hidden="true">&#215;</span>',S(i,"click",function(t){O(t),this.close()},this))},_updateLayout:function(){var t=this._contentNode,e=t.style,i=(e.width="",e.whiteSpace="nowrap",t.offsetWidth),i=Math.min(i,this.options.maxWidth),i=(i=Math.max(i,this.options.minWidth),e.width=i+1+"px",e.whiteSpace="",e.height="",t.offsetHeight),n=this.options.maxHeight,o="leaflet-popup-scrolled";(n&&n<i?(e.height=n+"px",M):z)(t,o),this._containerWidth=this._container.offsetWidth},_animateZoom:function(t){var t=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center),e=this._getAnchor();Z(this._container,t.add(e))},_adjustPan:function(){var t,e,i,n,o,s,r,a;this.options.autoPan&&(this._map._panAnim&&this._map._panAnim.stop(),this._autopanning?this._autopanning=!1:(t=this._map,e=parseInt(pe(this._container,"marginBottom"),10)||0,e=this._container.offsetHeight+e,a=this._containerWidth,(i=new p(this._containerLeft,-e-this._containerBottom))._add(Pe(this._container)),i=t.layerPointToContainerPoint(i),o=m(this.options.autoPanPadding),n=m(this.options.autoPanPaddingTopLeft||o),o=m(this.options.autoPanPaddingBottomRight||o),s=t.getSize(),r=0,i.x+a+o.x>s.x&&(r=i.x+a-s.x+o.x),i.x-r-n.x<(a=0)&&(r=i.x-n.x),i.y+e+o.y>s.y&&(a=i.y+e-s.y+o.y),i.y-a-n.y<0&&(a=i.y-n.y),(r||a)&&(this.options.keepInView&&(this._autopanning=!0),t.fire("autopanstart").panBy([r,a]))))},_getAnchor:function(){return m(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}})),Ii=(A.mergeOptions({closePopupOnClick:!0}),A.include({openPopup:function(t,e,i){return this._initOverlay(Bi,t,e,i).openOn(this),this},closePopup:function(t){return(t=arguments.length?t:this._popup)&&t.close(),this}}),o.include({bindPopup:function(t,e){return this._popup=this._initOverlay(Bi,this._popup,t,e),this._popupHandlersAdded||(this.on({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this.off({click:this._openPopup,keypress:this._onKeyPress,remove:this.closePopup,move:this._movePopup}),this._popupHandlersAdded=!1,this._popup=null),this},openPopup:function(t){return this._popup&&(this instanceof ci||(this._popup._source=this),this._popup._prepareOpen(t||this._latlng)&&this._popup.openOn(this._map)),this},closePopup:function(){return this._popup&&this._popup.close(),this},togglePopup:function(){return this._popup&&this._popup.toggle(this),this},isPopupOpen:function(){return!!this._popup&&this._popup.isOpen()},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},getPopup:function(){return this._popup},_openPopup:function(t){var e;this._popup&&this._map&&(Re(t),e=t.layer||t.target,this._popup._source!==e||e instanceof fi?(this._popup._source=e,this.openPopup(t.latlng)):this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(t.latlng))},_movePopup:function(t){this._popup.setLatLng(t.latlng)},_onKeyPress:function(t){13===t.originalEvent.keyCode&&this._openPopup(t)}}),Ai.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(t){Ai.prototype.onAdd.call(this,t),this.setOpacity(this.options.opacity),t.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(t){Ai.prototype.onRemove.call(this,t),t.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var t=Ai.prototype.getEvents.call(this);return this.options.permanent||(t.preclick=this.close),t},_initLayout:function(){var t="leaflet-tooltip "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=P("div",t),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+h(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(t){var e,i=this._map,n=this._container,o=i.latLngToContainerPoint(i.getCenter()),i=i.layerPointToContainerPoint(t),s=this.options.direction,r=n.offsetWidth,a=n.offsetHeight,h=m(this.options.offset),l=this._getAnchor(),i="top"===s?(e=r/2,a):"bottom"===s?(e=r/2,0):(e="center"===s?r/2:"right"===s?0:"left"===s?r:i.x<o.x?(s="right",0):(s="left",r+2*(h.x+l.x)),a/2);t=t.subtract(m(e,i,!0)).add(h).add(l),z(n,"leaflet-tooltip-right"),z(n,"leaflet-tooltip-left"),z(n,"leaflet-tooltip-top"),z(n,"leaflet-tooltip-bottom"),M(n,"leaflet-tooltip-"+s),Z(n,t)},_updatePosition:function(){var t=this._map.latLngToLayerPoint(this._latlng);this._setPosition(t)},setOpacity:function(t){this.options.opacity=t,this._container&&C(this._container,t)},_animateZoom:function(t){t=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);this._setPosition(t)},_getAnchor:function(){return m(this._source&&this._source._getTooltipAnchor&&!this.options.sticky?this._source._getTooltipAnchor():[0,0])}})),Ri=(A.include({openTooltip:function(t,e,i){return this._initOverlay(Ii,t,e,i).openOn(this),this},closeTooltip:function(t){return t.close(),this}}),o.include({bindTooltip:function(t,e){return this._tooltip&&this.isTooltipOpen()&&this.unbindTooltip(),this._tooltip=this._initOverlay(Ii,this._tooltip,t,e),this._initTooltipInteractions(),this._tooltip.options.permanent&&this._map&&this._map.hasLayer(this)&&this.openTooltip(),this},unbindTooltip:function(){return this._tooltip&&(this._initTooltipInteractions(!0),this.closeTooltip(),this._tooltip=null),this},_initTooltipInteractions:function(t){var e,i;!t&&this._tooltipHandlersAdded||(e=t?"off":"on",i={remove:this.closeTooltip,move:this._moveTooltip},this._tooltip.options.permanent?i.add=this._openTooltip:(i.mouseover=this._openTooltip,i.mouseout=this.closeTooltip,i.click=this._openTooltip,this._map?this._addFocusListeners():i.add=this._addFocusListeners),this._tooltip.options.sticky&&(i.mousemove=this._moveTooltip),this[e](i),this._tooltipHandlersAdded=!t)},openTooltip:function(t){return this._tooltip&&(this instanceof ci||(this._tooltip._source=this),this._tooltip._prepareOpen(t)&&(this._tooltip.openOn(this._map),this.getElement?this._setAriaDescribedByOnLayer(this):this.eachLayer&&this.eachLayer(this._setAriaDescribedByOnLayer,this))),this},closeTooltip:function(){if(this._tooltip)return this._tooltip.close()},toggleTooltip:function(){return this._tooltip&&this._tooltip.toggle(this),this},isTooltipOpen:function(){return this._tooltip.isOpen()},setTooltipContent:function(t){return this._tooltip&&this._tooltip.setContent(t),this},getTooltip:function(){return this._tooltip},_addFocusListeners:function(){this.getElement?this._addFocusListenersOnLayer(this):this.eachLayer&&this.eachLayer(this._addFocusListenersOnLayer,this)},_addFocusListenersOnLayer:function(t){var e="function"==typeof t.getElement&&t.getElement();e&&(S(e,"focus",function(){this._tooltip._source=t,this.openTooltip()},this),S(e,"blur",this.closeTooltip,this))},_setAriaDescribedByOnLayer:function(t){t="function"==typeof t.getElement&&t.getElement();t&&t.setAttribute("aria-describedby",this._tooltip._container.id)},_openTooltip:function(t){var e;this._tooltip&&this._map&&(this._map.dragging&&this._map.dragging.moving()&&!this._openOnceFlag?(this._openOnceFlag=!0,(e=this)._map.once("moveend",function(){e._openOnceFlag=!1,e._openTooltip(t)})):(this._tooltip._source=t.layer||t.target,this.openTooltip(this._tooltip.options.sticky?t.latlng:void 0)))},_moveTooltip:function(t){var e=t.latlng;this._tooltip.options.sticky&&t.originalEvent&&(t=this._map.mouseEventToContainerPoint(t.originalEvent),t=this._map.containerPointToLayerPoint(t),e=this._map.layerPointToLatLng(t)),this._tooltip.setLatLng(e)}}),di.extend({options:{iconSize:[12,12],html:!1,bgPos:null,className:"leaflet-div-icon"},createIcon:function(t){var t=t&&"DIV"===t.tagName?t:document.createElement("div"),e=this.options;return e.html instanceof Element?(me(t),t.appendChild(e.html)):t.innerHTML=!1!==e.html?e.html:"",e.bgPos&&(e=m(e.bgPos),t.style.backgroundPosition=-e.x+"px "+-e.y+"px"),this._setIconStyles(t,"icon"),t},createShadow:function(){return null}}));di.Default=_i;var Ni=o.extend({options:{tileSize:256,opacity:1,updateWhenIdle:b.mobile,updateWhenZooming:!0,updateInterval:200,zIndex:1,bounds:null,minZoom:0,maxZoom:void 0,maxNativeZoom:void 0,minNativeZoom:void 0,noWrap:!1,pane:"tilePane",className:"",keepBuffer:2},initialize:function(t){c(this,t)},onAdd:function(){this._initContainer(),this._levels={},this._tiles={},this._resetView()},beforeAdd:function(t){t._addZoomLimit(this)},onRemove:function(t){this._removeAllTiles(),T(this._container),t._removeZoomLimit(this),this._container=null,this._tileZoom=void 0},bringToFront:function(){return this._map&&(fe(this._container),this._setAutoZIndex(Math.max)),this},bringToBack:function(){return this._map&&(ge(this._container),this._setAutoZIndex(Math.min)),this},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},isLoading:function(){return this._loading},redraw:function(){var t;return this._map&&(this._removeAllTiles(),(t=this._clampZoom(this._map.getZoom()))!==this._tileZoom&&(this._tileZoom=t,this._updateLevels()),this._update()),this},getEvents:function(){var t={viewprereset:this._invalidateAll,viewreset:this._resetView,zoom:this._resetView,moveend:this._onMoveEnd};return this.options.updateWhenIdle||(this._onMove||(this._onMove=j(this._onMoveEnd,this.options.updateInterval,this)),t.move=this._onMove),this._zoomAnimated&&(t.zoomanim=this._animateZoom),t},createTile:function(){return document.createElement("div")},getTileSize:function(){var t=this.options.tileSize;return t instanceof p?t:new p(t,t)},_updateZIndex:function(){this._container&&void 0!==this.options.zIndex&&null!==this.options.zIndex&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t){for(var e,i=this.getPane().children,n=-t(-1/0,1/0),o=0,s=i.length;o<s;o++)e=i[o].style.zIndex,i[o]!==this._container&&e&&(n=t(n,+e));isFinite(n)&&(this.options.zIndex=n+t(-1,1),this._updateZIndex())},_updateOpacity:function(){if(this._map&&!b.ielt9){C(this._container,this.options.opacity);var t,e=+new Date,i=!1,n=!1;for(t in this._tiles){var o,s=this._tiles[t];s.current&&s.loaded&&(o=Math.min(1,(e-s.loaded)/200),C(s.el,o),o<1?i=!0:(s.active?n=!0:this._onOpaqueTile(s),s.active=!0))}n&&!this._noPrune&&this._pruneTiles(),i&&(r(this._fadeFrame),this._fadeFrame=x(this._updateOpacity,this))}},_onOpaqueTile:u,_initContainer:function(){this._container||(this._container=P("div","leaflet-layer "+(this.options.className||"")),this._updateZIndex(),this.options.opacity<1&&this._updateOpacity(),this.getPane().appendChild(this._container))},_updateLevels:function(){var t=this._tileZoom,e=this.options.maxZoom;if(void 0!==t){for(var i in this._levels)i=Number(i),this._levels[i].el.children.length||i===t?(this._levels[i].el.style.zIndex=e-Math.abs(t-i),this._onUpdateLevel(i)):(T(this._levels[i].el),this._removeTilesAtZoom(i),this._onRemoveLevel(i),delete this._levels[i]);var n=this._levels[t],o=this._map;return n||((n=this._levels[t]={}).el=P("div","leaflet-tile-container leaflet-zoom-animated",this._container),n.el.style.zIndex=e,n.origin=o.project(o.unproject(o.getPixelOrigin()),t).round(),n.zoom=t,this._setZoomTransform(n,o.getCenter(),o.getZoom()),u(n.el.offsetWidth),this._onCreateLevel(n)),this._level=n}},_onUpdateLevel:u,_onRemoveLevel:u,_onCreateLevel:u,_pruneTiles:function(){if(this._map){var t,e,i,n=this._map.getZoom();if(n>this.options.maxZoom||n<this.options.minZoom)this._removeAllTiles();else{for(t in this._tiles)(i=this._tiles[t]).retain=i.current;for(t in this._tiles)(i=this._tiles[t]).current&&!i.active&&(e=i.coords,this._retainParent(e.x,e.y,e.z,e.z-5)||this._retainChildren(e.x,e.y,e.z,e.z+2));for(t in this._tiles)this._tiles[t].retain||this._removeTile(t)}}},_removeTilesAtZoom:function(t){for(var e in this._tiles)this._tiles[e].coords.z===t&&this._removeTile(e)},_removeAllTiles:function(){for(var t in this._tiles)this._removeTile(t)},_invalidateAll:function(){for(var t in this._levels)T(this._levels[t].el),this._onRemoveLevel(Number(t)),delete this._levels[t];this._removeAllTiles(),this._tileZoom=void 0},_retainParent:function(t,e,i,n){var t=Math.floor(t/2),e=Math.floor(e/2),i=i-1,o=new p(+t,+e),o=(o.z=i,this._tileCoordsToKey(o)),o=this._tiles[o];return o&&o.active?o.retain=!0:(o&&o.loaded&&(o.retain=!0),n<i&&this._retainParent(t,e,i,n))},_retainChildren:function(t,e,i,n){for(var o=2*t;o<2*t+2;o++)for(var s=2*e;s<2*e+2;s++){var r=new p(o,s),r=(r.z=i+1,this._tileCoordsToKey(r)),r=this._tiles[r];r&&r.active?r.retain=!0:(r&&r.loaded&&(r.retain=!0),i+1<n&&this._retainChildren(o,s,i+1,n))}},_resetView:function(t){t=t&&(t.pinch||t.flyTo);this._setView(this._map.getCenter(),this._map.getZoom(),t,t)},_animateZoom:function(t){this._setView(t.center,t.zoom,!0,t.noUpdate)},_clampZoom:function(t){var e=this.options;return void 0!==e.minNativeZoom&&t<e.minNativeZoom?e.minNativeZoom:void 0!==e.maxNativeZoom&&e.maxNativeZoom<t?e.maxNativeZoom:t},_setView:function(t,e,i,n){var o=Math.round(e),o=void 0!==this.options.maxZoom&&o>this.options.maxZoom||void 0!==this.options.minZoom&&o<this.options.minZoom?void 0:this._clampZoom(o),s=this.options.updateWhenZooming&&o!==this._tileZoom;n&&!s||(this._tileZoom=o,this._abortLoading&&this._abortLoading(),this._updateLevels(),this._resetGrid(),void 0!==o&&this._update(t),i||this._pruneTiles(),this._noPrune=!!i),this._setZoomTransforms(t,e)},_setZoomTransforms:function(t,e){for(var i in this._levels)this._setZoomTransform(this._levels[i],t,e)},_setZoomTransform:function(t,e,i){var n=this._map.getZoomScale(i,t.zoom),e=t.origin.multiplyBy(n).subtract(this._map._getNewPixelOrigin(e,i)).round();b.any3d?be(t.el,e,n):Z(t.el,e)},_resetGrid:function(){var t=this._map,e=t.options.crs,i=this._tileSize=this.getTileSize(),n=this._tileZoom,o=this._map.getPixelWorldBounds(this._tileZoom);o&&(this._globalTileRange=this._pxBoundsToTileRange(o)),this._wrapX=e.wrapLng&&!this.options.noWrap&&[Math.floor(t.project([0,e.wrapLng[0]],n).x/i.x),Math.ceil(t.project([0,e.wrapLng[1]],n).x/i.y)],this._wrapY=e.wrapLat&&!this.options.noWrap&&[Math.floor(t.project([e.wrapLat[0],0],n).y/i.x),Math.ceil(t.project([e.wrapLat[1],0],n).y/i.y)]},_onMoveEnd:function(){this._map&&!this._map._animatingZoom&&this._update()},_getTiledPixelBounds:function(t){var e=this._map,i=e._animatingZoom?Math.max(e._animateToZoom,e.getZoom()):e.getZoom(),i=e.getZoomScale(i,this._tileZoom),t=e.project(t,this._tileZoom).floor(),e=e.getSize().divideBy(2*i);return new f(t.subtract(e),t.add(e))},_update:function(t){var e=this._map;if(e){var i=this._clampZoom(e.getZoom());if(void 0===t&&(t=e.getCenter()),void 0!==this._tileZoom){var n,e=this._getTiledPixelBounds(t),o=this._pxBoundsToTileRange(e),s=o.getCenter(),r=[],e=this.options.keepBuffer,a=new f(o.getBottomLeft().subtract([e,-e]),o.getTopRight().add([e,-e]));if(!(isFinite(o.min.x)&&isFinite(o.min.y)&&isFinite(o.max.x)&&isFinite(o.max.y)))throw new Error("Attempted to load an infinite number of tiles");for(n in this._tiles){var h=this._tiles[n].coords;h.z===this._tileZoom&&a.contains(new p(h.x,h.y))||(this._tiles[n].current=!1)}if(1<Math.abs(i-this._tileZoom))this._setView(t,i);else{for(var l=o.min.y;l<=o.max.y;l++)for(var u=o.min.x;u<=o.max.x;u++){var c,d=new p(u,l);d.z=this._tileZoom,this._isValidTile(d)&&((c=this._tiles[this._tileCoordsToKey(d)])?c.current=!0:r.push(d))}if(r.sort(function(t,e){return t.distanceTo(s)-e.distanceTo(s)}),0!==r.length){this._loading||(this._loading=!0,this.fire("loading"));for(var _=document.createDocumentFragment(),u=0;u<r.length;u++)this._addTile(r[u],_);this._level.el.appendChild(_)}}}}},_isValidTile:function(t){var e=this._map.options.crs;if(!e.infinite){var i=this._globalTileRange;if(!e.wrapLng&&(t.x<i.min.x||t.x>i.max.x)||!e.wrapLat&&(t.y<i.min.y||t.y>i.max.y))return!1}return!this.options.bounds||(e=this._tileCoordsToBounds(t),g(this.options.bounds).overlaps(e))},_keyToBounds:function(t){return this._tileCoordsToBounds(this._keyToTileCoords(t))},_tileCoordsToNwSe:function(t){var e=this._map,i=this.getTileSize(),n=t.scaleBy(i),i=n.add(i);return[e.unproject(n,t.z),e.unproject(i,t.z)]},_tileCoordsToBounds:function(t){t=this._tileCoordsToNwSe(t),t=new s(t[0],t[1]);return t=this.options.noWrap?t:this._map.wrapLatLngBounds(t)},_tileCoordsToKey:function(t){return t.x+":"+t.y+":"+t.z},_keyToTileCoords:function(t){var t=t.split(":"),e=new p(+t[0],+t[1]);return e.z=+t[2],e},_removeTile:function(t){var e=this._tiles[t];e&&(T(e.el),delete this._tiles[t],this.fire("tileunload",{tile:e.el,coords:this._keyToTileCoords(t)}))},_initTile:function(t){M(t,"leaflet-tile");var e=this.getTileSize();t.style.width=e.x+"px",t.style.height=e.y+"px",t.onselectstart=u,t.onmousemove=u,b.ielt9&&this.options.opacity<1&&C(t,this.options.opacity)},_addTile:function(t,e){var i=this._getTilePos(t),n=this._tileCoordsToKey(t),o=this.createTile(this._wrapCoords(t),a(this._tileReady,this,t));this._initTile(o),this.createTile.length<2&&x(a(this._tileReady,this,t,null,o)),Z(o,i),this._tiles[n]={el:o,coords:t,current:!0},e.appendChild(o),this.fire("tileloadstart",{tile:o,coords:t})},_tileReady:function(t,e,i){e&&this.fire("tileerror",{error:e,tile:i,coords:t});var n=this._tileCoordsToKey(t);(i=this._tiles[n])&&(i.loaded=+new Date,this._map._fadeAnimated?(C(i.el,0),r(this._fadeFrame),this._fadeFrame=x(this._updateOpacity,this)):(i.active=!0,this._pruneTiles()),e||(M(i.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:i.el,coords:t})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),b.ielt9||!this._map._fadeAnimated?x(this._pruneTiles,this):setTimeout(a(this._pruneTiles,this),250)))},_getTilePos:function(t){return t.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(t){var e=new p(this._wrapX?H(t.x,this._wrapX):t.x,this._wrapY?H(t.y,this._wrapY):t.y);return e.z=t.z,e},_pxBoundsToTileRange:function(t){var e=this.getTileSize();return new f(t.min.unscaleBy(e).floor(),t.max.unscaleBy(e).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var t in this._tiles)if(!this._tiles[t].loaded)return!1;return!0}});var Di=Ni.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(t,e){this._url=t,(e=c(this,e)).detectRetina&&b.retina&&0<e.maxZoom?(e.tileSize=Math.floor(e.tileSize/2),e.zoomReverse?(e.zoomOffset--,e.minZoom=Math.min(e.maxZoom,e.minZoom+1)):(e.zoomOffset++,e.maxZoom=Math.max(e.minZoom,e.maxZoom-1)),e.minZoom=Math.max(0,e.minZoom)):e.zoomReverse?e.minZoom=Math.min(e.maxZoom,e.minZoom):e.maxZoom=Math.max(e.minZoom,e.maxZoom),"string"==typeof e.subdomains&&(e.subdomains=e.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(t,e){return this._url===t&&void 0===e&&(e=!0),this._url=t,e||this.redraw(),this},createTile:function(t,e){var i=document.createElement("img");return S(i,"load",a(this._tileOnLoad,this,e,i)),S(i,"error",a(this._tileOnError,this,e,i)),!this.options.crossOrigin&&""!==this.options.crossOrigin||(i.crossOrigin=!0===this.options.crossOrigin?"":this.options.crossOrigin),"string"==typeof this.options.referrerPolicy&&(i.referrerPolicy=this.options.referrerPolicy),i.alt="",i.src=this.getTileUrl(t),i},getTileUrl:function(t){var e={r:b.retina?"@2x":"",s:this._getSubdomain(t),x:t.x,y:t.y,z:this._getZoomForUrl()};return this._map&&!this._map.options.crs.infinite&&(t=this._globalTileRange.max.y-t.y,this.options.tms&&(e.y=t),e["-y"]=t),q(this._url,l(e,this.options))},_tileOnLoad:function(t,e){b.ielt9?setTimeout(a(t,this,null,e),0):t(null,e)},_tileOnError:function(t,e,i){var n=this.options.errorTileUrl;n&&e.getAttribute("src")!==n&&(e.src=n),t(i,e)},_onTileRemove:function(t){t.tile.onload=null},_getZoomForUrl:function(){var t=this._tileZoom,e=this.options.maxZoom;return(t=this.options.zoomReverse?e-t:t)+this.options.zoomOffset},_getSubdomain:function(t){t=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[t]},_abortLoading:function(){var t,e,i;for(t in this._tiles)this._tiles[t].coords.z!==this._tileZoom&&((i=this._tiles[t].el).onload=u,i.onerror=u,i.complete||(i.src=K,e=this._tiles[t].coords,T(i),delete this._tiles[t],this.fire("tileabort",{tile:i,coords:e})))},_removeTile:function(t){var e=this._tiles[t];if(e)return e.el.setAttribute("src",K),Ni.prototype._removeTile.call(this,t)},_tileReady:function(t,e,i){if(this._map&&(!i||i.getAttribute("src")!==K))return Ni.prototype._tileReady.call(this,t,e,i)}});function ji(t,e){return new Di(t,e)}var Hi=Di.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(t,e){this._url=t;var i,n=l({},this.defaultWmsParams);for(i in e)i in this.options||(n[i]=e[i]);var t=(e=c(this,e)).detectRetina&&b.retina?2:1,o=this.getTileSize();n.width=o.x*t,n.height=o.y*t,this.wmsParams=n},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=1.3<=this._wmsVersion?"crs":"srs";this.wmsParams[e]=this._crs.code,Di.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._tileCoordsToNwSe(t),i=this._crs,i=_(i.project(e[0]),i.project(e[1])),e=i.min,i=i.max,e=(1.3<=this._wmsVersion&&this._crs===li?[e.y,e.x,i.y,i.x]:[e.x,e.y,i.x,i.y]).join(","),i=Di.prototype.getTileUrl.call(this,t);return i+U(this.wmsParams,i,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+e},setParams:function(t,e){return l(this.wmsParams,t),e||this.redraw(),this}});Di.WMS=Hi,ji.wms=function(t,e){return new Hi(t,e)};var Wi=o.extend({options:{padding:.1},initialize:function(t){c(this,t),h(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),M(this._container,"leaflet-zoom-animated")),this.getPane().appendChild(this._container),this._update(),this.on("update",this._updatePaths,this)},onRemove:function(){this.off("update",this._updatePaths,this),this._destroyContainer()},getEvents:function(){var t={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(t.zoomanim=this._onAnimZoom),t},_onAnimZoom:function(t){this._updateTransform(t.center,t.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(t,e){var i=this._map.getZoomScale(e,this._zoom),n=this._map.getSize().multiplyBy(.5+this.options.padding),o=this._map.project(this._center,e),n=n.multiplyBy(-i).add(o).subtract(this._map._getNewPixelOrigin(t,e));b.any3d?be(this._container,n,i):Z(this._container,n)},_reset:function(){for(var t in this._update(),this._updateTransform(this._center,this._zoom),this._layers)this._layers[t]._reset()},_onZoomEnd:function(){for(var t in this._layers)this._layers[t]._project()},_updatePaths:function(){for(var t in this._layers)this._layers[t]._update()},_update:function(){var t=this.options.padding,e=this._map.getSize(),i=this._map.containerPointToLayerPoint(e.multiplyBy(-t)).round();this._bounds=new f(i,i.add(e.multiplyBy(1+2*t)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),Fi=Wi.extend({options:{tolerance:0},getEvents:function(){var t=Wi.prototype.getEvents.call(this);return t.viewprereset=this._onViewPreReset,t},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){Wi.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var t=this._container=document.createElement("canvas");S(t,"mousemove",this._onMouseMove,this),S(t,"click dblclick mousedown mouseup contextmenu",this._onClick,this),S(t,"mouseout",this._handleMouseOut,this),t._leaflet_disable_events=!0,this._ctx=t.getContext("2d")},_destroyContainer:function(){r(this._redrawRequest),delete this._ctx,T(this._container),k(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){for(var t in this._redrawBounds=null,this._layers)this._layers[t]._update();this._redraw()}},_update:function(){var t,e,i,n;this._map._animatingZoom&&this._bounds||(Wi.prototype._update.call(this),t=this._bounds,e=this._container,i=t.getSize(),n=b.retina?2:1,Z(e,t.min),e.width=n*i.x,e.height=n*i.y,e.style.width=i.x+"px",e.style.height=i.y+"px",b.retina&&this._ctx.scale(2,2),this._ctx.translate(-t.min.x,-t.min.y),this.fire("update"))},_reset:function(){Wi.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(t){this._updateDashArray(t);t=(this._layers[h(t)]=t)._order={layer:t,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=t),this._drawLast=t,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(t){this._requestRedraw(t)},_removePath:function(t){var e=t._order,i=e.next,e=e.prev;i?i.prev=e:this._drawLast=e,e?e.next=i:this._drawFirst=i,delete t._order,delete this._layers[h(t)],this._requestRedraw(t)},_updatePath:function(t){this._extendRedrawBounds(t),t._project(),t._update(),this._requestRedraw(t)},_updateStyle:function(t){this._updateDashArray(t),this._requestRedraw(t)},_updateDashArray:function(t){if("string"==typeof t.options.dashArray){for(var e,i=t.options.dashArray.split(/[, ]+/),n=[],o=0;o<i.length;o++){if(e=Number(i[o]),isNaN(e))return;n.push(e)}t.options._dashArray=n}else t.options._dashArray=t.options.dashArray},_requestRedraw:function(t){this._map&&(this._extendRedrawBounds(t),this._redrawRequest=this._redrawRequest||x(this._redraw,this))},_extendRedrawBounds:function(t){var e;t._pxBounds&&(e=(t.options.weight||0)+1,this._redrawBounds=this._redrawBounds||new f,this._redrawBounds.extend(t._pxBounds.min.subtract([e,e])),this._redrawBounds.extend(t._pxBounds.max.add([e,e])))},_redraw:function(){this._redrawRequest=null,this._redrawBounds&&(this._redrawBounds.min._floor(),this._redrawBounds.max._ceil()),this._clear(),this._draw(),this._redrawBounds=null},_clear:function(){var t,e=this._redrawBounds;e?(t=e.getSize(),this._ctx.clearRect(e.min.x,e.min.y,t.x,t.y)):(this._ctx.save(),this._ctx.setTransform(1,0,0,1,0,0),this._ctx.clearRect(0,0,this._container.width,this._container.height),this._ctx.restore())},_draw:function(){var t,e,i=this._redrawBounds;this._ctx.save(),i&&(e=i.getSize(),this._ctx.beginPath(),this._ctx.rect(i.min.x,i.min.y,e.x,e.y),this._ctx.clip()),this._drawing=!0;for(var n=this._drawFirst;n;n=n.next)t=n.layer,(!i||t._pxBounds&&t._pxBounds.intersects(i))&&t._updatePath();this._drawing=!1,this._ctx.restore()},_updatePoly:function(t,e){if(this._drawing){var i,n,o,s,r=t._parts,a=r.length,h=this._ctx;if(a){for(h.beginPath(),i=0;i<a;i++){for(n=0,o=r[i].length;n<o;n++)s=r[i][n],h[n?"lineTo":"moveTo"](s.x,s.y);e&&h.closePath()}this._fillStroke(h,t)}}},_updateCircle:function(t){var e,i,n,o;this._drawing&&!t._empty()&&(e=t._point,i=this._ctx,n=Math.max(Math.round(t._radius),1),1!=(o=(Math.max(Math.round(t._radiusY),1)||n)/n)&&(i.save(),i.scale(1,o)),i.beginPath(),i.arc(e.x,e.y/o,n,0,2*Math.PI,!1),1!=o&&i.restore(),this._fillStroke(i,t))},_fillStroke:function(t,e){var i=e.options;i.fill&&(t.globalAlpha=i.fillOpacity,t.fillStyle=i.fillColor||i.color,t.fill(i.fillRule||"evenodd")),i.stroke&&0!==i.weight&&(t.setLineDash&&t.setLineDash(e.options&&e.options._dashArray||[]),t.globalAlpha=i.opacity,t.lineWidth=i.weight,t.strokeStyle=i.color,t.lineCap=i.lineCap,t.lineJoin=i.lineJoin,t.stroke())},_onClick:function(t){for(var e,i,n=this._map.mouseEventToLayerPoint(t),o=this._drawFirst;o;o=o.next)(e=o.layer).options.interactive&&e._containsPoint(n)&&(("click"===t.type||"preclick"===t.type)&&this._map._draggableMoved(e)||(i=e));this._fireEvent(!!i&&[i],t)},_onMouseMove:function(t){var e;!this._map||this._map.dragging.moving()||this._map._animatingZoom||(e=this._map.mouseEventToLayerPoint(t),this._handleMouseHover(t,e))},_handleMouseOut:function(t){var e=this._hoveredLayer;e&&(z(this._container,"leaflet-interactive"),this._fireEvent([e],t,"mouseout"),this._hoveredLayer=null,this._mouseHoverThrottled=!1)},_handleMouseHover:function(t,e){if(!this._mouseHoverThrottled){for(var i,n,o=this._drawFirst;o;o=o.next)(i=o.layer).options.interactive&&i._containsPoint(e)&&(n=i);n!==this._hoveredLayer&&(this._handleMouseOut(t),n&&(M(this._container,"leaflet-interactive"),this._fireEvent([n],t,"mouseover"),this._hoveredLayer=n)),this._fireEvent(!!this._hoveredLayer&&[this._hoveredLayer],t),this._mouseHoverThrottled=!0,setTimeout(a(function(){this._mouseHoverThrottled=!1},this),32)}},_fireEvent:function(t,e,i){this._map._fireDOMEvent(e,i||e.type,t)},_bringToFront:function(t){var e,i,n=t._order;n&&(e=n.next,i=n.prev,e&&((e.prev=i)?i.next=e:e&&(this._drawFirst=e),n.prev=this._drawLast,(this._drawLast.next=n).next=null,this._drawLast=n,this._requestRedraw(t)))},_bringToBack:function(t){var e,i,n=t._order;n&&(e=n.next,(i=n.prev)&&((i.next=e)?e.prev=i:i&&(this._drawLast=i),n.prev=null,n.next=this._drawFirst,this._drawFirst.prev=n,this._drawFirst=n,this._requestRedraw(t)))}});function Ui(t){return b.canvas?new Fi(t):null}var Vi=function(){try{return document.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return document.createElement("<lvml:"+t+' class="lvml">')}}catch(t){}return function(t){return document.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),zt={_initContainer:function(){this._container=P("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(Wi.prototype._update.call(this),this.fire("update"))},_initPath:function(t){var e=t._container=Vi("shape");M(e,"leaflet-vml-shape "+(this.options.className||"")),e.coordsize="1 1",t._path=Vi("path"),e.appendChild(t._path),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){var e=t._container;this._container.appendChild(e),t.options.interactive&&t.addInteractiveTarget(e)},_removePath:function(t){var e=t._container;T(e),t.removeInteractiveTarget(e),delete this._layers[h(t)]},_updateStyle:function(t){var e=t._stroke,i=t._fill,n=t.options,o=t._container;o.stroked=!!n.stroke,o.filled=!!n.fill,n.stroke?(e=e||(t._stroke=Vi("stroke")),o.appendChild(e),e.weight=n.weight+"px",e.color=n.color,e.opacity=n.opacity,n.dashArray?e.dashStyle=d(n.dashArray)?n.dashArray.join(" "):n.dashArray.replace(/( *, *)/g," "):e.dashStyle="",e.endcap=n.lineCap.replace("butt","flat"),e.joinstyle=n.lineJoin):e&&(o.removeChild(e),t._stroke=null),n.fill?(i=i||(t._fill=Vi("fill")),o.appendChild(i),i.color=n.fillColor||n.color,i.opacity=n.fillOpacity):i&&(o.removeChild(i),t._fill=null)},_updateCircle:function(t){var e=t._point.round(),i=Math.round(t._radius),n=Math.round(t._radiusY||i);this._setPath(t,t._empty()?"M0 0":"AL "+e.x+","+e.y+" "+i+","+n+" 0,23592600")},_setPath:function(t,e){t._path.v=e},_bringToFront:function(t){fe(t._container)},_bringToBack:function(t){ge(t._container)}},qi=b.vml?Vi:ct,Gi=Wi.extend({_initContainer:function(){this._container=qi("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=qi("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){T(this._container),k(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){var t,e,i;this._map._animatingZoom&&this._bounds||(Wi.prototype._update.call(this),e=(t=this._bounds).getSize(),i=this._container,this._svgSize&&this._svgSize.equals(e)||(this._svgSize=e,i.setAttribute("width",e.x),i.setAttribute("height",e.y)),Z(i,t.min),i.setAttribute("viewBox",[t.min.x,t.min.y,e.x,e.y].join(" ")),this.fire("update"))},_initPath:function(t){var e=t._path=qi("path");t.options.className&&M(e,t.options.className),t.options.interactive&&M(e,"leaflet-interactive"),this._updateStyle(t),this._layers[h(t)]=t},_addPath:function(t){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(t._path),t.addInteractiveTarget(t._path)},_removePath:function(t){T(t._path),t.removeInteractiveTarget(t._path),delete this._layers[h(t)]},_updatePath:function(t){t._project(),t._update()},_updateStyle:function(t){var e=t._path,t=t.options;e&&(t.stroke?(e.setAttribute("stroke",t.color),e.setAttribute("stroke-opacity",t.opacity),e.setAttribute("stroke-width",t.weight),e.setAttribute("stroke-linecap",t.lineCap),e.setAttribute("stroke-linejoin",t.lineJoin),t.dashArray?e.setAttribute("stroke-dasharray",t.dashArray):e.removeAttribute("stroke-dasharray"),t.dashOffset?e.setAttribute("stroke-dashoffset",t.dashOffset):e.removeAttribute("stroke-dashoffset")):e.setAttribute("stroke","none"),t.fill?(e.setAttribute("fill",t.fillColor||t.color),e.setAttribute("fill-opacity",t.fillOpacity),e.setAttribute("fill-rule",t.fillRule||"evenodd")):e.setAttribute("fill","none"))},_updatePoly:function(t,e){this._setPath(t,dt(t._parts,e))},_updateCircle:function(t){var e=t._point,i=Math.max(Math.round(t._radius),1),n="a"+i+","+(Math.max(Math.round(t._radiusY),1)||i)+" 0 1,0 ",e=t._empty()?"M0 0":"M"+(e.x-i)+","+e.y+n+2*i+",0 "+n+2*-i+",0 ";this._setPath(t,e)},_setPath:function(t,e){t._path.setAttribute("d",e)},_bringToFront:function(t){fe(t._path)},_bringToBack:function(t){ge(t._path)}});function Ki(t){return b.svg||b.vml?new Gi(t):null}b.vml&&Gi.include(zt),A.include({getRenderer:function(t){t=(t=t.options.renderer||this._getPaneRenderer(t.options.pane)||this.options.renderer||this._renderer)||(this._renderer=this._createRenderer());return this.hasLayer(t)||this.addLayer(t),t},_getPaneRenderer:function(t){var e;return"overlayPane"!==t&&void 0!==t&&(void 0===(e=this._paneRenderers[t])&&(e=this._createRenderer({pane:t}),this._paneRenderers[t]=e),e)},_createRenderer:function(t){return this.options.preferCanvas&&Ui(t)||Ki(t)}});var Yi=xi.extend({initialize:function(t,e){xi.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){return this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return[(t=g(t)).getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}});Gi.create=qi,Gi.pointsToPath=dt,wi.geometryToLayer=bi,wi.coordsToLatLng=Li,wi.coordsToLatLngs=Ti,wi.latLngToCoords=Mi,wi.latLngsToCoords=zi,wi.getFeature=Ci,wi.asFeature=Zi,A.mergeOptions({boxZoom:!0});var _t=n.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._resetStateTimeout=0,t.on("unload",this._destroy,this)},addHooks:function(){S(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){k(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){T(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){0!==this._resetStateTimeout&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(t){if(!t.shiftKey||1!==t.which&&1!==t.button)return!1;this._clearDeferredResetState(),this._resetState(),re(),Le(),this._startPoint=this._map.mouseEventToContainerPoint(t),S(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(t){this._moved||(this._moved=!0,this._box=P("div","leaflet-zoom-box",this._container),M(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(t);var t=new f(this._point,this._startPoint),e=t.getSize();Z(this._box,t.min),this._box.style.width=e.x+"px",this._box.style.height=e.y+"px"},_finish:function(){this._moved&&(T(this._box),z(this._container,"leaflet-crosshair")),ae(),Te(),k(document,{contextmenu:Re,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(t){1!==t.which&&1!==t.button||(this._finish(),this._moved&&(this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(a(this._resetState,this),0),t=new s(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point)),this._map.fitBounds(t).fire("boxzoomend",{boxZoomBounds:t})))},_onKeyDown:function(t){27===t.keyCode&&(this._finish(),this._clearDeferredResetState(),this._resetState())}}),Ct=(A.addInitHook("addHandler","boxZoom",_t),A.mergeOptions({doubleClickZoom:!0}),n.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom(),n=e.options.zoomDelta,i=t.originalEvent.shiftKey?i-n:i+n;"center"===e.options.doubleClickZoom?e.setZoom(i):e.setZoomAround(t.containerPoint,i)}})),Zt=(A.addInitHook("addHandler","doubleClickZoom",Ct),A.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0}),n.extend({addHooks:function(){var t;this._draggable||(t=this._map,this._draggable=new Xe(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),t.on("zoomend",this._onZoomEnd,this),t.whenReady(this._onZoomEnd,this))),M(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){z(this._map._container,"leaflet-grab"),z(this._map._container,"leaflet-touch-drag"),this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},moving:function(){return this._draggable&&this._draggable._moving},_onDragStart:function(){var t,e=this._map;e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity?(t=g(this._map.options.maxBounds),this._offsetLimit=_(this._map.latLngToContainerPoint(t.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(t.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))):this._offsetLimit=null,e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(t){var e,i;this._map.options.inertia&&(e=this._lastTime=+new Date,i=this._lastPos=this._draggable._absPos||this._draggable._newPos,this._positions.push(i),this._times.push(e),this._prunePositions(e)),this._map.fire("move",t).fire("drag",t)},_prunePositions:function(t){for(;1<this._positions.length&&50<t-this._times[0];)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var t=this._map.getSize().divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(t,e){return t-(t-e)*this._viscosity},_onPreDragLimit:function(){var t,e;this._viscosity&&this._offsetLimit&&(t=this._draggable._newPos.subtract(this._draggable._startPos),e=this._offsetLimit,t.x<e.min.x&&(t.x=this._viscousLimit(t.x,e.min.x)),t.y<e.min.y&&(t.y=this._viscousLimit(t.y,e.min.y)),t.x>e.max.x&&(t.x=this._viscousLimit(t.x,e.max.x)),t.y>e.max.y&&(t.y=this._viscousLimit(t.y,e.max.y)),this._draggable._newPos=this._draggable._startPos.add(t))},_onPreDragWrap:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,n=(n+e+i)%t-e-i,t=Math.abs(o+i)<Math.abs(n+i)?o:n;this._draggable._absPos=this._draggable._newPos.clone(),this._draggable._newPos.x=t},_onDragEnd:function(t){var e,i,n,o,s=this._map,r=s.options,a=!r.inertia||t.noInertia||this._times.length<2;s.fire("dragend",t),!a&&(this._prunePositions(+new Date),t=this._lastPos.subtract(this._positions[0]),a=(this._lastTime-this._times[0])/1e3,e=r.easeLinearity,a=(t=t.multiplyBy(e/a)).distanceTo([0,0]),i=Math.min(r.inertiaMaxSpeed,a),t=t.multiplyBy(i/a),n=i/(r.inertiaDeceleration*e),(o=t.multiplyBy(-n/2).round()).x||o.y)?(o=s._limitOffset(o,s.options.maxBounds),x(function(){s.panBy(o,{duration:n,easeLinearity:e,noMoveStart:!0,animate:!0})})):s.fire("moveend")}})),St=(A.addInitHook("addHandler","dragging",Zt),A.mergeOptions({keyboard:!0,keyboardPanDelta:80}),n.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,54,173]},initialize:function(t){this._map=t,this._setPanDelta(t.options.keyboardPanDelta),this._setZoomDelta(t.options.zoomDelta)},addHooks:function(){var t=this._map._container;t.tabIndex<=0&&(t.tabIndex="0"),S(t,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.on({focus:this._addHooks,blur:this._removeHooks},this)},removeHooks:function(){this._removeHooks(),k(this._map._container,{focus:this._onFocus,blur:this._onBlur,mousedown:this._onMouseDown},this),this._map.off({focus:this._addHooks,blur:this._removeHooks},this)},_onMouseDown:function(){var t,e,i;this._focused||(i=document.body,t=document.documentElement,e=i.scrollTop||t.scrollTop,i=i.scrollLeft||t.scrollLeft,this._map._container.focus(),window.scrollTo(i,e))},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanDelta:function(t){for(var e=this._panKeys={},i=this.keyCodes,n=0,o=i.left.length;n<o;n++)e[i.left[n]]=[-1*t,0];for(n=0,o=i.right.length;n<o;n++)e[i.right[n]]=[t,0];for(n=0,o=i.down.length;n<o;n++)e[i.down[n]]=[0,t];for(n=0,o=i.up.length;n<o;n++)e[i.up[n]]=[0,-1*t]},_setZoomDelta:function(t){for(var e=this._zoomKeys={},i=this.keyCodes,n=0,o=i.zoomIn.length;n<o;n++)e[i.zoomIn[n]]=t;for(n=0,o=i.zoomOut.length;n<o;n++)e[i.zoomOut[n]]=-t},_addHooks:function(){S(document,"keydown",this._onKeyDown,this)},_removeHooks:function(){k(document,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){if(!(t.altKey||t.ctrlKey||t.metaKey)){var e,i,n=t.keyCode,o=this._map;if(n in this._panKeys)o._panAnim&&o._panAnim._inProgress||(i=this._panKeys[n],t.shiftKey&&(i=m(i).multiplyBy(3)),o.options.maxBounds&&(i=o._limitOffset(m(i),o.options.maxBounds)),o.options.worldCopyJump?(e=o.wrapLatLng(o.unproject(o.project(o.getCenter()).add(i))),o.panTo(e)):o.panBy(i));else if(n in this._zoomKeys)o.setZoom(o.getZoom()+(t.shiftKey?3:1)*this._zoomKeys[n]);else{if(27!==n||!o._popup||!o._popup.options.closeOnEscapeKey)return;o.closePopup()}Re(t)}}})),Et=(A.addInitHook("addHandler","keyboard",St),A.mergeOptions({scrollWheelZoom:!0,wheelDebounceTime:40,wheelPxPerZoomLevel:60}),n.extend({addHooks:function(){S(this._map._container,"wheel",this._onWheelScroll,this),this._delta=0},removeHooks:function(){k(this._map._container,"wheel",this._onWheelScroll,this)},_onWheelScroll:function(t){var e=He(t),i=this._map.options.wheelDebounceTime,e=(this._delta+=e,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date),Math.max(i-(+new Date-this._startTime),0));clearTimeout(this._timer),this._timer=setTimeout(a(this._performZoom,this),e),Re(t)},_performZoom:function(){var t=this._map,e=t.getZoom(),i=this._map.options.zoomSnap||0,n=(t._stop(),this._delta/(4*this._map.options.wheelPxPerZoomLevel)),n=4*Math.log(2/(1+Math.exp(-Math.abs(n))))/Math.LN2,i=i?Math.ceil(n/i)*i:n,n=t._limitZoom(e+(0<this._delta?i:-i))-e;this._delta=0,this._startTime=null,n&&("center"===t.options.scrollWheelZoom?t.setZoom(e+n):t.setZoomAround(this._lastMousePos,e+n))}})),kt=(A.addInitHook("addHandler","scrollWheelZoom",Et),A.mergeOptions({tapHold:b.touchNative&&b.safari&&b.mobile,tapTolerance:15}),n.extend({addHooks:function(){S(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){k(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){var e;clearTimeout(this._holdTimeout),1===t.touches.length&&(e=t.touches[0],this._startPos=this._newPos=new p(e.clientX,e.clientY),this._holdTimeout=setTimeout(a(function(){this._cancel(),this._isTapValid()&&(S(document,"touchend",O),S(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",e))},this),600),S(document,"touchend touchcancel contextmenu",this._cancel,this),S(document,"touchmove",this._onMove,this))},_cancelClickPrevent:function t(){k(document,"touchend",O),k(document,"touchend touchcancel",t)},_cancel:function(){clearTimeout(this._holdTimeout),k(document,"touchend touchcancel contextmenu",this._cancel,this),k(document,"touchmove",this._onMove,this)},_onMove:function(t){t=t.touches[0];this._newPos=new p(t.clientX,t.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(t,e){t=new MouseEvent(t,{bubbles:!0,cancelable:!0,view:window,screenX:e.screenX,screenY:e.screenY,clientX:e.clientX,clientY:e.clientY});t._simulated=!0,e.target.dispatchEvent(t)}})),Ot=(A.addInitHook("addHandler","tapHold",kt),A.mergeOptions({touchZoom:b.touch,bounceAtZoomLimits:!0}),n.extend({addHooks:function(){M(this._map._container,"leaflet-touch-zoom"),S(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){z(this._map._container,"leaflet-touch-zoom"),k(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var e,i,n=this._map;!t.touches||2!==t.touches.length||n._animatingZoom||this._zooming||(e=n.mouseEventToContainerPoint(t.touches[0]),i=n.mouseEventToContainerPoint(t.touches[1]),this._centerPoint=n.getSize()._divideBy(2),this._startLatLng=n.containerPointToLatLng(this._centerPoint),"center"!==n.options.touchZoom&&(this._pinchStartLatLng=n.containerPointToLatLng(e.add(i)._divideBy(2))),this._startDist=e.distanceTo(i),this._startZoom=n.getZoom(),this._moved=!1,this._zooming=!0,n._stop(),S(document,"touchmove",this._onTouchMove,this),S(document,"touchend touchcancel",this._onTouchEnd,this),O(t))},_onTouchMove:function(t){if(t.touches&&2===t.touches.length&&this._zooming){var e=this._map,i=e.mouseEventToContainerPoint(t.touches[0]),n=e.mouseEventToContainerPoint(t.touches[1]),o=i.distanceTo(n)/this._startDist;if(this._zoom=e.getScaleZoom(o,this._startZoom),!e.options.bounceAtZoomLimits&&(this._zoom<e.getMinZoom()&&o<1||this._zoom>e.getMaxZoom()&&1<o)&&(this._zoom=e._limitZoom(this._zoom)),"center"===e.options.touchZoom){if(this._center=this._startLatLng,1==o)return}else{i=i._add(n)._divideBy(2)._subtract(this._centerPoint);if(1==o&&0===i.x&&0===i.y)return;this._center=e.unproject(e.project(this._pinchStartLatLng,this._zoom).subtract(i),this._zoom)}this._moved||(e._moveStart(!0,!1),this._moved=!0),r(this._animRequest);n=a(e._move,e,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=x(n,this,!0),O(t)}},_onTouchEnd:function(){this._moved&&this._zooming?(this._zooming=!1,r(this._animRequest),k(document,"touchmove",this._onTouchMove,this),k(document,"touchend touchcancel",this._onTouchEnd,this),this._map.options.zoomAnimation?this._map._animateZoom(this._center,this._map._limitZoom(this._zoom),!0,this._map.options.zoomSnap):this._map._resetView(this._center,this._map._limitZoom(this._zoom))):this._zooming=!1}})),Xi=(A.addInitHook("addHandler","touchZoom",Ot),A.BoxZoom=_t,A.DoubleClickZoom=Ct,A.Drag=Zt,A.Keyboard=St,A.ScrollWheelZoom=Et,A.TapHold=kt,A.TouchZoom=Ot,t.Bounds=f,t.Browser=b,t.CRS=ot,t.Canvas=Fi,t.Circle=vi,t.CircleMarker=gi,t.Class=et,t.Control=B,t.DivIcon=Ri,t.DivOverlay=Ai,t.DomEvent=mt,t.DomUtil=pt,t.Draggable=Xe,t.Evented=it,t.FeatureGroup=ci,t.GeoJSON=wi,t.GridLayer=Ni,t.Handler=n,t.Icon=di,t.ImageOverlay=Ei,t.LatLng=v,t.LatLngBounds=s,t.Layer=o,t.LayerGroup=ui,t.LineUtil=vt,t.Map=A,t.Marker=mi,t.Mixin=ft,t.Path=fi,t.Point=p,t.PolyUtil=gt,t.Polygon=xi,t.Polyline=yi,t.Popup=Bi,t.PosAnimation=Fe,t.Projection=wt,t.Rectangle=Yi,t.Renderer=Wi,t.SVG=Gi,t.SVGOverlay=Oi,t.TileLayer=Di,t.Tooltip=Ii,t.Transformation=at,t.Util=tt,t.VideoOverlay=ki,t.bind=a,t.bounds=_,t.canvas=Ui,t.circle=function(t,e,i){return new vi(t,e,i)},t.circleMarker=function(t,e){return new gi(t,e)},t.control=Ue,t.divIcon=function(t){return new Ri(t)},t.extend=l,t.featureGroup=function(t,e){return new ci(t,e)},t.geoJSON=Si,t.geoJson=Mt,t.gridLayer=function(t){return new Ni(t)},t.icon=function(t){return new di(t)},t.imageOverlay=function(t,e,i){return new Ei(t,e,i)},t.latLng=w,t.latLngBounds=g,t.layerGroup=function(t,e){return new ui(t,e)},t.map=function(t,e){return new A(t,e)},t.marker=function(t,e){return new mi(t,e)},t.point=m,t.polygon=function(t,e){return new xi(t,e)},t.polyline=function(t,e){return new yi(t,e)},t.popup=function(t,e){return new Bi(t,e)},t.rectangle=function(t,e){return new Yi(t,e)},t.setOptions=c,t.stamp=h,t.svg=Ki,t.svgOverlay=function(t,e,i){return new Oi(t,e,i)},t.tileLayer=ji,t.tooltip=function(t,e){return new Ii(t,e)},t.transformation=ht,t.version="1.9.4",t.videoOverlay=function(t,e,i){return new ki(t,e,i)},window.L);t.noConflict=function(){return window.L=Xi,this},window.L=t}); //# sourceMappingURL=leaflet.js.map
@font-face { font-family: "lucide"; src: url('lucide.eot?t=1734687594441'); /* IE9*/ src: url('lucide.eot?t=1734687594441#iefix') format('embedded-opentype'), /* IE6-IE8 */ url("lucide.woff2?t=1734687594441") format("woff2"), url("lucide.woff?t=1734687594441") format("woff"), url('lucide.ttf?t=1734687594441') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url('lucide.svg?t=1734687594441#lucide') format('svg'); /* iOS 4.1- */ } [class^="icon-"], [class*=" icon-"] { font-family: 'lucide' !important;font-size: inherit; font-style:normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-a-arrow-down:before { content: "\e589"; } .icon-a-arrow-up:before { content: "\e58a"; } .icon-a-large-small:before { content: "\e58b"; } .icon-accessibility:before { content: "\e296"; } .icon-activity:before { content: "\e038"; } .icon-air-vent:before { content: "\e350"; } .icon-airplay:before { content: "\e039"; } .icon-alarm-clock-check:before { content: "\e1eb"; } .icon-alarm-clock-minus:before { content: "\e1ec"; } .icon-alarm-clock-off:before { content: "\e23a"; } .icon-alarm-clock-plus:before { content: "\e1ed"; } .icon-alarm-clock:before { content: "\e03a"; } .icon-alarm-smoke:before { content: "\e57f"; } .icon-album:before { content: "\e03b"; } .icon-align-center-horizontal:before { content: "\e26b"; } .icon-align-center-vertical:before { content: "\e26c"; } .icon-align-center:before { content: "\e03c"; } .icon-align-end-horizontal:before { content: "\e26d"; } .icon-align-end-vertical:before { content: "\e26e"; } .icon-align-horizontal-distribute-center:before { content: "\e03d"; } .icon-align-horizontal-distribute-end:before { content: "\e03e"; } .icon-align-horizontal-distribute-start:before { content: "\e03f"; } .icon-align-horizontal-justify-center:before { content: "\e271"; } .icon-align-horizontal-justify-end:before { content: "\e272"; } .icon-align-horizontal-justify-start:before { content: "\e273"; } .icon-align-horizontal-space-around:before { content: "\e274"; } .icon-align-horizontal-space-between:before { content: "\e275"; } .icon-align-justify:before { content: "\e040"; } .icon-align-left:before { content: "\e041"; } .icon-align-right:before { content: "\e042"; } .icon-align-start-horizontal:before { content: "\e26f"; } .icon-align-start-vertical:before { content: "\e270"; } .icon-align-vertical-distribute-center:before { content: "\e27d"; } .icon-align-vertical-distribute-end:before { content: "\e27e"; } .icon-align-vertical-distribute-start:before { content: "\e27f"; } .icon-align-vertical-justify-center:before { content: "\e276"; } .icon-align-vertical-justify-end:before { content: "\e277"; } .icon-align-vertical-justify-start:before { content: "\e278"; } .icon-align-vertical-space-around:before { content: "\e279"; } .icon-align-vertical-space-between:before { content: "\e27a"; } .icon-ambulance:before { content: "\e5bf"; } .icon-ampersand:before { content: "\e4a0"; } .icon-ampersands:before { content: "\e4a1"; } .icon-amphora:before { content: "\e61f"; } .icon-anchor:before { content: "\e043"; } .icon-angry:before { content: "\e2fb"; } .icon-annoyed:before { content: "\e2fc"; } .icon-antenna:before { content: "\e4e6"; } .icon-anvil:before { content: "\e584"; } .icon-aperture:before { content: "\e044"; } .icon-app-window-mac:before { content: "\e5d6"; } .icon-app-window:before { content: "\e42a"; } .icon-apple:before { content: "\e351"; } .icon-archive-restore:before { content: "\e2cc"; } .icon-archive-x:before { content: "\e510"; } .icon-archive:before { content: "\e045"; } .icon-armchair:before { content: "\e2bf"; } .icon-arrow-big-down-dash:before { content: "\e421"; } .icon-arrow-big-down:before { content: "\e1e0"; } .icon-arrow-big-left-dash:before { content: "\e422"; } .icon-arrow-big-left:before { content: "\e1e1"; } .icon-arrow-big-right-dash:before { content: "\e423"; } .icon-arrow-big-right:before { content: "\e1e2"; } .icon-arrow-big-up-dash:before { content: "\e424"; } .icon-arrow-big-up:before { content: "\e1e3"; } .icon-arrow-down-0-1:before { content: "\e417"; } .icon-arrow-down-1-0:before { content: "\e418"; } .icon-arrow-down-a-z:before { content: "\e419"; } .icon-arrow-down-from-line:before { content: "\e458"; } .icon-arrow-down-left:before { content: "\e047"; } .icon-arrow-down-narrow-wide:before { content: "\e048"; } .icon-arrow-down-right:before { content: "\e049"; } .icon-arrow-down-to-dot:before { content: "\e451"; } .icon-arrow-down-to-line:before { content: "\e459"; } .icon-arrow-down-up:before { content: "\e04a"; } .icon-arrow-down-wide-narrow:before { content: "\e04b"; } .icon-arrow-down-z-a:before { content: "\e41a"; } .icon-arrow-down:before { content: "\e046"; } .icon-arrow-left-from-line:before { content: "\e45a"; } .icon-arrow-left-right:before { content: "\e249"; } .icon-arrow-left-to-line:before { content: "\e45b"; } .icon-arrow-left:before { content: "\e04c"; } .icon-arrow-right-from-line:before { content: "\e45c"; } .icon-arrow-right-left:before { content: "\e41b"; } .icon-arrow-right-to-line:before { content: "\e45d"; } .icon-arrow-right:before { content: "\e04d"; } .icon-arrow-up-0-1:before { content: "\e41c"; } .icon-arrow-up-1-0:before { content: "\e41d"; } .icon-arrow-up-a-z:before { content: "\e41e"; } .icon-arrow-up-down:before { content: "\e380"; } .icon-arrow-up-from-dot:before { content: "\e452"; } .icon-arrow-up-from-line:before { content: "\e45e"; } .icon-arrow-up-left:before { content: "\e04f"; } .icon-arrow-up-narrow-wide:before { content: "\e050"; } .icon-arrow-up-right:before { content: "\e051"; } .icon-arrow-up-to-line:before { content: "\e45f"; } .icon-arrow-up-wide-narrow:before { content: "\e41f"; } .icon-arrow-up-z-a:before { content: "\e420"; } .icon-arrow-up:before { content: "\e04e"; } .icon-arrows-up-from-line:before { content: "\e4d8"; } .icon-asterisk:before { content: "\e1ee"; } .icon-at-sign:before { content: "\e052"; } .icon-atom:before { content: "\e3da"; } .icon-audio-lines:before { content: "\e55e"; } .icon-audio-waveform:before { content: "\e55f"; } .icon-award:before { content: "\e053"; } .icon-axe:before { content: "\e054"; } .icon-axis-3d:before { content: "\e2fd"; } .icon-baby:before { content: "\e2cd"; } .icon-backpack:before { content: "\e2c7"; } .icon-badge-alert:before { content: "\e479"; } .icon-badge-cent:before { content: "\e513"; } .icon-badge-check:before { content: "\e240"; } .icon-badge-dollar-sign:before { content: "\e47a"; } .icon-badge-euro:before { content: "\e514"; } .icon-badge-help:before { content: "\e47b"; } .icon-badge-indian-rupee:before { content: "\e515"; } .icon-badge-info:before { content: "\e47c"; } .icon-badge-japanese-yen:before { content: "\e516"; } .icon-badge-minus:before { content: "\e47d"; } .icon-badge-percent:before { content: "\e47e"; } .icon-badge-plus:before { content: "\e47f"; } .icon-badge-pound-sterling:before { content: "\e517"; } .icon-badge-russian-ruble:before { content: "\e518"; } .icon-badge-swiss-franc:before { content: "\e519"; } .icon-badge-x:before { content: "\e480"; } .icon-badge:before { content: "\e478"; } .icon-baggage-claim:before { content: "\e2c8"; } .icon-ban:before { content: "\e055"; } .icon-banana:before { content: "\e352"; } .icon-bandage:before { content: "\e621"; } .icon-banknote:before { content: "\e056"; } .icon-barcode:before { content: "\e537"; } .icon-baseline:before { content: "\e284"; } .icon-bath:before { content: "\e2aa"; } .icon-battery-charging:before { content: "\e058"; } .icon-battery-full:before { content: "\e059"; } .icon-battery-low:before { content: "\e05a"; } .icon-battery-medium:before { content: "\e05b"; } .icon-battery-warning:before { content: "\e3af"; } .icon-battery:before { content: "\e057"; } .icon-beaker:before { content: "\e05c"; } .icon-bean-off:before { content: "\e393"; } .icon-bean:before { content: "\e392"; } .icon-bed-double:before { content: "\e2c1"; } .icon-bed-single:before { content: "\e2c2"; } .icon-bed:before { content: "\e2c0"; } .icon-beef:before { content: "\e3a8"; } .icon-beer-off:before { content: "\e5dd"; } .icon-beer:before { content: "\e2ce"; } .icon-bell-dot:before { content: "\e42f"; } .icon-bell-electric:before { content: "\e580"; } .icon-bell-minus:before { content: "\e1ef"; } .icon-bell-off:before { content: "\e05e"; } .icon-bell-plus:before { content: "\e1f0"; } .icon-bell-ring:before { content: "\e223"; } .icon-bell:before { content: "\e05d"; } .icon-between-horizontal-end:before { content: "\e595"; } .icon-between-horizontal-start:before { content: "\e596"; } .icon-between-vertical-end:before { content: "\e597"; } .icon-between-vertical-start:before { content: "\e598"; } .icon-biceps-flexed:before { content: "\e5ef"; } .icon-bike:before { content: "\e1d1"; } .icon-binary:before { content: "\e1f1"; } .icon-binoculars:before { content: "\e625"; } .icon-biohazard:before { content: "\e445"; } .icon-bird:before { content: "\e3c8"; } .icon-bitcoin:before { content: "\e05f"; } .icon-blend:before { content: "\e5a0"; } .icon-blinds:before { content: "\e3c3"; } .icon-blocks:before { content: "\e4fe"; } .icon-bluetooth-connected:before { content: "\e1b7"; } .icon-bluetooth-off:before { content: "\e1b8"; } .icon-bluetooth-searching:before { content: "\e1b9"; } .icon-bluetooth:before { content: "\e060"; } .icon-bold:before { content: "\e061"; } .icon-bolt:before { content: "\e590"; } .icon-bomb:before { content: "\e2fe"; } .icon-bone:before { content: "\e35b"; } .icon-book-a:before { content: "\e548"; } .icon-book-audio:before { content: "\e549"; } .icon-book-check:before { content: "\e54a"; } .icon-book-copy:before { content: "\e3f0"; } .icon-book-dashed:before { content: "\e3f1"; } .icon-book-down:before { content: "\e3f2"; } .icon-book-headphones:before { content: "\e54b"; } .icon-book-heart:before { content: "\e54c"; } .icon-book-image:before { content: "\e54d"; } .icon-book-key:before { content: "\e3f3"; } .icon-book-lock:before { content: "\e3f4"; } .icon-book-marked:before { content: "\e3f5"; } .icon-book-minus:before { content: "\e3f6"; } .icon-book-open-check:before { content: "\e384"; } .icon-book-open-text:before { content: "\e54e"; } .icon-book-open:before { content: "\e063"; } .icon-book-plus:before { content: "\e3f7"; } .icon-book-text:before { content: "\e54f"; } .icon-book-type:before { content: "\e550"; } .icon-book-up-2:before { content: "\e4aa"; } .icon-book-up:before { content: "\e3f8"; } .icon-book-user:before { content: "\e551"; } .icon-book-x:before { content: "\e3f9"; } .icon-book:before { content: "\e062"; } .icon-bookmark-check:before { content: "\e523"; } .icon-bookmark-minus:before { content: "\e23b"; } .icon-bookmark-plus:before { content: "\e23c"; } .icon-bookmark-x:before { content: "\e524"; } .icon-bookmark:before { content: "\e064"; } .icon-boom-box:before { content: "\e4f2"; } .icon-bot-message-square:before { content: "\e5d2"; } .icon-bot-off:before { content: "\e5e4"; } .icon-bot:before { content: "\e1ba"; } .icon-box:before { content: "\e065"; } .icon-boxes:before { content: "\e2cf"; } .icon-braces:before { content: "\e36d"; } .icon-brackets:before { content: "\e447"; } .icon-brain-circuit:before { content: "\e3ca"; } .icon-brain-cog:before { content: "\e3cb"; } .icon-brain:before { content: "\e3c9"; } .icon-brick-wall:before { content: "\e585"; } .icon-briefcase-business:before { content: "\e5d9"; } .icon-briefcase-conveyor-belt:before { content: "\e62f"; } .icon-briefcase-medical:before { content: "\e5da"; } .icon-briefcase:before { content: "\e066"; } .icon-bring-to-front:before { content: "\e4f3"; } .icon-brush:before { content: "\e1d2"; } .icon-bug-off:before { content: "\e511"; } .icon-bug-play:before { content: "\e512"; } .icon-bug:before { content: "\e20b"; } .icon-building-2:before { content: "\e28f"; } .icon-building:before { content: "\e1cb"; } .icon-bus-front:before { content: "\e4ff"; } .icon-bus:before { content: "\e1d3"; } .icon-cable-car:before { content: "\e500"; } .icon-cable:before { content: "\e4e7"; } .icon-cake-slice:before { content: "\e4bd"; } .icon-cake:before { content: "\e347"; } .icon-calculator:before { content: "\e1bb"; } .icon-calendar-1:before { content: "\e634"; } .icon-calendar-arrow-down:before { content: "\e602"; } .icon-calendar-arrow-up:before { content: "\e603"; } .icon-calendar-check-2:before { content: "\e2b7"; } .icon-calendar-check:before { content: "\e2b6"; } .icon-calendar-clock:before { content: "\e303"; } .icon-calendar-cog:before { content: "\e5f1"; } .icon-calendar-days:before { content: "\e2b8"; } .icon-calendar-fold:before { content: "\e5b8"; } .icon-calendar-heart:before { content: "\e304"; } .icon-calendar-minus-2:before { content: "\e5b9"; } .icon-calendar-minus:before { content: "\e2b9"; } .icon-calendar-off:before { content: "\e2ba"; } .icon-calendar-plus-2:before { content: "\e5ba"; } .icon-calendar-plus:before { content: "\e2bb"; } .icon-calendar-range:before { content: "\e2bc"; } .icon-calendar-search:before { content: "\e305"; } .icon-calendar-sync:before { content: "\e63a"; } .icon-calendar-x-2:before { content: "\e2be"; } .icon-calendar-x:before { content: "\e2bd"; } .icon-calendar:before { content: "\e067"; } .icon-camera-off:before { content: "\e069"; } .icon-camera:before { content: "\e068"; } .icon-candy-cane:before { content: "\e4be"; } .icon-candy-off:before { content: "\e395"; } .icon-candy:before { content: "\e394"; } .icon-cannabis:before { content: "\e5d8"; } .icon-captions-off:before { content: "\e5c5"; } .icon-captions:before { content: "\e3a7"; } .icon-car-front:before { content: "\e501"; } .icon-car-taxi-front:before { content: "\e502"; } .icon-car:before { content: "\e1d4"; } .icon-caravan:before { content: "\e53d"; } .icon-carrot:before { content: "\e259"; } .icon-case-lower:before { content: "\e3db"; } .icon-case-sensitive:before { content: "\e3dc"; } .icon-case-upper:before { content: "\e3dd"; } .icon-cassette-tape:before { content: "\e4ce"; } .icon-cast:before { content: "\e06a"; } .icon-castle:before { content: "\e3e3"; } .icon-cat:before { content: "\e38f"; } .icon-cctv:before { content: "\e581"; } .icon-chart-area:before { content: "\e4d7"; } .icon-chart-bar-big:before { content: "\e4ab"; } .icon-chart-bar-decreasing:before { content: "\e60b"; } .icon-chart-bar-increasing:before { content: "\e60c"; } .icon-chart-bar-stacked:before { content: "\e60d"; } .icon-chart-bar:before { content: "\e2a1"; } .icon-chart-candlestick:before { content: "\e4ac"; } .icon-chart-column-big:before { content: "\e4ad"; } .icon-chart-column-decreasing:before { content: "\e06b"; } .icon-chart-column-increasing:before { content: "\e2a3"; } .icon-chart-column-stacked:before { content: "\e60e"; } .icon-chart-column:before { content: "\e2a2"; } .icon-chart-gantt:before { content: "\e628"; } .icon-chart-line:before { content: "\e2a4"; } .icon-chart-network:before { content: "\e60f"; } .icon-chart-no-axes-column-decreasing:before { content: "\e06d"; } .icon-chart-no-axes-column-increasing:before { content: "\e06e"; } .icon-chart-no-axes-column:before { content: "\e06c"; } .icon-chart-no-axes-combined:before { content: "\e610"; } .icon-chart-no-axes-gantt:before { content: "\e4c8"; } .icon-chart-pie:before { content: "\e06f"; } .icon-chart-scatter:before { content: "\e48e"; } .icon-chart-spline:before { content: "\e611"; } .icon-check-check:before { content: "\e391"; } .icon-check:before { content: "\e070"; } .icon-chef-hat:before { content: "\e2ab"; } .icon-cherry:before { content: "\e353"; } .icon-chevron-down:before { content: "\e071"; } .icon-chevron-first:before { content: "\e242"; } .icon-chevron-last:before { content: "\e243"; } .icon-chevron-left:before { content: "\e072"; } .icon-chevron-right:before { content: "\e073"; } .icon-chevron-up:before { content: "\e074"; } .icon-chevrons-down-up:before { content: "\e227"; } .icon-chevrons-down:before { content: "\e075"; } .icon-chevrons-left-right-ellipsis:before { content: "\e623"; } .icon-chevrons-left-right:before { content: "\e292"; } .icon-chevrons-left:before { content: "\e076"; } .icon-chevrons-right-left:before { content: "\e293"; } .icon-chevrons-right:before { content: "\e077"; } .icon-chevrons-up-down:before { content: "\e210"; } .icon-chevrons-up:before { content: "\e078"; } .icon-chrome:before { content: "\e079"; } .icon-church:before { content: "\e3e4"; } .icon-cigarette-off:before { content: "\e2c6"; } .icon-cigarette:before { content: "\e2c5"; } .icon-circle-alert:before { content: "\e07b"; } .icon-circle-arrow-down:before { content: "\e07c"; } .icon-circle-arrow-left:before { content: "\e07d"; } .icon-circle-arrow-out-down-left:before { content: "\e3fb"; } .icon-circle-arrow-out-down-right:before { content: "\e3fc"; } .icon-circle-arrow-out-up-left:before { content: "\e3fd"; } .icon-circle-arrow-out-up-right:before { content: "\e3fe"; } .icon-circle-arrow-right:before { content: "\e07e"; } .icon-circle-arrow-up:before { content: "\e07f"; } .icon-circle-check-big:before { content: "\e080"; } .icon-circle-check:before { content: "\e225"; } .icon-circle-chevron-down:before { content: "\e4e1"; } .icon-circle-chevron-left:before { content: "\e4e2"; } .icon-circle-chevron-right:before { content: "\e4e3"; } .icon-circle-chevron-up:before { content: "\e4e4"; } .icon-circle-dashed:before { content: "\e4b4"; } .icon-circle-divide:before { content: "\e081"; } .icon-circle-dollar-sign:before { content: "\e481"; } .icon-circle-dot-dashed:before { content: "\e4b5"; } .icon-circle-dot:before { content: "\e348"; } .icon-circle-ellipsis:before { content: "\e349"; } .icon-circle-equal:before { content: "\e404"; } .icon-circle-fading-arrow-up:before { content: "\e61c"; } .icon-circle-fading-plus:before { content: "\e5c0"; } .icon-circle-gauge:before { content: "\e4e5"; } .icon-circle-help:before { content: "\e082"; } .icon-circle-minus:before { content: "\e083"; } .icon-circle-off:before { content: "\e405"; } .icon-circle-parking-off:before { content: "\e3cd"; } .icon-circle-parking:before { content: "\e3cc"; } .icon-circle-pause:before { content: "\e084"; } .icon-circle-percent:before { content: "\e51e"; } .icon-circle-play:before { content: "\e085"; } .icon-circle-plus:before { content: "\e086"; } .icon-circle-power:before { content: "\e554"; } .icon-circle-slash-2:before { content: "\e212"; } .icon-circle-slash:before { content: "\e406"; } .icon-circle-stop:before { content: "\e087"; } .icon-circle-user-round:before { content: "\e466"; } .icon-circle-user:before { content: "\e465"; } .icon-circle-x:before { content: "\e088"; } .icon-circle:before { content: "\e07a"; } .icon-circuit-board:before { content: "\e407"; } .icon-citrus:before { content: "\e378"; } .icon-clapperboard:before { content: "\e29a"; } .icon-clipboard-check:before { content: "\e218"; } .icon-clipboard-copy:before { content: "\e224"; } .icon-clipboard-list:before { content: "\e08a"; } .icon-clipboard-minus:before { content: "\e5c2"; } .icon-clipboard-paste:before { content: "\e3eb"; } .icon-clipboard-pen-line:before { content: "\e307"; } .icon-clipboard-pen:before { content: "\e306"; } .icon-clipboard-plus:before { content: "\e5c3"; } .icon-clipboard-type:before { content: "\e308"; } .icon-clipboard-x:before { content: "\e221"; } .icon-clipboard:before { content: "\e089"; } .icon-clock-1:before { content: "\e24a"; } .icon-clock-10:before { content: "\e24b"; } .icon-clock-11:before { content: "\e24c"; } .icon-clock-12:before { content: "\e24d"; } .icon-clock-2:before { content: "\e24e"; } .icon-clock-3:before { content: "\e24f"; } .icon-clock-4:before { content: "\e250"; } .icon-clock-5:before { content: "\e251"; } .icon-clock-6:before { content: "\e252"; } .icon-clock-7:before { content: "\e253"; } .icon-clock-8:before { content: "\e254"; } .icon-clock-9:before { content: "\e255"; } .icon-clock-alert:before { content: "\e62e"; } .icon-clock-arrow-down:before { content: "\e604"; } .icon-clock-arrow-up:before { content: "\e605"; } .icon-clock:before { content: "\e08b"; } .icon-cloud-alert:before { content: "\e637"; } .icon-cloud-cog:before { content: "\e309"; } .icon-cloud-download:before { content: "\e08d"; } .icon-cloud-drizzle:before { content: "\e08e"; } .icon-cloud-fog:before { content: "\e213"; } .icon-cloud-hail:before { content: "\e08f"; } .icon-cloud-lightning:before { content: "\e090"; } .icon-cloud-moon-rain:before { content: "\e2f9"; } .icon-cloud-moon:before { content: "\e214"; } .icon-cloud-off:before { content: "\e091"; } .icon-cloud-rain-wind:before { content: "\e093"; } .icon-cloud-rain:before { content: "\e092"; } .icon-cloud-snow:before { content: "\e094"; } .icon-cloud-sun-rain:before { content: "\e2fa"; } .icon-cloud-sun:before { content: "\e215"; } .icon-cloud-upload:before { content: "\e095"; } .icon-cloud:before { content: "\e08c"; } .icon-cloudy:before { content: "\e216"; } .icon-clover:before { content: "\e096"; } .icon-club:before { content: "\e49a"; } .icon-code-xml:before { content: "\e205"; } .icon-code:before { content: "\e097"; } .icon-codepen:before { content: "\e098"; } .icon-codesandbox:before { content: "\e099"; } .icon-coffee:before { content: "\e09a"; } .icon-cog:before { content: "\e30a"; } .icon-coins:before { content: "\e09b"; } .icon-columns-2:before { content: "\e09c"; } .icon-columns-3:before { content: "\e09d"; } .icon-columns-4:before { content: "\e58d"; } .icon-combine:before { content: "\e450"; } .icon-command:before { content: "\e09e"; } .icon-compass:before { content: "\e09f"; } .icon-component:before { content: "\e2ac"; } .icon-computer:before { content: "\e4e8"; } .icon-concierge-bell:before { content: "\e37b"; } .icon-cone:before { content: "\e527"; } .icon-construction:before { content: "\e3b7"; } .icon-contact-round:before { content: "\e467"; } .icon-contact:before { content: "\e0a0"; } .icon-container:before { content: "\e4d9"; } .icon-contrast:before { content: "\e0a1"; } .icon-cookie:before { content: "\e26a"; } .icon-cooking-pot:before { content: "\e588"; } .icon-copy-check:before { content: "\e3ff"; } .icon-copy-minus:before { content: "\e400"; } .icon-copy-plus:before { content: "\e401"; } .icon-copy-slash:before { content: "\e402"; } .icon-copy-x:before { content: "\e403"; } .icon-copy:before { content: "\e0a2"; } .icon-copyleft:before { content: "\e0a3"; } .icon-copyright:before { content: "\e0a4"; } .icon-corner-down-left:before { content: "\e0a5"; } .icon-corner-down-right:before { content: "\e0a6"; } .icon-corner-left-down:before { content: "\e0a7"; } .icon-corner-left-up:before { content: "\e0a8"; } .icon-corner-right-down:before { content: "\e0a9"; } .icon-corner-right-up:before { content: "\e0aa"; } .icon-corner-up-left:before { content: "\e0ab"; } .icon-corner-up-right:before { content: "\e0ac"; } .icon-cpu:before { content: "\e0ad"; } .icon-creative-commons:before { content: "\e3b5"; } .icon-credit-card:before { content: "\e0ae"; } .icon-croissant:before { content: "\e2ad"; } .icon-crop:before { content: "\e0af"; } .icon-cross:before { content: "\e1e4"; } .icon-crosshair:before { content: "\e0b0"; } .icon-crown:before { content: "\e1d5"; } .icon-cuboid:before { content: "\e528"; } .icon-cup-soda:before { content: "\e2d0"; } .icon-currency:before { content: "\e22f"; } .icon-cylinder:before { content: "\e529"; } .icon-dam:before { content: "\e60a"; } .icon-database-backup:before { content: "\e3ae"; } .icon-database-zap:before { content: "\e50f"; } .icon-database:before { content: "\e0b1"; } .icon-delete:before { content: "\e0b2"; } .icon-dessert:before { content: "\e4bf"; } .icon-diameter:before { content: "\e52a"; } .icon-diamond-minus:before { content: "\e5e5"; } .icon-diamond-percent:before { content: "\e51f"; } .icon-diamond-plus:before { content: "\e5e6"; } .icon-diamond:before { content: "\e2d1"; } .icon-dice-1:before { content: "\e286"; } .icon-dice-2:before { content: "\e287"; } .icon-dice-3:before { content: "\e288"; } .icon-dice-4:before { content: "\e289"; } .icon-dice-5:before { content: "\e28a"; } .icon-dice-6:before { content: "\e28b"; } .icon-dices:before { content: "\e2c4"; } .icon-diff:before { content: "\e30b"; } .icon-disc-2:before { content: "\e3fa"; } .icon-disc-3:before { content: "\e498"; } .icon-disc-album:before { content: "\e560"; } .icon-disc:before { content: "\e0b3"; } .icon-divide:before { content: "\e0b4"; } .icon-dna-off:before { content: "\e397"; } .icon-dna:before { content: "\e396"; } .icon-dock:before { content: "\e5d7"; } .icon-dog:before { content: "\e390"; } .icon-dollar-sign:before { content: "\e0b5"; } .icon-donut:before { content: "\e4c0"; } .icon-door-closed:before { content: "\e3d8"; } .icon-door-open:before { content: "\e3d9"; } .icon-dot:before { content: "\e453"; } .icon-download:before { content: "\e0b6"; } .icon-drafting-compass:before { content: "\e52b"; } .icon-drama:before { content: "\e525"; } .icon-dribbble:before { content: "\e0b7"; } .icon-drill:before { content: "\e591"; } .icon-droplet-off:before { content: "\e63c"; } .icon-droplet:before { content: "\e0b8"; } .icon-droplets:before { content: "\e0b9"; } .icon-drum:before { content: "\e561"; } .icon-drumstick:before { content: "\e25a"; } .icon-dumbbell:before { content: "\e3a4"; } .icon-ear-off:before { content: "\e386"; } .icon-ear:before { content: "\e385"; } .icon-earth-lock:before { content: "\e5d0"; } .icon-earth:before { content: "\e1f2"; } .icon-eclipse:before { content: "\e5a1"; } .icon-egg-fried:before { content: "\e354"; } .icon-egg-off:before { content: "\e398"; } .icon-egg:before { content: "\e25c"; } .icon-ellipsis-vertical:before { content: "\e0bb"; } .icon-ellipsis:before { content: "\e0ba"; } .icon-equal-approximately:before { content: "\e638"; } .icon-equal-not:before { content: "\e1bd"; } .icon-equal:before { content: "\e1bc"; } .icon-eraser:before { content: "\e28e"; } .icon-ethernet-port:before { content: "\e624"; } .icon-euro:before { content: "\e0bc"; } .icon-expand:before { content: "\e219"; } .icon-external-link:before { content: "\e0bd"; } .icon-eye-closed:before { content: "\e632"; } .icon-eye-off:before { content: "\e0bf"; } .icon-eye:before { content: "\e0be"; } .icon-facebook:before { content: "\e0c0"; } .icon-factory:before { content: "\e29e"; } .icon-fan:before { content: "\e37c"; } .icon-fast-forward:before { content: "\e0c1"; } .icon-feather:before { content: "\e0c2"; } .icon-fence:before { content: "\e586"; } .icon-ferris-wheel:before { content: "\e483"; } .icon-figma:before { content: "\e0c3"; } .icon-file-archive:before { content: "\e30c"; } .icon-file-audio-2:before { content: "\e30e"; } .icon-file-audio:before { content: "\e30d"; } .icon-file-axis-3d:before { content: "\e30f"; } .icon-file-badge-2:before { content: "\e311"; } .icon-file-badge:before { content: "\e310"; } .icon-file-box:before { content: "\e312"; } .icon-file-chart-column-increasing:before { content: "\e314"; } .icon-file-chart-column:before { content: "\e313"; } .icon-file-chart-line:before { content: "\e315"; } .icon-file-chart-pie:before { content: "\e316"; } .icon-file-check-2:before { content: "\e0c6"; } .icon-file-check:before { content: "\e0c5"; } .icon-file-clock:before { content: "\e317"; } .icon-file-code-2:before { content: "\e462"; } .icon-file-code:before { content: "\e0c7"; } .icon-file-cog:before { content: "\e318"; } .icon-file-diff:before { content: "\e319"; } .icon-file-digit:before { content: "\e0c8"; } .icon-file-down:before { content: "\e31a"; } .icon-file-heart:before { content: "\e31b"; } .icon-file-image:before { content: "\e31c"; } .icon-file-input:before { content: "\e0c9"; } .icon-file-json-2:before { content: "\e36f"; } .icon-file-json:before { content: "\e36e"; } .icon-file-key-2:before { content: "\e31e"; } .icon-file-key:before { content: "\e31d"; } .icon-file-lock-2:before { content: "\e320"; } .icon-file-lock:before { content: "\e31f"; } .icon-file-minus-2:before { content: "\e0cb"; } .icon-file-minus:before { content: "\e0ca"; } .icon-file-music:before { content: "\e562"; } .icon-file-output:before { content: "\e0cc"; } .icon-file-pen-line:before { content: "\e322"; } .icon-file-pen:before { content: "\e321"; } .icon-file-plus-2:before { content: "\e0ce"; } .icon-file-plus:before { content: "\e0cd"; } .icon-file-question:before { content: "\e323"; } .icon-file-scan:before { content: "\e324"; } .icon-file-search-2:before { content: "\e325"; } .icon-file-search:before { content: "\e0cf"; } .icon-file-sliders:before { content: "\e5a4"; } .icon-file-spreadsheet:before { content: "\e326"; } .icon-file-stack:before { content: "\e4a5"; } .icon-file-symlink:before { content: "\e327"; } .icon-file-terminal:before { content: "\e328"; } .icon-file-text:before { content: "\e0d0"; } .icon-file-type-2:before { content: "\e370"; } .icon-file-type:before { content: "\e329"; } .icon-file-up:before { content: "\e32a"; } .icon-file-user:before { content: "\e631"; } .icon-file-video-2:before { content: "\e32c"; } .icon-file-video:before { content: "\e32b"; } .icon-file-volume-2:before { content: "\e32e"; } .icon-file-volume:before { content: "\e32d"; } .icon-file-warning:before { content: "\e32f"; } .icon-file-x-2:before { content: "\e0d2"; } .icon-file-x:before { content: "\e0d1"; } .icon-file:before { content: "\e0c4"; } .icon-files:before { content: "\e0d3"; } .icon-film:before { content: "\e0d4"; } .icon-filter-x:before { content: "\e3b8"; } .icon-filter:before { content: "\e0d5"; } .icon-fingerprint:before { content: "\e2ca"; } .icon-fire-extinguisher:before { content: "\e582"; } .icon-fish-off:before { content: "\e3b3"; } .icon-fish-symbol:before { content: "\e4f8"; } .icon-fish:before { content: "\e3a9"; } .icon-flag-off:before { content: "\e291"; } .icon-flag-triangle-left:before { content: "\e236"; } .icon-flag-triangle-right:before { content: "\e237"; } .icon-flag:before { content: "\e0d6"; } .icon-flame-kindling:before { content: "\e53e"; } .icon-flame:before { content: "\e0d7"; } .icon-flashlight-off:before { content: "\e0d9"; } .icon-flashlight:before { content: "\e0d8"; } .icon-flask-conical-off:before { content: "\e399"; } .icon-flask-conical:before { content: "\e0da"; } .icon-flask-round:before { content: "\e0db"; } .icon-flip-horizontal-2:before { content: "\e361"; } .icon-flip-horizontal:before { content: "\e360"; } .icon-flip-vertical-2:before { content: "\e363"; } .icon-flip-vertical:before { content: "\e362"; } .icon-flower-2:before { content: "\e2d3"; } .icon-flower:before { content: "\e2d2"; } .icon-focus:before { content: "\e29d"; } .icon-fold-horizontal:before { content: "\e43f"; } .icon-fold-vertical:before { content: "\e440"; } .icon-folder-archive:before { content: "\e330"; } .icon-folder-check:before { content: "\e331"; } .icon-folder-clock:before { content: "\e332"; } .icon-folder-closed:before { content: "\e333"; } .icon-folder-code:before { content: "\e5ff"; } .icon-folder-cog:before { content: "\e334"; } .icon-folder-dot:before { content: "\e4c9"; } .icon-folder-down:before { content: "\e335"; } .icon-folder-git-2:before { content: "\e40e"; } .icon-folder-git:before { content: "\e40d"; } .icon-folder-heart:before { content: "\e336"; } .icon-folder-input:before { content: "\e337"; } .icon-folder-kanban:before { content: "\e4ca"; } .icon-folder-key:before { content: "\e338"; } .icon-folder-lock:before { content: "\e339"; } .icon-folder-minus:before { content: "\e0dd"; } .icon-folder-open-dot:before { content: "\e4cb"; } .icon-folder-open:before { content: "\e246"; } .icon-folder-output:before { content: "\e33a"; } .icon-folder-pen:before { content: "\e33b"; } .icon-folder-plus:before { content: "\e0de"; } .icon-folder-root:before { content: "\e4cc"; } .icon-folder-search-2:before { content: "\e33d"; } .icon-folder-search:before { content: "\e33c"; } .icon-folder-symlink:before { content: "\e33e"; } .icon-folder-sync:before { content: "\e4cd"; } .icon-folder-tree:before { content: "\e33f"; } .icon-folder-up:before { content: "\e340"; } .icon-folder-x:before { content: "\e341"; } .icon-folder:before { content: "\e0dc"; } .icon-folders:before { content: "\e342"; } .icon-footprints:before { content: "\e3bc"; } .icon-forklift:before { content: "\e3c4"; } .icon-forward:before { content: "\e228"; } .icon-frame:before { content: "\e290"; } .icon-framer:before { content: "\e0df"; } .icon-frown:before { content: "\e0e0"; } .icon-fuel:before { content: "\e2ae"; } .icon-fullscreen:before { content: "\e538"; } .icon-gallery-horizontal-end:before { content: "\e4d3"; } .icon-gallery-horizontal:before { content: "\e4d2"; } .icon-gallery-thumbnails:before { content: "\e4d4"; } .icon-gallery-vertical-end:before { content: "\e4d6"; } .icon-gallery-vertical:before { content: "\e4d5"; } .icon-gamepad-2:before { content: "\e0e2"; } .icon-gamepad:before { content: "\e0e1"; } .icon-gauge:before { content: "\e1be"; } .icon-gavel:before { content: "\e0e3"; } .icon-gem:before { content: "\e241"; } .icon-ghost:before { content: "\e20d"; } .icon-gift:before { content: "\e0e4"; } .icon-git-branch-plus:before { content: "\e1f3"; } .icon-git-branch:before { content: "\e0e5"; } .icon-git-commit-horizontal:before { content: "\e0e6"; } .icon-git-commit-vertical:before { content: "\e556"; } .icon-git-compare-arrows:before { content: "\e557"; } .icon-git-compare:before { content: "\e35c"; } .icon-git-fork:before { content: "\e28c"; } .icon-git-graph:before { content: "\e558"; } .icon-git-merge:before { content: "\e0e7"; } .icon-git-pull-request-arrow:before { content: "\e559"; } .icon-git-pull-request-closed:before { content: "\e35d"; } .icon-git-pull-request-create-arrow:before { content: "\e55b"; } .icon-git-pull-request-create:before { content: "\e55a"; } .icon-git-pull-request-draft:before { content: "\e35e"; } .icon-git-pull-request:before { content: "\e0e8"; } .icon-github:before { content: "\e0e9"; } .icon-gitlab:before { content: "\e0ea"; } .icon-glass-water:before { content: "\e2d4"; } .icon-glasses:before { content: "\e20c"; } .icon-globe-lock:before { content: "\e5d1"; } .icon-globe:before { content: "\e0eb"; } .icon-goal:before { content: "\e4a9"; } .icon-grab:before { content: "\e1e5"; } .icon-graduation-cap:before { content: "\e233"; } .icon-grape:before { content: "\e355"; } .icon-grid-2x2-check:before { content: "\e5e8"; } .icon-grid-2x2-plus:before { content: "\e62c"; } .icon-grid-2x2-x:before { content: "\e5e9"; } .icon-grid-2x2:before { content: "\e503"; } .icon-grid-3x3:before { content: "\e0ec"; } .icon-grip-horizontal:before { content: "\e0ed"; } .icon-grip-vertical:before { content: "\e0ee"; } .icon-grip:before { content: "\e3b4"; } .icon-group:before { content: "\e468"; } .icon-guitar:before { content: "\e563"; } .icon-ham:before { content: "\e5db"; } .icon-hammer:before { content: "\e0ef"; } .icon-hand-coins:before { content: "\e5bc"; } .icon-hand-heart:before { content: "\e5bd"; } .icon-hand-helping:before { content: "\e3bb"; } .icon-hand-metal:before { content: "\e22b"; } .icon-hand-platter:before { content: "\e5be"; } .icon-hand:before { content: "\e1d6"; } .icon-handshake:before { content: "\e5c4"; } .icon-hard-drive-download:before { content: "\e4e9"; } .icon-hard-drive-upload:before { content: "\e4ea"; } .icon-hard-drive:before { content: "\e0f0"; } .icon-hard-hat:before { content: "\e0f1"; } .icon-hash:before { content: "\e0f2"; } .icon-haze:before { content: "\e0f3"; } .icon-hdmi-port:before { content: "\e4eb"; } .icon-heading-1:before { content: "\e388"; } .icon-heading-2:before { content: "\e389"; } .icon-heading-3:before { content: "\e38a"; } .icon-heading-4:before { content: "\e38b"; } .icon-heading-5:before { content: "\e38c"; } .icon-heading-6:before { content: "\e38d"; } .icon-heading:before { content: "\e387"; } .icon-headphone-off:before { content: "\e62d"; } .icon-headphones:before { content: "\e0f4"; } .icon-headset:before { content: "\e5c1"; } .icon-heart-crack:before { content: "\e2d5"; } .icon-heart-handshake:before { content: "\e2d6"; } .icon-heart-off:before { content: "\e294"; } .icon-heart-pulse:before { content: "\e371"; } .icon-heart:before { content: "\e0f5"; } .icon-heater:before { content: "\e592"; } .icon-hexagon:before { content: "\e0f6"; } .icon-highlighter:before { content: "\e0f7"; } .icon-history:before { content: "\e1f4"; } .icon-hop-off:before { content: "\e39b"; } .icon-hop:before { content: "\e39a"; } .icon-hospital:before { content: "\e5dc"; } .icon-hotel:before { content: "\e3e5"; } .icon-hourglass:before { content: "\e295"; } .icon-house-plug:before { content: "\e5f4"; } .icon-house-plus:before { content: "\e5f5"; } .icon-house:before { content: "\e0f8"; } .icon-ice-cream-bowl:before { content: "\e3aa"; } .icon-ice-cream-cone:before { content: "\e356"; } .icon-id-card:before { content: "\e61b"; } .icon-image-down:before { content: "\e540"; } .icon-image-minus:before { content: "\e1f5"; } .icon-image-off:before { content: "\e1bf"; } .icon-image-play:before { content: "\e5e3"; } .icon-image-plus:before { content: "\e1f6"; } .icon-image-up:before { content: "\e5cf"; } .icon-image-upscale:before { content: "\e63b"; } .icon-image:before { content: "\e0f9"; } .icon-images:before { content: "\e5c8"; } .icon-import:before { content: "\e22e"; } .icon-inbox:before { content: "\e0fa"; } .icon-indent-decrease:before { content: "\e0fb"; } .icon-indent-increase:before { content: "\e0fc"; } .icon-indian-rupee:before { content: "\e0fd"; } .icon-infinity:before { content: "\e1e6"; } .icon-info:before { content: "\e0fe"; } .icon-inspection-panel:before { content: "\e587"; } .icon-instagram:before { content: "\e0ff"; } .icon-italic:before { content: "\e100"; } .icon-iteration-ccw:before { content: "\e427"; } .icon-iteration-cw:before { content: "\e428"; } .icon-japanese-yen:before { content: "\e101"; } .icon-joystick:before { content: "\e358"; } .icon-kanban:before { content: "\e4e0"; } .icon-key-round:before { content: "\e4a7"; } .icon-key-square:before { content: "\e4a8"; } .icon-key:before { content: "\e102"; } .icon-keyboard-music:before { content: "\e564"; } .icon-keyboard-off:before { content: "\e5e2"; } .icon-keyboard:before { content: "\e283"; } .icon-lamp-ceiling:before { content: "\e2d8"; } .icon-lamp-desk:before { content: "\e2d9"; } .icon-lamp-floor:before { content: "\e2da"; } .icon-lamp-wall-down:before { content: "\e2db"; } .icon-lamp-wall-up:before { content: "\e2dc"; } .icon-lamp:before { content: "\e2d7"; } .icon-land-plot:before { content: "\e52c"; } .icon-landmark:before { content: "\e239"; } .icon-languages:before { content: "\e103"; } .icon-laptop-minimal-check:before { content: "\e636"; } .icon-laptop-minimal:before { content: "\e1d7"; } .icon-laptop:before { content: "\e1cc"; } .icon-lasso-select:before { content: "\e1ce"; } .icon-lasso:before { content: "\e1cd"; } .icon-laugh:before { content: "\e2ff"; } .icon-layers-2:before { content: "\e52e"; } .icon-layers:before { content: "\e52d"; } .icon-layout-dashboard:before { content: "\e1c0"; } .icon-layout-grid:before { content: "\e104"; } .icon-layout-list:before { content: "\e1d8"; } .icon-layout-panel-left:before { content: "\e474"; } .icon-layout-panel-top:before { content: "\e475"; } .icon-layout-template:before { content: "\e206"; } .icon-leaf:before { content: "\e2dd"; } .icon-leafy-green:before { content: "\e473"; } .icon-lectern:before { content: "\e5ed"; } .icon-letter-text:before { content: "\e609"; } .icon-library-big:before { content: "\e552"; } .icon-library:before { content: "\e105"; } .icon-life-buoy:before { content: "\e106"; } .icon-ligature:before { content: "\e43e"; } .icon-lightbulb-off:before { content: "\e207"; } .icon-lightbulb:before { content: "\e1c1"; } .icon-link-2-off:before { content: "\e109"; } .icon-link-2:before { content: "\e108"; } .icon-link:before { content: "\e107"; } .icon-linkedin:before { content: "\e10a"; } .icon-list-check:before { content: "\e5fe"; } .icon-list-checks:before { content: "\e1cf"; } .icon-list-collapse:before { content: "\e59f"; } .icon-list-end:before { content: "\e2de"; } .icon-list-filter-plus:before { content: "\e63d"; } .icon-list-filter:before { content: "\e464"; } .icon-list-minus:before { content: "\e23d"; } .icon-list-music:before { content: "\e2df"; } .icon-list-ordered:before { content: "\e1d0"; } .icon-list-plus:before { content: "\e23e"; } .icon-list-restart:before { content: "\e456"; } .icon-list-start:before { content: "\e2e0"; } .icon-list-todo:before { content: "\e4c7"; } .icon-list-tree:before { content: "\e40c"; } .icon-list-video:before { content: "\e2e1"; } .icon-list-x:before { content: "\e23f"; } .icon-list:before { content: "\e10b"; } .icon-loader-circle:before { content: "\e10d"; } .icon-loader-pinwheel:before { content: "\e5ea"; } .icon-loader:before { content: "\e10c"; } .icon-locate-fixed:before { content: "\e1da"; } .icon-locate-off:before { content: "\e281"; } .icon-locate:before { content: "\e1d9"; } .icon-lock-keyhole-open:before { content: "\e536"; } .icon-lock-keyhole:before { content: "\e535"; } .icon-lock-open:before { content: "\e10f"; } .icon-lock:before { content: "\e10e"; } .icon-log-in:before { content: "\e110"; } .icon-log-out:before { content: "\e111"; } .icon-logs:before { content: "\e5f8"; } .icon-lollipop:before { content: "\e4c1"; } .icon-luggage:before { content: "\e2c9"; } .icon-magnet:before { content: "\e2b4"; } .icon-mail-check:before { content: "\e364"; } .icon-mail-minus:before { content: "\e365"; } .icon-mail-open:before { content: "\e366"; } .icon-mail-plus:before { content: "\e367"; } .icon-mail-question:before { content: "\e368"; } .icon-mail-search:before { content: "\e369"; } .icon-mail-warning:before { content: "\e36a"; } .icon-mail-x:before { content: "\e36b"; } .icon-mail:before { content: "\e112"; } .icon-mailbox:before { content: "\e3d7"; } .icon-mails:before { content: "\e36c"; } .icon-map-pin-check-inside:before { content: "\e614"; } .icon-map-pin-check:before { content: "\e613"; } .icon-map-pin-house:before { content: "\e620"; } .icon-map-pin-minus-inside:before { content: "\e616"; } .icon-map-pin-minus:before { content: "\e615"; } .icon-map-pin-off:before { content: "\e2a5"; } .icon-map-pin-plus-inside:before { content: "\e618"; } .icon-map-pin-plus:before { content: "\e617"; } .icon-map-pin-x-inside:before { content: "\e61a"; } .icon-map-pin-x:before { content: "\e619"; } .icon-map-pin:before { content: "\e114"; } .icon-map-pinned:before { content: "\e541"; } .icon-map:before { content: "\e113"; } .icon-martini:before { content: "\e2e2"; } .icon-maximize-2:before { content: "\e116"; } .icon-maximize:before { content: "\e115"; } .icon-medal:before { content: "\e372"; } .icon-megaphone-off:before { content: "\e373"; } .icon-megaphone:before { content: "\e234"; } .icon-meh:before { content: "\e117"; } .icon-memory-stick:before { content: "\e449"; } .icon-menu:before { content: "\e118"; } .icon-merge:before { content: "\e443"; } .icon-message-circle-code:before { content: "\e566"; } .icon-message-circle-dashed:before { content: "\e567"; } .icon-message-circle-heart:before { content: "\e568"; } .icon-message-circle-more:before { content: "\e569"; } .icon-message-circle-off:before { content: "\e56a"; } .icon-message-circle-plus:before { content: "\e56b"; } .icon-message-circle-question:before { content: "\e56c"; } .icon-message-circle-reply:before { content: "\e56d"; } .icon-message-circle-warning:before { content: "\e56e"; } .icon-message-circle-x:before { content: "\e56f"; } .icon-message-circle:before { content: "\e119"; } .icon-message-square-code:before { content: "\e570"; } .icon-message-square-dashed:before { content: "\e40f"; } .icon-message-square-diff:before { content: "\e571"; } .icon-message-square-dot:before { content: "\e572"; } .icon-message-square-heart:before { content: "\e573"; } .icon-message-square-lock:before { content: "\e630"; } .icon-message-square-more:before { content: "\e574"; } .icon-message-square-off:before { content: "\e575"; } .icon-message-square-plus:before { content: "\e410"; } .icon-message-square-quote:before { content: "\e576"; } .icon-message-square-reply:before { content: "\e577"; } .icon-message-square-share:before { content: "\e578"; } .icon-message-square-text:before { content: "\e579"; } .icon-message-square-warning:before { content: "\e57a"; } .icon-message-square-x:before { content: "\e57b"; } .icon-message-square:before { content: "\e11a"; } .icon-messages-square:before { content: "\e411"; } .icon-mic-off:before { content: "\e11c"; } .icon-mic-vocal:before { content: "\e34c"; } .icon-mic:before { content: "\e11b"; } .icon-microchip:before { content: "\e61e"; } .icon-microscope:before { content: "\e2e3"; } .icon-microwave:before { content: "\e37d"; } .icon-milestone:before { content: "\e297"; } .icon-milk-off:before { content: "\e39d"; } .icon-milk:before { content: "\e39c"; } .icon-minimize-2:before { content: "\e11e"; } .icon-minimize:before { content: "\e11d"; } .icon-minus:before { content: "\e11f"; } .icon-monitor-check:before { content: "\e486"; } .icon-monitor-cog:before { content: "\e607"; } .icon-monitor-dot:before { content: "\e487"; } .icon-monitor-down:before { content: "\e425"; } .icon-monitor-off:before { content: "\e1db"; } .icon-monitor-pause:before { content: "\e488"; } .icon-monitor-play:before { content: "\e489"; } .icon-monitor-smartphone:before { content: "\e3a5"; } .icon-monitor-speaker:before { content: "\e20f"; } .icon-monitor-stop:before { content: "\e48a"; } .icon-monitor-up:before { content: "\e426"; } .icon-monitor-x:before { content: "\e48b"; } .icon-monitor:before { content: "\e120"; } .icon-moon-star:before { content: "\e414"; } .icon-moon:before { content: "\e121"; } .icon-mountain-snow:before { content: "\e231"; } .icon-mountain:before { content: "\e230"; } .icon-mouse-off:before { content: "\e5df"; } .icon-mouse-pointer-2:before { content: "\e1c2"; } .icon-mouse-pointer-ban:before { content: "\e5eb"; } .icon-mouse-pointer-click:before { content: "\e123"; } .icon-mouse-pointer:before { content: "\e122"; } .icon-mouse:before { content: "\e28d"; } .icon-move-3d:before { content: "\e2e4"; } .icon-move-diagonal-2:before { content: "\e1c4"; } .icon-move-diagonal:before { content: "\e1c3"; } .icon-move-down-left:before { content: "\e491"; } .icon-move-down-right:before { content: "\e492"; } .icon-move-down:before { content: "\e490"; } .icon-move-horizontal:before { content: "\e1c5"; } .icon-move-left:before { content: "\e493"; } .icon-move-right:before { content: "\e494"; } .icon-move-up-left:before { content: "\e496"; } .icon-move-up-right:before { content: "\e497"; } .icon-move-up:before { content: "\e495"; } .icon-move-vertical:before { content: "\e1c6"; } .icon-move:before { content: "\e124"; } .icon-music-2:before { content: "\e34d"; } .icon-music-3:before { content: "\e34e"; } .icon-music-4:before { content: "\e34f"; } .icon-music:before { content: "\e125"; } .icon-navigation-2-off:before { content: "\e2a6"; } .icon-navigation-2:before { content: "\e127"; } .icon-navigation-off:before { content: "\e2a7"; } .icon-navigation:before { content: "\e126"; } .icon-network:before { content: "\e128"; } .icon-newspaper:before { content: "\e34b"; } .icon-nfc:before { content: "\e3c6"; } .icon-notebook-pen:before { content: "\e59a"; } .icon-notebook-tabs:before { content: "\e59b"; } .icon-notebook-text:before { content: "\e59c"; } .icon-notebook:before { content: "\e599"; } .icon-notepad-text-dashed:before { content: "\e59e"; } .icon-notepad-text:before { content: "\e59d"; } .icon-nut-off:before { content: "\e39f"; } .icon-nut:before { content: "\e39e"; } .icon-octagon-alert:before { content: "\e12a"; } .icon-octagon-minus:before { content: "\e62b"; } .icon-octagon-pause:before { content: "\e21a"; } .icon-octagon-x:before { content: "\e12b"; } .icon-octagon:before { content: "\e129"; } .icon-omega:before { content: "\e61d"; } .icon-option:before { content: "\e1f7"; } .icon-orbit:before { content: "\e3ea"; } .icon-origami:before { content: "\e5e7"; } .icon-package-2:before { content: "\e343"; } .icon-package-check:before { content: "\e265"; } .icon-package-minus:before { content: "\e266"; } .icon-package-open:before { content: "\e2cb"; } .icon-package-plus:before { content: "\e267"; } .icon-package-search:before { content: "\e268"; } .icon-package-x:before { content: "\e269"; } .icon-package:before { content: "\e12c"; } .icon-paint-bucket:before { content: "\e2e5"; } .icon-paint-roller:before { content: "\e5a2"; } .icon-paintbrush-vertical:before { content: "\e2e7"; } .icon-paintbrush:before { content: "\e2e6"; } .icon-palette:before { content: "\e1dc"; } .icon-panel-bottom-close:before { content: "\e431"; } .icon-panel-bottom-dashed:before { content: "\e432"; } .icon-panel-bottom-open:before { content: "\e433"; } .icon-panel-bottom:before { content: "\e430"; } .icon-panel-left-close:before { content: "\e21b"; } .icon-panel-left-dashed:before { content: "\e434"; } .icon-panel-left-open:before { content: "\e21c"; } .icon-panel-left:before { content: "\e12d"; } .icon-panel-right-close:before { content: "\e436"; } .icon-panel-right-dashed:before { content: "\e437"; } .icon-panel-right-open:before { content: "\e438"; } .icon-panel-right:before { content: "\e435"; } .icon-panel-top-close:before { content: "\e43a"; } .icon-panel-top-dashed:before { content: "\e43b"; } .icon-panel-top-open:before { content: "\e43c"; } .icon-panel-top:before { content: "\e439"; } .icon-panels-left-bottom:before { content: "\e12e"; } .icon-panels-right-bottom:before { content: "\e58c"; } .icon-panels-top-left:before { content: "\e12f"; } .icon-paperclip:before { content: "\e130"; } .icon-parentheses:before { content: "\e448"; } .icon-parking-meter:before { content: "\e504"; } .icon-party-popper:before { content: "\e346"; } .icon-pause:before { content: "\e131"; } .icon-paw-print:before { content: "\e4f9"; } .icon-pc-case:before { content: "\e44a"; } .icon-pen-line:before { content: "\e133"; } .icon-pen-off:before { content: "\e5f2"; } .icon-pen-tool:before { content: "\e134"; } .icon-pen:before { content: "\e132"; } .icon-pencil-line:before { content: "\e4f4"; } .icon-pencil-off:before { content: "\e5f3"; } .icon-pencil-ruler:before { content: "\e4f5"; } .icon-pencil:before { content: "\e1f8"; } .icon-pentagon:before { content: "\e52f"; } .icon-percent:before { content: "\e135"; } .icon-person-standing:before { content: "\e21d"; } .icon-philippine-peso:before { content: "\e608"; } .icon-phone-call:before { content: "\e137"; } .icon-phone-forwarded:before { content: "\e138"; } .icon-phone-incoming:before { content: "\e139"; } .icon-phone-missed:before { content: "\e13a"; } .icon-phone-off:before { content: "\e13b"; } .icon-phone-outgoing:before { content: "\e13c"; } .icon-phone:before { content: "\e136"; } .icon-pi:before { content: "\e476"; } .icon-piano:before { content: "\e565"; } .icon-pickaxe:before { content: "\e5ca"; } .icon-picture-in-picture-2:before { content: "\e3b2"; } .icon-picture-in-picture:before { content: "\e3b1"; } .icon-piggy-bank:before { content: "\e13d"; } .icon-pilcrow-left:before { content: "\e5e0"; } .icon-pilcrow-right:before { content: "\e5e1"; } .icon-pilcrow:before { content: "\e3a6"; } .icon-pill-bottle:before { content: "\e5ee"; } .icon-pill:before { content: "\e3c0"; } .icon-pin-off:before { content: "\e2b5"; } .icon-pin:before { content: "\e258"; } .icon-pipette:before { content: "\e13e"; } .icon-pizza:before { content: "\e357"; } .icon-plane-landing:before { content: "\e3d0"; } .icon-plane-takeoff:before { content: "\e3d1"; } .icon-plane:before { content: "\e1dd"; } .icon-play:before { content: "\e13f"; } .icon-plug-2:before { content: "\e383"; } .icon-plug-zap:before { content: "\e460"; } .icon-plug:before { content: "\e382"; } .icon-plus:before { content: "\e140"; } .icon-pocket-knife:before { content: "\e4a4"; } .icon-pocket:before { content: "\e141"; } .icon-podcast:before { content: "\e1f9"; } .icon-pointer-off:before { content: "\e583"; } .icon-pointer:before { content: "\e1e7"; } .icon-popcorn:before { content: "\e4c2"; } .icon-popsicle:before { content: "\e4c3"; } .icon-pound-sterling:before { content: "\e142"; } .icon-power-off:before { content: "\e208"; } .icon-power:before { content: "\e143"; } .icon-presentation:before { content: "\e4b2"; } .icon-printer-check:before { content: "\e5f9"; } .icon-printer:before { content: "\e144"; } .icon-projector:before { content: "\e4b3"; } .icon-proportions:before { content: "\e5d3"; } .icon-puzzle:before { content: "\e29b"; } .icon-pyramid:before { content: "\e530"; } .icon-qr-code:before { content: "\e1de"; } .icon-quote:before { content: "\e238"; } .icon-rabbit:before { content: "\e4fa"; } .icon-radar:before { content: "\e49b"; } .icon-radiation:before { content: "\e446"; } .icon-radical:before { content: "\e5c6"; } .icon-radio-receiver:before { content: "\e1fa"; } .icon-radio-tower:before { content: "\e408"; } .icon-radio:before { content: "\e145"; } .icon-radius:before { content: "\e531"; } .icon-rail-symbol:before { content: "\e505"; } .icon-rainbow:before { content: "\e4c6"; } .icon-rat:before { content: "\e3ef"; } .icon-ratio:before { content: "\e4ec"; } .icon-receipt-cent:before { content: "\e5a9"; } .icon-receipt-euro:before { content: "\e5aa"; } .icon-receipt-indian-rupee:before { content: "\e5ab"; } .icon-receipt-japanese-yen:before { content: "\e5ac"; } .icon-receipt-pound-sterling:before { content: "\e5ad"; } .icon-receipt-russian-ruble:before { content: "\e5ae"; } .icon-receipt-swiss-franc:before { content: "\e5af"; } .icon-receipt-text:before { content: "\e5b0"; } .icon-receipt:before { content: "\e3d6"; } .icon-rectangle-ellipsis:before { content: "\e21e"; } .icon-rectangle-horizontal:before { content: "\e379"; } .icon-rectangle-vertical:before { content: "\e37a"; } .icon-recycle:before { content: "\e2e8"; } .icon-redo-2:before { content: "\e29f"; } .icon-redo-dot:before { content: "\e454"; } .icon-redo:before { content: "\e146"; } .icon-refresh-ccw-dot:before { content: "\e4b6"; } .icon-refresh-ccw:before { content: "\e147"; } .icon-refresh-cw-off:before { content: "\e49c"; } .icon-refresh-cw:before { content: "\e148"; } .icon-refrigerator:before { content: "\e37e"; } .icon-regex:before { content: "\e1fb"; } .icon-remove-formatting:before { content: "\e3b6"; } .icon-repeat-1:before { content: "\e1fc"; } .icon-repeat-2:before { content: "\e415"; } .icon-repeat:before { content: "\e149"; } .icon-replace-all:before { content: "\e3df"; } .icon-replace:before { content: "\e3de"; } .icon-reply-all:before { content: "\e22a"; } .icon-reply:before { content: "\e229"; } .icon-rewind:before { content: "\e14a"; } .icon-ribbon:before { content: "\e55c"; } .icon-rocket:before { content: "\e285"; } .icon-rocking-chair:before { content: "\e232"; } .icon-roller-coaster:before { content: "\e484"; } .icon-rotate-3d:before { content: "\e2e9"; } .icon-rotate-ccw-square:before { content: "\e5d4"; } .icon-rotate-ccw:before { content: "\e14b"; } .icon-rotate-cw-square:before { content: "\e5d5"; } .icon-rotate-cw:before { content: "\e14c"; } .icon-route-off:before { content: "\e543"; } .icon-route:before { content: "\e542"; } .icon-router:before { content: "\e3c2"; } .icon-rows-2:before { content: "\e43d"; } .icon-rows-3:before { content: "\e58e"; } .icon-rows-4:before { content: "\e58f"; } .icon-rss:before { content: "\e14d"; } .icon-ruler:before { content: "\e14e"; } .icon-russian-ruble:before { content: "\e14f"; } .icon-sailboat:before { content: "\e381"; } .icon-salad:before { content: "\e3ab"; } .icon-sandwich:before { content: "\e3ac"; } .icon-satellite-dish:before { content: "\e44c"; } .icon-satellite:before { content: "\e44b"; } .icon-save-all:before { content: "\e413"; } .icon-save-off:before { content: "\e5f7"; } .icon-save:before { content: "\e150"; } .icon-scale-3d:before { content: "\e2ea"; } .icon-scale:before { content: "\e211"; } .icon-scaling:before { content: "\e2eb"; } .icon-scan-barcode:before { content: "\e539"; } .icon-scan-eye:before { content: "\e53a"; } .icon-scan-face:before { content: "\e374"; } .icon-scan-heart:before { content: "\e63e"; } .icon-scan-line:before { content: "\e257"; } .icon-scan-qr-code:before { content: "\e5fa"; } .icon-scan-search:before { content: "\e53b"; } .icon-scan-text:before { content: "\e53c"; } .icon-scan:before { content: "\e256"; } .icon-school:before { content: "\e3e6"; } .icon-scissors-line-dashed:before { content: "\e4ed"; } .icon-scissors:before { content: "\e151"; } .icon-screen-share-off:before { content: "\e153"; } .icon-screen-share:before { content: "\e152"; } .icon-scroll-text:before { content: "\e463"; } .icon-scroll:before { content: "\e2ec"; } .icon-search-check:before { content: "\e4ae"; } .icon-search-code:before { content: "\e4af"; } .icon-search-slash:before { content: "\e4b0"; } .icon-search-x:before { content: "\e4b1"; } .icon-search:before { content: "\e154"; } .icon-section:before { content: "\e5ec"; } .icon-send-horizontal:before { content: "\e4f6"; } .icon-send-to-back:before { content: "\e4f7"; } .icon-send:before { content: "\e155"; } .icon-separator-horizontal:before { content: "\e1c7"; } .icon-separator-vertical:before { content: "\e1c8"; } .icon-server-cog:before { content: "\e344"; } .icon-server-crash:before { content: "\e1e8"; } .icon-server-off:before { content: "\e1e9"; } .icon-server:before { content: "\e156"; } .icon-settings-2:before { content: "\e244"; } .icon-settings:before { content: "\e157"; } .icon-shapes:before { content: "\e4b7"; } .icon-share-2:before { content: "\e159"; } .icon-share:before { content: "\e158"; } .icon-sheet:before { content: "\e15a"; } .icon-shell:before { content: "\e4fb"; } .icon-shield-alert:before { content: "\e1fd"; } .icon-shield-ban:before { content: "\e15c"; } .icon-shield-check:before { content: "\e1fe"; } .icon-shield-ellipsis:before { content: "\e51a"; } .icon-shield-half:before { content: "\e51b"; } .icon-shield-minus:before { content: "\e51c"; } .icon-shield-off:before { content: "\e15d"; } .icon-shield-plus:before { content: "\e51d"; } .icon-shield-question:before { content: "\e412"; } .icon-shield-x:before { content: "\e1ff"; } .icon-shield:before { content: "\e15b"; } .icon-ship-wheel:before { content: "\e506"; } .icon-ship:before { content: "\e3bd"; } .icon-shirt:before { content: "\e1c9"; } .icon-shopping-bag:before { content: "\e15e"; } .icon-shopping-basket:before { content: "\e4ee"; } .icon-shopping-cart:before { content: "\e15f"; } .icon-shovel:before { content: "\e160"; } .icon-shower-head:before { content: "\e37f"; } .icon-shrink:before { content: "\e21f"; } .icon-shrub:before { content: "\e2ed"; } .icon-shuffle:before { content: "\e161"; } .icon-sigma:before { content: "\e200"; } .icon-signal-high:before { content: "\e25f"; } .icon-signal-low:before { content: "\e260"; } .icon-signal-medium:before { content: "\e261"; } .icon-signal-zero:before { content: "\e262"; } .icon-signal:before { content: "\e25e"; } .icon-signature:before { content: "\e5f6"; } .icon-signpost-big:before { content: "\e545"; } .icon-signpost:before { content: "\e544"; } .icon-siren:before { content: "\e2ee"; } .icon-skip-back:before { content: "\e162"; } .icon-skip-forward:before { content: "\e163"; } .icon-skull:before { content: "\e220"; } .icon-slack:before { content: "\e164"; } .icon-slash:before { content: "\e521"; } .icon-slice:before { content: "\e2ef"; } .icon-sliders-horizontal:before { content: "\e299"; } .icon-sliders-vertical:before { content: "\e165"; } .icon-smartphone-charging:before { content: "\e22d"; } .icon-smartphone-nfc:before { content: "\e3c7"; } .icon-smartphone:before { content: "\e166"; } .icon-smile-plus:before { content: "\e300"; } .icon-smile:before { content: "\e167"; } .icon-snail:before { content: "\e4fc"; } .icon-snowflake:before { content: "\e168"; } .icon-sofa:before { content: "\e2c3"; } .icon-soup:before { content: "\e3ad"; } .icon-space:before { content: "\e3e0"; } .icon-spade:before { content: "\e49d"; } .icon-sparkle:before { content: "\e482"; } .icon-sparkles:before { content: "\e416"; } .icon-speaker:before { content: "\e169"; } .icon-speech:before { content: "\e522"; } .icon-spell-check-2:before { content: "\e49f"; } .icon-spell-check:before { content: "\e49e"; } .icon-spline:before { content: "\e38e"; } .icon-split:before { content: "\e444"; } .icon-spray-can:before { content: "\e499"; } .icon-sprout:before { content: "\e1ea"; } .icon-square-activity:before { content: "\e4b8"; } .icon-square-arrow-down-left:before { content: "\e4b9"; } .icon-square-arrow-down-right:before { content: "\e4ba"; } .icon-square-arrow-down:before { content: "\e42b"; } .icon-square-arrow-left:before { content: "\e42c"; } .icon-square-arrow-out-down-left:before { content: "\e5a5"; } .icon-square-arrow-out-down-right:before { content: "\e5a6"; } .icon-square-arrow-out-up-left:before { content: "\e5a7"; } .icon-square-arrow-out-up-right:before { content: "\e5a8"; } .icon-square-arrow-right:before { content: "\e42d"; } .icon-square-arrow-up-left:before { content: "\e4bb"; } .icon-square-arrow-up-right:before { content: "\e4bc"; } .icon-square-arrow-up:before { content: "\e42e"; } .icon-square-asterisk:before { content: "\e16b"; } .icon-square-bottom-dashed-scissors:before { content: "\e4ef"; } .icon-square-chart-gantt:before { content: "\e16c"; } .icon-square-check-big:before { content: "\e16d"; } .icon-square-check:before { content: "\e55d"; } .icon-square-chevron-down:before { content: "\e3d2"; } .icon-square-chevron-left:before { content: "\e3d3"; } .icon-square-chevron-right:before { content: "\e3d4"; } .icon-square-chevron-up:before { content: "\e3d5"; } .icon-square-code:before { content: "\e16e"; } .icon-square-dashed-bottom-code:before { content: "\e4c5"; } .icon-square-dashed-bottom:before { content: "\e4c4"; } .icon-square-dashed-kanban:before { content: "\e16f"; } .icon-square-dashed-mouse-pointer:before { content: "\e50d"; } .icon-square-dashed:before { content: "\e1ca"; } .icon-square-divide:before { content: "\e170"; } .icon-square-dot:before { content: "\e171"; } .icon-square-equal:before { content: "\e172"; } .icon-square-function:before { content: "\e22c"; } .icon-square-kanban:before { content: "\e173"; } .icon-square-library:before { content: "\e553"; } .icon-square-m:before { content: "\e507"; } .icon-square-menu:before { content: "\e457"; } .icon-square-minus:before { content: "\e174"; } .icon-square-mouse-pointer:before { content: "\e201"; } .icon-square-parking-off:before { content: "\e3cf"; } .icon-square-parking:before { content: "\e3ce"; } .icon-square-pen:before { content: "\e175"; } .icon-square-percent:before { content: "\e520"; } .icon-square-pi:before { content: "\e48c"; } .icon-square-pilcrow:before { content: "\e48f"; } .icon-square-play:before { content: "\e485"; } .icon-square-plus:before { content: "\e176"; } .icon-square-power:before { content: "\e555"; } .icon-square-radical:before { content: "\e5c7"; } .icon-square-scissors:before { content: "\e4f0"; } .icon-square-sigma:before { content: "\e48d"; } .icon-square-slash:before { content: "\e177"; } .icon-square-split-horizontal:before { content: "\e3b9"; } .icon-square-split-vertical:before { content: "\e3ba"; } .icon-square-square:before { content: "\e612"; } .icon-square-stack:before { content: "\e4a6"; } .icon-square-terminal:before { content: "\e209"; } .icon-square-user-round:before { content: "\e46a"; } .icon-square-user:before { content: "\e469"; } .icon-square-x:before { content: "\e178"; } .icon-square:before { content: "\e16a"; } .icon-squircle:before { content: "\e57e"; } .icon-squirrel:before { content: "\e4a3"; } .icon-stamp:before { content: "\e3be"; } .icon-star-half:before { content: "\e20a"; } .icon-star-off:before { content: "\e2af"; } .icon-star:before { content: "\e179"; } .icon-step-back:before { content: "\e3ec"; } .icon-step-forward:before { content: "\e3ed"; } .icon-stethoscope:before { content: "\e2f0"; } .icon-sticker:before { content: "\e301"; } .icon-sticky-note:before { content: "\e302"; } .icon-store:before { content: "\e3e7"; } .icon-stretch-horizontal:before { content: "\e27b"; } .icon-stretch-vertical:before { content: "\e27c"; } .icon-strikethrough:before { content: "\e17a"; } .icon-subscript:before { content: "\e25b"; } .icon-sun-dim:before { content: "\e298"; } .icon-sun-medium:before { content: "\e2b0"; } .icon-sun-moon:before { content: "\e2b1"; } .icon-sun-snow:before { content: "\e375"; } .icon-sun:before { content: "\e17b"; } .icon-sunrise:before { content: "\e17c"; } .icon-sunset:before { content: "\e17d"; } .icon-superscript:before { content: "\e25d"; } .icon-swatch-book:before { content: "\e5a3"; } .icon-swiss-franc:before { content: "\e17e"; } .icon-switch-camera:before { content: "\e17f"; } .icon-sword:before { content: "\e2b2"; } .icon-swords:before { content: "\e2b3"; } .icon-syringe:before { content: "\e2f1"; } .icon-table-2:before { content: "\e2f8"; } .icon-table-cells-merge:before { content: "\e5cb"; } .icon-table-cells-split:before { content: "\e5cc"; } .icon-table-columns-split:before { content: "\e5cd"; } .icon-table-of-contents:before { content: "\e622"; } .icon-table-properties:before { content: "\e4df"; } .icon-table-rows-split:before { content: "\e5ce"; } .icon-table:before { content: "\e180"; } .icon-tablet-smartphone:before { content: "\e50e"; } .icon-tablet:before { content: "\e181"; } .icon-tablets:before { content: "\e3c1"; } .icon-tag:before { content: "\e182"; } .icon-tags:before { content: "\e35f"; } .icon-tally-1:before { content: "\e4da"; } .icon-tally-2:before { content: "\e4db"; } .icon-tally-3:before { content: "\e4dc"; } .icon-tally-4:before { content: "\e4dd"; } .icon-tally-5:before { content: "\e4de"; } .icon-tangent:before { content: "\e532"; } .icon-target:before { content: "\e183"; } .icon-telescope:before { content: "\e5c9"; } .icon-tent-tree:before { content: "\e53f"; } .icon-tent:before { content: "\e226"; } .icon-terminal:before { content: "\e184"; } .icon-test-tube-diagonal:before { content: "\e40a"; } .icon-test-tube:before { content: "\e409"; } .icon-test-tubes:before { content: "\e40b"; } .icon-text-cursor-input:before { content: "\e264"; } .icon-text-cursor:before { content: "\e263"; } .icon-text-quote:before { content: "\e4a2"; } .icon-text-search:before { content: "\e5b1"; } .icon-text-select:before { content: "\e3e1"; } .icon-text:before { content: "\e3ee"; } .icon-theater:before { content: "\e526"; } .icon-thermometer-snowflake:before { content: "\e186"; } .icon-thermometer-sun:before { content: "\e187"; } .icon-thermometer:before { content: "\e185"; } .icon-thumbs-down:before { content: "\e188"; } .icon-thumbs-up:before { content: "\e189"; } .icon-ticket-check:before { content: "\e5b2"; } .icon-ticket-minus:before { content: "\e5b3"; } .icon-ticket-percent:before { content: "\e5b4"; } .icon-ticket-plus:before { content: "\e5b5"; } .icon-ticket-slash:before { content: "\e5b6"; } .icon-ticket-x:before { content: "\e5b7"; } .icon-ticket:before { content: "\e20e"; } .icon-tickets-plane:before { content: "\e627"; } .icon-tickets:before { content: "\e626"; } .icon-timer-off:before { content: "\e248"; } .icon-timer-reset:before { content: "\e235"; } .icon-timer:before { content: "\e1df"; } .icon-toggle-left:before { content: "\e18a"; } .icon-toggle-right:before { content: "\e18b"; } .icon-toilet:before { content: "\e639"; } .icon-tornado:before { content: "\e217"; } .icon-torus:before { content: "\e533"; } .icon-touchpad-off:before { content: "\e44e"; } .icon-touchpad:before { content: "\e44d"; } .icon-tower-control:before { content: "\e3bf"; } .icon-toy-brick:before { content: "\e34a"; } .icon-tractor:before { content: "\e508"; } .icon-traffic-cone:before { content: "\e509"; } .icon-train-front-tunnel:before { content: "\e50b"; } .icon-train-front:before { content: "\e50a"; } .icon-train-track:before { content: "\e50c"; } .icon-tram-front:before { content: "\e2a8"; } .icon-trash-2:before { content: "\e18d"; } .icon-trash:before { content: "\e18c"; } .icon-tree-deciduous:before { content: "\e2f2"; } .icon-tree-palm:before { content: "\e280"; } .icon-tree-pine:before { content: "\e2f3"; } .icon-trees:before { content: "\e2f4"; } .icon-trello:before { content: "\e18e"; } .icon-trending-down:before { content: "\e18f"; } .icon-trending-up-down:before { content: "\e629"; } .icon-trending-up:before { content: "\e190"; } .icon-triangle-alert:before { content: "\e192"; } .icon-triangle-right:before { content: "\e4f1"; } .icon-triangle:before { content: "\e191"; } .icon-trophy:before { content: "\e376"; } .icon-truck:before { content: "\e193"; } .icon-turtle:before { content: "\e4fd"; } .icon-tv-minimal-play:before { content: "\e5f0"; } .icon-tv-minimal:before { content: "\e202"; } .icon-tv:before { content: "\e194"; } .icon-twitch:before { content: "\e195"; } .icon-twitter:before { content: "\e196"; } .icon-type-outline:before { content: "\e606"; } .icon-type:before { content: "\e197"; } .icon-umbrella-off:before { content: "\e547"; } .icon-umbrella:before { content: "\e198"; } .icon-underline:before { content: "\e199"; } .icon-undo-2:before { content: "\e2a0"; } .icon-undo-dot:before { content: "\e455"; } .icon-undo:before { content: "\e19a"; } .icon-unfold-horizontal:before { content: "\e441"; } .icon-unfold-vertical:before { content: "\e442"; } .icon-ungroup:before { content: "\e46b"; } .icon-university:before { content: "\e3e8"; } .icon-unlink-2:before { content: "\e19c"; } .icon-unlink:before { content: "\e19b"; } .icon-unplug:before { content: "\e461"; } .icon-upload:before { content: "\e19d"; } .icon-usb:before { content: "\e359"; } .icon-user-check:before { content: "\e19f"; } .icon-user-cog:before { content: "\e345"; } .icon-user-minus:before { content: "\e1a0"; } .icon-user-pen:before { content: "\e600"; } .icon-user-plus:before { content: "\e1a1"; } .icon-user-round-check:before { content: "\e46d"; } .icon-user-round-cog:before { content: "\e46e"; } .icon-user-round-minus:before { content: "\e46f"; } .icon-user-round-pen:before { content: "\e601"; } .icon-user-round-plus:before { content: "\e470"; } .icon-user-round-search:before { content: "\e57c"; } .icon-user-round-x:before { content: "\e471"; } .icon-user-round:before { content: "\e46c"; } .icon-user-search:before { content: "\e57d"; } .icon-user-x:before { content: "\e1a2"; } .icon-user:before { content: "\e19e"; } .icon-users-round:before { content: "\e472"; } .icon-users:before { content: "\e1a3"; } .icon-utensils-crossed:before { content: "\e2f6"; } .icon-utensils:before { content: "\e2f5"; } .icon-utility-pole:before { content: "\e3c5"; } .icon-variable:before { content: "\e477"; } .icon-vault:before { content: "\e593"; } .icon-vegan:before { content: "\e3a0"; } .icon-venetian-mask:before { content: "\e2a9"; } .icon-vibrate-off:before { content: "\e29c"; } .icon-vibrate:before { content: "\e222"; } .icon-video-off:before { content: "\e1a5"; } .icon-video:before { content: "\e1a4"; } .icon-videotape:before { content: "\e4cf"; } .icon-view:before { content: "\e1a6"; } .icon-voicemail:before { content: "\e1a7"; } .icon-volleyball:before { content: "\e633"; } .icon-volume-1:before { content: "\e1a9"; } .icon-volume-2:before { content: "\e1aa"; } .icon-volume-off:before { content: "\e62a"; } .icon-volume-x:before { content: "\e1ab"; } .icon-volume:before { content: "\e1a8"; } .icon-vote:before { content: "\e3b0"; } .icon-wallet-cards:before { content: "\e4d0"; } .icon-wallet-minimal:before { content: "\e4d1"; } .icon-wallet:before { content: "\e203"; } .icon-wallpaper:before { content: "\e44f"; } .icon-wand-sparkles:before { content: "\e35a"; } .icon-wand:before { content: "\e245"; } .icon-warehouse:before { content: "\e3e9"; } .icon-washing-machine:before { content: "\e594"; } .icon-watch:before { content: "\e1ac"; } .icon-waves-ladder:before { content: "\e63f"; } .icon-waves:before { content: "\e282"; } .icon-waypoints:before { content: "\e546"; } .icon-webcam:before { content: "\e204"; } .icon-webhook-off:before { content: "\e5bb"; } .icon-webhook:before { content: "\e377"; } .icon-weight:before { content: "\e534"; } .icon-wheat-off:before { content: "\e3a2"; } .icon-wheat:before { content: "\e3a1"; } .icon-whole-word:before { content: "\e3e2"; } .icon-wifi-high:before { content: "\e5fb"; } .icon-wifi-low:before { content: "\e5fc"; } .icon-wifi-off:before { content: "\e1ae"; } .icon-wifi-zero:before { content: "\e5fd"; } .icon-wifi:before { content: "\e1ad"; } .icon-wind-arrow-down:before { content: "\e635"; } .icon-wind:before { content: "\e1af"; } .icon-wine-off:before { content: "\e3a3"; } .icon-wine:before { content: "\e2f7"; } .icon-workflow:before { content: "\e429"; } .icon-worm:before { content: "\e5de"; } .icon-wrap-text:before { content: "\e247"; } .icon-wrench:before { content: "\e1b0"; } .icon-x:before { content: "\e1b1"; } .icon-youtube:before { content: "\e1b2"; } .icon-zap-off:before { content: "\e1b4"; } .icon-zap:before { content: "\e1b3"; } .icon-zoom-in:before { content: "\e1b5"; } .icon-zoom-out:before { content: "\e1b6"; }
/* Roboto - Downloaded from Google Fonts */ /* Usage: <link rel="stylesheet" href="files/roboto.css"> */ @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('./files/roboto-400.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('./files/roboto-500.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); } @font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('./files/roboto-700.woff2') format('woff2'); }
{ "type": "object", "title": "Recherche Carto Montpellier", "properties": {} }

Glisser-déposer des fichiers ou dossiers ici

ou utiliser les boutons ci-dessous

Nom Taille Statut Actions